/* 
  George Insurance - SBI Identity Transformation (2026)
  Theme: SBI Life Professional (Blue & Pink)
  Style: Modern, Trust-First, Results-Oriented
*/

:root {
    --sbi-blue: #00B4EE;       /* Official SBI Cerulean */
    --sbi-pink: #E685B5;       /* Official Iconic Pink */
    --sbi-dark: #003366;       /* Trust Navy */
    --text-main: #1e293b;
    --text-light: #64748b;
    --bg-light: #f4f8fb;       /* Clean insurance background */
    --white: #ffffff;
    --whatsapp: #25d366;
    --glass: rgba(255, 255, 255, 0.85);
    --shadow: 0 10px 30px rgba(0, 51, 102, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    color: var(--sbi-dark);
}

/* Floating Navigation - Glassmorphism */
.nav-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: var(--glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 180, 238, 0.1);
    border-radius: 16px;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.logo {
    font-size: 1.25rem;
    text-decoration: none;
    color: var(--sbi-dark);
}

.logo span {
    color: var(--sbi-pink);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--sbi-dark);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--sbi-blue);
}

/* Button Text Content - Two line design */
.btn-text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
    text-align: left;
}

.btn-small-text {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 0.5px;
    text-transform: none;
}

.btn-large-text {
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: none;
}

.btn-nav {
    background: linear-gradient(135deg, var(--sbi-blue), var(--sbi-pink));
    color: white !important;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.85rem !important;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 800px;
    background: linear-gradient(to right, rgba(0, 51, 102, 0.95), rgba(0, 51, 102, 0.2)),
                url('hero.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 10%;
    color: white;
}

.hero-content {
    max-width: 650px;
}

.hero h1 {
    color: white;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

.contact-card-inner {
    background: var(--sbi-dark);
    padding: 4rem;
    border-radius: 32px;
    color: white;
    text-align: center;
}

.contact-card-inner h2 {
    color: white;
    font-size: 2.5rem;
}

.contact-card-inner p {
    margin: 1.5rem 0 2.5rem;
    opacity: 0.8;
}

.btn-whatsapp {
    background: var(--whatsapp);
    font-size: 1.2rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
    text-align: left;
}

.btn-main {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 2.8rem;
    background: var(--sbi-pink);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(230, 133, 181, 0.3);
    transition: 0.3s;
}

.btn-main:hover {
    transform: translateY(-3px);
    background: #d4609a;
}

/* Overlapping Info Cards */
.info-section {
    position: relative;
    margin-top: -80px;
    padding: 0 10% 4rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.card-white {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    border-bottom: 4px solid var(--sbi-blue);
}

.card-white i {
    font-size: 2.5rem;
    color: var(--sbi-blue);
    margin-bottom: 1.5rem;
}

/* Product Catalog (Restored & Detailed) */
.section-wrapper {
    padding: 6rem 10%;
}

.center-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    transition: 0.3s;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    color: var(--sbi-dark);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-color: var(--sbi-cerulean);
}

.product-card h3 {
    margin-bottom: 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    color: var(--sbi-dark);
}

.learn-more-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--sbi-cerulean);
    font-weight: 700;
    margin-top: auto;
    padding: 0.8rem 1.2rem;
    background: #f0f9f9;
    border: 1px solid rgba(0, 169, 165, 0.1);
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
    margin-top: 1.5rem;
}

.product-card:hover .learn-more-button {
    background: white;
    border-color: var(--sbi-cerulean);
    box-shadow: 0 4px 12px rgba(0, 169, 165, 0.1);
}

.learn-more-button i {
    transition: transform 0.3s ease;
}

.product-card:hover .learn-more-button i {
    transform: translateX(5px);
}

/* End Product Link */

.product-card h3 {
    margin-bottom: 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
}

.product-link {
    color: var(--sbi-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.product-link:hover {
    color: var(--sbi-cerulean);
}

.tag-benefit {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(0, 180, 238, 0.1);
    color: var(--sbi-blue);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

/* Location Expert Card Fix */
.expert-info-card {
    background: white;
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.expert-contact-grid {
    display: grid;
    gap: 1.5rem;
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
}

.expert-contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Process Steps */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.step-num {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(0, 180, 238, 0.1);
    margin-bottom: -2rem;
}

/* WhatsApp Floating */
.whatsapp-fixed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: var(--whatsapp);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 2000;
    transition: 0.3s;
    text-decoration: none;
}

.whatsapp-fixed:hover {
    transform: scale(1.1) rotate(10deg);
}

footer {
    background: var(--sbi-dark);
    color: white;
    padding: 6rem 10% 2rem;
}

.location-hub {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.location-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
}

.location-link:hover {
    color: var(--sbi-blue);
}

/* Awards & Recognition Section */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    align-items: center; /* Ensures everything is aligned by the center line */
}

.award-card {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: 0.3s;
    border: 1px solid rgba(0,0,0,0.05);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.award-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.award-img-wrapper, .award-honour-img {
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.award-img-wrapper, .award-honour-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid rgba(212, 175, 55, 0.2);
    box-shadow: inset 0 0 15px rgba(0,0,0,0.05);
}

.award-img-wrapper img, .award-honour-img img {
    max-width: 60%;
    max-height: 60%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.award-card:hover img {
    transform: scale(1.05);
}

.award-card h3 {
    font-size: 1.1rem;
    color: var(--sbi-dark);
    margin-bottom: 0.5rem;
}

.award-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.gold-accent {
    color: #D4AF37;
    font-weight: 800;
    margin-bottom: 0.5rem;
    display: block;
}

/* Final Lead CTA Block */
.final-cta-section {
    padding: 6rem 10%;
    background: linear-gradient(145deg, var(--sbi-dark), #001a33);
    color: white;
    text-align: center;
    border-radius: 40px 40px 0 0;
    margin-top: 4rem;
}

.final-cta-section h2 {
    color: white;
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    margin-bottom: 3rem;
}

.cta-button-large {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3.5rem;
    background: var(--sbi-pink);
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 60px;
    box-shadow: 0 15px 35px rgba(230, 133, 181, 0.4);
    transition: 0.3s transform ease;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.cta-button-large:hover {
    transform: scale(1.1);
    background: #d4609a;
}


/* Responsive Overrides */
@media (max-width: 1024px) {
    .grid-3, .product-grid, .process-grid { grid-template-columns: 1fr; }
    
    .nav-container {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        width: 100% !important;
        max-width: none !important;
        border-radius: 0 !important;
        padding: 1rem 5% !important;
        box-shadow: none !important;
        border: none !important;
        background: var(--sbi-dark) !important;
        justify-content: center !important; /* Center the logo */
    }

    .logo { color: white !important; }
    .btn-nav { display: none !important; }

    .hero {
        background: var(--sbi-dark) !important;
        background-image: none !important;
        height: auto !important;
        min-height: 400px !important;
        padding: 10rem 5% 8rem !important; /* Fixed padding to ensure button visibility */
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .info-section {
        margin-top: 0 !important;
        padding-top: 2rem !important;
        position: relative;
        z-index: 10;
    }

    .hero-content {
        margin: 0 auto;
        max-width: 100%;
    }

    .hero h1 { 
        font-size: 1.5rem !important; 
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1rem !important;
        margin-bottom: 2rem;
    }

    .hero-cta-wrapper {
        justify-content: center !important;
    }

    .btn-main {
        font-size: 0.9rem !important;
        padding: 0.9rem 1.8rem !important;
        background: var(--sbi-pink) !important;
    }

    .contact-card-inner {
        padding: 2.5rem 1.5rem !important;
        border-radius: 20px !important;
    }

    .contact-card-inner h2 {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
    }

    .btn-whatsapp {
        background: var(--whatsapp) !important;
        justify-content: center;
        padding: 0.8rem 1.5rem !important;
    }

    .btn-small-text {
        font-size: 0.75rem !important;
    }

    .btn-large-text {
        font-size: 0.95rem !important;
    }

    .btn-main i {
        font-size: 1.3rem !important;
    }

    .section-wrapper {
        padding: 2rem 5% !important;
    }

    .about-grid {
        display: flex !important;
        flex-direction: column;
        gap: 2rem;
    }
    
    .about-text-res {
        order: 1;
        text-align: center;
    }
    
    .about-image-res {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .badge-container {
        position: static !important;
        flex-direction: row !important;
        justify-content: center;
        gap: 1rem;
        margin-top: 1.5rem;
        order: 3;
    }

    .awards-grid { grid-template-columns: repeat(2, 1fr); }
    
    .expert-info-card {
        padding: 1.5rem !important;
    }

    .expert-contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .expert-contact-item > div {
        text-align: left;
    }

    .learn-more-button {
        font-size: 0.85rem !important;
        padding: 0.7rem 1rem !important;
    }
    .nav-links { display: none; }
}

@media (max-width: 768px) {
    .final-cta-section h2 { 
        font-size: 1.6rem !important; 
        line-height: 1.3;
    }
    .cta-button-large { padding: 1rem 2rem; font-size: 1.1rem; }
}

@media (max-width: 600px) {
    .awards-grid { grid-template-columns: 1fr; }
}


/* Consultation Hub - Glassmorphism & High-Fidelity UI */
.consultation-hub {
    padding: 6rem 10%;
    background: #f8fafc;
    border-top: 1px solid rgba(0, 51, 102, 0.05);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* About Section Responsive Refinement */
.about-image-res {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 10px;
    box-shadow: var(--shadow);
}

.about-image-res img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

.badge-container {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-end;
}

.badge-official, .badge-rsm {
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.8rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    color: white;
}

.badge-official { background: var(--sbi-pink); }
.badge-rsm { background: var(--sbi-dark); }

.about-text-res {
    display: flex;
    flex-direction: column;
}

.about-intro {
    margin-top: 1.5rem;
}

.consult-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.consult-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 20px rgba(0, 51, 102, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.consult-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 40px rgba(0, 51, 102, 0.08);
    border-color: var(--sbi-blue);
}

.consult-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 180, 238, 0.1), rgba(230, 133, 181, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--sbi-dark);
}

.consult-card h4 {
    font-size: 1.15rem;
    color: var(--sbi-dark);
    margin: 0;
}

.consult-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Security Visualization Block */
.security-visualization {
    margin-top: 5rem;
    background: linear-gradient(135deg, var(--sbi-dark), #001a33);
    padding: 4rem;
    border-radius: 32px;
    color: white;
    display: flex;
    align-items: center;
    gap: 4rem;
    overflow: hidden;
    position: relative;
}

.security-visualization::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(230, 133, 181, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.security-content {
    flex: 1;
    z-index: 1;
}

.security-content h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.security-content p {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 2rem;
}

/* Responsive Overrides for Consultation Hub */
@media (max-width: 1200px) {
    .consult-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .consult-grid { grid-template-columns: 1fr; }
    .security-visualization { flex-direction: column; text-align: center; padding: 2.5rem; }
}


