/* CSS Variables */
:root {
    --font-size: 16px;
    --background: #ffffff;
    --foreground: #252525;
    --card: #ffffff;
    --card-foreground: #252525;
    --primary: #030213;
    --primary-foreground: #ffffff;
    --secondary: #f5f5f7;
    --secondary-foreground: #030213;
    --muted: #ececf0;
    --muted-foreground: #717182;
    --accent: #e9ebef;
    --accent-foreground: #030213;
    --destructive: #d4183d;
    --destructive-foreground: #ffffff;
    --border: rgba(0, 0, 0, 0.1);
    --input: transparent;
    --input-background: #f3f3f5;
    --font-weight-medium: 500;
    --font-weight-normal: 400;
    --radius: 0.625rem;
}

.dark {
    --background: #252525;
    --foreground: #ffffff;
    --card: #252525;
    --card-foreground: #ffffff;
    --primary: #ffffff;
    --primary-foreground: #252525;
    --secondary: #3a3a3a;
    --secondary-foreground: #ffffff;
    --muted: #3a3a3a;
    --muted-foreground: #b0b0b0;
    --accent: #3a3a3a;
    --accent-foreground: #ffffff;
    --border: rgba(255, 255, 255, 0.1);
}

.high-contrast {
    --background: #ffffff;
    --foreground: #000000;
    --primary: #000000;
    --border: #000000;
}

/* IMPORTANT: Exclude WordPress admin area from theme styles */
/* Theme stylesheet should NOT load in admin (handled in functions.php) */
/* These rules are a safety net in case stylesheet accidentally loads in admin */

/* Ensure admin form elements are not affected by theme styles */
.wp-admin input,
.wp-admin textarea,
.wp-admin select,
.wp-admin button {
    box-sizing: border-box !important;
    margin: revert !important;
    padding: revert !important;
    font-family: revert !important;
    font-size: revert !important;
    line-height: revert !important;
    color: revert !important;
    background: revert !important;
    border: revert !important;
    display: revert !important;
    width: revert !important;
    height: revert !important;
}

/* Theme reset styles - only for frontend */
html:not(.wp-admin),
body:not(.wp-admin) {
    margin: 0 !important;
    padding: 0;
}

body:not(.wp-admin) *,
body:not(.wp-admin) *::before,
body:not(.wp-admin) *::after {
    box-sizing: border-box;
}

/* Exclude admin area from theme body styles */
html:not(.wp-admin) {
    font-size: var(--font-size);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body:not(.wp-admin) {
    margin: 0 !important;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    overflow-x: hidden;
    transition: color 0.3s, background 0.3s;
}

/* Container - Override Bootstrap's container to maintain theme design */
.container {
    max-width: 1200px !important; /* Override Bootstrap's default max-width */
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Prevent Bootstrap from overriding theme-specific container styles */
.site-header .container,
.footer-main-content .container,
.newsletter-section .container {
    max-width: 1200px !important;
}

/* Bootstrap Conflict Prevention - Protect theme styles */
/* Override Bootstrap button styles to maintain theme design */
.hero-btn-primary,
.hero-btn-secondary,
.service-learn-more,
.newsletter-btn,
.btn-apply-loan {
    /* These classes will override Bootstrap's .btn styles */
    all: unset; /* Reset Bootstrap styles */
    display: inline-flex;
    align-items: center;
    /* Rest of your custom button styles will apply */
}

/* Protect theme form styles from Bootstrap */
.newsletter-input,
.calculator-slider,
.search-input,
.mobile-search-input {
    /* Override Bootstrap form-control styles */
    all: unset;
    /* Your custom form styles will apply */
}

/* Protect theme typography from Bootstrap resets */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    line-height: 1.6 !important;
}

/* Prevent Bootstrap grid from affecting existing layouts */
/* Only use Bootstrap grid classes when explicitly needed */
/* Note: Bootstrap grid classes (.row, .col, [class*="col-"]) are available but won't affect existing layouts unless explicitly used */

/* Responsive container padding */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
}

/* Prevent horizontal overflow */
img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

table {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    display: block;
}

/* New Header Styles - Normal static header (no fixed/sticky positioning) */
.new-header {
    position: relative; /* Always relative - normal document flow */
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    /* No transitions needed for static header */
    transform: none;
    opacity: 1;
}

/* Removed: header-sticky-scrolled - header is always static */
/* Removed: header-hidden - header is always visible */
/* Removed: header-visible - header is always visible */

/* Hide header when mobile menu or language dropdown is open */
body.mobile-menu-open .new-header,
body.language-dropdown-open .new-header {
    /* Keep header visible even when menu is open */
    transform: none;
    opacity: 1;
    pointer-events: auto;
}

/* Body padding removed to prevent white space */
body {
    padding-top: 0 !important;
}

/* Ensure slider and hero sections start right after header with no gap */
.new-hero-slider-wrapper,
.slider-container,
.hero-banner-section,
.hero-banner-wrapper {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* When header is hidden, ensure no white space */
body.header-is-hidden .new-hero-slider-wrapper,
body.header-is-hidden .slider-container,
body.header-is-hidden .hero-banner-section,
body.header-is-hidden .hero-banner-wrapper {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Ensure first content element after header has no margin */
.new-header + * {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* ==========================================================================
   Mobile Header (Separate from Desktop)
   ========================================================================== */

/* Desktop Header Wrapper - Hide on Mobile */
.desktop-header-wrapper {
    display: block;
}

/* Mobile Header Top - Show only on Mobile */
.mobile-header-top {
    display: none;
    position: relative; /* Changed from fixed to relative - normal document flow */
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1001;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-bottom: 1px solid #e2e8f0;
}

.mobile-header-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 12px 15px;
    gap: 8px;
}

/* Mobile Drawer Toggle Button */
.mobile-drawer-toggle {
    background: #1e3a8a;
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.mobile-drawer-toggle:hover {
    background: #1e40af;
    transform: scale(1.05);
}

.mobile-drawer-toggle:active {
    transform: scale(0.95);
}

/* Mobile Header Logo */
.mobile-header-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    margin-right: auto;
}

.mobile-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.mobile-logo-image {
    max-height: 45px;
    width: auto;
    object-fit: contain;
}

.mobile-logo-placeholder {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
}

/* Mobile Header Actions (Search + DICGC) */
.mobile-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.mobile-search-bar {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 0;
}

.mobile-search-icon {
    position: absolute;
    left: 12px;
    color: #94a3b8;
    font-size: 14px;
    z-index: 2;
    pointer-events: none;
}

.mobile-search-form {
    margin: 0;
    padding: 0;
    width: 100%;
}

.mobile-search-input {
    width: 120px;
    padding: 8px 12px 8px 32px;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    font-size: 13px;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.mobile-search-input:focus {
    outline: none;
    border-color: #60a5fa;
    box-shadow: 0 0 0 2px rgba(96, 165, 250, 0.1);
    width: 160px;
}

/* Responsive adjustments for tablet/mobile screens (400px - 1020px) */
@media (min-width: 400px) and (max-width: 1020px) {
    .mobile-header-container {
        padding: 10px 12px;
        gap: 6px;
        justify-content: flex-start;
    }
    
    .mobile-header-logo {
        max-width: 100px;
        margin-right: 8px;
        flex: 0 0 auto;
    }
    
    .mobile-logo-image {
        max-height: 40px;
    }
    
    .mobile-search-input {
        width: 100px;
        padding: 7px 10px 7px 28px;
        font-size: 12px;
    }
    
    .mobile-search-input:focus {
        width: 140px;
    }
    
    .mobile-search-icon {
        left: 10px;
        font-size: 13px;
    }
    
    .mobile-header-actions {
        gap: 6px;
        margin-left: auto;
    }
    
    .mobile-dicgc-logo {
        height: 35px;
        min-width: 50px;
    }
    
    .mobile-dicgc-image {
        max-height: 35px;
    }
    
    .mobile-drawer-toggle {
        width: 40px;
        height: 40px;
        font-size: 18px;
        flex-shrink: 0;
    }
}

/* Extra small screens (below 400px) */
@media (max-width: 399px) {
    .mobile-header-container {
        padding: 8px 10px;
        gap: 4px;
        justify-content: flex-start;
    }
    
    .mobile-header-logo {
        max-width: 80px;
        margin-right: 6px;
        flex: 0 0 auto;
    }
    
    .mobile-logo-image {
        max-height: 35px;
    }
    
    .mobile-search-input {
        width: 80px;
        padding: 6px 8px 6px 24px;
        font-size: 11px;
    }
    
    .mobile-search-input:focus {
        width: 120px;
    }
    
    .mobile-search-icon {
        left: 8px;
        font-size: 12px;
    }
    
    .mobile-header-actions {
        gap: 4px;
        margin-left: auto;
    }
    
    .mobile-dicgc-logo {
        height: 30px;
        min-width: 45px;
    }
    
    .mobile-dicgc-image {
        max-height: 30px;
    }
    
    .mobile-drawer-toggle {
        width: 36px;
        height: 36px;
        font-size: 16px;
        flex-shrink: 0;
    }
}

.mobile-dicgc-logo {
    min-width: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-shrink: 0;
}

.mobile-dicgc-logo .dicgc-text-label {
    font-size: 10px;
    color: #64748b;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
}

.mobile-dicgc-image {
    max-height: 40px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Mobile Offcanvas Drawer Menu (Android Style) */
.mobile-drawer-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    z-index: 10000;
    display: none;
    pointer-events: none;
}

.mobile-drawer-menu.active {
    display: block;
    pointer-events: auto;
}

.mobile-drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-drawer-menu.active .mobile-drawer-overlay {
    opacity: 1;
}

.mobile-drawer-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    max-width: 320px;
    height: 100%;
    background: linear-gradient(180deg, #1e3a8a 0%, #1e40af 50%, #1e3a8a 100%);
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.mobile-drawer-menu.active .mobile-drawer-content {
    transform: translateX(0);
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.mobile-drawer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.drawer-logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px;
}

.drawer-bank-name {
    margin: 0;
    color: white;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mobile-drawer-close {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    padding: 0;
    flex-shrink: 0;
}

.mobile-drawer-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.mobile-drawer-body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 0;
}

/* Mobile Drawer Menu List */
.mobile-drawer-menu-list {
    list-style: none;
    margin: 0;
    padding: 12px 0;
    width: 100%;
}

.mobile-drawer-menu-list li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
}

.mobile-drawer-menu-list li:last-child {
    border-bottom: none;
}

.mobile-drawer-menu-list > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: transparent;
    border-left: 3px solid transparent;
    min-height: 52px;
    width: 100%;
    box-sizing: border-box;
}

.mobile-drawer-menu-list > li > a:hover,
.mobile-drawer-menu-list > li > a:focus {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-left-color: #f97316;
    padding-left: 24px;
}

/* Dropdown Arrow for Items with Submenu in Drawer */
.mobile-drawer-menu-list > li.menu-item-has-children > a::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 14px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.mobile-drawer-menu-list > li.menu-item-has-children > a.active::after,
.mobile-drawer-menu-list > li.menu-item-has-children.open > a::after {
    transform: rotate(180deg);
    opacity: 1;
}

/* Submenu in Drawer */
.mobile-drawer-menu-list .sub-menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-drawer-menu-list .sub-menu.active,
.mobile-drawer-menu-list .sub-menu.show {
    display: block;
}

.mobile-drawer-menu-list .sub-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-drawer-menu-list .sub-menu li:last-child {
    border-bottom: none;
}

.mobile-drawer-menu-list .sub-menu a {
    display: flex;
    align-items: center;
    padding: 14px 20px 14px 44px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    background: transparent;
    border-left: 3px solid transparent;
    min-height: 48px;
}

.mobile-drawer-menu-list .sub-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-left-color: #f97316;
    padding-left: 48px;
}

/* Third Level Submenu in Drawer */
.mobile-drawer-menu-list .sub-menu .sub-menu {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-drawer-menu-list .sub-menu .sub-menu a {
    padding-left: 64px;
}

.mobile-drawer-menu-list .sub-menu .sub-menu a:hover {
    padding-left: 68px;
}

/* Utility Menu in Drawer */
.mobile-drawer-utility {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
    background: rgba(0, 0, 0, 0.15);
}

.mobile-drawer-utility-title {
    margin: 0 0 12px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-drawer-utility-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-drawer-utility-menu li {
    margin: 0;
    padding: 0;
    border-bottom: none;
}

.mobile-drawer-utility-menu a {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid transparent;
    border-radius: 4px;
}

.mobile-drawer-utility-menu a:hover,
.mobile-drawer-utility-menu a:focus {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-left-color: #f97316;
    padding-left: 16px;
}

/* Language Selector in Drawer */
.mobile-drawer-language {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.mobile-drawer-language .language-selector {
    width: 100%;
    position: relative;
}

.mobile-drawer-language .language-btn {
    width: 100%;
    justify-content: space-between;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 9999px;
    color: #475569;
    padding: 4px 12px;
    font-size: 10px;
}

.mobile-drawer-language .language-btn:hover {
    background: #f1f5f9;
}

.mobile-drawer-language .language-dropdown {
    position: absolute;
    bottom: 100%;
    top: auto;
    left: 0;
    right: 0;
    width: 100%;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin-bottom: 10px;
    background: rgba(30, 58, 138, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
}

/* Responsive - Show Mobile Header on Mobile, Hide Desktop */
@media (max-width: 1023px) {
    .desktop-header-wrapper {
        display: none !important;
    }
    
    .mobile-header-top {
        display: block !important;
    }
    
    /* Body padding removed to prevent white space */
    body {
        padding-top: 0 !important;
    }
}

/* Desktop - Hide Mobile Header, Show Desktop */
@media (min-width: 1024px) {
    .mobile-header-top {
        display: none !important;
    }
    
    .desktop-header-wrapper {
        display: block !important;
    }
    
    .mobile-drawer-menu {
        display: none !important;
    }
}

/* Prevent body scroll when drawer is open */
body.mobile-drawer-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Ensure mobile header stays visible (no hide on scroll) */
@media (max-width: 1023px) {
    .mobile-header-top {
        transform: translateY(0) !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
    
    /* Hide mobile header when drawer is open (optional) */
    body.mobile-drawer-open .mobile-header-top {
        opacity: 0.9;
    }
}

/* Utility Bar */
.utility-bar {
    /* background: linear-gradient(to right, #f8fafc, #eff6ff); */
    background: linear-gradient(to right, #eef3f9, #d6dadf);
    border-bottom: 1px solid #e2e8f0;
    padding: 8px 0;
}

.utility-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 12px;
}

.utility-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    flex: 1;
    min-width: 0;
    align-content: center;
}

/* Old contact info styles - kept for backward compatibility */
.utility-contact-info {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 12px;
    color: #475569;
    line-height: 1.5;
}

.utility-contact-info .contact-details {
    color: #475569;
    line-height: 1.5;
    display: inline;
    margin: 0;
    padding: 0;
}

.utility-contact-info .contact-email {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
    margin: 0;
}

.utility-contact-info .contact-email:hover {
    color: inherit;
    text-decoration: none;
}

/* Previous skip-link styles - commented out */
/*
.skip-link {
    color: #2563eb;
    text-decoration: none;
    margin-right: 8px;
    transition: color 0.3s;
}

.skip-link:hover {
    color: #1d4ed8;
}

.screen-reader-link {
    color: #2563eb;
    text-decoration: none;
    padding: 4px 12px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 4px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 12px;
    line-height: 1.5;
    margin-right: 8px;
}

.screen-reader-link:hover {
    color: #1d4ed8;
    background: rgba(37, 99, 235, 0.2);
    text-decoration: none;
}
*/

/* Skip-link styles - visible and enabled */
.skip-link {
    color: #2563eb;
    text-decoration: none;
    padding: 4px 12px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 4px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
    opacity: 1 !important;
    visibility: visible !important;
    font-size: 12px;
    line-height: 1.5;
}

.skip-link:hover {
    color: #1d4ed8;
    background: rgba(37, 99, 235, 0.2);
}

/* Font Size Controls */
.font-size-controls {
    display: none;
}

.font-btn {
    background: none;
    border: none;
    color: #475569;
    padding: 4px 8px;
    cursor: pointer;
    font-size: 12px;
    transition: color 0.3s, background 0.3s;
    border-radius: 4px;
}

.font-btn:hover {
    color: #2563eb;
    background: #f1f5f9;
}

.font-btn#resetFont {
    font-size: 10px;
}

.divider {
    height: 12px;
    width: 1px;
    background: #cbd5e1;
    margin: 0 4px;
}

/* Scheme Toggle */
.scheme-toggle,
#colorSchemeToggle,
.transform-toggle,
#textTransformToggle {
    display: none;
}

.scheme-toggle:hover,
.transform-toggle:hover {
    background: #f1f5f9;
}

.scheme-toggle i,
.transform-toggle i {
    font-size: 12px;
}

/* Utility Right */
.utility-right {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #475569;
    flex-wrap: wrap;
    flex-shrink: 0;
    min-width: 0;
    position: relative;
    z-index: 2;
}

.utility-link {
    color: #475569;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 12px;
}

.utility-link:hover {
    color: #2563eb;
}

.divider-vertical {
    color: #cbd5e1;
}

/* Language Selector */
.language-selector {
    position: relative;
    z-index: 10002;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 9999px;
    padding: 4px 12px;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 10px;
    color: #475569;
    font-weight: 400;
    line-height: 1.5;
}

.language-btn:hover {
    background: #f1f5f9;
}

.language-btn i {
    font-size: 12px;
    color: #475569;
}

.language-btn i:last-child {
    font-size: 10px;
    transition: transform 0.3s;
    margin-left: 2px;
}

.language-btn.active i:last-child {
    transform: rotate(180deg);
}

.language-btn span {
    font-size: 10px;
    color: #475569;
    white-space: nowrap;
}

.language-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    width: 192px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.2), 0 0 0 1px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    padding: 8px 0;
    display: none;
    z-index: 10001;
    min-width: 180px;
    max-width: calc(100vw - 20px);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    visibility: hidden;
}

.language-dropdown.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

/* Language Selector Responsive - Prevent overflow on mobile */
@media (max-width: 768px) {
    .language-selector {
        position: relative;
        width: auto;
        max-width: 100%;
        z-index: 10002;
    }
    
    .language-btn {
        font-size: 11px;
        padding: 6px 10px;
        white-space: nowrap;
        max-width: 100%;
        position: relative;
        z-index: 10002;
    }
    
    .language-dropdown {
        right: auto;
        left: 0;
        width: 180px;
        max-width: calc(100vw - 20px);
        /* Ensure dropdown doesn't overlap utility-left - use fixed positioning */
        position: fixed !important;
        z-index: 10003 !important;
        /* Position will be set by JavaScript */
        opacity: 0;
        transform: translateY(-10px);
        visibility: hidden;
    }
    
    .language-dropdown.show {
        opacity: 1 !important;
        transform: translateY(0) !important;
        visibility: visible !important;
    }
    
    /* Position dropdown below the button, not overlapping utility-left */
    .utility-right .language-selector .language-dropdown {
        /* JavaScript will handle positioning */
        left: auto;
        right: 0;
    }
    
    /* If language selector is near right edge, align dropdown to right */
    .utility-right .language-selector:last-child .language-dropdown {
        right: 0;
        left: auto;
    }
    
    /* Ensure dropdown appears above utility-left content */
    .utility-right .language-dropdown.show {
        z-index: 10003 !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

@media (max-width: 480px) {
    .language-dropdown {
        width: 160px;
        max-width: calc(100vw - 20px);
    }
    
    .language-btn {
        font-size: 10px;
        padding: 5px 8px;
    }
    
    .language-btn span {
        max-width: 60px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

/* Language dropdown show state - already defined above with animation */

.language-option {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 14px;
    color: #1e293b;
    font-weight: 400;
    line-height: 1.5;
}

.language-option:hover {
    background: #f1f5f9;
}

.language-option.selected {
    background: #eff6ff;
    color: #2563eb;
    font-weight: 500;
}

.language-option.selected::after {
    content: '✓';
    margin-left: auto;
    color: #2563eb;
    font-weight: 600;
}

/* Header Main */
.header-main {
    border-bottom: 1px solid #f1f5f9;
    padding: 16px 0;
    background: #ffffff;
}

.header-main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 5px;
    flex: 1 1 45%;
    min-width: 0;
    max-width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    flex: 1 1 45%;
    min-width: 0;
    max-width: 100%;
}

.header-logo-wrapper {
    flex-shrink: 0;
    width: 90px;
}

.header-logo-link {
    display: block;
    text-decoration: none;
}

.header-logo-image {
    width: 90%;
    height: auto;
    object-fit: contain;
    display: block;
}

.header-logo-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.header-bank-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.header-bank-name {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    color: #1e3a8a;
}

.header-bank-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.header-bank-name a:hover {
    color: #3b82f6;
}

.header-registration {
    margin: 0;
    font-size: 13px;
    color: #475569;
    font-weight: 400;
}

.header-tagline {
    margin: 0;
    font-size: 14px;
    color: #f97316;
    font-weight: 500;
}

/* Search Section */
.header-search-section {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

/* DICGC Section */
.header-dicgc-section {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.dicgc-logo-image {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-circle-new {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 20px;
    flex-shrink: 0;
}

.logo-text-new h1 {
    font-size: 24px;
    color: #1a237e;
    margin: 0;
    font-weight: 700;
}

.logo-text-new h2 {
    font-size: 16px;
    color: #1a237e;
    margin: 0;
    font-weight: 400;
}

.search-bar-new {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 360px;
}

.header-actions .dicgc-logo-new {
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .header-main-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .header-logo {
        flex-direction: column;
        text-align: center;
    }

    .header-bank-info {
        align-items: center;
    }

    .header-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .search-bar-new {
        max-width: none;
    }

    .dicgc-logo-new {
        justify-content: center;
    }
}

.search-bar-new .search-form {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    width: 100%;
}

.search-bar-new .search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 16px;
    z-index: 2;
    pointer-events: auto;
    cursor: pointer;
    transition: color 0.3s;
}

.search-bar-new .search-icon:hover {
    color: #60a5fa;
}

.search-bar-new.search-focused .search-icon {
    color: #60a5fa;
}

.search-bar-new .search-input {
    width: 100%;
    max-width: 420px;
    padding: 10px 16px 10px 40px;
    border: 1px solid #e2e8f0;
    border-radius: 25px;
    font-size: 14px;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: #f8fafc;
    margin: 0;
    font-family: inherit;
}

.search-bar-new .search-input:focus {
    outline: none;
    border-color: #60a5fa;
    box-shadow: 0 0 0 2px rgba(96, 165, 250, 0.1);
}

.search-bar-new .search-submit {
    display: none;
}

.search-bar-new.search-focused {
    z-index: 10;
}

.dicgc-logo-new {
    min-width: 96px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    /* background: #1a237e; */
    color: white;
    font-weight: bold;
    font-size: 12px;
    border-radius: 4px;
    /* box-shadow: 0 2px 4px rgba(0,0,0,0.1); */
    padding: 4px 8px;
    overflow: hidden;
}

.dicgc-text-label {
    font-size: 11px;
    color: #64748b;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
}

.dicgc-logo-new img {
    max-height: 48px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 2px;
}

/* Navigation */
.main-nav-new {
    background: linear-gradient(to right, #1e3a8a, #1e40af, #1e3a8a);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    border-bottom: 2px solid #f97316;
    position: relative; /* Start as relative */
    transition: all 0.3s ease;
    transform: translateY(0);
    opacity: 1;
}

/* Sticky Navigation - Only the nav becomes sticky after scroll */
.main-nav-new.nav-sticky {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.6s ease-out;
}

/* Add padding to body when nav is sticky to prevent content jump */
body.nav-sticky-active {
    padding-top: var(--nav-height, 60px);
}

/* Store nav height in CSS variable for body padding */
.main-nav-new {
    --nav-height: auto;
}

@keyframes slideDown {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}


.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    position: relative;
}

.nav-menu-new {
    display: none;
    align-items: center;
    gap: 0;
}

@media (min-width: 1024px) {
    .nav-menu-new {
        display: flex;
    }
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 16px;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
    border-bottom: 2px solid transparent;
}

.nav-item:hover {
    color: white;
    background: rgba(255,255,255,0.1);
}

.nav-item.has-dropdown i {
    font-size: 12px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.nav-item.has-dropdown:hover i {
    opacity: 1;
}

/* Navigation Dropdown Menus */
.nav-item-wrapper {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 4px;
}

.nav-item-wrapper:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #1e293b;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background: #f1f5f9;
    color: #ea580c;
    border-left-color: #ea580c;
    padding-left: 24px;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #ff6b35;
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
}

.nav-item:hover::after {
    transform: scaleX(1);
}

/* WordPress Default Menu Structure Support */
.nav-menu-new {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu-new li {
    position: relative;
    margin: 0;
}

.nav-menu-new a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 16px;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 12px;
    transition: all 0.2s;
    border-bottom: 2px solid transparent;
    font-weight: 600;
}

.nav-menu-new a:hover {
    color: white;
    background: rgba(255,255,255,0.1);
}

/* Focus styles for main menu items only (not dropdowns) */
#primary-menu > li > a:focus,
.nav-menu-new > li > a:focus,
.nav-item:focus {
    color: #fff !important;
    background: rgba(255,255,255,0.1);
    outline: 2px solid #fff;
    outline-offset: -2px;
}

/* Exclude dropdown items from white focus color */
#primary-menu .sub-menu a:focus,
.nav-menu-new .sub-menu a:focus,
.nav-dropdown .dropdown-item:focus {
    color: #1e293b !important;
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}


/* Active menu item styling - Current page/item only (exclude ancestors) */
.nav-menu-new li.current-menu-item:not(.current-menu-ancestor):not(.current-menu-parent) > a,
.nav-menu-new li.current_page_item:not(.current-menu-ancestor):not(.current-menu-parent) > a,
.nav-menu-new li.menu-item-home.current-menu-item:not(.current-menu-ancestor):not(.current-menu-parent) > a,
.nav-menu-new li.menu-item-home.current_page_item:not(.current-menu-ancestor):not(.current-menu-parent) > a {
    color: white !important;
    background: rgba(234, 88, 12, 0.8) !important;
    border-bottom-color: #ea580c !important;
    border-bottom-width: 3px !important;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(234, 88, 12, 0.3) !important;
}

/* Active links with nav-active class (exclude if parent is ancestor) */
.nav-menu-new li:not(.current-menu-ancestor):not(.current-menu-parent) > a.nav-active,
.nav-menu-new li:not(.current-menu-ancestor):not(.current-menu-parent) > a[aria-current="page"] {
    color: white !important;
    background: rgba(234, 88, 12, 0.8) !important;
    border-bottom-color: #ea580c !important;
    border-bottom-width: 3px !important;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(234, 88, 12, 0.3) !important;
}

/* Ancestor/Parent menu items - subtle styling (only top-level, not sub-menu items) */
.nav-menu-new > li.current-menu-ancestor > a,
.nav-menu-new > li.current-menu-parent > a,
.nav-menu-new > li.current-menu-ancestor.current-menu-parent > a,
.nav-menu-new > li.menu-item-has-children.current-menu-ancestor > a,
.nav-menu-new > li.menu-item-has-children.current-menu-parent > a {
    color: rgba(255,255,255,0.95) !important;
    background: rgba(255,255,255,0.1) !important;
    background-color: rgba(255,255,255,0.1) !important;
    border-bottom-color: rgba(234, 88, 12, 0.5) !important;
    border-bottom-width: 2px !important;
    font-weight: 600;
    box-shadow: none !important;
}

/* Ensure sub-menu items are not affected by ancestor styling */
.nav-menu-new .sub-menu li.current-menu-ancestor > a,
.nav-menu-new .sub-menu li.current-menu-parent > a {
    color: #1e293b !important;
    background: transparent !important;
    background-color: transparent !important;
    border-bottom-color: transparent !important;
    border-bottom-width: 0 !important;
    box-shadow: none !important;
}

ul.sub-menu li a.nav-active {
    color: #1e3c97 !important;
}

/* Home menu item - icon only */
.nav-menu-new .menu-item-home > a,
.nav-menu-new a.nav-item-home {
    font-size: 18px;
    padding: 16px 20px;
}

.nav-menu-new .menu-item-home > a .screen-reader-text {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.nav-menu-new .menu-item-home > a i {
    display: inline-block;
    font-size: 18px;
    line-height: 1;
}

.nav-menu-new .menu-item-has-children > a::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 12px;
    margin-left: 4px;
    opacity: 0.7;
    transition: opacity 0.3s, transform 0.3s;
}

.nav-menu-new .menu-item-has-children:hover > a::after {
    opacity: 1;
    transform: rotate(180deg);
}

.nav-menu-new .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 4px;
    list-style: none;
    margin-left: 0;
}

.nav-menu-new .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu-new .sub-menu li {
    margin: 0;
}

.nav-menu-new .sub-menu a {
    display: block;
    padding: 12px 20px;
    color: #1e293b;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
    border-left: 3px solid transparent;
    border-bottom: none;
}

.nav-menu-new .sub-menu a:hover {
    background: #f1f5f9;
    color: #ea580c;
    border-left-color: #ea580c;
    padding-left: 24px;
}

.nav-menu-new .sub-menu .sub-menu {
    top: 0;
    left: 100%;
    margin-left: 4px;
}

.nav-menu-new .sub-menu .sub-menu {
    margin-left: 0;
}

.btn-customer-awareness {
    margin-left: auto;
    padding: 10px 20px;
    background: #f97316;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(249, 115, 22, 0.3);
    white-space: nowrap;
}

.btn-customer-awareness:hover {
    background: #ea580c;
    box-shadow: 0 4px 8px rgba(249, 115, 22, 0.4);
    transform: translateY(-1px);
}

/* Mobile menu button - hidden on desktop, shown on mobile */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    padding: 8px;
    cursor: pointer;
    font-size: 24px;
}

/* Show mobile menu button on mobile/tablet */
@media (max-width: 1023px) {
    .mobile-menu-btn {
        display: flex !important;
    }
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none !important;
    }
}

/* Old mobile menu styles - removed, using new sidebar style below */
.mobile-menu {
    display: none;
}

.mobile-menu.show {
    display: flex;
}

.mobile-nav-item {
    display: block;
    padding: 12px 16px;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: background 0.3s;
    font-size: 14px;
}

.mobile-nav-item:hover {
    background: rgba(255,255,255,0.1);
}

.btn-customer-awareness-mobile {
    width: 100%;
    margin-top: 8px;
    padding: 12px 16px;
    background: linear-gradient(to right, #f97316, #ea580c);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-customer-awareness-mobile:hover {
    background: linear-gradient(to right, #ea580c, #dc2626);
}

/* Top Bar */
.top-bar {
    background: #fff;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

.top-links {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.top-links a {
    text-decoration: none;
    color: #666;
    font-size: 13px;
    transition: color 0.3s;
}

.top-links a:hover {
    color: #ff6b35;
}

/* Main Header */
.main-header {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 20px;
}

.logo-text h1 {
    font-size: 18px;
    color: #1a237e;
    margin: 0;
}

.logo-text h2 {
    font-size: 16px;
    color: #1a237e;
    margin: 0;
    font-weight: normal;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-bar {
    position: relative;
    display: flex;
    align-items: center;
}

.search-bar input {
    padding: 10px 40px 10px 15px;
    border: 1px solid #ddd;
    border-radius: 25px;
    width: 250px;
}

.search-bar i {
    position: absolute;
    right: 15px;
    color: #666;
}

.dicgc-logo {
    background: #1a237e;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
}

/* Navigation Bar */
.main-nav {
    background: #1a237e;
    padding: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    display: block;
    transition: background 0.3s;
}

.nav-menu a:hover {
    background: rgba(255,255,255,0.1);
}

.btn-apply {
    background: #ff6b35 !important;
    border-radius: 5px;
    margin-left: auto;
}

/* Hero Section */
/* New Dynamic Hero Slider Styles */
.new-hero-slider-wrapper {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.slider {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

/* Remove overlay for full-width image slider */
.hero-banner-section.has-full-image-slide .slide::before {
    display: none;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 8s ease;
    z-index: 0;
}

/* Ensure slide-image is on top for full-width slider */
.hero-banner-section.has-full-image-slide .slide-image {
    z-index: 1;
}

.slide.active .slide-image {
    transform: scale(1);
}

/* Slide 1 - Fade In/Out Background */
.slide-1 .slide-image {
    opacity: 0;
    transition: opacity 2s ease;
}

.slide-1.active .slide-image {
    opacity: 1;
}

/* Slide 2 - Fade In/Out Background */
.slide-2 .slide-image {
    opacity: 0;
    transition: opacity 2.5s ease;
}

.slide-2.active .slide-image {
    opacity: 1;
}

/* Slide 3 - Left to Right Background */
.slide-3 .slide-image {
    transform: translateX(-100%);
    transition: transform 3s ease;
}

.slide-3.active .slide-image {
    transform: translateX(0);
}

/* Slide 4 - Left to Right Background */
.slide-4 .slide-image {
    transform: translateX(-100%);
    transition: transform 3.5s ease;
}

.slide-4.active .slide-image {
    transform: translateX(0);
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 40px;
}

/* Slide 1 - Fade In Up Animation */
.slide-1 .badge {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 1px;
    transform: translateY(-30px);
    opacity: 0;
    transition: all 1s ease 0.3s;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.slide-1.active .badge {
    transform: translateY(0);
    opacity: 1;
}

.slide-1 h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 700;
    transform: translateY(30px);
    opacity: 0;
    transition: all 1s ease 0.6s;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.slide-1.active h2 {
    transform: translateY(0);
    opacity: 1;
}

.slide-1 p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease 0.9s;
    line-height: 1.7;
}

.slide-1.active p {
    transform: translateY(0);
    opacity: 0.95;
}

/* Slide 2 - Zoom In Animation */
.slide-2 .badge {
    display: inline-block;
    background: linear-gradient(45deg, #4ecdc4, #6ae2d9);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 1px;
    transform: scale(0.5);
    opacity: 0;
    transition: all 1s ease 0.3s;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.4);
}

.slide-2.active .badge {
    transform: scale(1);
    opacity: 1;
}

.slide-2 h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 700;
    transform: scale(0.7);
    opacity: 0;
    transition: all 1s ease 0.6s;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.slide-2.active h2 {
    transform: scale(1);
    opacity: 1;
}

.slide-2 p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 1s ease 0.9s;
    line-height: 1.7;
}

.slide-2.active p {
    transform: scale(1);
    opacity: 0.95;
}

/* Slide 3 - Slide In From Right Animation */
.slide-3 .badge {
    display: inline-block;
    background: linear-gradient(45deg, #556270, #4ecdc4);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 1px;
    transform: translateX(100px);
    opacity: 0;
    transition: all 1s ease 0.3s;
    box-shadow: 0 4px 15px rgba(85, 98, 112, 0.4);
}

.slide-3.active .badge {
    transform: translateX(0);
    opacity: 1;
}

.slide-3 h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 700;
    transform: translateX(100px);
    opacity: 0;
    transition: all 1s ease 0.6s;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.slide-3.active h2 {
    transform: translateX(0);
    opacity: 1;
}

.slide-3 p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateX(100px);
    transition: all 1s ease 0.9s;
    line-height: 1.7;
}

.slide-3.active p {
    transform: translateX(0);
    opacity: 0.95;
}

/* Slide 4 - Flip In Animation */
.slide-4 .badge {
    display: inline-block;
    background: linear-gradient(45deg, #ff8e53, #fe6b8b);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 1px;
    transform: rotateY(90deg);
    opacity: 0;
    transition: all 1s ease 0.3s;
    box-shadow: 0 4px 15px rgba(255, 142, 83, 0.4);
}

.slide-4.active .badge {
    transform: rotateY(0);
    opacity: 1;
}

.slide-4 h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 700;
    transform: rotateY(90deg);
    opacity: 0;
    transition: all 1s ease 0.6s;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.slide-4.active h2 {
    transform: rotateY(0);
    opacity: 1;
}

.slide-4 p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0;
    transform: rotateY(90deg);
    transition: all 1s ease 0.9s;
    line-height: 1.7;
}

.slide-4.active p {
    transform: rotateY(0);
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.5s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: translateY(20px);
    opacity: 0;
    transition: all 1s ease 1.2s;
}

.slide.active .cta-button {
    transform: translateY(0);
    opacity: 1;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.8rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s ease;
    z-index: 3;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: white;
    transition: left 4s linear;
}

.dot.active::after {
    left: 0;
}

.dot.active {
    background: transparent;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.slide-counter {
    position: absolute;
    bottom: 30px;
    right: 30px;
    color: white;
    font-size: 1rem;
    z-index: 3;
    background: rgba(0, 0, 0, 0.3);
    padding: 5px 15px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

@media (max-width: 768px) {
    .slider-container {
        height: 450px;
    }
    
    .slide-content h2 {
        font-size: 2.2rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .slider-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .slider-container {
        height: 400px;
    }
    
    .slide-content h2 {
        font-size: 1.8rem;
    }
    
    .badge {
        font-size: 0.75rem;
        padding: 6px 15px;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .prev-btn {
        left: 15px;
    }
    
    .next-btn {
        right: 15px;
    }
}

/* Old Hero Banner Styles - Kept for backward compatibility */
.hero-banner-wrapper {
    position: relative;
    width: 100%;
}

.hero-banner-section {
    position: relative;
    background: linear-gradient(to bottom right, #f97316, #ea580c, #dc2626);
    overflow: hidden;
    padding: 48px 0 25px;
    min-height: 350px;
    background-image: url(https://nilgirisccb.bank.in/wp-content/uploads/2023/01/5.png);
    background-repeat: no-repeat;
    background-size: cover;
}

/* When full image slide is present, remove gradient background and padding */
.hero-banner-section.has-full-image-slide {
    background: transparent;
    padding: 0;
    min-height: 0;
    width: 100%;
}

.hero-banner-section.has-full-image-slide .hero-bg-decoration {
    display: none;
}

.hero-banner-section.has-full-image-slide .slider-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Ensure carousel controls are above full-image slides */
.hero-banner-section.has-full-image-slide .hero-carousel-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    margin-top: 0;
}

/* Decorative Background Elements */
.hero-bg-decoration {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    pointer-events: none;
}

.hero-bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.hero-bg-circle-1 {
    top: 0;
    right: 0;
    width: 384px;
    height: 384px;
    background: white;
}

.hero-bg-circle-2 {
    bottom: 0;
    left: 0;
    width: 384px;
    height: 384px;
    background: #fde047;
}

.hero-banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 10;
}

/* Left Content */
.hero-banner-left {
    color: white;
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: left;
    justify-content: center;
    align-items: flex-start;
}

/* Right Content - Image */
.hero-banner-right {
    position: relative;
    display: none;
}

@media (min-width: 1024px) {
    .hero-banner-right {
        display: block;
    }
}

.hero-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-slide-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: opacity 0.5s;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

/* Left Content */
.hero-banner-left {
    color: white;
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: left;
    justify-content: center;
    align-items: flex-start;
}

.hero-banner-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
/*    background: rgba(255, 255, 255, 0.2);*/
background: rgb(14 13 13 / 72%);
    backdrop-filter: blur(4px);
    border-radius: 9999px;
    padding: 8px 16px;
    font-size: 14px;
    width: fit-content;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-banner-title {
    color: white;
    font-size: 48px;
    line-height: 1.2;
    font-weight: var(--font-weight-medium);
    margin: 0;
    text-align: left;
}

.hero-banner-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 36rem;
    margin: 0;
    text-align: left;
}

.hero-banner-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-btn-primary {
    background: white;
    color: #c2410c; /* Improved contrast: changed from #ea580c to darker #c2410c for better contrast on white */
    padding: 14px 28px;
    border: none;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.hero-btn-primary:hover {
    background: #fff7ed;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.hero-btn-primary i {
    margin-left: 8px;
    font-size: 20px;
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: background 0.3s;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 16px;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-stat-value {
    font-size: 32px;
    font-weight: var(--font-weight-medium);
    color: white;
}

.hero-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Right Content - Image */
.hero-banner-right {
    position: relative;
    display: none;
}

@media (min-width: 1024px) {
    .hero-banner-right {
        display: block;
    }
}

.hero-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-slide-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: opacity 0.5s;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

/* Floating Card */
.hero-floating-card {
    position: absolute;
    bottom: -80px;
    left: -24px;
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 320px;
    display: none;
}

.floating-card-content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.floating-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(to bottom right, #4ade80, #16a34a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.floating-card-icon i {
    font-size: 24px;
    color: white;
}

.floating-card-text {
    flex: 1;
}

.floating-card-title {
    color: #1e293b;
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    margin-bottom: 4px;
}

.floating-card-desc {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

/* Carousel Controls */
.hero-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 48px;
    position: relative;
    z-index: 10;
    width: 100%;
}

/* Left button on the left */
.hero-carousel-controls .carousel-btn-prev {
    order: 1;
}

/* Dots in the center */
.hero-carousel-controls .carousel-indicators-new {
    order: 2;
    display: flex;
    justify-content: center;
}

/* Right button on the right */
.hero-carousel-controls .carousel-btn-next {
    order: 3;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.carousel-btn i {
    font-size: 20px;
}

.carousel-indicators-new {
    display: flex;
    align-items: center;
    gap: 8px;
}

.carousel-indicator {
    height: 8px;
    border-radius: 9999px;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.carousel-indicator.active {
    width: 32px;
    background: white;
}

.carousel-indicator:not(.active) {
    width: 8px;
}

/* Quick Access Bar */
.quick-access-bar {
    background: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #f1f5f9;
}

.quick-access-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 24px 0;
}

@media (min-width: 768px) {
    .quick-access-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.quick-access-item {
    background: linear-gradient(to bottom right, #f8fafc, white);
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.quick-access-item:hover {
    background: linear-gradient(to bottom right, white, #f8fafc);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.quick-access-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.quick-access-item:hover .quick-access-icon {
    transform: scale(1.1);
}

.quick-access-icon i {
    font-size: 28px;
    color: white;
}

.quick-access-icon.has-image {
    background: transparent;
    box-shadow: none;
}

.quick-access-icon.has-image img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.quick-access-icon.blue-gradient {
    background: linear-gradient(to bottom right, #3b82f6, #2563eb);
}

.quick-access-icon.purple-gradient {
    background: linear-gradient(to bottom right, #a855f7, #9333ea);
}

.quick-access-icon.green-gradient {
    background: linear-gradient(to bottom right, #22c55e, #16a34a);
}

.quick-access-icon.orange-gradient {
    background: linear-gradient(to bottom right, #f97316, #ea580c);
}

.quick-access-icon.pink-gradient {
    background: linear-gradient(to bottom right, #ec4899, #db2777);
}

.quick-access-label {
    font-size: 14px;
    color: #475569;
    font-weight: var(--font-weight-medium);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 36px;
    color: #1a237e;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 16px;
    color: #666;
}

/* Notice Board Section */
.notice-board-section {
    padding: 64px 0;
    background: linear-gradient(to bottom, #f8fafc, white);
}

.notice-board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.notice-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    border: 2px solid;
}

.notice-board-card {
    border-color: #bfdbfe;
}

.events-card {
    border-color: #fed7aa;
}

.links-card {
    border-color: #bbf7d0;
}

.notice-card-header {
    padding: 24px;
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
}

.notice-header-blue {
    background: linear-gradient(to right, #2563eb, #1d4ed8);
}

.notice-header-orange {
    background: linear-gradient(to right, #ea580c, #dc2626);
}

.notice-header-green {
    background: linear-gradient(to right, #16a34a, #15803d);
}

.notice-icon-wrapper {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notice-icon-wrapper i {
    font-size: 24px;
    color: white;
}

.notice-card-title {
    color: white;
    font-size: 24px;
    margin: 0;
    font-weight: var(--font-weight-medium);
}

.notice-card-content {
    padding: 24px;
    height: 320px;
    overflow: hidden;
    position: relative;
}

.notice-scroll-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.7s ease-in-out;
}

/* Notice Items */
.notice-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: #eff6ff;
    border-radius: 12px;
    border: 1px solid #bfdbfe;
    cursor: pointer;
    transition: all 0.3s;
}

.notice-item:hover {
    background: #dbeafe;
}

.notice-dot {
    width: 8px;
    height: 8px;
    background: #2563eb;
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}

.notice-text {
    font-size: 14px;
    color: #1e293b;
    line-height: 1.6;
    margin: 0;
}

.notice-text a,
.event-text a,
.link-text a {
    color: inherit;
    text-decoration: none;
}

.notice-text a:hover,
.event-text a:hover,
.link-text a:hover {
    text-decoration: underline;
}

/* Event Items */
.event-item {
    padding: 20px;
    background: #fff7ed;
    border-radius: 12px;
    border: 1px solid #fed7aa;
    cursor: pointer;
    transition: all 0.3s;
}

.event-item:hover {
    background: #ffedd5;
}

.event-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.event-dot {
    width: 8px;
    height: 8px;
    background: #ea580c;
    border-radius: 50%;
}

.event-badge-text {
    font-size: 12px;
    color: #c2410c; /* Improved contrast: changed from #ea580c to darker #c2410c */
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600; /* Increased from medium to 600 for better visibility */
}

.event-text {
    font-size: 14px;
    color: #1e293b;
    line-height: 1.6;
    margin: 0;
}

/* Link Items */
.link-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background: #f0fdf4;
    border-radius: 12px;
    border: 1px solid #bbf7d0;
    cursor: pointer;
    transition: all 0.3s;
}

.link-item:hover {
    background: #dcfce7;
}

.link-item:hover .link-icon {
    transform: translateX(4px);
}

.link-icon {
    font-size: 20px;
    color: #16a34a;
    flex-shrink: 0;
    margin-top: 2px;
    transition: transform 0.3s;
}

.link-text {
    font-size: 14px;
    color: #1e293b;
    line-height: 1.6;
    margin: 0;
}

/* Gradient Fade Effect */
.notice-gradient-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, white, transparent);
    pointer-events: none;
}

/* Banking Services Section */
.banking-services-section {
    padding: 20px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

/* Background Decoration */
.services-bg-decoration {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.services-bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.services-bg-circle-1 {
    top: 0;
    left: 25%;
    width: 384px;
    height: 384px;
    background: #dbeafe;
}

.services-bg-circle-2 {
    bottom: 0;
    right: 25%;
    width: 384px;
    height: 384px;
    background: #fed7aa;
}

.service-categories-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Service Category */
.service-category {
    display: flex;
    flex-direction: column;
    gap: 40px;
    scroll-margin-top: 120px; /* Space before section when scrolling to anchor */
    position: relative;
    padding-top: 20px;
}

/* Category Header */
.category-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.category-header-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 16px;
    flex-wrap: wrap;
    position: relative;
}

.category-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    margin-bottom: 0px;
}

.category-icon.category-icon-image {
    background: transparent;
    box-shadow: none;
    padding: 4px;
}


.category-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

#products-section .category-icon.category-icon-image ,
#loans-section .category-icon.category-icon-image {
    position: relative;
    top: 13px;
    left: 10px;
}

.category-icon-inner {
    width: 32px;
    height: 32px;
    border: 3px solid white;
    border-radius: 8px;
}

.category-icon.blue-gradient {
    background: linear-gradient(to bottom right, #3b82f6, #06b6d4);
}

.category-icon.orange-gradient {
    background: linear-gradient(to bottom right, #f97316, #ef4444);
}

.category-icon.purple-gradient {
    background: linear-gradient(to bottom right, #a855f7, #ec4899);
}

.category-icon.green-gradient {
    background: linear-gradient(to bottom right, #22c55e, #10b981);
}

.category-icon.indigo-gradient {
    background: linear-gradient(to bottom right, #6366f1, #3b82f6);
}

.category-title {
    font-size: 36px;
    color: #0f172a;
    margin: 0;
    font-weight: var(--font-weight-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
}

.category-title span {
    display: inline-block;
    text-align: center;
    line-height: 1.2;
}

.category-description {
    font-size: 18px;
    color: #475569;
    margin: 0;
    margin-top: 12px;
    line-height: 1.6;
    padding: 0 10px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

/* Service Card New */
.service-card-new {
    position: relative;
    display: block;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.service-card-new:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-color: transparent;
    transform: translateY(-8px) scale(1.02);
    text-decoration: none;
    color: inherit;
}

/* Image Wrapper */
.service-image-wrapper {
    position: relative;
    height: 224px;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease-out;
}

.service-card-new:hover .service-image {
    transform: scale(1.1);
}

.service-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2), transparent);
    opacity: 0.7;
    transition: opacity 0.5s;
}

.service-card-new:hover .service-image-overlay {
    opacity: 0.9;
}

.service-icon-placeholder {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 48px;
}

.service-icon-placeholder i {
    opacity: 0.8;
}

/* Accent Bar */
.service-accent-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.service-accent-bar.blue-gradient-bar {
    background: linear-gradient(to right, #3b82f6, #06b6d4);
}

.service-accent-bar.orange-gradient-bar {
    background: linear-gradient(to right, #f97316, #ef4444);
}

.service-accent-bar.purple-gradient-bar {
    background: linear-gradient(to right, #a855f7, #ec4899);
}

.service-accent-bar.green-gradient-bar {
    background: linear-gradient(to right, #22c55e, #10b981);
}

.service-accent-bar.indigo-gradient-bar {
    background: linear-gradient(to right, #6366f1, #3b82f6);
}

/* Service Card Content */
.service-card-content {
    padding: 24px;
    background: white;
    position: relative;
}

.service-card-title {
    font-size: 18px;
    color: #0f172a;
    margin: 0 0 8px 0;
    font-weight: var(--font-weight-medium);
    transition: color 0.3s;
}

.service-card-new:hover .service-card-title {
    color: #ea580c;
}

.service-card-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin: 0 0 16px 0;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Learn More Button */
.service-learn-more {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #c2410c; /* Improved contrast: changed from #ea580c to darker #c2410c */
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: gap 0.3s;
    font-weight: 500; /* Slightly bolder for better visibility */
}

.service-learn-more:hover {
    gap: 16px;
}

.service-learn-more i {
    font-size: 16px;
    transition: transform 0.3s;
}

.service-learn-more:hover i {
    transform: translateX(4px);
}

/* Keep btn-view for other sections */
.btn-view {
    background: #ff6b35;
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.btn-view:hover {
    background: #e55a2b;
}

/* Loan Calculator Section */
.loan-calculator-section {
    padding: 80px 0;
    background: linear-gradient(to bottom right, #f8fafc, white, #eff6ff);
}

.loan-calculator-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Calculator Header */
.calculator-header {
    margin-bottom: 32px;
}

.calculator-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #dbeafe;
    color: #1e40af;
    border-radius: 9999px;
    padding: 8px 16px;
    font-size: 14px;
    margin-bottom: 16px;
}

.calculator-badge i {
    font-size: 16px;
}

.calculator-title {
    font-size: 40px;
    color: #0f172a;
    margin: 0 0 8px 0;
    font-weight: var(--font-weight-medium);
}

.calculator-subtitle {
    font-size: 16px;
    color: #64748b;
    margin: 0 0 12px 0;
}

.calculator-underline {
    height: 6px;
    width: 80px;
    background: linear-gradient(to right, #f97316, #2563eb);
    border-radius: 9999px;
}

/* Calculator Card */
.calculator-card {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: none;
    border-radius: var(--radius);
    overflow: hidden;
    background: white;
}

.calculator-card-header {
    background: linear-gradient(to right, #2563eb, #1d4ed8);
    color: white;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.calculator-card-title-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.calculator-card-title-wrapper i {
    font-size: 20px;
}

.calculator-card-title {
    color: white;
    font-size: 20px;
    margin: 0;
    font-weight: var(--font-weight-medium);
}

.calculator-badge-instant {
    font-size: 14px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 9999px;
    padding: 6px 12px;
}

.calculator-card-body {
    padding: 32px;
    background: white;
}

.calculator-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 32px;
}

.calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.calculator-input-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.input-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.input-label {
    font-size: 14px;
    color: #1e293b;
    font-weight: var(--font-weight-medium);
}

.input-value-display {
    font-size: 24px;
    font-weight: var(--font-weight-medium);
}

.gradient-text {
    background: linear-gradient(to right, #ea580c, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.calculator-slider {
    width: 100%;
    height: 8px;
    border-radius: 9999px;
    background: #e2e8f0;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.calculator-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(to right, #f97316, #2563eb);
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.calculator-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(to right, #f97316, #2563eb);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #64748b;
}

/* Calculator Results */
.calculator-results {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.emi-result-card {
    background: linear-gradient(to right, #f97316, #2563eb);
    border-radius: 16px;
    padding: 28px;
    color: white;
    width: 100%;
    max-width: 100%;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.emi-result-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.emi-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.emi-result-header i {
    font-size: 20px;
}

.emi-value {
    font-size: 36px;
    font-weight: var(--font-weight-medium);
    margin-bottom: 4px;
}

.emi-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Breakdown */
.breakdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.breakdown-card {
    border-radius: 12px;
    padding: 16px;
    border: 1px solid;
}

.principal-card {
    background: #eff6ff;
    border-color: #bfdbfe;
}

.interest-card {
    background: #fff7ed;
    border-color: #fed7aa;
}

.breakdown-label {
    font-size: 14px;
    color: #334155; /* Improved contrast: changed from #475569 to even darker #334155 for better contrast */
    margin-bottom: 4px;
    font-weight: 600; /* Increased from 500 to 600 for better visibility */
}

.breakdown-value {
    font-size: 20px;
    font-weight: var(--font-weight-medium);
    margin-bottom: 4px;
}

.principal-card .breakdown-value {
    color: #1e40af; /* Improved contrast: changed from #2563eb to darker #1e40af */
}

.interest-card .breakdown-value {
    color: #c2410c; /* Improved contrast: changed from #ea580c to darker #c2410c */
}

.breakdown-percentage {
    font-size: 12px;
    color: #475569; /* Improved contrast: changed from #94a3b8 to much darker #475569 */
    font-weight: 500; /* Slightly bolder for better visibility */
}

.total-payment-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    width: 100%;
}

.total-payment-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.total-payment-label {
    color: #1e293b;
    font-size: 14px;
}

.total-payment-value {
    font-size: 24px;
    color: #0f172a;
    font-weight: var(--font-weight-medium);
}

/* Action Buttons */
.calculator-actions {
    display: flex;
    gap: 12px;
}

.btn-apply-loan {
    flex: 1;
    background: linear-gradient(to right, #f97316, #ea580c);
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.btn-apply-loan:hover {
    background: linear-gradient(to right, #ea580c, #dc2626);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}


/* Credit Card Promo */
.credit-card-promo-card {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: none;
    border-radius: var(--radius);
    overflow: hidden;
    background: linear-gradient(to bottom right, #9333ea, #2563eb);
    color: white;
    padding: 32px;
}

.promo-content {
    margin-bottom: 24px;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 9999px;
    padding: 6px 12px;
    font-size: 14px;
    margin-bottom: 16px;
}

.promo-dot {
    width: 8px;
    height: 8px;
    background: #fde047;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.promo-title {
    color: white;
    font-size: 24px;
    margin: 0 0 12px 0;
    font-weight: var(--font-weight-medium);
}

.promo-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 24px 0;
}

.promo-image {
    width: 100%;
    height: 192px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 24px;
}

.promo-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.promo-feature {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    font-size: 14px;
}

.btn-promo-apply {
    width: 100%;
    background: white;
    color: #9333ea;
    padding: 14px 28px;
    border: none;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: background 0.3s;
}

.btn-promo-apply:hover {
    background: #f3e8ff;
}

/* Financial Tools */
.financial-tools-card {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: none;
    border-radius: var(--radius);
    overflow: hidden;
    background: white;
}

.tools-header {
    background: #f8fafc;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tools-header i {
    font-size: 20px;
    color: #1e293b;
}

.tools-title {
    color: #0f172a;
    font-size: 18px;
    margin: 0;
    font-weight: var(--font-weight-medium);
}

.tools-list {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tool-item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #f8fafc;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
}

.tool-item:hover {
    background: #f1f5f9;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.tool-item:hover .tool-arrow {
    transform: translateX(4px);
}

.tool-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.tool-item:hover .tool-icon {
    transform: scale(1.1);
}

.tool-icon i {
    font-size: 20px;
    color: white;
}

.tool-icon.green-gradient-tool {
    background: linear-gradient(to bottom right, #22c55e, #10b981);
}

.tool-icon.blue-gradient-tool {
    background: linear-gradient(to bottom right, #3b82f6, #06b6d4);
}

.tool-icon.purple-gradient-tool {
    background: linear-gradient(to bottom right, #a855f7, #ec4899);
}

.tool-icon.orange-gradient-tool {
    background: linear-gradient(to bottom right, #f97316, #ef4444);
}

.tool-label {
    flex: 1;
    font-size: 14px;
    color: #1e293b;
}

.tool-arrow {
    font-size: 16px;
    color: #94a3b8;
    transition: transform 0.3s;
}

/* Quick Links Bar Section */
.quick-links-bar-section {
    position: relative;
    padding: 32px 0;
    background: linear-gradient(to bottom right, #1e293b, #1e3a8a, #1e293b);
    overflow: hidden;
}

/* Animated Background */
.quick-links-bg-animation {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    pointer-events: none;
}

.quick-links-bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(96px);
    animation: pulse 3s ease-in-out infinite;
}

.quick-links-bg-circle-1 {
    top: 0;
    left: 25%;
    width: 256px;
    height: 256px;
    background: #f97316;
}

.quick-links-bg-circle-2 {
    bottom: 0;
    right: 25%;
    width: 256px;
    height: 256px;
    background: #3b82f6;
    animation-delay: 1s;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.1;
        transform: scale(1);
    }
    50% {
        opacity: 0.2;
        transform: scale(1.1);
    }
}

/* Quick Links Bar Grid */
.quick-links-bar-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    position: relative;
    z-index: 10;
}

@media (min-width: 640px) {
    .quick-links-bar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .quick-links-bar-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Quick Link Card */
.quick-link-card-new {
    position: relative;
    background: linear-gradient(to bottom right, #f97316, #ea580c);
    color: white;
    border-radius: 16px;
    padding: 24px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    overflow: hidden;
    text-align: left;
}

.quick-link-card-new:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: translateY(-4px);
}

/* Gradient Cards */
.quick-link-card-new.orange-gradient-card {
    background: linear-gradient(to bottom right, #f97316, #ea580c);
}

.quick-link-card-new.orange-gradient-card:hover {
    background: linear-gradient(to bottom right, #ea580c, #dc2626);
}

.quick-link-card-new.blue-gradient-card {
    background: linear-gradient(to bottom right, #2563eb, #1d4ed8);
}

.quick-link-card-new.blue-gradient-card:hover {
    background: linear-gradient(to bottom right, #1d4ed8, #1e40af);
}

.quick-link-card-new.purple-gradient-card {
    background: linear-gradient(to bottom right, #9333ea, #7e22ce);
}

.quick-link-card-new.purple-gradient-card:hover {
    background: linear-gradient(to bottom right, #7e22ce, #6b21a8);
}

.quick-link-card-new.green-gradient-card {
    background: linear-gradient(to bottom right, #16a34a, #15803d);
}

.quick-link-card-new.green-gradient-card:hover {
    background: linear-gradient(to bottom right, #15803d, #166534);
}

/* Hover Effect Overlay */
.quick-link-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    transition: all 0.3s;
}

.quick-link-card-new:hover .quick-link-overlay {
    background: rgba(255, 255, 255, 0.1);
}

/* Quick Link Content */
.quick-link-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Icon Wrapper */
.quick-link-icon-wrapper {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
   
}

.quick-link-card-new:hover .quick-link-icon-wrapper {
    transform: scale(1.1) rotate(6deg);
}

.quick-link-icon-wrapper i {
    font-size: 28px;
    color: white;
}

/* Quick Link Text */
.quick-link-text {
    flex: 1;
    text-align: left;
}

.quick-link-label {
    font-size: 16px;
    color: white;
    margin: 0 0 4px 0;
    font-weight: var(--font-weight-medium);
}

.quick-link-sublabel {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Arrow */
.quick-link-arrow {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s;
    flex-shrink: 0;
}

.quick-link-card-new:hover .quick-link-arrow {
    color: white;
    transform: translateX(4px);
}

/* Decorative Element */
.quick-link-decoration {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    filter: blur(32px);
    transition: all 0.3s;
}

.quick-link-card-new:hover .quick-link-decoration {
    background: rgba(255, 255, 255, 0.1);
}

/* Additional Quick Links */
.quick-links-additional {
    margin-top: 24px !important;
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 16px !important;
    font-size: 14px !important;
    position: relative !important;
    z-index: 10 !important;
    padding: 0 !important;
    width: 100% !important;
    clear: both !important;
}

.quick-link-additional-item {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: rgba(255, 255, 255, 0.9) !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    padding: 10px 16px !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
    backdrop-filter: blur(4px) !important;
    margin: 0 !important;
    line-height: 1.4 !important;
}

.quick-link-additional-item:hover,
.quick-link-additional-item:focus {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.quick-link-additional-item:active {
    transform: translateY(0);
}

.quick-link-additional-item i {
    font-size: 16px !important;
    transition: transform 0.3s ease !important;
    display: inline-block !important;
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
    height: auto !important;
    line-height: 1 !important;
}

.quick-link-additional-item:hover i,
.quick-link-additional-item:focus i {
    transform: scale(1.1);
}

.quick-link-additional-item span {
    font-size: 14px !important;
    line-height: 1.4 !important;
    font-weight: 500 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: inline-block !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .quick-links-additional {
        gap: 12px;
        justify-content: center;
    }
    
    .quick-link-additional-item {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .quick-link-additional-item i {
        font-size: 14px;
    }
    
    .quick-link-additional-item span {
        font-size: 13px;
    }
}

/* Interest Rates & Charges Section */
.rates-charges-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(to bottom right, #1e293b, #1e3a8a, #1e293b);
    overflow: hidden;
}

/* Animated Background Elements */
.rates-bg-animation {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    pointer-events: none;
}

.rates-bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(96px);
    animation: pulse 3s ease-in-out infinite;
}

.rates-bg-circle-1 {
    top: 25%;
    right: 25%;
    width: 384px;
    height: 384px;
    background: #3b82f6;
}

.rates-bg-circle-2 {
    bottom: 25%;
    left: 25%;
    width: 384px;
    height: 384px;
    background: #f97316;
    animation-delay: 1s;
}

/* Decorative Grid */
.rates-grid-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

/* Section Header */
.rates-header {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
    z-index: 10;
}

.rates-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    color: white;
    border-radius: 9999px;
    padding: 8px 16px;
    font-size: 14px;
    margin-bottom: 16px;
}

.rates-badge-dot {
    width: 8px;
    height: 8px;
    background: #f97316;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.rates-title {
    font-size: 48px;
    color: white;
    margin: 0 0 16px 0;
    font-weight: var(--font-weight-medium);
}

.rates-underline {
    height: 4px;
    width: 96px;
    background: linear-gradient(to right, #f97316, #3b82f6);
    border-radius: 9999px;
    margin: 0 auto 16px;
}

.rates-description {
    font-size: 18px;
    color: #bfdbfe;
    line-height: 1.6;
    max-width: 768px;
    margin: 0 auto;
}

/* Benefits Bar */
.rates-benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .rates-benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.rates-benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.rates-benefit-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.rates-benefit-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(to bottom right, #f97316, #ea580c);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rates-benefit-icon i {
    font-size: 24px;
    color: white;
}

.rates-benefit-content {
    flex: 1;
}

.rates-benefit-label {
    font-size: 16px;
    color: white;
    margin: 0 0 4px 0;
    font-weight: var(--font-weight-medium);
}

.rates-benefit-desc {
    font-size: 14px;
    color: #bfdbfe;
    margin: 0;
}

/* Rates Cards Grid */
.rates-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .rates-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .rates-cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Rate Card */
.rate-card-new {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 32px;
    cursor: pointer;
    transition: all 0.5s;
    overflow: hidden;
}

.rate-card-new:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: translateY(-8px);
}

/* Gradient Overlay */
.rate-card-gradient-overlay {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.rate-card-new:hover .rate-card-gradient-overlay {
    opacity: 0.05;
}

.rate-gradient-blue {
    background: linear-gradient(to bottom right, #3b82f6, #06b6d4);
}

.rate-gradient-purple {
    background: linear-gradient(to bottom right, #9333ea, #ec4899);
}

.rate-gradient-orange {
    background: linear-gradient(to bottom right, #f97316, #dc2626);
}

.rate-gradient-green {
    background: linear-gradient(to bottom right, #22c55e, #10b981);
}

/* Rate Card Content */
.rate-card-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

/* Rate Card Icon */
.rate-card-icon {
    width: 100%;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    margin-bottom: 24px;
    gap: 20px;
}

.rate-card-new:hover .rate-icon-wrapper {
    transform: scale(1.1) rotate(6deg);
}

.rate-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.5s;
    margin: 0;
}

.rate-icon-wrapper.rate-icon-blue {
    background: linear-gradient(to bottom right, #3b82f6, #06b6d4);
}

.rate-icon-wrapper.rate-icon-purple {
    background: linear-gradient(to bottom right, #9333ea, #ec4899);
}

.rate-icon-wrapper.rate-icon-orange {
    background: linear-gradient(to bottom right, #f97316, #dc2626);
}

.rate-icon-wrapper.rate-icon-green {
    background: linear-gradient(to bottom right, #22c55e, #10b981);
}

.rate-card-icon .rate-icon-wrapper i {
    font-size: 32px;
    color: white;
}

.rate-card-icon .rate-icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Rate Card Info */
.rate-card-info {
    margin-bottom: 16px;
}

.rate-card-type {
    font-size: 18px;
    color: #0f172a;
    margin: 0 0 8px 0;
    font-weight: var(--font-weight-medium);
}

.rate-card-value {
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-shrink: 0;
    margin: 0;
    text-align: right;
}

.rate-card-icon .rate-card-value {
    margin-bottom: 0;
    margin-left: auto;
}

.rate-number {
    font-size: 36px;
    background: linear-gradient(to right, #ea580c, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: var(--font-weight-medium);
    line-height: 1;
    white-space: nowrap;
}

.rate-percent {
    font-size: 18px;
    color: #64748b;
}

.rate-card-subtext {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

/* Rate Card Features */
.rate-card-features {
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rate-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #64748b;
}

.rate-feature-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Rate Card Apply Button */
.rate-card-apply-btn {
    width: 100%;
    padding: 12px 24px;
    background: linear-gradient(to right, #f97316, #ea580c);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: all 0.3s;
}

.rate-card-new:hover .rate-card-apply-btn {
    background: linear-gradient(to right, #ea580c, #dc2626);
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.3);
}

/* Bottom CTA */
.rates-bottom-cta {
    text-align: center;
    position: relative;
    z-index: 10;
}

.btn-view-rate-card {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-view-rate-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
    color: white;
    text-decoration: none;
}

.btn-view-rate-card i {
    font-size: 16px;
    transition: transform 0.3s;
}

.btn-view-rate-card:hover i {
    transform: translateX(4px);
}

.rates-disclaimer {
    font-size: 14px;
    color: #bfdbfe;
    margin: 16px 0 0 0;
}

/* Gallery Section */
/* Photo Gallery Section */
.photo-gallery-section {
    padding: 96px 0;
    background: linear-gradient(to bottom, white, #f8fafc, white);
}

/* Gallery Header */
.gallery-header {
    text-align: center;
    margin-bottom: 64px;
}

.gallery-header-wrapper {
    display: inline-block;
}

.gallery-badge {
    font-size: 14px;
    letter-spacing: 0.05em;
    color: #ea580c;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: var(--font-weight-medium);
}

.gallery-title {
    font-size: 48px;
    color: #0f172a;
    margin: 0 0 16px 0;
    font-weight: var(--font-weight-medium);
}

.gallery-underline {
    height: 6px;
    width: 128px;
    background: linear-gradient(to right, #f97316, #2563eb, #9333ea);
    border-radius: 9999px;
    margin: 0 auto;
}

/* Gallery Grid */
.gallery-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (min-width: 640px) {
    .gallery-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-grid-new {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-item-new {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.5s;
}

.gallery-item-new:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.gallery-image-wrapper {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease-out;
}

.gallery-item-new:hover .gallery-image {
    transform: scale(1.1);
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.5s;
}

.gallery-item-new:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    transform: translateY(16px);
    transition: transform 0.5s;
}

.gallery-item-new:hover .gallery-overlay-content {
    transform: translateY(0);
}

.gallery-image-title {
    color: white;
    font-size: 18px;
    margin: 0;
    font-weight: var(--font-weight-medium);
}

/* Gallery Footer - View More Button */
.gallery-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 48px;
    padding-top: 32px;
}

.gallery-view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(to right, #2563eb, #1d4ed8);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

.gallery-view-more-btn:hover {
    background: linear-gradient(to right, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(37, 99, 235, 0.3);
    color: white;
    text-decoration: none;
}

.gallery-view-more-btn:focus {
    outline: 3px solid #2563eb;
    outline-offset: 2px;
}

.gallery-view-more-btn i {
    font-size: 14px;
    transition: transform 0.3s;
}

.gallery-view-more-btn:hover i {
    transform: translateX(4px);
}

/* Credit Cards Section */
/* Bank Offers Section */
.bank-offers-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, white, #f8fafc);
}

/* Offers Header */
.offers-header {
    margin-bottom: 64px;
}

.offers-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fed7aa;
    color: #9a3412; /* Improved contrast: changed from #c2410c to darker #9a3412 for better contrast on light orange background */
    border-radius: 9999px;
    padding: 8px 16px;
    font-size: 14px;
    margin-bottom: 16px;
    font-weight: 600; /* Added font-weight for better visibility */
}

.offers-badge i {
    font-size: 16px;
}

.offers-header-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 768px) {
    .offers-header-content {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.offers-header-left {
    flex: 1;
}

.offers-title {
    font-size: 40px;
    color: #0f172a;
    margin: 0 0 12px 0;
    font-weight: var(--font-weight-medium);
}

.offers-underline {
    height: 4px;
    width: 80px;
    background: linear-gradient(to right, #f97316, #2563eb);
    border-radius: 9999px;
    margin-bottom: 16px;
}

.offers-description {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    max-width: 672px;
    margin: 0;
}

.btn-view-all-offers {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: #1e293b;
    padding: 12px 24px;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-view-all-offers:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.btn-view-all-offers i {
    font-size: 16px;
    transition: transform 0.3s;
}

.btn-view-all-offers:hover i {
    transform: translateX(4px);
}

/* Offers Grid */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.offer-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    border: 1px solid #f1f5f9;
    transition: all 0.5s;
    position: relative;
}

.offer-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
    transform: translateY(-8px);
}

/* Offer Card Header */
.offer-card-header {
    position: relative;
    padding: 32px;
    color: white;
    overflow: hidden;
}

.offer-decorative-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(64px);
    opacity: 0.1;
}

.offer-circle-1 {
    top: 0;
    right: 0;
    width: 128px;
    height: 128px;
    background: white;
}

.offer-circle-2 {
    bottom: 0;
    left: 0;
    width: 96px;
    height: 96px;
    background: rgba(0, 0, 0, 0.1);
}

.offer-header-content {
    position: relative;
    z-index: 10;
}

.offer-brand-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.offer-brand {
    font-size: 24px;
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.05em;
}

.offer-brand-row i {
    font-size: 32px;
    opacity: 0.8;
}

/* Card Visual */
.offer-card-visual {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
}

.card-chip {
    height: 40px;
    width: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    margin-bottom: 12px;
}

.card-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.card-line {
    height: 8px;
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.card-line.short {
    width: 75%;
}

.card-number-section {
    margin-bottom: 16px;
}

.card-number-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
}

.card-number {
    font-size: 14px;
    letter-spacing: 0.1em;
}

.card-number-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.card-logo-placeholder {
    height: 32px;
    width: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

/* Gradients */
.visa-gradient {
    background: linear-gradient(to bottom right, #2563eb, #1e40af);
}

.rupay-gradient {
    background: linear-gradient(to bottom right, #f97316, #dc2626);
}

.mastercard-gradient {
    background: linear-gradient(to bottom right, #dc2626, #ec4899);
}

/* Cashback Badge */
.offer-cashback-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 9999px;
    padding: 6px 16px;
    font-size: 14px;
}

.offer-cashback-badge i {
    font-size: 16px;
}

/* Offer Card Body */
.offer-card-body {
    padding: 32px;
}

.offer-card-info {
    margin-bottom: 16px;
}

.offer-card-title {
    font-size: 20px;
    color: #0f172a;
    margin: 0 0 8px 0;
    font-weight: var(--font-weight-medium);
}

.offer-card-description {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Benefits */
.offer-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.benefit-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-icon i {
    font-size: 12px;
}

.benefit-icon.blue-icon {
    background: #dbeafe;
}

.benefit-icon.blue-icon i {
    color: #2563eb;
}

.benefit-icon.orange-icon {
    background: #fed7aa;
}

.benefit-icon.orange-icon i {
    color: #ea580c;
}

.benefit-icon.red-icon {
    background: #fee2e2;
}

.benefit-icon.red-icon i {
    color: #dc2626;
}

.benefit-text {
    font-size: 14px;
    color: #1e293b;
}

/* Offer Actions */
.offer-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-offer-apply {
    width: 100%;
    padding: 14px 28px;
    border: none;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.btn-offer-apply.visa-btn {
    background: linear-gradient(to right, #2563eb, #1e40af);
}

.btn-offer-apply.rupay-btn {
    background: linear-gradient(to right, #f97316, #dc2626);
}

.btn-offer-apply.mastercard-btn {
    background: linear-gradient(to right, #dc2626, #ec4899);
}

.btn-offer-apply:hover {
    opacity: 0.9;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.btn-offer-apply i {
    transition: transform 0.3s;
}

.offer-card:hover .btn-offer-apply i {
    transform: translateX(4px);
}

.btn-offer-details {
    width: 100%;
    padding: 12px 28px;
    background: transparent;
    border: none;
    border-radius: var(--radius);
    font-size: 14px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-offer-details:hover {
    background: #f8fafc;
    color: #0f172a;
}

/* Bottom Banner */
.offers-bottom-banner {
    background: linear-gradient(to right, #2563eb, #9333ea);
    border-radius: 24px;
    padding: 48px;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .offers-bottom-banner {
        padding: 96px 48px;
    }
}

.banner-decorative-bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    pointer-events: none;
}

.banner-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(96px);
}

.banner-circle-1 {
    top: 0;
    right: 0;
    width: 256px;
    height: 256px;
    background: white;
}

.banner-circle-2 {
    bottom: 0;
    left: 0;
    width: 384px;
    height: 384px;
    background: #fbcfe8;
}

.banner-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

@media (min-width: 768px) {
    .banner-content {
        grid-template-columns: 1fr 1fr;
    }
}

.banner-title {
    color: white;
    font-size: 30px;
    margin: 0 0 16px 0;
    font-weight: var(--font-weight-medium);
}

.banner-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 24px 0;
}

.banner-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-take-quiz,
a.btn-take-quiz {
    display: inline-block;
    text-decoration: none;
    text-align: center;
    background: white;
    color: #2563eb;
    padding: 14px 28px;
    border: none;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: background 0.3s;
}

.btn-take-quiz:hover,
a.btn-take-quiz:hover {
    background: #eff6ff;
    color: #2563eb;
    text-decoration: none;
}

.btn-compare-cards,
a.btn-compare-cards {
    display: inline-block;
    text-decoration: none;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: background 0.3s;
}

.btn-compare-cards:hover,
a.btn-compare-cards:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
}

.banner-right {
    display: none;
}

@media (min-width: 768px) {
    .banner-right {
        display: flex;
        justify-content: flex-end;
    }
}

.banner-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.banner-card-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

.banner-card-item i {
    font-size: 32px;
    color: white;
    margin-bottom: 8px;
}

.banner-card-label {
    font-size: 14px;
    color: white;
}

/* Digital Section */
.digital-section {
    padding: 80px 0;
    background: linear-gradient(to bottom right, #eff6ff, #f3e8ff, #fce7f3);
    position: relative;
    overflow: hidden;
}

.digital-bg-decoration {
    position: absolute;
    inset: 0;
    opacity: 0.3;
    pointer-events: none;
}

.digital-bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(96px);
}

.digital-bg-circle-1 {
    top: 25%;
    right: 25%;
    width: 384px;
    height: 384px;
    background: #c084fc;
}

.digital-bg-circle-2 {
    bottom: 25%;
    left: 25%;
    width: 384px;
    height: 384px;
    background: #93c5fd;
}

.digital-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 10;
}

/* Phone Wrapper */
.digital-phone-wrapper {
    position: relative;
}

.digital-phone-container {
    position: relative;
}

.phone-frame {
    position: relative;
    max-width: 384px;
    margin: 0 auto;
}

.phone-body {
    position: relative;
    background: linear-gradient(to bottom right, #1e293b, #0f172a);
    border-radius: 48px;
    padding: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.phone-screen {
    background: white;
    border-radius: 40px;
    overflow: hidden;
}

/* Phone Status Bar */
.phone-status-bar {
    background: linear-gradient(to right, #2563eb, #9333ea);
    padding: 12px 24px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
}

.status-time {
    font-weight: var(--font-weight-medium);
}

.status-indicators {
    display: flex;
    gap: 4px;
}

.status-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
}

.status-dot.dim {
    background: rgba(255, 255, 255, 0.6);
}

/* Phone App Content */
.phone-app-content {
    padding: 24px;
}

.phone-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.phone-welcome {
    flex: 1;
}

.welcome-text {
    font-size: 16px;
    color: #0f172a;
    margin-bottom: 4px;
    font-weight: var(--font-weight-medium);
}

.welcome-name {
    font-size: 12px;
    color: #64748b;
}

.phone-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(to bottom right, #f97316, #ea580c);
    border-radius: 50%;
}

/* Balance Card */
.phone-balance-card {
    background: linear-gradient(to bottom right, #2563eb, #9333ea);
    border-radius: 16px;
    padding: 24px;
    color: white;
    margin-bottom: 24px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.balance-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.balance-amount {
    font-size: 24px;
    font-weight: var(--font-weight-medium);
    margin-bottom: 16px;
}

.balance-bars {
    display: flex;
    gap: 8px;
}

.balance-bar {
    height: 8px;
    width: 48px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.balance-bar.short {
    width: 32px;
}

/* Quick Actions */
.phone-quick-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.quick-action-item {
    text-align: center;
}

.action-icon {
    height: 48px;
    width: 48px;
    background: #f1f5f9;
    border-radius: 12px;
    margin: 0 auto 8px;
}

.action-label {
    font-size: 12px;
    color: #64748b;
}

/* Transactions */
.phone-transactions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.transaction-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 12px;
}

.transaction-avatar {
    width: 40px;
    height: 40px;
    background: #e2e8f0;
    border-radius: 50%;
    flex-shrink: 0;
}

.transaction-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.transaction-line {
    height: 8px;
    width: 96px;
    background: #e2e8f0;
    border-radius: 4px;
}

.transaction-line.short {
    width: 64px;
}

.transaction-amount {
    height: 12px;
    width: 48px;
    background: #e2e8f0;
    border-radius: 4px;
}

/* Phone Notch */
.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 24px;
    width: 128px;
    background: #1e293b;
    border-radius: 0 0 24px 24px;
}

/* Floating Elements */
.phone-floating-qr {
    position: absolute;
    top: -32px;
    right: -32px;
    background: white;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    z-index: 20;
}

.phone-floating-qr i {
    font-size: 64px;
    color: #2563eb;
}

.phone-floating-badge {
    position: absolute;
    bottom: -32px;
    left: -32px;
    background: linear-gradient(to bottom right, #22c55e, #10b981);
    border-radius: 16px;
    padding: 16px;
    color: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    z-index: 20;
}

.floating-badge-label {
    font-size: 12px;
    margin-bottom: 4px;
}

.floating-badge-icon {
    font-size: 24px;
}

/* Decorative Circles */
.phone-decorative-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(64px);
    opacity: 0.5;
}

.phone-decorative-1 {
    top: 50%;
    left: 0;
    width: 96px;
    height: 96px;
    background: #93c5fd;
}

.phone-decorative-2 {
    bottom: 0;
    right: 0;
    width: 128px;
    height: 128px;
    background: #c084fc;
}

/* Digital Content */
.digital-content {
    display: flex;
    flex-direction: column;
}

.digital-header {
    margin-bottom: 32px;
}

.digital-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #dbeafe;
    color: #1e40af;
    border-radius: 9999px;
    padding: 8px 16px;
    font-size: 14px;
    margin-bottom: 16px;
}

.digital-badge i {
    font-size: 16px;
}

.digital-title {
    font-size: 40px;
    color: #0f172a;
    margin: 0 0 16px 0;
    font-weight: var(--font-weight-medium);
    line-height: 1.2;
}

.digital-title-gradient {
    display: block;
    background: linear-gradient(to right, #ea580c, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.digital-underline {
    height: 4px;
    width: 80px;
    background: linear-gradient(to right, #f97316, #2563eb);
    border-radius: 9999px;
    margin-bottom: 24px;
}

.digital-description {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Digital Features */
.digital-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.digital-feature-item,
a.digital-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
}

a.digital-feature-item:hover,
a.digital-feature-item:focus {
    text-decoration: none;
    color: inherit;
}

.digital-feature-item:hover,
a.digital-feature-item:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateX(-8px);
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.digital-feature-item:hover .feature-icon-wrapper {
    transform: scale(1.1);
}

.feature-icon-wrapper i {
    font-size: 28px;
    color: white;
}

.feature-icon-wrapper.green-gradient-icon {
    background: linear-gradient(to bottom right, #22c55e, #10b981);
}

.feature-icon-wrapper.blue-gradient-icon {
    background: linear-gradient(to bottom right, #3b82f6, #06b6d4);
}

.feature-icon-wrapper.purple-gradient-icon {
    background: linear-gradient(to bottom right, #a855f7, #ec4899);
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 18px;
    color: #0f172a;
    margin: 0 0 4px 0;
    font-weight: var(--font-weight-medium);
}

.feature-description {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.feature-arrow {
    opacity: 0;
    transition: opacity 0.3s;
    color: #94a3b8;
}

.digital-feature-item:hover .feature-arrow {
    opacity: 1;
}

.feature-arrow i {
    font-size: 20px;
}

/* Digital Downloads */
.digital-downloads {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.download-label {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 12px;
}

.download-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn-app-store-download,
.btn-google-play-download {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #0f172a;
    color: white;
    padding: 16px 24px;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-app-store-download:hover,
.btn-google-play-download:hover {
    background: #1e293b;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.download-icon-wrapper {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.download-icon-wrapper i {
    font-size: 24px;
    color: white;
}

.download-text {
    text-align: left;
}

.download-label-small {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2px;
}

.download-platform {
    font-size: 16px;
    font-weight: var(--font-weight-medium);
}

/* Digital Stats */
.digital-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid #e2e8f0;
}

.digital-stat {
    text-align: center;
}

.stat-value {
    font-size: 30px;
    background: linear-gradient(to right, #ea580c, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
    font-weight: var(--font-weight-medium);
}

.stat-label {
    font-size: 12px;
    color: #64748b;
}

/* Footer */
/* New Footer Styles */
.new-footer {
    background: linear-gradient(to bottom, #1e293b, #000000);
    color: var(--primary-foreground);
    margin-top: 50px;
}

/* Newsletter Section - Reduced padding for compact footer */
.newsletter-section {
    background: linear-gradient(to right, #ea580c, #2563eb);
    padding: 24px 0;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.newsletter-title {
    color: white;
    font-size: 18px;
    margin-bottom: 4px;
    font-weight: var(--font-weight-medium);
}

.newsletter-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius);
    color: white;
    font-size: 14px;
    backdrop-filter: blur(4px);
    transition: border-color 0.3s, background 0.3s;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.25);
}

.newsletter-btn {
    background: white;
    color: #2563eb;
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background 0.3s, transform 0.2s;
    flex-shrink: 0;
}

.newsletter-btn:hover {
    background: #eff6ff;
    transform: translateY(-1px);
}

.newsletter-btn i {
    margin-left: 8px;
    font-size: 14px;
}

/* Footer Main Content - No padding */
.footer-main-content {
    padding: 0;
}

.footer-top-section {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 24px;
    margin-bottom: 24px;
    padding-top: 32px;
}

/* Footer Content Wrapper - Contact & Compliance side by side */
.footer-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.footer-logo-area {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-logo-img {
    max-width: 80px;
    height: auto;
    display: block;
}

.footer-logo-custom img {
    max-width: 80px;
    height: auto;
    display: block;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-text .text-white {
    color: white;
    font-size: 14px;
    margin: 0;
}

.footer-description {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.5;
    margin-bottom: 16px;
}

.footer-social-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-label {
    font-size: 14px;
    color: #94a3b8;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background: linear-gradient(135deg, #f97316, #2563eb);
    color: white;
    transform: scale(1.1);
}

.social-icon i {
    font-size: 20px;
}

/* Footer Links Grid - Reduced gap for compact footer - 2x2 grid */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 20px;
}

.footer-link-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.footer-column-title {
    color: white;
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    margin-bottom: 12px;
    text-align: left;
}

.footer-link-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
    align-items: flex-start;
    padding: 0;
    margin: 0;
}

.footer-link-list li {
    text-align: left;
    width: 100%;
}

.footer-link-list li a {
    text-align: left;
    display: block;
    width: 100%;
}

.footer-link {
    font-size: 13px;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
    text-align: left;
}

.footer-link:hover {
    color: white;
    transform: translateX(4px);
}

/* Footer Bottom Wrapper - Flex container for separator and bottom bar */
.footer-bottom-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Footer Separator - Flex row separator between top and bottom footer */
.footer-separator {
    width: 100%;
    height: 1px;
    background: #334155;
    margin: 0 0 16px 0;
    flex-shrink: 0;
}

/* Footer Middle Section - Reduced gap for compact footer */
/* Footer Contact Section */
.footer-contact-section {
    display: flex;
    flex-direction: column;
}

/* Footer Compliance Section */
.footer-compliance-section {
    display: flex;
    flex-direction: column;
}

.footer-section-title {
    color: white;
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    margin-bottom: 16px;
    text-align: left;
}

/* Contact Items - Reduced gap for compact footer */
.contact-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s;
}

.contact-icon.purple-icon {
    background: rgba(168, 85, 247, 0.1);
}

.contact-item:hover .contact-icon.purple-icon {
    background: rgba(168, 85, 247, 0.2);
}

.contact-icon.orange-icon {
    background: rgba(249, 115, 22, 0.1);
}

.contact-item:hover .contact-icon.orange-icon {
    background: rgba(249, 115, 22, 0.2);
}

.contact-icon.blue-icon {
    background: rgba(59, 130, 246, 0.1);
}

.contact-item:hover .contact-icon.blue-icon {
    background: rgba(59, 130, 246, 0.2);
}

.contact-icon i {
    font-size: 16px;
}

.contact-icon.purple-icon i {
    color: #a855f7;
}

.contact-icon.orange-icon i {
    color: #f97316;
}

.contact-icon.blue-icon i {
    color: #3b82f6;
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 5px;
    line-height: 1.2;
}

.contact-value {
    font-size: 12px;
    color: white;
    line-height: 1.3;
    margin: 0;
}

.break-all {
    word-break: break-all;
}

/* Compliance Section - Reduced spacing for compact footer - One row layout */
.compliance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 12px;
}

.compliance-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 8px 10px;
    transition: all 0.3s;
}

.compliance-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.compliance-name {
    color: white;
    font-size: 12px;
    font-weight: var(--font-weight-medium);
    margin-bottom: 1px;
    line-height: 1.2;
}

.compliance-desc {
    font-size: 10px;
    color: #94a3b8;
    line-height: 1.2;
    margin: 0;
}

/* Security Badge - Reduced padding for compact footer */
.security-badge {
    background: linear-gradient(to right, rgba(34, 197, 94, 0.1), rgba(16, 185, 129, 0.1));
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 6px;
    padding: 10px;
}

.security-badge-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.security-icon {
    width: 32px;
    height: 32px;
    background: #22c55e;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.security-icon i {
    font-size: 18px;
    color: white;
}

.security-text {
    flex: 1;
}

.security-title {
    color: #4ade80;
    font-size: 12px;
    font-weight: var(--font-weight-medium);
    margin-bottom: 1px;
    line-height: 1.2;
}

.security-desc {
    font-size: 10px;
    color: #94a3b8;
    line-height: 1.2;
    margin: 0;
}

/* Footer Bottom Bar - Reduced spacing for compact footer */
.footer-bottom-bar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 13px;
    padding: 16px 0;
}

.footer-copyright {
    color: #94a3b8;
    text-align: center;
}

.footer-visitor-counter {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    font-size: 14px;
}

.footer-visitor-counter .visitor-counter-label {
    color: #94a3b8;
}

.footer-visitor-counter .visitor-counter-number {
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    padding: 4px 12px;
    border-radius: 12px;
    min-width: 60px;
    text-align: center;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.footer-bottom-link {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-link:hover {
    color: white;
}

/* DICGC Badge Section */
.dicgc-badge-section {
    /*background: linear-gradient(to right, #16a34a, #15803d);
    border-top: 1px solid #22c55e;*/
    padding: 12px 0;
}

.dicgc-badge-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

/* Scroll to Top Button */
.scroll-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ea580c, #2563eb);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

/* Hide scroll-to-top button in WordPress admin area */
body.wp-admin .scroll-to-top-btn,
.admin-bar .scroll-to-top-btn {
    display: none !important;
}

/* Also hide if inside iframe (Elementor editor, etc.) */
html[data-wpadminbar] + body .scroll-to-top-btn,
iframe body .scroll-to-top-btn {
    display: none !important;
}

.scroll-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top-btn:hover {
    background: linear-gradient(135deg, #dc2626, #1d4ed8);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transform: translateY(-3px) scale(1.05);
}

.scroll-to-top-btn:active {
    transform: translateY(0) scale(0.95);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.scroll-to-top-btn i {
    transition: transform 0.3s ease;
}

.scroll-to-top-btn:hover i {
    transform: translateY(-2px);
}



/* Responsive adjustments */
@media (max-width: 768px) {
    .scroll-to-top-btn {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 18px;
    }
}

.dicgc-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dicgc-icon i {
    font-size: 20px;
    color: white;
}

.dicgc-text {
    font-size: 12px;
    color: #94a3b8;
    margin: 0;
    line-height: 1.4;
}

.dicgc-text strong {
    font-weight: var(--font-weight-medium);
}

/* Responsive Design for New Header */
@media (max-width: 768px) {
    .utility-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }
    
    .utility-left {
        width: 100%;
        flex-wrap: wrap;
        gap: 10px;
        max-width: 100%;
        overflow: hidden;
    }
    
    .utility-right {
        width: 100%;
        flex-wrap: wrap;
        justify-content: flex-start;
        flex-shrink: 0;
        gap: 8px;
        overflow: visible;
        max-width: 100%;
    }
    
    /* Ensure language selector doesn't overflow on mobile */
    .utility-right .language-selector {
        position: relative;
        flex-shrink: 0;
        max-width: 100%;
        z-index: 1002;
    }
    
    /* Prevent language dropdown from overlapping utility-left */
    .utility-right .language-dropdown {
        /* Ensure dropdown appears above utility-left */
        z-index: 1003 !important;
        /* Add margin to prevent overlap */
        margin-top: 4px;
    }
    
    /* Ensure utility-left content doesn't get covered */
    .utility-left {
        position: relative;
        z-index: 1;
    }
    
    /* Prevent any element from causing horizontal scroll */
    .utility-bar {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    /* Ensure all utility bar children don't overflow */
    .utility-bar * {
        max-width: 100%;
    }
    
    /* Fix for any fixed width elements in utility bar */
    .utility-right .utility-menu {
        flex-wrap: wrap;
        max-width: 100%;
    }
    
    /* Skip link now visible on mobile too */
    .skip-link {
        display: inline-flex;
        font-size: 11px;
        padding: 3px 8px;
        white-space: nowrap;
    }
    
    /* Contact info responsive */
    .utility-contact-info {
        font-size: 11px;
        gap: 10px;
        flex-wrap: wrap;
        white-space: normal;
        width: 100%;
    }
    
    .utility-contact-info .contact-details {
        line-height: 1.4;
        white-space: normal;
        word-break: break-word;
    }
    
    .utility-contact-info .contact-email {
        white-space: nowrap;
    }
    
    /* Allow header main grid rules above to control layout */
}

/* ==========================================================================
   Page and Single Post Styles
   ========================================================================== */

.page-content-wrapper,
.single-post-wrapper {
    padding: 10px 0;
    min-height: 60vh;
}

.page-content,
.single-post-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-header,
.post-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
}

.page-title,
.post-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-meta,
.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: #64748b;
}

.page-meta span,
.post-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.page-meta i,
.post-meta i {
    color: #94a3b8;
}

.post-meta a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s;
}

.post-meta a:hover {
    color: #60a5fa;
}

.post-featured-image {
    margin: 30px 0;
    border-radius: 12px;
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.page-content-body,
.post-content-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--foreground);
}

.page-content-body p,
.post-content-body p {
    margin-bottom: 20px;
}

.page-content-body h2,
.post-content-body h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 30px 0 15px;
    color: var(--foreground);
}

.page-content-body h3,
.post-content-body h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 25px 0 12px;
    color: var(--foreground);
}

.page-content-body ul,
.post-content-body ul,
.page-content-body ol,
.post-content-body ol {
    margin: 20px 0;
    padding-left: 30px;
}

.page-content-body li,
.post-content-body li {
    margin-bottom: 10px;
}

.page-links,
.post-links {
    margin: 30px 0;
    padding: 20px;
    background: var(--secondary);
    border-radius: 8px;
}

.page-links a,
.post-links a {
    color: #60a5fa;
    text-decoration: none;
    margin: 0 5px;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background 0.3s;
}

.page-links a:hover,
.post-links a:hover {
    background: rgba(96, 165, 250, 0.1);
}

/* ==========================================================================
   Related Content Section
   ========================================================================== */

.related-content-section {
    margin: 60px 0;
    padding: 40px 0;
    background: var(--secondary);
    border-radius: 12px;
}

.related-content-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 30px;
    text-align: center;
}

.related-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.related-content-item {
    background: var(--card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.related-content-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.related-content-thumbnail {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--muted);
}

.related-content-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.related-content-item:hover .related-content-thumbnail img {
    transform: scale(1.05);
}

.related-content-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.related-content-item-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.related-content-item-title a {
    color: var(--foreground);
    text-decoration: none;
    transition: color 0.3s;
}

.related-content-item-title a:hover {
    color: #60a5fa;
}

.related-content-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 15px;
}

.related-content-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.related-content-meta i {
    color: #94a3b8;
    font-size: 12px;
}

.related-content-meta a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s;
}

.related-content-meta a:hover {
    color: #60a5fa;
}

.related-content-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 15px;
    flex: 1;
}

.related-content-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #60a5fa;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: gap 0.3s, color 0.3s;
    margin-top: auto;
}

.related-content-read-more:hover {
    color: #3b82f6;
    gap: 12px;
}

.related-content-read-more i {
    font-size: 12px;
    transition: transform 0.3s;
}

.related-content-read-more:hover i {
    transform: translateX(4px);
}

/* Responsive Styles for Related Content */
@media (max-width: 768px) {
    .related-content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .related-content-title {
        font-size: 24px;
    }
    
    .page-title,
    .post-title {
        font-size: 28px;
    }
    
    .page-content-body,
    .post-content-body {
        font-size: 15px;
    }
}

/* ==========================================================================
   Search Results Styles
   ========================================================================== */

.search-results-wrapper {
    padding: 40px 0;
    min-height: 60vh;
}

.search-results-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
}

.search-results-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 10px;
}

.search-query {
    color: #60a5fa;
    font-style: italic;
}

.search-results-count {
    font-size: 14px;
    color: #64748b;
}

.search-results-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.search-result-item {
    background: var(--card);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    gap: 20px;
}

.search-result-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.search-result-thumbnail {
    flex-shrink: 0;
    width: 200px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--muted);
}

.search-result-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.search-result-item:hover .search-result-thumbnail img {
    transform: scale(1.05);
}

.search-result-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.search-result-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 10px;
}

.search-result-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.search-result-meta i {
    color: #94a3b8;
    font-size: 12px;
}

.search-result-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.search-result-title a {
    color: var(--foreground);
    text-decoration: none;
    transition: color 0.3s;
}

.search-result-title a:hover {
    color: #60a5fa;
}

.search-result-excerpt {
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 15px;
    flex: 1;
}

.search-result-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #60a5fa;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: gap 0.3s, color 0.3s;
    margin-top: auto;
}

.search-result-read-more:hover {
    color: #3b82f6;
    gap: 12px;
}

.search-result-read-more i {
    font-size: 12px;
    transition: transform 0.3s;
}

.search-result-read-more:hover i {
    transform: translateX(4px);
}

.search-pagination {
    margin-top: 40px;
    padding: 20px 0;
    text-align: center;
}

.search-pagination .page-numbers {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.search-pagination .page-numbers a,
.search-pagination .page-numbers span {
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    color: var(--foreground);
    background: var(--secondary);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.search-pagination .page-numbers a:hover {
    background: #60a5fa;
    color: white;
}

.search-pagination .page-numbers .current {
    background: #60a5fa;
    color: white;
}

.no-search-results {
    text-align: center;
    padding: 60px 20px;
    max-width: 700px;
    margin: 0 auto;
}

.no-results-icon {
    font-size: 64px;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.no-results-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 15px;
}

.no-results-message {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.6;
}

.no-results-message strong {
    color: #60a5fa;
    font-weight: 600;
}

.search-suggestions {
    background: var(--secondary);
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    text-align: left;
}

.suggestions-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 15px;
}

.suggestions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.suggestions-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #64748b;
    font-size: 15px;
}

.suggestions-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #60a5fa;
    font-weight: bold;
    font-size: 20px;
}

.search-again h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 20px;
}

.search-again {
    max-width: 500px;
    margin: 0 auto;
}

.search-again .search-form {
    position: relative;
}

.search-again .search-input {
    width: 100%;
    padding: 12px 16px 12px 45px;
    border: 2px solid #e2e8f0;
    border-radius: 9999px;
    font-size: 16px;
}

.search-again .search-input:focus {
    outline: none;
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.1);
}

/* Responsive Styles for Search Results */
@media (max-width: 768px) {
    .search-result-item {
        flex-direction: column;
    }
    
    .search-result-thumbnail {
        width: 100%;
        height: 200px;
    }
    
    .search-results-title {
        font-size: 24px;
    }
    
    .search-result-title {
        font-size: 20px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-main-content {
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: center;
    }
    
    .header-logo-section {
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }
    
    .header-bank-info {
        align-items: center;
    }
    
    .header-search-section {
        order: 3;
    }
    
    .header-dicgc-section {
        justify-content: center;
        order: 2;
    }
    
    .search-bar-new .search-input {
        width: 100%;
        max-width: 300px;
    }
    
    .nav-content {
        flex-wrap: wrap;
    }
    
    .btn-customer-awareness {
        margin-left: 0;
        margin-top: 8px;
        width: 100%;
        text-align: center;
    }
    
    .hero-banner-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .hero-banner-title {
        font-size: 36px;
    }
    
    .hero-banner-description {
        font-size: 16px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .hero-banner-section {
        padding: 32px 0 48px;
    }
    
    .hero-floating-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 24px;
        max-width: 100%;
    }
    
    .loan-calculator-grid {
        grid-template-columns: 1fr;
    }
    
    .calculator-content-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .calculator-title {
        font-size: 32px;
    }
    
    .breakdown-grid {
        grid-template-columns: 1fr;
    }
    
    .calculator-results {
        width: 100%;
    }
    
    .calculator-actions {
        flex-direction: column;
    }
    
    .btn-apply-loan {
        width: 100%;
    }
    
    .digital-content-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .digital-title {
        font-size: 32px;
    }
    
    .digital-description {
        font-size: 16px;
    }
    
    .phone-frame {
        max-width: 100%;
    }
    
    .phone-floating-qr,
    .phone-floating-badge {
        display: none;
    }
    .calculator-actions {
    margin: 25px 0;
   width: 80% !important;
}
    .digital-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .download-buttons {
        flex-direction: column;
    }
    
    .btn-app-store-download,
    .btn-google-play-download {
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        flex-direction: column;
        display: none;
        width: 100%;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        width: 100%;
        text-align: center;
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .subscribe-form {
        flex-direction: column;
    }
    
    .subscribe-form input {
        width: 100%;
    }
    
    .search-bar input {
        width: 100%;
    }
    
    .products-grid,
    .loans-grid,
    .services-grid,
    .digital-grid,
    .literacy-grid {
        grid-template-columns: 1fr;
    }
    
    /* Banking Services Responsive */
    /* Disable fade-in animation for services section on mobile to prevent loading issues */
    .banking-services-section.fade-in-up {
        opacity: 1 !important;
        transform: none !important;
    }
    
    /* Hide background decoration on mobile for better performance */
    .services-bg-decoration {
        display: none;
    }
    
    .service-categories-wrapper {
        gap: 60px;
    }
    
    .category-header {
        padding: 0 15px;
    }
    
    .category-header-top {
        margin-bottom: 14px;
    }
    
    .category-title {
        font-size: 28px;
        gap: 10px;
    }
    
    .category-icon {
        width: 56px;
        height: 56px;
        flex-shrink: 0;
    }
    
    .category-description {
        font-size: 16px;
        margin-top: 10px;
        padding: 0 5px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .rates-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .rate-card-icon {
        min-height: 70px;
        gap: 16px;
        margin-bottom: 20px;
    }
    
    .rate-icon-wrapper {
        width: 56px;
        height: 56px;
    }
    
    .rate-card-icon .rate-icon-wrapper i {
        font-size: 28px;
    }
    
    .rate-number {
        font-size: 32px;
    }
    
    .rate-percent {
        font-size: 16px;
    }
    
    .rates-title {
        font-size: 36px;
    }
    
    .rates-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .notice-board-grid {
        grid-template-columns: 1fr;
    }
    
    .notice-card-content {
        height: 280px;
    }
    
    .offers-title {
        font-size: 32px;
    }
    
    .offers-header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .offers-bottom-banner {
        padding: 32px 24px;
    }
    
    .banner-title {
        font-size: 24px;
    }
    
    .banner-description {
        font-size: 16px;
    }
    
    .banner-buttons {
        flex-direction: column;
    }
    
    .btn-take-quiz,
    .btn-compare-cards {
        width: 100%;
    }
    
    .quick-links-bar-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-links-additional {
        flex-direction: column;
        gap: 12px;
    }
    
    .quick-link-additional-item {
        width: 100%;
        justify-content: center;
    }
    
    .gallery-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-title {
        font-size: 36px;
    }
    
    .footer-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .app-stats {
        flex-direction: column;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    /* Footer Responsive */
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer-top-section {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .footer-top-section {
        grid-template-columns: 1fr;
    }
    
    .footer-content-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-contact-section,
    .footer-compliance-section {
        gap: 24px;
    }
    
    .compliance-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-bar {
        text-align: center;
        flex-direction: column;
    }
    
    .footer-visitor-counter {
        justify-content: center;
        order: 2;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 12px;
        order: 3;
    }
    
    .footer-copyright {
        order: 1;
    }
}

@media (max-width: 480px) {
    .hero-left h1 {
        font-size: 28px;
    }
    
    .hero-left p {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .gallery-grid-new {
        grid-template-columns: 1fr;
    }
    
    .gallery-title {
        font-size: 32px;
    }
    
    .gallery-footer {
        margin-top: 32px;
        padding-top: 24px;
    }
    
    .gallery-view-more-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .quick-links-icons {
        gap: 10px;
    }
    
    .quick-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    /* Footer Mobile */
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .footer-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-top-section {
        grid-template-columns: 1fr;
    }
    
    .newsletter-title {
        font-size: 20px;
    }
    
    .footer-main-content {
        padding: 0;
    }
    
    /* Banking Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .category-title {
        font-size: 24px;
    }
    
    .service-categories-wrapper {
        gap: 48px;
    }
}

/* Menu Toggle Button */
.menu-toggle {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 20px;
    margin-bottom: 10px;
}

.menu-toggle:hover {
    background: #e55a2b;
}

/* Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-overlay:not(.hidden):not([style*="display: none"]) {
    display: flex;
}

.loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-overlay[style*="display: none"] {
    display: none !important;
}

.loading-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top-color: #ff6b35;
    border-radius: 50%;
    animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.spinner-ring:nth-child(1) {
    animation-delay: -0.45s;
}

.spinner-ring:nth-child(2) {
    animation-delay: -0.3s;
    border-top-color: #2563eb;
}

.spinner-ring:nth-child(3) {
    animation-delay: -0.15s;
    border-top-color: #22c55e;
}

.spinner-ring:nth-child(4) {
    border-top-color: #9333ea;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loading-text {
    font-size: 18px;
    color: #1e293b;
    font-weight: var(--font-weight-medium);
    animation: pulse 2s ease-in-out infinite;
}

/* Gallery Lightbox */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox.active {
    display: flex;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(4px);
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    z-index: 10001;
    animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10002;
    color: #1e293b;
    font-size: 20px;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: white;
    transform: scale(1.1);
}

.lightbox-close {
    top: -60px;
    right: 0;
}

.lightbox-prev {
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-caption {
    text-align: center;
    color: white;
    margin-top: 20px;
    font-size: 16px;
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.animated {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.animated {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.animated {
    opacity: 1;
    transform: scale(1);
}


/* Accessibility Improvements */
/* Screen Reader Text - Visually hidden but accessible to screen readers */
.screen-reader-text,
.sr-only {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    clip-path: inset(50%) !important;
    word-wrap: normal !important;
}

.screen-reader-text:focus,
.sr-only:focus {
    position: static !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    clip: auto !important;
    clip-path: none !important;
    padding: 8px 16px !important;
    background: #2563eb !important;
    color: white !important;
    z-index: 100000 !important;
    border-radius: 4px !important;
}

/* Previous skip-link focus styles - commented out */
/*
.skip-link:focus {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10001;
    padding: 8px 16px;
    background: #2563eb;
    color: white;
    text-decoration: none;
    border-radius: 0 0 4px 0;
}

.skip-link:not(:focus) {
    position: absolute;
    left: -9999px;
}
*/

/* Skip-link focus styles - always visible */
.skip-link:focus {
    outline: 3px solid #2563eb;
    outline-offset: 2px;
    background: #2563eb;
    color: white;
}

/* Improve color contrast for accessibility */
/* Ensure text meets WCAG AA contrast ratio (4.5:1 for normal text, 3:1 for large text) */
body {
    color: #1e293b; /* Darker text for better contrast on white background */
}

/* Improve contrast for muted/secondary text */
.muted-foreground,
.text-muted,
.text-gray-500 {
    color: #475569 !important; /* Improved from lighter grays */
}

/* Improve contrast for links */
a {
    color: #1d4ed8; /* Darker blue for better contrast */
}

a:hover,
a:focus {
    color: #1e40af; /* Even darker on hover */
}

/* Improve contrast for buttons */
button,
.btn {
    color: #ffffff;
    background-color: #2563eb;
}

button:hover,
.btn:hover {
    background-color: #1d4ed8;
}

/* Ensure form inputs have good contrast */
input[type="text"],
input[type="email"],
input[type="search"],
input[type="password"],
textarea,
select {
    color: #1e293b;
    background-color: #ffffff;
    border-color: #cbd5e1;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="search"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
    border-color: #2563eb;
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Improve contrast for utility bar text */
.utility-bar {
    color: #1e293b;
}

.utility-bar a {
    color: #1d4ed8;
}

/* Improve contrast for navigation */
.nav-item {
    color: #ffffff;
}

.nav-item:hover {
    color: #fbbf24; /* Lighter yellow for better visibility on dark blue */
    background-color: rgba(255, 255, 255, 0.1);
}

/* Main menu focus - white color only for top-level items */
#primary-menu > li > a:focus,
.nav-menu-new > li > a:focus,
.nav-item:focus {
    color: #fff !important;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Ensure minimum font size for readability */
body,
p,
li,
td,
th {
    font-size: 16px; /* Minimum 16px for better readability */
}

/* Small text should still be readable */
small,
.text-sm {
    font-size: 14px; /* Minimum 14px for small text */
    color: #475569; /* Ensure good contrast even for small text */
}

/* Additional contrast improvements for common low-contrast elements */
/* Fix all instances of light orange (#ea580c) to darker orange for better contrast */
a[class*="learn-more"],
.service-learn-more span,
.service-learn-more {
    color: #c2410c !important; /* Darker orange for better contrast */
}

/* Fix light gray text colors for better contrast */
.text-gray-500,
.text-muted,
.muted-text {
    color: #475569 !important; /* Darker gray instead of #64748b or #94a3b8 */
}

/* Improve contrast for badges and labels */
.badge,
.label,
.tag {
    color: #1e293b !important; /* Dark text for better contrast */
    font-weight: 500;
}

/* Fix any remaining light orange colors in buttons and links */
.btn[style*="#ea580c"],
a[style*="#ea580c"] {
    color: #c2410c !important;
}

/* Ensure all text on light backgrounds has sufficient contrast */
.card,
.card-body,
.service-card,
.offer-card-body {
    color: #1e293b; /* Dark text for better contrast on light backgrounds */
}

/* Fix event and badge text colors */
.event-badge,
.badge-text,
.section-badge {
    color: #9a3412 !important; /* Darker orange/brown for better contrast */
    font-weight: 600;
}

/* Focus Management - Only show outline for keyboard navigation (Tab key) */
/* Remove outline on mouse clicks */
*:focus {
    outline: none;
}

/* Show outline only for keyboard navigation using :focus-visible */
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid #2563eb;
    outline-offset: 2px;
    outline-style: solid;
}

/* Remove outline when using mouse */
body.using-mouse *:focus {
    outline: none !important;
}

/* Ensure outline shows for keyboard navigation */
body:not(.using-mouse) *:focus-visible {
    outline: 3px solid #2563eb !important;
    outline-offset: 2px;
}

/* Language Translation Styles */
.translated-content {
    transition: opacity 0.3s ease;
}

/* Responsive Lightbox */
@media (max-width: 768px) {
    .lightbox-prev,
    .lightbox-next {
        left: 10px;
        right: 10px;
        top: auto;
        transform: none;
    }
    
    .lightbox-prev {
        bottom: 20px;
    }
    
    .lightbox-next {
        bottom: 80px;
    }
    
    .lightbox-close {
        top: 20px;
        right: 20px;
    }
    
    .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.1);
        margin-top: 0;
        display: none;
    }
    
    .nav-item-wrapper.active .nav-dropdown {
        display: block;
    }
}

.footer-bottom {
    display: none;
}
.language-btn{
    display: none;
}
/* Utility Right Menu */
.utility-right .utility-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 18px; /* spacing between items */
    align-items: center;
}

/* Menu Items */
.utility-right .utility-menu li {
    position: relative;
    padding-right: 18px; /* space after text before separator */
    font-size: 14px;
}

/* Separator “|” after each menu item */
.utility-right .utility-menu li:not(:last-child)::after {
    content: "|";
    position: absolute;
    right: 0;
    color: #a8b0c0; /* light grey like screenshot */
    font-weight: 300;
}

/* Menu links */
.utility-right .utility-menu li a {
    color: #3a4a5f; /* bluish-grey similar to screenshot */
    text-decoration: none;
    font-size: 14px;
}

.utility-right .utility-menu li a:hover {
    color: #0c5adb; /* blue hover */
}

li.menu-item.menu-item-gtranslate {
    top: -15px !important;
}

/* Fix gtranslate in mobile menu - don't allow it to go outside */
@media (max-width: 1023px) {
    li.menu-item.menu-item-gtranslate {
        top: 0 !important;
        position: relative !important;
    }
    
    /* Ensure gtranslate dropdown stays within mobile menu */
    #mobileMenu .menu-item-gtranslate,
    .mobile-menu-list .menu-item-gtranslate {
        position: relative !important;
        top: 0 !important;
        width: 100% !important;
        overflow: hidden;
    }
    
    #mobileMenu .menu-item-gtranslate .gt_float_switcher,
    .mobile-menu-list .menu-item-gtranslate .gt_float_switcher {
        width: 100% !important;
        max-width: 100% !important;
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
    }
}
.gt_float_switcher {
    font-family: inherit !important;
    font-size: 14px !important;
    border-radius: 2px;
    color: #555;
    display: inline-block;
    line-height: 20px;
    box-shadow: rgba(0, 0, 0, 0.15) 0 0px 0px !important;
    background: #f4f8fd !important;
    overflow: hidden;
    transition: all .5s 
cubic-bezier(0.4, 0, 1, 1);
}
.gt_float_switcher .gt-selected {
    position: relative;
    z-index: 888;
    background-color: #f4f8fd !important;
    cursor: pointer;
    text-transform: uppercase;
    overflow: hidden;
}
.gt_float_switcher .gt-selected .gt-current-lang {
    padding: 5px 5px !important;
    color: #333;
    font-weight: normal !important;
}
.gt_float_switcher img {
    vertical-align: middle;
    display: inline-block;
    width: 15px !important;
    height: auto;
    margin: 0 5px 0 0;
    border-radius: 3px;
}
.gt_float_switcher .gt_options {
    position: relative;
    z-index: 999 !important;
    background-color: #fff !important;
}
#colophon {
    display: none;
}

/* Ensure footer is visible */
.site-footer,
#colophon2 {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    width: 100%;
    background: linear-gradient(to bottom, #1e293b, #000000);
    color: #ffffff;
    padding: 0;
    margin: 0;
}

/* Footer Main Content - 3 Column Layout */
.site-footer {
    background: linear-gradient(to bottom, #1e293b, #000000);
    color: #ffffff;
    padding: 0;
}

.site-footer .footer-main-content {
    padding: 48px 0;
}

.site-footer .footer-top-section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* Left Column: About & Social */
.site-footer .footer-about-social {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.site-footer .footer-logo {
    margin-bottom: 16px;
}

.site-footer .footer-logo img {
    max-width: 120px;
    height: auto;
    border-radius: 50%;
}

.site-footer .footer-about-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.site-footer .footer-section-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    margin-top: 0;
}

.site-footer .footer-social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.site-footer .footer-social-link {
    color: #60a5fa;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
}

.site-footer .footer-social-link:hover {
    color: #93c5fd;
    transform: translateY(-2px);
}

/* Middle Column: Contact */
.site-footer .footer-contact {
    display: flex;
    flex-direction: column;
}

.site-footer .footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.site-footer .footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin: 0;
}

.site-footer .footer-contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
}

.site-footer .footer-contact-icon.purple-icon {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
}

.site-footer .footer-contact-icon.orange-icon {
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
}

.site-footer .footer-contact-icon.blue-icon {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.site-footer .footer-contact-details {
    flex: 1;
}

.site-footer .footer-contact-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    margin-bottom: 4px;
    font-weight: 500;
}

.site-footer .footer-contact-value {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.5;
}

.site-footer .footer-contact-value span {
    display: block;
}

.site-footer .footer-contact-link {
    color: inherit;
    text-decoration: none;
}

.site-footer .footer-contact-link:hover {
    color: inherit;
    text-decoration: none;
}

/* Right Column: Regulatory Information */
.site-footer .footer-regulatory {
    display: flex;
    flex-direction: column;
}

.site-footer .footer-regulatory-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.site-footer .regulatory-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: background 0.3s, transform 0.3s;
}

.site-footer .regulatory-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.site-footer .regulatory-item.secure-banking {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.3);
    grid-column: 1 / -1;
}

.site-footer .regulatory-icon {
    font-size: 24px;
    color: #60a5fa;
    margin-bottom: 8px;
}

.site-footer .regulatory-item.secure-banking .regulatory-icon {
    color: #22c55e;
}

.site-footer .regulatory-name {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.site-footer .regulatory-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    line-height: 1.4;
}

/* Footer Bottom */
.site-footer .footer-bottom {
    padding: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

.site-footer .footer-separator {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 8px;
}

.site-footer .footer-copyright {
    color: #ffffff;
    font-size: 14px;
    margin: 0;
}

.site-footer .footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin: 8px 0;
}

.site-footer .footer-bottom-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s;
}

.site-footer .footer-bottom-link:hover {
    color: #ffffff;
}

.site-footer .footer-dicgc-banner {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 8px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
    color: #ffffff;
    font-size: 13px;
}

.site-footer .dicgc-icon {
    color: #22c55e;
    font-size: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .site-footer .footer-top-section {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .site-footer .footer-regulatory-grid {
        grid-template-columns: 1fr;
    }
    
    .site-footer .footer-regulatory-grid .regulatory-item.secure-banking {
        grid-column: 1;
    }
}

/* Hero Slider Styles */
.hero-slide {
    transition: opacity 0.5s ease-in-out;
    position: relative;
}

/* Full Image Slide - Takes entire hero-banner-section */
.hero-slide-full-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.hero-full-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.5s ease-in-out;
    display: block;
    z-index: 1;
}

/* Full Image Slide - Takes entire hero-banner-section */
.hero-slide-full-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

/* Ensure full-image slides cover entire section - full viewport width */
.hero-banner-section.has-full-image-slide .hero-slide-full-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

/* Make full-image take full viewport width */
.hero-banner-section.has-full-image-slide .hero-full-image {
    width: 100vw;
    max-width: 100vw;
    left: 50%;
    margin-left: -50vw;
    position: absolute;
}

/* Responsive adjustments for hero section */
@media (max-width: 768px) {
    .hero-banner-section {
        min-height: 500px;
        padding: 32px 0 60px;
    }
    
    .hero-banner-section.has-full-image-slide {
        min-height: 500px;
        padding: 0;
    }
    
    .hero-full-image {
        min-height: 500px;
    }
    
    .hero-banner-section.has-full-image-slide .hero-carousel-controls {
        bottom: 20px;
        gap: 12px;
    }
    
    .hero-banner-section.has-full-image-slide .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .hero-banner-section.has-full-image-slide .carousel-btn i {
        font-size: 18px;
    }
    
    .hero-banner-title {
        font-size: 36px;
    }
    
    .hero-banner-description {
        font-size: 16px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .hero-banner-section {
        min-height: 400px;
        padding: 24px 0 48px;
    }
    
    .hero-banner-section.has-full-image-slide {
        min-height: 400px;
        padding: 0;
    }
    
    .hero-full-image {
        min-height: 400px;
    }
    
    .hero-banner-section.has-full-image-slide .hero-carousel-controls {
        bottom: 15px;
        gap: 8px;
    }
    
    .hero-banner-section.has-full-image-slide .carousel-btn {
        width: 36px;
        height: 36px;
    }
    
    .hero-banner-section.has-full-image-slide .carousel-btn i {
        font-size: 16px;
    }
    
    .hero-banner-title {
        font-size: 28px;
    }
    
    .hero-banner-description {
        font-size: 14px;
    }
    
    .hero-banner-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* Slide with Content - removed grid since we're using background image */

.hero-slide-image {
    transition: opacity 0.5s ease-in-out;
    width: 100%;
    height: auto;
    object-fit: cover;
    max-width: 100%;
}

.hero-banner-content {
    padding-top: 30px;
}

/* Hero Banner Image Styles */

@media (max-width: 768px) {
    .hero-slide-with-content .hero-banner-content {
        grid-template-columns: 1fr;
    }
    
    .hero-full-image {
        height: 400px;
    }
    
    .phone-frame {
        max-width: 300px;
    }
    
    .phone-screen {
        min-height: 500px;
    }
    
    .phone-floating-qr,
    .phone-floating-badge {
        display: none;
    }
}

.contact-value a {
    color: #fff;
}

/* TablePress Blue Corporate Style */
.tablepress thead th {
    background-color: #054eed !important;
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    border: 1px solid #d0d0d0 !important;
    padding: 12px;
}

.tablepress tbody td {
    border: 1px solid #d0d0d0 !important;
    padding: 12px 10px;
    font-size: 14px;
}

/* Zebra rows */
.tablepress .row-hover:nth-child(odd) {
    background: #ffffff;
}
.tablepress .row-hover:nth-child(even) {
    background: #f4f7ff;
}

/* Hover highlight */
.tablepress tbody tr:hover {
    background: #e8f0ff !important;
}

/* Table full width */
.tablepress {
    width: 100% !important;
    border-collapse: collapse !important;
}

/* Responsive scroll */
.tablepress-scroll-wrapper {
    overflow-x: auto !important;
}
span.dt-column-order {
    display: none;
}
.service-card-content a {
    text-decoration: none;
}

/* ============================================
   MOBILE MENU IMPROVEMENTS - CSS ONLY
   ============================================ */

/* Mobile Menu Overlay/Backdrop */
@media (max-width: 1023px) {
    /* Mobile Menu Backdrop/Overlay */
    body.mobile-menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    body.mobile-menu-open::before {
        opacity: 1;
        visibility: visible;
    }

    /* Mobile Menu Button Improvements */
    .mobile-menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 6px;
        color: white;
        padding: 0;
        cursor: pointer;
        font-size: 20px;
        transition: all 0.3s ease;
        z-index: 10001;
        position: relative;
    }

    .mobile-menu-btn:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.05);
    }

    .mobile-menu-btn:focus {
        outline: 2px solid rgba(255, 255, 255, 0.5);
        outline-offset: 2px;
    }

    .mobile-menu-btn.active {
        background: rgba(255, 255, 255, 0.2);
    }

    /* Mobile Menu Container - Full Screen Sidebar */
    #mobileMenu.mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height for mobile */
        background: linear-gradient(180deg, #1e3a8a 0%, #1e40af 50%, #1e3a8a 100%);
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
        z-index: 9999;
        display: flex;
        flex-direction: column;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        padding: 0;
        border-top: none;
        box-sizing: border-box;
        opacity: 1;
        visibility: visible;
    }

    #mobileMenu.mobile-menu.show {
        transform: translateX(0);
        display: flex;
    }

    /* Mobile Menu Header with Close Button */
    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(0, 0, 0, 0.2);
    }

    .mobile-menu-title {
        margin: 0;
        color: white;
        font-size: 18px;
        font-weight: 600;
    }

    .mobile-menu-close {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 6px;
        color: white;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 18px;
        padding: 0;
    }

    .mobile-menu-close:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.1);
    }

    .mobile-menu-content {
        flex: 1;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }

    /* Mobile Menu List Container */
    .mobile-menu-list,
    #mobileMenu.mobile-menu > ul {
        list-style: none;
        margin: 0;
        padding: 12px 0;
        flex: 1;
        overflow-y: auto;
        overflow-x: hidden;
        width: 100%;
        box-sizing: border-box;
    }

    /* Mobile Menu Items */
    .mobile-menu-list li,
    #mobileMenu.mobile-menu li {
        margin: 0;
        padding: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
        position: relative;
    }

    .mobile-menu-list li:last-child,
    #mobileMenu.mobile-menu li:last-child {
        border-bottom: none;
    }

    .mobile-menu-list > li > a,
    #mobileMenu.mobile-menu > ul > li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 20px;
        color: rgba(255, 255, 255, 0.95);
        text-decoration: none;
        font-size: 15px;
        font-weight: 500;
        transition: all 0.3s ease;
        background: transparent;
        border-left: 3px solid transparent;
        min-height: 52px;
        width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
    }

    .mobile-menu-list > li > a:hover,
    .mobile-menu-list > li > a:focus,
    #mobileMenu.mobile-menu > ul > li > a:hover,
    #mobileMenu.mobile-menu > ul > li > a:focus {
        background: rgba(255, 255, 255, 0.1);
        color: white;
        border-left-color: #f97316;
        padding-left: 24px;
    }

    /* Dropdown Arrow for Items with Submenu */
    .mobile-menu-list > li.menu-item-has-children > a::after,
    #mobileMenu.mobile-menu > ul > li.menu-item-has-children > a::after {
        content: '\f107';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        font-size: 14px;
        opacity: 0.7;
        transition: all 0.3s ease;
    }

    .mobile-menu-list > li.menu-item-has-children > a.active::after,
    .mobile-menu-list > li.menu-item-has-children.open > a::after,
    #mobileMenu.mobile-menu > ul > li.menu-item-has-children > a.active::after,
    #mobileMenu.mobile-menu > ul > li.menu-item-has-children.open > a::after {
        transform: rotate(180deg);
        opacity: 1;
    }

    /* Mobile Submenu */
    .mobile-menu-list .sub-menu,
    #mobileMenu.mobile-menu .sub-menu {
        display: none;
        list-style: none;
        margin: 0;
        padding: 0;
        background: rgba(0, 0, 0, 0.2);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-menu-list .sub-menu.active,
    #mobileMenu.mobile-menu .sub-menu.active,
    .mobile-menu-list .sub-menu.show,
    #mobileMenu.mobile-menu .sub-menu.show {
        display: block;
    }

    .mobile-menu-list .sub-menu li,
    #mobileMenu.mobile-menu .sub-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .mobile-menu-list .sub-menu li:last-child,
    #mobileMenu.mobile-menu .sub-menu li:last-child {
        border-bottom: none;
    }

    .mobile-menu-list .sub-menu a,
    #mobileMenu.mobile-menu .sub-menu a {
        display: flex;
        align-items: center;
        padding: 14px 20px 14px 44px;
        color: rgba(255, 255, 255, 0.85);
        text-decoration: none;
        font-size: 14px;
        font-weight: 400;
        transition: all 0.3s ease;
        background: transparent;
        border-left: 3px solid transparent;
        min-height: 48px;
    }

    .mobile-menu-list .sub-menu a:hover,
    .mobile-menu-list .sub-menu a:focus,
    #mobileMenu.mobile-menu .sub-menu a:hover,
    #mobileMenu.mobile-menu .sub-menu a:focus {
        background: rgba(255, 255, 255, 0.1);
        color: white;
        border-left-color: #f97316;
        padding-left: 48px;
    }

    /* Third Level Submenu */
    .mobile-menu-list .sub-menu .sub-menu,
    #mobileMenu.mobile-menu .sub-menu .sub-menu {
        background: rgba(0, 0, 0, 0.3);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .mobile-menu-list .sub-menu .sub-menu a,
    #mobileMenu.mobile-menu .sub-menu .sub-menu a {
        padding-left: 64px;
    }

    .mobile-menu-list .sub-menu .sub-menu a:hover,
    .mobile-menu-list .sub-menu .sub-menu a:focus,
    #mobileMenu.mobile-menu .sub-menu .sub-menu a:hover,
    #mobileMenu.mobile-menu .sub-menu .sub-menu a:focus {
        padding-left: 68px;
    }

    /* Customer Awareness Button in Mobile Menu */
    .mobile-menu .btn-customer-awareness {
        margin: 16px 20px;
        width: calc(100% - 40px);
        padding: 14px 20px;
        background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 15px;
        font-weight: 600;
        text-align: center;
        text-decoration: none;
        display: block;
        box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
        transition: all 0.3s ease;
    }

    .mobile-menu .btn-customer-awareness:hover {
        background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
        box-shadow: 0 6px 16px rgba(249, 115, 22, 0.4);
        transform: translateY(-2px);
    }

    /* Prevent Body Scroll When Menu is Open */
    body.mobile-menu-open {
        overflow: hidden !important;
        position: fixed !important;
        width: 100% !important;
        height: 100% !important;
        left: 0;
        right: 0;
    }
    
    /* Ensure backdrop appears and is clickable */
    body.mobile-menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        background: rgba(0, 0, 0, 0.6);
        /* Removed backdrop-filter: blur(4px); to prevent blur/unclickable issues */
        z-index: 9998;
        pointer-events: all;
        cursor: pointer;
    }

    /* Smooth Scrolling for Mobile Menu */
    .mobile-menu,
    .mobile-menu-list {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    /* Custom Scrollbar for Mobile Menu */
    .mobile-menu::-webkit-scrollbar,
    .mobile-menu-list::-webkit-scrollbar {
        width: 4px;
    }

    .mobile-menu::-webkit-scrollbar-track,
    .mobile-menu-list::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.1);
    }

    .mobile-menu::-webkit-scrollbar-thumb,
    .mobile-menu-list::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.2);
        border-radius: 2px;
    }

    .mobile-menu::-webkit-scrollbar-thumb:hover,
    .mobile-menu-list::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.3);
    }

    /* Navigation Bar Adjustments for Mobile */
    .main-nav-new {
        position: relative;
    }
    
    /* Disable sticky nav on mobile */
    .main-nav-new.nav-sticky {
        position: relative !important;
    }

    .nav-content {
        padding: 12px 0;
    }

    /* Hide Desktop Menu on Mobile */
    .nav-menu-new {
        display: none !important;
    }

    .btn-customer-awareness {
        display: none !important;
    }
}

/* Sitemap Styles */
.sitemap-wrapper {
    padding: 40px 0;
}

.sitemap-content {
    max-width: 1200px;
    margin: 0 auto;
}

.sitemap-section {
    margin-bottom: 40px;
    padding: 24px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sitemap-section-title {
    font-size: 24px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e2e8f0;
}

.sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 12px;
}

.sitemap-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background: #f8fafc;
    border-radius: 6px;
    transition: background 0.3s;
}

.sitemap-item:hover {
    background: #e2e8f0;
}

.sitemap-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    flex: 1;
}

.sitemap-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.sitemap-date {
    color: #64748b;
    font-size: 12px;
    margin-left: 12px;
}

@media (max-width: 768px) {
    .sitemap-list {
        grid-template-columns: 1fr;
    }
    
    .sitemap-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .sitemap-date {
        margin-left: 0;
    }
}

/* Mobile Menu - Very Small Screens (Portrait) */
@media (max-width: 480px) {
    .mobile-menu {
        width: 90%;
        max-width: 280px;
    }

    .mobile-menu-list > li > a {
        padding: 14px 16px;
        font-size: 14px;
    }

    .mobile-menu-list .sub-menu a {
        padding-left: 40px;
        font-size: 13px;
    }

    .mobile-menu-header {
        padding: 14px 16px;
    }
}

/* Landscape Mobile - Adjust Menu Width */
@media (max-width: 1023px) and (orientation: landscape) {
    .mobile-menu {
        width: 70%;
        max-width: 300px;
    }
}

/* CAPTCHA Styles for Login Page */
.bnk1theme-captcha-wrapper {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bnk1theme-captcha-wrapper .g-recaptcha {
    transform: scale(0.9);
    transform-origin: 0 0;
}

@media (max-width: 480px) {
    .bnk1theme-captcha-wrapper .g-recaptcha {
        transform: scale(0.8);
    }
}

/* Login page CAPTCHA container */
#loginform .bnk1theme-captcha-wrapper,
#registerform .bnk1theme-captcha-wrapper {
    margin: 15px 0;
    padding: 10px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

/* Error message styling for CAPTCHA */
#login_error .bnk1theme-captcha-error,
.message.bnk1theme-captcha-error {
    border-left-color: #dc3232;
    background: #fff;
    padding: 12px;
    margin: 10px 0;
}
.gt_float_switcher .gt-selected .gt-current-lang span.gt_float_switcher-arrow {
    display: inline-block;
    height: 24px;
    width: 50px !important;
}

/* Hide Accessibility Widget Footer */
.ea11y-widget-footer,
.ea11y-widget-footer--no-statement {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}
.calculator-actions {
    margin: 25px 0;
    width: 18%;
    float: right;
}
nav.rank-math-breadcrumb p {
    margin: 5px;
}

/* Google Translate Selector - Styled like language dropdown */
select.gt_selector.notranslate {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    background: white !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    padding: 4px 12px !important;
    padding-left: 32px !important;
    cursor: pointer !important;
    transition: all 0.3s ease, background 0.3s !important;
    font-size: 10px !important;
    color: #1e293b !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 12 12'%3E%3Cpath fill='%23475569' d='M6 9L1 4h10z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 8px center !important;
    background-size: 10px !important;
    min-width: 100px !important;
    height: 28px !important;
    position: relative !important;
}

/* Add globe icon before select using pseudo-element */
select.gt_selector.notranslate::before {
    content: '\f0ac' !important; /* Font Awesome globe icon unicode */
    font-family: 'Font Awesome 5 Free' !important;
    font-weight: 900 !important;
    position: absolute !important;
    left: 8px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: #475569 !important;
    font-size: 12px !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

/* Alternative: Use wrapper with icon if pseudo-element doesn't work */
.gt-selector-wrapper {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    top: 14px !important;
}

.gt-selector-wrapper .fas.fa-globe {
    position: absolute !important;
    left: 8px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: #475569 !important;
    font-size: 12px !important;
    pointer-events: none !important;
    z-index: 2 !important;
}

.gt-selector-wrapper select.gt_selector.notranslate {
    padding-left: 32px !important;
}

/* Style the select on hover */
select.gt_selector.notranslate:hover {
    background-color: #f1f5f9 !important;
    border-color: #cbd5e1 !important;
}

/* Style the select when focused */
select.gt_selector.notranslate:focus {
    outline: none !important;
    border-color: #2563eb !important;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1) !important;
}

/* Style the dropdown options to match language-option */
select.gt_selector.notranslate option {
    padding: 8px 12px !important;
    background: white !important;
    color: #1e293b !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
}

/* Selected option styling */
select.gt_selector.notranslate option:checked,
select.gt_selector.notranslate option[selected] {
    background: #eff6ff !important;
    color: #2563eb !important;
    font-weight: 500 !important;
}

/* Hover state for options (when dropdown is open) */
select.gt_selector.notranslate option:hover {
    background: #f1f5f9 !important;
}

/* Responsive styles */
@media (max-width: 768px) {
    select.gt_selector.notranslate {
        font-size: 11px !important;
        padding: 3px 6px !important;
        padding-left: 28px !important;
        min-width: 90px !important;
        height: 26px !important;
    }
    
    .gt-selector-wrapper .fas.fa-globe,
    select.gt_selector.notranslate::before {
        font-size: 11px !important;
        left: 6px !important;
    }
}

@media (max-width: 480px) {
    select.gt_selector.notranslate {
        font-size: 10px !important;
        padding: 3px 5px !important;
        padding-left: 26px !important;
        min-width: 80px !important;
        height: 24px !important;
    }
}

/* View All Button Styles */
.section-view-all-wrapper {
    text-align: right;
    margin-top: -60px;
    margin-bottom: 24px;
    padding: 0;
    width: 100%;
    position: relative;
    z-index: 10;
}

.service-category {
    position: relative;
}

.service-category > .section-view-all-wrapper {
    margin-top: 0px;
    margin-bottom: 0;
}

.section-view-all-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
    white-space: nowrap;
}

.section-view-all-button:hover,
.section-view-all-button:focus {
    background: linear-gradient(135deg, #0052a3 0%, #003366 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
    color: #ffffff;
    text-decoration: none;
}

.section-view-all-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 102, 204, 0.3);
}

.section-view-all-button i {
    transition: transform 0.3s ease;
}

.section-view-all-button:hover i,
.section-view-all-button:focus i {
    transform: translateX(5px);
}

/* Responsive styles for View All button */
@media (max-width: 768px) {
    .category-header {
        padding: 0 15px;
    }
    
    .category-header-top {
        justify-content: center;
        margin-bottom: 14px;
    }
    
    .category-title {
        width: 100%;
        text-align: center;
        justify-content: center;
        font-size: 26px;
        gap: 10px;
    }
    
    .category-title span {
        word-break: break-word;
    }
    
    .category-icon {
        width: 56px;
        height: 56px;
        flex-shrink: 0;
    }
    
    .category-description {
        font-size: 16px;
        margin-top: 10px;
        padding: 0 5px;
        line-height: 1.5;
    }
    
    .section-view-all-wrapper {
        width: 100%;
        text-align: center;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    .section-view-all-button {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .service-category > .section-view-all-wrapper {
        margin-top: 20px;
        position: relative;
    }
}

/* ul#primary-menu li a:hover, ul#primary-menu li a:focus {
    color: #fff;
} */

/* Scroll offset for section anchors - space before heading */
#products-section,
#digital-banking-section,
#loans-section,
#services-section,
#financial-literacy-section,
#personal-banking-section,
#rates-charges-section {
    scroll-margin-top: 120px; /* Space before section heading when scrolling */
}

/* Hide homepage sections on inner pages */
body:not(.home) #products-section,
body:not(.home) #digital-banking-section,
body:not(.home) #loans-section,
body:not(.home) #services-section,
body:not(.home) #financial-literacy-section {
    display: none !important;
}

/* Also hide if not on front page (alternative selector) */
body:not(.page-template-front-page):not(.home) .service-category[id^="products-section"],
body:not(.page-template-front-page):not(.home) .service-category[id^="digital-banking-section"],
body:not(.page-template-front-page):not(.home) .service-category[id^="loans-section"],
body:not(.page-template-front-page):not(.home) .service-category[id^="services-section"],
body:not(.page-template-front-page):not(.home) .service-category[id^="financial-literacy-section"] {
    display: none !important;
}
a.nav-active {
    color: #1e293b !important;
}
