/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Screen Reader Only Content */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Focus Styles */
*:focus {
    outline: 2px solid #313C96;
    outline-offset: 2px;
}

/* Skip Links */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #313C96;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
    transition: top 0.3s;
    font-weight: 600;
}

.skip-link:focus {
    top: 6px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
    width: 100%;
    overflow-x: hidden;
    font-size: 15px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    background: #313C96;
    color: white;
    padding: 8px 0;
    font-size: 11px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left {
    display: flex;
    gap: 20px;
}

.skip-link {
    color: white;
    text-decoration: none;
    font-size: 11px;
    opacity: 0.8;
}

.skip-link:hover {
    opacity: 1;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info span,
.contact-info a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.contact-info i {
    font-size: 10px;
}

.branch-locator {
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    font-size: 13px;
    white-space: nowrap;
}

.branch-locator i {
    font-size: 14px;
    color: #bff10c;
}

.branch-locator span {
    color: white;
    transition: color 0.3s ease;
}

/* Google Translate Widget Styling */
#google_translate_element {
    display: inline-block;
}

.goog-te-gadget {
    font-family: 'Inter', sans-serif !important;
    font-size: 11px !important;
}

.goog-te-gadget .goog-te-combo {
    background: rgba(255, 255, 255, 0.9) !important;
    color: #313C96 !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    padding: 3px 8px !important;
    border-radius: 3px !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    font-family: 'Inter', sans-serif !important;
    margin: 0 !important;
    height: auto !important;
    line-height: normal !important;
}

.goog-te-gadget .goog-te-combo:hover {
    background: white !important;
    border-color: white !important;
}

.goog-te-gadget .goog-te-combo:focus {
    outline: none !important;
    background: white !important;
    border-color: white !important;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3) !important;
}

/* Hide Google Translate branding */
.goog-te-gadget .goog-te-combo:after {
    display: none !important;
}

.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0 !important;
}

.goog-te-balloon-frame {
    display: none !important;
}

.goog-te-menu-value {
    color: #313C96 !important;
}

.goog-te-menu-value:before {
    content: "🌐 ";
}

/* Custom dropdown arrow */
.goog-te-gadget .goog-te-combo {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231e40af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 8px center !important;
    background-size: 12px !important;
    padding-right: 25px !important;
}

.accessibility {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 500;
}

.accessibility-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.font-size-controls,
.contrast-controls,
.screen-reader-controls {
    display: flex;
    gap: 4px;
    align-items: center;
}

.font-btn,
.contrast-btn,
.screen-reader-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    position: relative;
}

.font-btn:hover,
.contrast-btn:hover,
.screen-reader-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
}

.font-btn.active,
.contrast-btn.active,
.screen-reader-btn.active {
    background: #fbbf24;
    border-color: #fbbf24;
    color: #1f2937;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

.font-btn i,
.contrast-btn i,
.screen-reader-btn i {
    font-size: 10px;
}

/* High Contrast Mode Styles */
body.high-contrast {
    background: #000000 !important;
    color: #ffffff !important;
}

body.high-contrast .header,
body.high-contrast .main-nav,
body.high-contrast .hero-banner,
body.high-contrast .stats,
body.high-contrast .features-section,
body.high-contrast .services-section,
body.high-contrast .about-section,
body.high-contrast .testimonials-section,
body.high-contrast .news-section,
body.high-contrast .government-schemes-section,
body.high-contrast .calculators-section,
body.high-contrast .footer {
    background: #000000 !important;
    color: #ffffff !important;
}

body.high-contrast h1,
body.high-contrast h2,
body.high-contrast h3,
body.high-contrast h4,
body.high-contrast h5,
body.high-contrast h6 {
    color: #ffff00 !important;
}

body.high-contrast a {
    color: #00ffff !important;
    text-decoration: underline !important;
}

body.high-contrast a:focus {
    outline: 3px solid #ffff00 !important;
    outline-offset: 2px !important;
}

body.high-contrast button,
body.high-contrast .btn {
    background: #ffffff !important;
    color: #000000 !important;
    border: 3px solid #ffffff !important;
}

body.high-contrast button:focus,
body.high-contrast .btn:focus {
    outline: 3px solid #ffff00 !important;
    outline-offset: 2px !important;
}

body.high-contrast input,
body.high-contrast select,
body.high-contrast textarea {
    background: #ffffff !important;
    color: #000000 !important;
    border: 3px solid #ffffff !important;
}

body.high-contrast input:focus,
body.high-contrast select:focus,
body.high-contrast textarea:focus {
    outline: 3px solid #ffff00 !important;
    outline-offset: 2px !important;
    border-color: #ffff00 !important;
}

/* Improved color contrast for normal mode */
.btn-primary {
    background: #1e40af;
    color: white;
    border: 2px solid #1e40af;
}

.btn-primary:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
}

.btn-outline {
    background: transparent;
    color: #1e40af;
    border: 2px solid #1e40af;
}

.btn-outline:hover {
    background: #1e40af;
    color: white;
}

/* Improved text contrast */
body {
    color: #1f2937;
}

.text-muted {
    color: #6b7280;
}

/* Improved link contrast */
a {
    color: #1e40af;
    text-decoration: none;
}

a:hover {
    color: #1d4ed8;
    text-decoration: none;
}

.branch-locator:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.branch-locator:hover span {
    color: #bff10c;
}

.branch-locator:hover i {
    color: #bff10c;
    transform: scale(1.1);
}

.branch-locator:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.branch-locator:focus {
    outline: 2px solid #bff10c;
    outline-offset: 2px;
}

/* Improved form contrast */
input, select, textarea {
    border: 2px solid #d1d5db;
    color: #1f2937;
}

input:focus, select:focus, textarea:focus {
    border-color: #1e40af;
    outline: 2px solid #1e40af;
    outline-offset: 2px;
}

/* Form Error Styling */
.field-error {
    color: #dc2626;
    font-size: 14px;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.field-error::before {
    content: "⚠";
    font-size: 16px;
}

input[aria-invalid="true"], 
select[aria-invalid="true"], 
textarea[aria-invalid="true"] {
    border-color: #dc2626;
    background-color: #fef2f2;
}

input[aria-invalid="true"]:focus, 
select[aria-invalid="true"]:focus, 
textarea[aria-invalid="true"]:focus {
    border-color: #dc2626;
    outline-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* Font Size Adjustments */
body.font-small {
    font-size: 12px;
}

body.font-small h1 { font-size: 24px; }
body.font-small h2 { font-size: 20px; }
body.font-small h3 { font-size: 18px; }
body.font-small h4 { font-size: 16px; }
body.font-small h5 { font-size: 14px; }
body.font-small h6 { font-size: 12px; }

body.font-large {
    font-size: 18px;
}

body.font-large h1 { font-size: 36px; }
body.font-large h2 { font-size: 30px; }
body.font-large h3 { font-size: 26px; }
body.font-large h4 { font-size: 22px; }
body.font-large h5 { font-size: 20px; }
body.font-large h6 { font-size: 18px; }

/* Screen Reader Mode */
body.screen-reader-mode .sr-only {
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
}

body.screen-reader-mode * {
    outline: 2px solid #ffff00 !important;
}

/* Navigation */
.main-nav {
    padding: 5px 0;
    background: white;
    overflow: visible;
    position: relative;
    z-index: 100;
}

@media (max-width: 768px) {
    .main-nav {
        overflow: visible;
        position: relative;
    }
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo img {
    height: 80px;
}

.search-section {
    display: flex;
    align-items: center;
}

.search-box {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 25px;
    padding: 8px 15px;
    min-width: 200px;
}

.search-box input {
    border: none;
    background: transparent;
    outline: none;
    flex: 1;
    font-size: 13px;
    color: #374151;
}

.search-box input::placeholder {
    color: #9ca3af;
}

.search-box button {
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 5px;
}

.nav-menu-container {
    flex: 1;
    overflow: visible;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    font-size: 13px;
    padding: 1px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 6px;
}

.nav-menu a i {
    font-size: 12px;
    width: 16px;
    text-align: center;
}

.nav-menu a:hover {
    color: #313C96;
}

/* Keep dropdown open when hovering over the trigger */
.dropdown:hover > a {
    color: #313C96;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: white;
    min-width: 280px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border: 1px solid #e5e7eb;
    overflow: visible;
    backdrop-filter: blur(10px);
    margin-top: 20px;
    padding-top: 15px;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    transition-delay: 0s;
}

/* Add delay when leaving dropdown */
.dropdown-content {
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.1s;
}

/* Dropdown arrow indicator */
.dropdown-content::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 8px solid white;
    filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.05));
}

/* Invisible bridge to prevent dropdown from closing */
.dropdown-content::after {
    content: "";
    position: absolute;
    top: -25px;
    left: -20px;
    right: -20px;
    height: 25px;
    background: transparent;
}

.dropdown-content a {
    display: block;
    padding: 14px 24px;
    border-bottom: 1px solid #f8fafc;
    font-size: 13px;
    color: #374151;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
    opacity: 0;
    transform: translateY(-10px);
    animation: fadeInUp 0.4s ease forwards;
}

.dropdown-content a:nth-child(1) { animation-delay: 0.1s; }
.dropdown-content a:nth-child(2) { animation-delay: 0.15s; }
.dropdown-content a:nth-child(3) { animation-delay: 0.2s; }
.dropdown-content a:nth-child(4) { animation-delay: 0.25s; }
.dropdown-content a:nth-child(5) { animation-delay: 0.3s; }
.dropdown-content a:nth-child(6) { animation-delay: 0.35s; }
.dropdown-content a:nth-child(7) { animation-delay: 0.4s; }
.dropdown-content a:nth-child(8) { animation-delay: 0.45s; }
.dropdown-content a:nth-child(9) { animation-delay: 0.5s; }
.dropdown-content a:nth-child(10) { animation-delay: 0.55s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-content a:hover {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    color: #313C96;
    padding-left: 32px;
    transform: translateX(4px);
}

.dropdown-content a:hover::before {
    /* content: "→"; */
    position: absolute;
    left: 20px;
    color: #313C96;
    font-weight: bold;
    transition: all 0.3s ease;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.dropdown-content a:last-child {
    border-bottom: none;
    border-radius: 0 0 12px 12px;
}

.dropdown-content a:first-child {
    border-radius: 12px 12px 0 0;
}

.mega-menu {
    display: flex;
    gap: 30px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    min-width: 900px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: visible;
}


.mega-menu-column {
    flex: 1;
    padding: 0;
    position: relative;
}

.mega-menu-column:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -15px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #e5e7eb;
}

.mega-menu-column h4 {
    color: #313C96;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #313C96;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


.mega-menu-column a {
    display: block;
    padding: 8px 0;
    color: #374151;
    font-size: 13px;
    transition: color 0.3s ease;
    text-decoration: none;
    font-weight: 500;
    border-bottom: none;
}

.mega-menu-column a:hover {
    color: #313C96;
}

/* Enhanced dropdown styling for expanded menu */
.dropdown-content {
    min-width: 200px;
}

.dropdown-content .mega-menu {
    min-width: 800px;
    max-width: 1000px;
}

/* Ensure proper spacing for new menu items */
.nav-menu {
    gap: 20px;
}

.nav-menu a {
    white-space: nowrap;
    font-size: 14px;
    /* padding: 8px 12px; */
}

/* Mobile menu improvements */
@media (max-width: 768px) {
    .nav-content {
        position: relative;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #e5e7eb;
        position: relative;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu > li > a {
        padding: 15px 20px;
        font-size: 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        color: #374151;
        font-weight: 500;
        text-decoration: none;
    }
    
    .nav-menu > li:not(.dropdown) > a {
        pointer-events: auto;
    }
    
    .nav-menu > li.dropdown > a {
        cursor: pointer;
    }
    
    .nav-menu > li > a i.fa-chevron-down {
        transition: transform 0.3s ease;
        font-size: 12px;
    }
    
    .dropdown.active > a i.fa-chevron-down {
        transform: rotate(180deg);
    }
    
    .dropdown-content {
        position: static !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        background: #f8fafc !important;
        border-radius: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.4s ease, padding 0.4s ease !important;
        padding: 0 20px !important;
        margin: 0 !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        width: 100% !important;
    }
    
    .dropdown.active .dropdown-content {
        max-height: 2000px !important;
        padding: 15px 20px !important;
    }
    
    .dropdown-content a {
        padding: 12px 15px !important;
        font-size: 14px !important;
        border-bottom: 1px solid #e5e7eb !important;
        display: block !important;
        color: #374151 !important;
        transition: background 0.2s ease !important;
    }
    
    .dropdown-content a:last-child {
        border-bottom: none !important;
    }
    
    .dropdown-content a:hover {
        background: #e0f2fe !important;
        padding-left: 20px !important;
        transform: none !important;
    }
    
    .mega-menu {
        flex-direction: column !important;
        gap: 15px !important;
        min-width: auto !important;
        max-width: none !important;
        padding: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
    }
    
    .mega-menu-column {
        border-bottom: 1px solid #e5e7eb !important;
        padding-bottom: 15px !important;
        margin-bottom: 15px !important;
        width: 100% !important;
    }
    
    .mega-menu-column:last-child {
        border-bottom: none !important;
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
    }
    
    .mega-menu-column h4 {
        font-size: 14px !important;
        margin-bottom: 12px !important;
        color: #313C96 !important;
        font-weight: 600 !important;
        padding: 0 !important;
    }
    
    .mega-menu-column a {
        font-size: 13px !important;
        padding: 10px 15px !important;
        display: block !important;
        color: #374151 !important;
        border-bottom: 1px solid #e5e7eb !important;
        margin: 0 !important;
        border-radius: 0 !important;
    }
    
    .mega-menu-column a:last-child {
        border-bottom: none !important;
    }
    
    .mega-menu-column a:hover {
        background: #e0f2fe !important;
        padding-left: 20px !important;
        transform: none !important;
    }
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #374151;
}

/* Button Styles */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 13px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.btn-primary {
    background: #313C96;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.btn.btn-primary.btn-large:hover {
    color: #fff;
}

.btn.btn-primary:hover {
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: #313C96;
    border: 2px solid #313C96;
}

.btn-outline:hover {
    background: #313C96;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 15px;
}

/* Marquee Section */
.marquee-section {
    background: #313C96;
    color: white;
    padding: 8px 0;
    overflow: hidden;
}

.marquee-content {
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.marquee-text {
    display: inline-block;
    padding-left: 100%;
}

.marquee-label {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Hero Banner Slider */
.hero-banner {
    position: relative;
    height: 50vh;
    min-height: 400px;
    overflow: hidden;
}

.banner-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.banner-slide.active {
    opacity: 1;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.banner-shape-1,
.banner-shape-2,
.banner-shape-3 {
    position: absolute;
    opacity: 0.8;
}

.banner-shape-1 {
    top: 10%;
    right: 10%;
    width: 200px;
    height: 200px;
    animation: float 6s ease-in-out infinite;
}

.banner-shape-2 {
    bottom: 20%;
    left: 5%;
    width: 150px;
    height: 150px;
    animation: float 8s ease-in-out infinite reverse;
}

.banner-shape-3 {
    top: 50%;
    right: 20%;
    width: 100px;
    height: 100px;
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.banner-content {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.banner-text {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.banner-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-text h2 {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fbbf24;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.banner-text p {
    font-size: 1.15rem;
    margin-bottom: 15px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.language-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 500;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.language-option:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.language-option input[type="radio"] {
    margin: 0;
    accent-color: #fbbf24;
}

.remember-choice {
    margin-top: 20px;
}

.remember-choice label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.85rem;
    opacity: 0.8;
}

.remember-choice input[type="checkbox"] {
    accent-color: #fbbf24;
}

.banner-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.feature-item i {
    font-size: 1.4rem;
    color: #fbbf24;
}

.feature-item span {
    font-size: 0.95rem;
    font-weight: 500;
}

.banner-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.banner-stats .stat-item {
    text-align: center;
}

.banner-stats .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-stats .stat-label {
    font-size: 1.05rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Banner Navigation */
.banner-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 4;
    pointer-events: none;
}

.banner-prev {
    left: 30px;
}

.banner-next {
    right: 30px;
}

.banner-prev,
.banner-next {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.15rem;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    pointer-events: auto;
}

.banner-prev:hover,
.banner-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Banner Dots */
.banner-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 4;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active,
.dot:hover {
    background: #fbbf24;
    transform: scale(1.2);
}

/* Stats Section */
/* Modern Stats Section */
.stats-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.03)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.03)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1e3a8a);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-card:hover .stat-number {
    color: #3b82f6;
    transform: scale(1.05);
}

.stat-card:hover .stat-label {
    color: #1e3a8a;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 12px;
    line-height: 1;
    letter-spacing: -0.02em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .stat-card {
        padding: 35px 25px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
}

/* Main Content Layout */
.main-content {
    padding: 60px 0 0;
    width: 100%;
}

.content-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    width: 100%;
}

/* Full Width Sections */
.full-width-sections {
    width: 100%;
}

/* Why Choose LIC Lanka Section */
.why-choose-lic {
    /* background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); */
    padding: 10px 0;
    margin-bottom: 1px;
    position: relative;
    overflow: hidden;
}

.why-choose-lic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(59, 130, 246, 0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.why-choose-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-choose-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.why-choose-header p {
    font-size: 1.3rem;
    color: #64748b;
    margin: 0;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(226, 232, 240, 0.5);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1e40af);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    line-height: 1.3;
}

.feature-card p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.why-choose-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    transform: translateY(-2px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e40af;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design for Why Choose LIC Section */
@media (max-width: 768px) {
    .why-choose-lic {
        padding: 60px 0;
    }
    
    .why-choose-container {
        padding: 0 15px;
    }
    
    .why-choose-header h2 {
        font-size: 2.4rem;
    }
    
    .why-choose-header p {
        font-size: 1.1rem;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 40px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .why-choose-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .why-choose-header h2 {
        font-size: 2rem;
    }
    
    .why-choose-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

/* Featured Products Section */
.featured-products-section {
    margin-top: 40px;
    margin-bottom: 60px;
    width: 100%;
}

.featured-products-section h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #1e293b;
}

.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    width: 100%;
    margin-bottom: 40px;
}

.featured-product-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
    position: relative;
}

.featured-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.product-badge {
    position: absolute;
    top: -10px;
    left: 20px;
    background: #313C96;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
}

.featured-product-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 20px 0 15px 0;
    color: #1e293b;
}

.featured-product-card p {
    color: #64748b;
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 13px;
}

.view-all-btn {
    text-align: center;
}

/* Search Category Section */
.search-category-section {
    background: #f8fafc;
    padding: 0 0 60px 0;
    margin-bottom: 0;
    border-radius: 12px;
}

.search-category-section .container {
    max-width: 100%;
    width: 100%;
}

.search-category-section h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #1e293b;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    width: 100%;
}

.category-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #e2e8f0;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #313C96, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.4rem;
}

.category-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1e293b;
}

.plan-count {
    color: #64748b;
    font-size: 13px;
    margin-bottom: 15px;
}

.plan-list {
    margin-bottom: 20px;
    font-size: 11px;
    color: #64748b;
    line-height: 1.4;
}

.plan-list span {
    display: block;
    margin-bottom: 3px;
}

/* Why LIC Section */
.why-lic-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
    margin-bottom: 60px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.why-lic-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e2e8f0" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23e2e8f0" opacity="0.3"/><circle cx="50" cy="10" r="0.5" fill="%23e2e8f0" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.why-lic-section h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
    position: relative;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #313C96, #3b82f6);
    margin: 20px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: #64748b;
    margin-top: 20px;
}

.why-lic-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .why-lic-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-item {
        min-height: 240px;
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
}

.trust-stats,
.claim-performance {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8f0fe;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.trust-stats::before,
.claim-performance::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #313C96, #3b82f6, #667eea);
}

.claim-performance::before {
    background: linear-gradient(90deg, #059669, #10b981, #34d399);
}

.trust-stats-card:hover,
.claim-performance-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.trust-stats-card::before,
.claim-performance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #313C96, #3b82f6);
}

.claim-performance-card::before {
    background: linear-gradient(90deg, #059669, #10b981);
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #313C96, #3b82f6);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.3);
}

.claim-performance-card .icon-wrapper {
    background: linear-gradient(135deg, #059669, #10b981);
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.3);
}

.icon-wrapper i {
    font-size: 24px;
    color: white;
}

.card-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid #e8f0fe;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    min-height: 120px;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #313C96, #3b82f6);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(30, 64, 175, 0.2);
    border-color: #667eea;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #313C96, #3b82f6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(30, 64, 175, 0.4);
}

.stat-icon i {
    font-size: 2rem;
    color: #e55e5e;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #313C96;
    line-height: 1;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.claim-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.claim-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f0fdf4, #ffffff);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid #bbf7d0;
    position: relative;
    overflow: hidden;
}

.claim-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #059669, #10b981);
}

.claim-item:hover {
    background: linear-gradient(135deg, #dcfce7, #f0fdf4);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.15);
}

.claim-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #059669, #10b981);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.claim-icon i {
    font-size: 1.5rem;
    color: #e55e5e;
}

.claim-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.claim-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #059669;
    line-height: 1.1;
    margin: 0;
}

.claim-label {
    font-size: 1.1rem;
    color: #555;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

.claim-badge {
    display: inline-block;
    background: linear-gradient(135deg, #059669, #10b981);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.3);
}

.claim-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #313C96, #3b82f6);
    color: white;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(49, 60, 150, 0.3);
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(49, 60, 150, 0.4);
}

.feature-item i {
    font-size: 1.1rem;
}

.feature-badge {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #313C96;
    padding: 10px 16px;
    border-radius: 25px;
    font-size: 11px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid #93c5fd;
}

.feature-badge:hover {
    background: linear-gradient(135deg, #bfdbfe, #93c5fd);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
}

.feature-badge i {
    margin-right: 8px;
    font-size: 12px;
}

.stats-note {
    display: flex;
    align-items: center;
    font-size: 11px;
    color: #9ca3af;
    font-style: italic;
    background: #f9fafb;
    padding: 12px 16px;
    border-radius: 8px;
    border-left: 4px solid #e5e7eb;
}

.stats-note i {
    margin-right: 8px;
    color: #6b7280;
}

/* Government Schemes Section */
.government-schemes-section {
    background: #f8fafc;
    padding: 60px 0;
    margin-bottom: 60px;
    border-radius: 12px;
}

.government-schemes-section h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #1e293b;
}

.schemes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    width: 100%;
}

.scheme-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.scheme-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.scheme-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1e293b;
}

.scheme-details {
    margin-bottom: 25px;
}

.detail-item {
    margin-bottom: 10px;
    color: #64748b;
}

.detail-item strong {
    color: #1e293b;
}

/* Calculators Section */
.calculators-section {
    margin-bottom: 60px;
    width: 100%;
}

.calculators-section h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #1e293b;
}

.calculators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    width: 100%;
}

.calculator-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.calculator-header {
    background: linear-gradient(135deg, #313C96, #3b82f6);
    color: white;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.calculator-header i {
    font-size: 1.4rem;
}

.calculator-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
}

.calculator-content {
    padding: 30px;
}

.calculator-content p {
    color: #64748b;
    margin-bottom: 25px;
    text-align: center;
}

.calculator-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 8px;
    color: #374151;
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 13px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #313C96;
}

.calculator-result {
    margin-top: 20px;
    padding: 20px;
    background: #f0f9ff;
    border: 1px solid #0ea5e9;
    border-radius: 6px;
    display: none;
}

.calculator-result.show {
    display: block;
}

.calculator-result h4 {
    color: #313C96;
    margin-bottom: 10px;
}

/* About Section */
.about-section {
    margin-bottom: 60px;
    width: 100%;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.about-text h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1e293b;
}

.about-text p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-features {
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.feature i {
    color: #10b981;
    font-size: 1.15rem;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
}

.sidebar-widget {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.sidebar-widget h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1e293b;
}

.quick-links {
    list-style: none;
}

.quick-links li {
    margin-bottom: 12px;
}

.quick-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #64748b;
    text-decoration: none;
    padding: 10px;
    border-radius: 6px;
    transition: all 0.3s;
}

.quick-links a:hover {
    background: #f0f9ff;
    color: #313C96;
}

.quick-links i {
    width: 20px;
    text-align: center;
}

/* Chatbot */
.chatbot-container {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.chatbot-messages {
    height: 300px;
    overflow-y: auto;
    padding: 15px;
    background: #f8fafc;
}

.chatbot-message {
    margin-bottom: 15px;
    padding: 10px 15px;
    border-radius: 18px;
    max-width: 80%;
}

.bot-message {
    background: #e2e8f0;
    color: #374151;
    margin-right: auto;
}

.user-message {
    /* background: #313C96; */
    color: white;
    margin-left: auto;
}

.chatbot-input {
    display: flex;
    padding: 15px;
    background: white;
    border-top: 1px solid #e2e8f0;
}

.chatbot-input input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    outline: none;
    font-size: 13px;
}

.chatbot-input button {
    margin-left: 10px;
    padding: 10px 15px;
    background: #313C96;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.chatbot-input button:hover {
    background: #1d4ed8;
}

/* Contact Info Widget */
.contact-info-widget {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #313C96, #3b82f6);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.15);
    border-color: #93c5fd;
}

.contact-item:hover::before {
    width: 6px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #313C96, #3b82f6);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-item:hover i {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
}

.contact-item .fab.fa-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.contact-item .fas.fa-envelope {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.contact-item .fas.fa-phone {
    background: linear-gradient(135deg, #059669, #10b981);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.contact-item .contact-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-item strong {
    display: block;
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.contact-item p {
    color: #64748b;
    margin: 0;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    word-break: break-all;
    text-align: center;
}

/* App Downloads */
.app-downloads {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.app-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 8px;
    text-decoration: none;
    color: #374151;
    transition: all 0.3s;
}

.app-link:hover {
    background: #f0f9ff;
    color: #313C96;
}

/* News & Updates Section */
.news-list {
    margin-bottom: 20px;
}

.news-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item:hover {
    background: #f8fafc;
    margin: 0 -15px;
    padding: 15px;
    border-radius: 8px;
}

.news-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #313C96, #3b82f6);
    color: white;
    border-radius: 8px;
    text-align: center;
    flex-shrink: 0;
}

.news-date .day {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.news-date .month {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    opacity: 0.9;
}

.news-content {
    flex: 1;
}

.news-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: #313C96;
    margin: 0 0 5px 0;
    line-height: 1.3;
}

.news-content p {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

.view-all-news {
    text-align: center;
    margin-top: 10px;
}

.view-all-news .btn {
    font-size: 12px;
    padding: 8px 16px;
}

.app-link i {
    font-size: 1.9rem;
    color: #313C96;
}

.app-link strong {
    display: block;
    font-weight: 600;
    margin-bottom: 2px;
}

.app-link small {
    color: #64748b;
    font-size: 11px;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Footer Highlights Section */
.footer-highlights {
    background: linear-gradient(135deg, #313C96 0%, #3b82f6 100%);
    padding: 50px 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.footer-highlights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #1b1a1a;
    transition: all 0.3s ease;
    padding: 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.highlight-item i {
    font-size: 2.5rem;
    color: #fbbf24;
    margin-bottom: 15px;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.highlight-item:hover i {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
}

.highlight-item strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.highlight-item span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.footer-shape-1,
.footer-shape-2,
.footer-shape-3 {
    position: absolute;
    opacity: 0.1;
}

.footer-shape-1 {
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
}

.footer-shape-2 {
    top: 50%;
    right: 0;
    width: 150px;
    height: 150px;
    transform: translateY(-50%);
}

.footer-shape-3 {
    bottom: 0;
    left: 50%;
    width: 100px;
    height: 100px;
    transform: translateX(-50%);
}

.footer-main {
    padding: 60px 0 40px;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
    padding: 30px 0;
    /* border-bottom: 1px solid #374151; */
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: #374151;
    color: #f8f7f3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.contact-item strong {
    display: block;
    color: #8e2929;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-item span {
    color: #94a3b8;
    font-size: 13px;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    padding-bottom: 10px;
    border-bottom: 2px solid #374151;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    background: #111827;
    padding: 30px 0;
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.footer-bottom-left {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.footer-logo img {
    height: 90px;
    width: auto;
    /* filter: brightness(0) invert(1); Makes the logo white for dark background */
}

.footer-info p {
    margin: 0 0 8px 0;
    font-size: 13px;
    color: #94a3b8;
}

.footer-info p strong {
    color: white;
    font-weight: 600;
}

.footer-bottom-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-links span {
    color: #94a3b8;
    font-size: 13px;
    margin-right: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.social-links a:hover i {
    transform: scale(1.1);
}

.social-links i {
    transition: transform 0.3s ease;
    display: inline-block;
}

/* Ensure Font Awesome icons are visible */
.social-links .fab,
.social-links .fas {
    font-family: "Font Awesome 6 Brands", "Font Awesome 6 Free", "FontAwesome", sans-serif;
    font-weight: 900;
    font-style: normal;
    line-height: 1;
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Debug: Make sure icons are visible */
.social-links i {
    color: white !important;
    font-size: 16px !important;
    display: inline-block !important;
    width: auto !important;
    height: auto !important;
}

/* Global Font Awesome fix - Override any inherited font-family */
* {
    box-sizing: border-box;
}

.fab, .fas, .far, .fal, .fad, .fak, i[class*="fa-"] {
    font-family: "Font Awesome 6 Brands", "Font Awesome 6 Free", "FontAwesome", sans-serif !important;
    font-weight: 900 !important;
    font-style: normal !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    display: inline-block !important;
    line-height: 1 !important;
}

/* Specific fixes for brand icons */
.fab {
    font-family: "Font Awesome 6 Brands", "FontAwesome", sans-serif !important;
    font-weight: 400 !important;
}

/* Fallback text styling */
.fallback-text {
    display: none !important;
    font-size: 14px;
    font-weight: bold;
    color: white;
}

/* Show fallback text when Font Awesome fails */
.social-links a {
    position: relative;
}

.social-links a .fallback-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

/* If Font Awesome icons are not visible, show fallback */
.social-links a:not(:has(.fab:not([style*="display: none"]))) .fallback-text {
    display: block;
}

/* Alternative approach - hide Font Awesome icons if they don't render properly */
.social-links .fab {
    display: inline-block;
}

.social-links .fab:not([style*="font-family"]) {
    display: none;
}

.social-links .fab:not([style*="font-family"]) + .fallback-text {
    display: block;
}

/* Footer Logo Placeholder */
.logo-placeholder {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.logo-placeholder h3 {
    margin: 0;
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Header Logo Placeholder */
.logo a .logo-placeholder {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo a .logo-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.logo a .logo-text {
    color: #1e3a8a;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-decoration: none;
}

.logo a:hover .logo-icon {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.logo a:hover .logo-text {
    color: #3b82f6;
}

/* Debug: Ensure header logo icon is visible */
.logo a .logo-icon i {
    color: white !important;
    font-size: 16px !important;
    display: inline-block !important;
    font-family: "Font Awesome 6 Free", "FontAwesome", sans-serif !important;
    font-weight: 900 !important;
    font-style: normal !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

/* Header logo styling */
.logo a .logo-icon .fas {
    display: inline-block !important;
    color: white !important;
    font-size: 16px !important;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
}

.copyright-left p {
    margin: 0 0 5px 0;
    font-size: 13px;
    color: #94a3b8;
}

.copyright-left p strong {
    color: white;
}

.certifications {
    display: flex;
    gap: 15px;
    align-items: center;
}

.certifications img {
    height: 30px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.certifications img:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }
    
    .content-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .calculators-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-contact {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-bottom-right {
        align-items: center;
    }
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #313C96 0%, #1e40af 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: ">";
    margin-left: 10px;
    color: #cbd5e1;
}

.breadcrumb a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #ff0;
}

/* Content Grid Layout */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin: 40px 0;
}

.main-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.sidebar-widget h3 {
    color: #313C96;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e7eb;
}

.quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links li {
    margin-bottom: 10px;
}

.quick-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #374151;
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.quick-links a:hover {
    color: #313C96;
}

/* About Us Specific Styles */
.about-content {
    padding: 40px 0;
}

.lead {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 30px;
    line-height: 1.6;
}

.about-sections {
    margin-top: 40px;
}

.about-section {
    margin-bottom: 40px;
}

.about-section h3 {
    color: #313C96;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    padding: 10px 0;
}

.feature-list i {
    color: #10b981;
    font-size: 1.25rem;
    margin-top: 2px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #374151;
}

.contact-info i {
    color: #313C96;
    width: 20px;
}

/* History Page Styles */
.history-content {
    padding: 40px 0;
}

.timeline {
    position: relative;
    margin: 40px 0;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e5e7eb;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 140px;
}

.timeline-year {
    position: absolute;
    left: 0;
    top: 0;
    background: #313C96;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    min-width: 60px;
    text-align: center;
}

.timeline-content h3 {
    color: #313C96;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.history-highlights {
    margin-top: 60px;
}

.history-highlights .highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.highlight-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

/* Responsive for history highlights */
@media (max-width: 768px) {
    .history-highlights .highlights-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.highlight-item i {
    font-size: 2.5rem;
    color: #313C96;
    margin-bottom: 15px;
    padding: 15px 0;
}

.highlight-item h4 {
    color: #313C96;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.facts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.facts-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
}

.facts-list li:last-child {
    border-bottom: none;
}

/* Mission Vision Page Styles */
.mission-vision-content {
    padding: 40px 0;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
}

.mission-card, .vision-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mission-card::before, .vision-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #313C96, #3b82f6);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #313C96, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.mission-card h2, .vision-card h2 {
    color: #313C96;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.mission-points, .vision-points {
    margin-top: 30px;
    text-align: left;
}

.mission-points h3, .vision-points h3 {
    color: #313C96;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.mission-points ul, .vision-points ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-points li, .vision-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    padding: 5px 0;
}

.mission-points i, .vision-points i {
    color: #10b981;
    font-size: 1rem;
    margin-top: 2px;
}

.values-section {
    margin: 60px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.value-item i {
    font-size: 2.5rem;
    color: #313C96;
    margin-bottom: 20px;
}

.value-item h3 {
    color: #313C96;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.commitment-section {
    margin: 60px 0;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.commitment-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #313C96;
}

.commitment-item h3 {
    color: #313C96;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    padding: 8px 0;
}

.benefits-list i {
    color: #313C96;
    width: 20px;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .timeline::before {
        left: 15px;
    }
    
    .timeline-item {
        padding-left: 50px;
    }
    
    .timeline-year {
        position: relative;
        left: auto;
        top: auto;
        margin-bottom: 15px;
        display: inline-block;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .main-content {
        padding: 20px;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
}

/* Tablet Styles */
@media (max-width: 992px) and (min-width: 769px) {
    .top-right {
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .branch-locator {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .language-selector .goog-te-combo {
        font-size: 12px !important;
        padding: 6px 10px !important;
    }
    
    .font-btn,
    .contrast-btn,
    .screen-reader-btn {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }
    
    .top-bar {
        padding: 10px 0;
    }
    
    .top-left {
        display: none; /* Hide skip links on mobile - they're for screen readers only */
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .top-right {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        align-items: stretch;
    }
    
    .contact-info {
        width: 100%;
        justify-content: center;
    }
    
    .branch-locator {
        font-size: 12px;
        padding: 8px 12px;
        width: 100%;
        justify-content: center;
        min-height: 40px; /* Touch-friendly size */
    }
    
    .branch-locator i {
        font-size: 13px;
    }
    
    .language-selector {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .language-selector #google_translate_element {
        width: 100%;
    }
    
    .language-selector .goog-te-gadget {
        width: 100% !important;
    }
    
    .language-selector .goog-te-combo {
        width: 100% !important;
        max-width: 100%;
        padding: 8px 12px !important;
        min-height: 40px !important;
        font-size: 13px !important;
        border-radius: 5px !important;
        background-color: rgba(255, 255, 255, 0.9) !important;
    }
    
    .accessibility {
        width: 100%;
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    
    .accessibility-label {
        font-size: 11px;
        margin-bottom: 4px;
    }
    
    .accessibility-controls {
        width: 100%;
        justify-content: center;
    }
    
    .font-btn,
    .contrast-btn,
    .screen-reader-btn {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
    }
    
    .font-btn i,
    .contrast-btn i,
    .screen-reader-btn i {
        font-size: 14px;
    }
    
    .nav-content {
        flex-direction: row;
        gap: 0;
        align-items: center;
        position: relative;
        padding-right: 60px; /* Space for mobile menu toggle */
    }
    
    .logo-section {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    
    .logo-section .logo {
        max-width: 150px;
    }
    
    .logo-section .logo img {
        max-width: 100%;
        height: auto;
    }
    
    .nav-menu-container {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 1000;
    }
    
    .search-box {
        min-width: 200px;
        width: 100%;
    }
    
    .nav-menu {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
        padding: 0;
    }
    
    .nav-menu.active {
        display: flex !important;
        flex-direction: column;
    }
    
    .mobile-menu-toggle {
        display: block;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .mobile-menu-toggle button {
        background: none;
        border: none;
        font-size: 24px;
        color: #374151;
        cursor: pointer;
        padding: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 4px;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle button:hover {
        background: #f3f4f6;
        color: #313C96;
    }
    
    .mobile-menu-toggle button.active i::before {
        content: '\f00d'; /* FontAwesome close icon */
    }
    
    .mega-menu {
        flex-direction: column;
        gap: 20px;
        min-width: auto;
        width: 100%;
        padding: 15px;
    }
    
    .mega-menu-column:not(:last-child)::after {
        display: none;
    }
    
    .mega-menu-column {
        border-bottom: 1px solid #e5e7eb;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    
    .mega-menu-column:last-child {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }
    
    .mega-menu-column h4 {
        font-size: 14px;
        margin-bottom: 10px;
        color: #313C96;
        font-weight: 600;
    }
    
    .mega-menu-column a {
        font-size: 13px;
        padding: 10px 0;
        display: block;
        color: #374151;
    }
    
    /* Banner Slider Mobile */
    .hero-banner {
        height: 60vh;
        min-height: 400px;
    }
    
    .banner-text h1 {
        font-size: 2.4rem;
    }
    
    .banner-text h2 {
        font-size: 1.9rem;
    }
    
    .banner-text p {
        font-size: 0.95rem;
    }
    
    .language-options {
        flex-direction: column;
        gap: 15px;
    }
    
    .banner-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .banner-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .banner-prev,
    .banner-next {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }
    
    .banner-prev {
        left: 15px;
    }
    
    .banner-next {
        right: 15px;
    }
    
    .banner-dots {
        bottom: 20px;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-item {
        min-width: 100%;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .calculators-grid {
        grid-template-columns: 1fr;
    }
    
    /* New Sections Mobile */
    .buy-lic-options {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .featured-products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .why-lic-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .trust-stats-card,
    .claim-performance-card {
        padding: 30px 20px;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        margin-bottom: 25px;
    }
    
    .icon-wrapper {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .stats-grid,
    .claim-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-item,
    .claim-item {
        padding: 15px;
    }
    
    .stat-icon,
    .claim-icon {
        width: 40px;
        height: 40px;
        margin-right: 15px;
    }
    
    .stat-icon i,
    .claim-icon i {
        font-size: 16px;
    }
    
    .stat-number,
    .claim-number {
        font-size: 1.5rem;
    }
    
    .claim-features {
        justify-content: center;
    }
    
    .feature-badge {
        font-size: 10px;
        padding: 8px 12px;
    }
    
    .schemes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-copyright {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 8px;
    }
    
    .top-bar {
        padding: 8px 0;
        font-size: 11px;
    }
    
    .top-bar-content {
        gap: 10px;
    }
    
    .top-right {
        gap: 8px;
    }
    
    .contact-info {
        width: 100%;
        justify-content: center;
    }
    
    .branch-locator {
        font-size: 11px;
        padding: 8px 10px;
        width: 100%;
        justify-content: center;
        min-height: 38px;
    }
    
    .branch-locator i {
        font-size: 12px;
    }
    
    .branch-locator span {
        font-size: 11px;
    }
    
    .language-selector .goog-te-combo {
        font-size: 12px !important;
        padding: 7px 10px !important;
        min-height: 38px !important;
    }
    
    .accessibility {
        gap: 6px;
    }
    
    .accessibility-label {
        font-size: 10px;
    }
    
    .font-btn,
    .contrast-btn,
    .screen-reader-btn {
        width: 36px;
        height: 36px;
        min-width: 36px;
        min-height: 36px;
    }
    
    .font-btn i,
    .contrast-btn i,
    .screen-reader-btn i {
        font-size: 12px;
    }
    
    .search-box {
        min-width: 150px;
        width: 100%;
    }
    
    /* Banner Slider Mobile Small */
    .hero-banner {
        height: 50vh;
        min-height: 350px;
    }
    
    .banner-text h1 {
        font-size: 1.8rem;
    }
    
    .banner-text h2 {
        font-size: 1.3rem;
    }
    
    .banner-text p {
        font-size: 0.85rem;
    }
    
    .banner-features {
        gap: 10px;
    }
    
    .feature-item {
        padding: 10px 15px;
    }
    
    .feature-item i {
        font-size: 1.15rem;
    }
    
    .feature-item span {
        font-size: 0.85rem;
    }
    
    .banner-stats .stat-number {
        font-size: 2.4rem;
    }
    
    .banner-stats .stat-label {
        font-size: 0.95rem;
    }
    
    .banner-prev,
    .banner-next {
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }
    
    .banner-prev {
        left: 10px;
    }
    
    .banner-next {
        right: 10px;
    }
    
    .banner-dots {
        bottom: 15px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.4rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .product-card {
        padding: 25px 20px;
    }
    
    .calculators-grid {
        grid-template-columns: 1fr;
    }
    
    .calculator-card {
        margin-bottom: 20px;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-contact {
        flex-direction: column;
        gap: 20px;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .highlight-item {
        padding: 15px;
    }
    
    .highlight-item i {
        font-size: 2rem;
        width: 60px;
        height: 60px;
    }
    
    .highlight-item strong {
        font-size: 1.5rem;
    }
    
    .highlight-item span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .highlight-item {
        padding: 20px 15px;
    }
    
    .highlight-item i {
        font-size: 1.8rem;
        width: 50px;
        height: 50px;
    }
    
    .highlight-item strong {
        font-size: 1.3rem;
    }
    
    .highlight-item span {
        font-size: 0.75rem;
    }
    
    .mega-menu {
        flex-direction: column;
        gap: 20px;
        min-width: 280px;
    }
    
    .mega-menu-column:not(:last-child)::after {
        display: none;
    }
    
    /* New Sections Small Mobile */
    .buy-lic-header h2 {
        font-size: 1.9rem;
    }
    
    .featured-products-section h2,
    .search-category-section h2,
    .why-lic-section h2,
    .government-schemes-section h2 {
        font-size: 1.9rem;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .option-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .option-btn {
        width: 100%;
        max-width: 250px;
    }
    
    .claim-features {
        justify-content: center;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .container {
        padding: 0 5px;
    }
    
    .banner-text h1 {
        font-size: 1.4rem;
    }
    
    .banner-text h2 {
        font-size: 1.05rem;
    }
    
    .product-card {
        padding: 20px 15px;
    }
    
    .calculator-card {
        padding: 20px 15px;
    }
    
    .sidebar-widget {
        padding: 20px 15px;
    }
}

/* Large Screens */
@media (min-width: 1400px) {
    .container {
        padding: 0 50px;
    }
    
    .hero-banner {
        height: 50vh;
    }
    
    .banner-text h1 {
        font-size: 4rem;
    }
    
    .banner-text h2 {
        font-size: 3rem;
    }
}

/* Ultra Wide Screens */
@media (min-width: 1920px) {
    .container {
        padding: 0 100px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
    
    .calculators-grid {
        grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    }
}

/* Mobile Touch Improvements */
@media (max-width: 768px) {
    .btn {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .banner-prev,
    .banner-next {
        min-height: 44px;
        min-width: 44px;
    }
    
    .dot {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .language-option {
        min-height: 44px;
        padding: 12px 20px;
    }
    
    .feature-item {
        min-height: 44px;
    }
    
    .nav-menu a {
        min-height: 44px;
        display: flex;
        align-items: center;
        padding: 12px 0;
    }
    
    .dropdown-content a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-banner {
        height: 100vh;
        min-height: 500px;
    }
    
    .banner-text h1 {
        font-size: 1.9rem;
    }
    
    .banner-text h2 {
        font-size: 1.4rem;
    }
    
    .banner-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .banner-nav,
    .banner-dots,
    .sidebar {
        display: none;
    }
    
    .hero-banner {
        height: auto;
        min-height: auto;
    }
    
    .banner-slide {
        position: static;
        opacity: 1;
    }
    
    .main-content {
        padding: 20px 0;
    }
    
    .content-layout {
        grid-template-columns: 1fr;
    }
}

/* Virtual Assistant Chatbot Styles - Modern & Dynamic */
.virtual-assistant {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: 'Inter', sans-serif;
}

/* Assistant Toggle Button - Modern Design */
.assistant-toggle {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 60px;
    padding: 18px 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 160px;
    position: relative;
    overflow: hidden;
}

.virtual-assistant.chat-open .assistant-toggle {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8) translateY(20px);
    pointer-events: none;
}

.assistant-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.assistant-toggle:hover::before {
    left: 100%;
}

.assistant-toggle:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.assistant-toggle:active {
    transform: translateY(-1px) scale(1.02);
}

.assistant-icon {
    font-size: 26px;
    animation: float 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.assistant-label {
    font-weight: 700;
    font-size: 15px;
    white-space: nowrap;
    position: relative;
    z-index: 2;
    letter-spacing: 0.5px;
}

.assistant-close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    font-size: 12px;
    padding: 0;
    margin-left: 8px;
    transition: all 0.2s ease;
    position: relative;
    z-index: 3;
    flex-shrink: 0;
}

.assistant-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.assistant-close-btn:active {
    transform: scale(0.95);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Chat Window - Modern Design */
.assistant-chat {
    position: absolute;
    bottom: 90px;
    right: 0;
    width: 320px;
    height: 450px;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.1);
    display: none;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(102, 126, 234, 0.1);
    backdrop-filter: blur(20px);
    position: relative;
}

.assistant-chat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.3), transparent);
}

.assistant-chat.active {
    display: flex;
    animation: slideInUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Chat Header - Modern Design */
.chat-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.chat-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.chat-title {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
    flex: 1;
    min-width: 0;
}

.assistant-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: pulse 2s infinite;
    position: relative;
    flex-shrink: 0;
}

.assistant-avatar::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #10b981, #34d399, #10b981);
    border-radius: 50%;
    z-index: -1;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.assistant-info {
    flex: 1;
    min-width: 0;
}

.assistant-info h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.1;
    max-width: 100px;
}

.status {
    font-size: 12px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    margin-top: 2px;
}

.status::before {
    content: '';
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
    margin-right: 5px;
}

.close-chat {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 14px;
    cursor: pointer;
    padding: 6px 14px;
    border-radius: 999px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-shrink: 0;
    margin-left: 15px;
    font-weight: 600;
}

.close-chat:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

/* Chat Messages - Modern Design */
.chat-messages {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.chat-messages::-webkit-scrollbar {
    width: 4px;
}

.chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(102, 126, 234, 0.3);
    border-radius: 2px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: rgba(102, 126, 234, 0.5);
}

.message {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    animation: messageSlideIn 0.3s ease-out;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.user-message {
    align-items: flex-end;
    margin-left: auto;
}

.assistant-message {
    align-items: flex-start;
}

.message-content {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 18px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.user-message .message-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-bottom-right-radius: 6px;
    margin-left: auto;
    position: relative;
}

.user-message .message-content::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: -8px;
    width: 0;
    height: 0;
    border-left: 8px solid #764ba2;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.assistant-message .message-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    color: #374151;
    border: 1px solid rgba(102, 126, 234, 0.1);
    border-bottom-left-radius: 6px;
    position: relative;
}

.assistant-message .message-content::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -8px;
    width: 0;
    height: 0;
    border-right: 8px solid #f8fafc;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.message-content p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 500;
}

.message-time {
    font-size: 11px;
    color: #9ca3af;
    margin-top: 8px;
    padding: 0 8px;
    font-weight: 500;
}

/* Chat Input - Modern Design */
.chat-input {
    padding: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-top: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
}

.chat-input::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.3), transparent);
}

.input-group {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    position: relative;
}

.input-group input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid rgba(102, 126, 234, 0.1);
    border-radius: 30px;
    font-size: 13px;
    outline: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    font-weight: 500;
}

.input-group input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    background: white;
    transform: translateY(-1px);
}

.input-group input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.input-group button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.input-group button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.input-group button:hover::before {
    width: 100%;
    height: 100%;
}

.input-group button:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.input-group button:active {
    transform: scale(1.05) rotate(2deg);
}

.input-group button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Quick Actions - Modern Design */
.quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.quick-btn {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: #374151;
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 25px;
    padding: 10px 18px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.quick-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s;
}

.quick-btn:hover::before {
    left: 100%;
}

.quick-btn:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #667eea;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.quick-btn:active {
    transform: translateY(-1px) scale(1.02);
}

/* Responsive Design for Chatbot */
@media (max-width: 768px) {
    .virtual-assistant {
        bottom: 20px;
        right: 20px;
    }
    
    .assistant-chat {
        width: 300px;
        height: 420px;
        bottom: 70px;
    }
    
    .assistant-toggle {
        min-width: 120px;
        padding: 12px 16px;
    }
    
    .assistant-label {
        font-size: 13px;
    }
    
    .assistant-close-btn {
        width: 22px;
        height: 22px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .assistant-chat {
        width: 300px;
        height: 400px;
        right: -10px;
    }
    
    .assistant-toggle {
        min-width: 100px;
        padding: 10px 14px;
    }
    
    .assistant-icon {
        font-size: 20px;
    }
    
    .assistant-label {
        font-size: 12px;
    }
    
    .assistant-close-btn {
        width: 20px;
        height: 20px;
        font-size: 10px;
        margin-left: 6px;
    }
}

/* Dark mode support for chatbot */
@media (prefers-color-scheme: dark) {
    .assistant-chat {
        background: #1f2937;
        border-color: #374151;
    }
    
    .chat-messages {
        background: #111827;
    }
    
    .assistant-message .message-content {
        background: #374151;
        color: #f9fafb;
        border-color: #4b5563;
    }
    
    .chat-input {
        background: #1f2937;
        border-top-color: #374151;
    }
    
    .input-group input {
        background: #374151;
        border-color: #4b5563;
        color: #f9fafb;
    }
    
    .quick-btn {
        background: #374151;
        color: #f9fafb;
        border-color: #4b5563;
    }
    
    .quick-btn:hover {
        background: #4b5563;
    }
}

/* Enhanced Why LIC Section Styles */
.stats-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: center;
}

.stats-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #313C96, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
}

.trust-stats h3,
.claim-performance h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #313C96;
    margin: 0;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #313C96;
    font-size: 20px;
}

.stat-progress {
    width: 100%;
    height: 8px;
    background: #f1f5f9;
    border-radius: 4px;
    overflow: hidden;
    margin-top: auto;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #313C96, #3b82f6, #667eea);
    border-radius: 4px;
    transition: width 1.2s ease;
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.claim-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #059669;
    font-size: 20px;
}

.claim-badge {
    display: inline-block;
    background: linear-gradient(135deg, #059669, #10b981);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 8px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #313C96, #3b82f6);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
    color: #333;
}

.feature-item i {
    font-size: 16px;
}

/* Enhanced About Section Styles */
.about-section {
    margin: 30px 0;
    padding: 25px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #313C96;
}

.about-section h3 {
    color: #313C96;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-section h3::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #313C96, #3b82f6);
    border-radius: 2px;
}

.about-section p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #374151;
}

.about-section p:last-child {
    margin-bottom: 0;
}

.about-section strong {
    color: #313C96;
    font-weight: 700;
}

.about-features {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.about-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 14px;
    color: #374151;
    transition: all 0.3s ease;
}

.about-features .feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-features .feature i {
    color: #10b981;
    font-size: 16px;
    flex-shrink: 0;
}

/* Responsive Design for About Section */
@media (max-width: 768px) {
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-section {
        padding: 20px;
        margin: 20px 0;
    }
    
    .about-section h3 {
        font-size: 1.1rem;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #313C96, #3b82f6);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
    transition: all 0.3s ease;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(30, 64, 175, 0.4);
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
}

.scroll-to-top:active {
    transform: translateY(-1px);
}

/* Responsive Design for Scroll to Top */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        bottom: 15px;
        left: 15px;
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

/* ================================
   LEADERSHIP PAGE STYLES
   ================================ */

/* Leadership Content Section */
.leadership-content {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.leadership-full-width {
    width: 100%;
    max-width: 100%;
}

.intro-section {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.intro-section h2 {
    color: #313C96;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.intro-section h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #313C96, #10b981);
    border-radius: 2px;
}

.intro-section .lead {
    font-size: 1.15rem;
    color: #64748b;
    line-height: 1.8;
    margin-top: 30px;
}

/* Section Headers */
.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #e2e8f0;
}

.section-header i {
    font-size: 2rem;
    color: #313C96;
}

.section-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.section-description {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Executive Section */
.executive-section {
    margin-bottom: 60px;
}

/* Leadership Grid */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Leader Card */
.leader-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid #e2e8f0;
}

.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(49, 60, 150, 0.15);
    border-color: #313C96;
}

.leader-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 300px 1fr;
}

.leader-card.featured .leader-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Leader Badge */
.leader-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #313C96, #10b981);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(49, 60, 150, 0.3);
}

/* Leader Image */
.leader-image {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #313C96, #10b981);
}

.leader-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.leader-card:hover .leader-image img {
    transform: scale(1.05);
}

/* Leader Overlay */
.leader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(49, 60, 150, 0.9), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
}

.leader-card:hover .leader-overlay {
    opacity: 1;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #313C96;
    font-size: 18px;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.leader-card:hover .social-links a {
    transform: translateY(0);
    opacity: 1;
}

.leader-card:hover .social-links a:nth-child(1) {
    transition-delay: 0.1s;
}

.leader-card:hover .social-links a:nth-child(2) {
    transition-delay: 0.2s;
}

.social-links a:hover {
    background: #10b981;
    color: white;
    transform: translateY(-5px) scale(1.1);
}

/* Leader Info */
.leader-info {
    padding: 30px;
}

.leader-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.leader-info .designation {
    color: #313C96;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.leader-info .experience {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Qualifications Badges */
.qualifications {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.qualifications .badge {
    background: linear-gradient(135deg, #313C96, #10b981);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Leader Details */
.leader-details {
    padding-top: 20px;
    border-top: 2px solid #e2e8f0;
}

.leader-details p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Expertise Tags */
.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.expertise-tags span {
    background: #f1f5f9;
    color: #334155;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.expertise-tags span i {
    color: #10b981;
    font-size: 0.75rem;
}

.expertise-tags span:hover {
    background: #313C96;
    color: white;
}

.expertise-tags span:hover i {
    color: white;
}

/* Board Section */
.board-section {
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.board-member {
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.board-member::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #313C96, #10b981);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.board-member:hover::before {
    transform: scaleX(1);
}

.board-member:hover {
    border-color: #313C96;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(49, 60, 150, 0.12);
}

.board-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #313C96, #10b981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.board-member:hover .board-icon {
    transform: scale(1.1) rotate(5deg);
}

.board-icon i {
    font-size: 2rem;
    color: white;
}

.board-member h4 {
    color: #313C96;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.board-name {
    color: #1e293b;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 10px 0;
}

.board-role {
    display: inline-block;
    background: #f1f5f9;
    color: #64748b;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.board-bio {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 15px;
}

/* Leadership Stats */
.leadership-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.stat-card {
    /* background: linear-gradient(135deg, #313C96, #10b981); */
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
    box-shadow: 0 8px 25px rgba(49, 60, 150, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(49, 60, 150, 0.3);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 2rem;
}

.stat-content h4 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-content p {
    font-size: 1rem;
    opacity: 0.95;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .leader-card.featured {
        grid-column: span 1;
        display: block;
    }
    
    .leader-card.featured .leader-image img {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .intro-section h2 {
        font-size: 2rem;
    }
    
    .section-header h3 {
        font-size: 1.5rem;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
    }
    
    .board-grid {
        grid-template-columns: 1fr;
    }
    
    .leadership-stats {
        grid-template-columns: 1fr;
    }
    
    .leader-info {
        padding: 20px;
    }
    
    .board-section {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .intro-section h2 {
        font-size: 1.75rem;
    }
    
    .leader-info h4 {
        font-size: 1.25rem;
    }
    
    .stat-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon i {
        font-size: 1.5rem;
    }
    
    .stat-content h4 {
        font-size: 2rem;
    }
}

/* ================================
   OPERATIONS PAGE STYLES
   ================================ */

/* Operations Content */
.operations-content {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.operations-full-width {
    width: 100%;
    max-width: 100%;
}

/* Operations Contact Row */
.operations-contact-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.contact-operations-card,
.operating-hours-card {
    background: white;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-operations-card::before,
.operating-hours-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #313C96, #10b981);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-operations-card:hover::before,
.operating-hours-card:hover::before {
    transform: scaleX(1);
}

.contact-operations-card:hover,
.operating-hours-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(49, 60, 150, 0.15);
    border-color: #313C96;
}

.contact-operations-card .card-icon,
.operating-hours-card .card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #313C96, #10b981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-operations-card:hover .card-icon,
.operating-hours-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.contact-operations-card h3,
.operating-hours-card h3 {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #475569;
    font-size: 1.05rem;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-details p:hover {
    background: #f8fafc;
    color: #313C96;
}

.contact-details p i {
    color: #10b981;
    font-size: 1.2rem;
    width: 25px;
}

.contact-details p strong {
    font-weight: 600;
}

/* Hours Details */
.hours-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid #313C96;
    transition: all 0.3s ease;
}

.hour-item:hover {
    background: #eef2ff;
    transform: translateX(5px);
}

.hour-item.emergency {
    background: linear-gradient(135deg, #313C96, #10b981);
    border-left: 4px solid #10b981;
}

.hour-item.emergency .day,
.hour-item.emergency .time {
    color: white;
    font-weight: 700;
}

.hour-item .day {
    font-weight: 600;
    color: #334155;
    font-size: 1rem;
}

.hour-item .time {
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Operations Grid */
.operations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.operation-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.operation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(49, 60, 150, 0.15);
    border-color: #313C96;
}

.operation-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #313C96, #10b981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.operation-card:hover .operation-icon {
    transform: scale(1.1) rotate(5deg);
}

.operation-icon i {
    font-size: 2rem;
    color: white;
}

.operation-card h3 {
    color: #1e293b;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.operation-card p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.operation-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.operation-card ul li {
    color: #475569;
    font-size: 0.95rem;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.operation-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Operational Stats */
.operational-stats {
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.operational-stats h2 {
    color: #1e293b;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 25px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: #313C96;
    box-shadow: 0 8px 25px rgba(49, 60, 150, 0.12);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #313C96;
    margin-bottom: 10px;
}

.stat-label {
    color: #64748b;
    font-size: 1rem;
    font-weight: 500;
}

/* Technology Section */
.technology-section {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #313C96, #10b981);
    border-radius: 20px;
    color: white;
    text-align: center;
}

.technology-section h2 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.technology-section > p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 30px;
}

.tech-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.tech-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.tech-item h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.tech-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .operations-contact-row {
        grid-template-columns: 1fr;
    }
    
    .operations-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .operations-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tech-features {
        grid-template-columns: 1fr;
    }
    
    .contact-operations-card,
    .operating-hours-card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .operations-content h2 {
        font-size: 1.75rem;
    }
}

/* Product Details Styling */
.product-id {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-features {
    margin: 1rem 0;
    padding: 0.75rem 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.product-features small {
    display: block;
    font-size: 0.85rem;
    color: #555;
    margin: 0.35rem 0;
    padding-left: 1rem;
    position: relative;
}

.product-features small i {
    position: absolute;
    left: 0;
    color: #667eea;
    font-size: 0.75rem;
}

.products-subtitle {
    text-align: center;
    color: #666;
    font-size: 1rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

/* Featured Products Enhancement */
.featured-product-card {
    transition: all 0.3s ease;
}

.featured-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.featured-product-card .product-id {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Category Card - Count Updates */
.plan-count {
    font-weight: 600;
    color: #667eea;
    font-size: 1.1rem;
    margin: 1rem 0;
}

/* Footer Improvements */
.footer-logo-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    max-height: 90px;
    width: auto;
}

.footer-info h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.footer-info p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.25rem;
}

.social-section,
.footer-links-section {
    margin-bottom: 1.5rem;
}

.social-section h4,
.footer-links-section h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: #667eea;
    transform: translateY(-2px);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.certifications {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cert-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Header Accessibility Controls */
.accessibility {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.accessibility-label {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

.accessibility-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.font-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    /* background: white; */
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.font-btn:hover {
    background: #f0f0f0;
    border-color: #667eea;
}

.font-btn.active {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.font-btn i {
    font-size: 0.7rem;
}

/* Virtual Assistant Chatbot Styles - LIC LIVI Design */
.virtual-assistant {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 9999;
    font-family: 'Inter', sans-serif;
}

/* Assistant Toggle Button - LIC LIVI Style */
.assistant-toggle {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 5px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 160px;
    position: relative;
    overflow: hidden;
}

.virtual-assistant.chat-open .assistant-toggle {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8) translateY(20px);
    pointer-events: none;
}

.assistant-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.assistant-toggle:hover::before {
    left: 100%;
}

.assistant-toggle:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.assistant-toggle:active {
    transform: translateY(-1px) scale(1.02);
}

.assistant-icon {
    font-size: 26px;
    animation: float 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.assistant-label {
    font-weight: 700;
    font-size: 15px;
    white-space: nowrap;
    position: relative;
    z-index: 2;
    letter-spacing: 0.5px;
}

.assistant-close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    font-size: 12px;
    padding: 0;
    margin-left: 8px;
    transition: all 0.2s ease;
    position: relative;
    z-index: 3;
    flex-shrink: 0;
}

.assistant-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.assistant-close-btn:active {
    transform: scale(0.95);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

/* Chat Window - LIC LIVI Style */
.assistant-chat {
    position: absolute;
    bottom: 0px;
    right: 0;
    width: 320px;
    height: 450px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.assistant-chat.active {
    display: flex;
    animation: slideInUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Chat Header - LIC LIVI Style */
.chat-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.chat-title {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.assistant-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: pulse 2s infinite;
    position: relative;
    flex-shrink: 0;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.assistant-info {
    flex: 1;
    min-width: 0;
}

.assistant-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.assistant-info .status {
    font-size: 13px;
    opacity: 0.9;
    font-weight: 500;
    margin-top: 2px;
    display: block;
}

.close-chat {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 14px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.close-chat:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.3);
}

.close-chat:active {
    transform: translateY(0);
}

/* Chat Messages */
.chat-messages {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    background: #f9fafb;
}

.message {
    margin-bottom: 15px;
}

.assistant-message .message-content {
    background: white;
    padding: 12px 16px;
    border-radius: 16px 16px 16px 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 85%;
    border: 1px solid #e5e7eb;
}

.assistant-message .message-content p {
    margin: 0;
    color: #374151;
    line-height: 1.5;
}

.assistant-message .message-content strong {
    color: #1e40af;
    font-weight: 600;
}

.message-time {
    font-size: 11px;
    color: #9ca3af;
    margin-top: 5px;
    text-align: right;
}

/* Advertisement Banner */
.chat-banner {
    background: linear-gradient(135deg, #f97316 0%, #fbbf24 100%);
    margin: 0 20px 20px;
    border-radius: 12px;
    padding: 20px;
    color: white;
}

.banner-content {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.banner-left h3 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 700;
}

.banner-logo {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 5px;
    opacity: 0.9;
}

.banner-left p {
    margin: 0;
    font-size: 12px;
    opacity: 0.8;
}

.banner-right h4 {
    margin: 0 0 10px 0;
    font-size: 14px;
    font-weight: 600;
}

.banner-right ul {
    margin: 0 0 10px 0;
    padding-left: 15px;
    font-size: 11px;
    line-height: 1.4;
}

.banner-right li {
    margin-bottom: 3px;
}

.banner-note {
    font-size: 10px;
    opacity: 0.8;
    margin: 0;
    font-style: italic;
}

/* Quick Action Cards */
.quick-action-cards {
    display: flex;
    gap: 10px;
    padding: 0 20px 20px;
}

.action-card {
    flex: 1;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 15px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.action-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.card-icon {
    font-size: 24px;
    color: #3b82f6;
    margin-bottom: 8px;
}

.action-card span {
    font-size: 12px;
    font-weight: 500;
    color: #374151;
    display: block;
}

/* Chat Input */
.chat-input {
    padding: 20px;
    background: white;
    border-top: 1px solid #e5e7eb;
}

.input-group {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f9fafb;
    border-radius: 25px;
    padding: 8px 15px;
    border: 1px solid #e5e7eb;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #3b82f6;
    color: white;
    padding: 6px 10px;
    border-radius: 15px;
    font-size: 12px;
    position: relative;
}

.lang-text {
    font-weight: 600;
}

.lang-badge {
    background: #1e40af;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 8px;
    font-weight: 600;
}

.input-group input {
    flex: 1;
    border: none;
    background: none;
    outline: none;
    font-size: 14px;
    color: #374151;
    padding: 8px 0;
}

.input-group input::placeholder {
    color: #9ca3af;
}

#sendMessage {
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

#sendMessage:hover {
    background: #1e40af;
    transform: scale(1.05);
}

/* Responsive Design for Chatbot */
@media (max-width: 768px) {
    .virtual-assistant {
        bottom: 20px;
        right: 20px;
    }
    
    .assistant-chat {
        width: 300px;
        height: 420px;
        bottom: 70px;
    }
    
    .assistant-toggle {
        min-width: 120px;
        padding: 12px 16px;
    }
    
    .assistant-label {
        font-size: 13px;
    }
    
    .banner-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .quick-action-cards {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .assistant-chat {
        width: 280px;
        height: 400px;
        right: -10px;
    }
    
    .assistant-toggle {
        min-width: 100px;
        padding: 10px 14px;
    }
    
    .assistant-icon {
        font-size: 20px;
    }
    
    .assistant-label {
        font-size: 12px;
    }
}