/* bank-recovery.html */
/* ===== NEW NAVIGATION STYLES ===== */

        /* Desktop dropdown nav */
        .nav-list {
            display: flex;
            align-items: center;
            gap: 0;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .nav-list > li {
            position: relative;
        }
        .nav-link {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            padding: 0.75rem 1rem;
            font-size: 0.8125rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--primary, #0a1628);
            text-decoration: none;
            transition: color 0.25s ease;
            white-space: nowrap;
        }
        .nav-link:hover {
            color: var(--accent, #c8a84e);
        }
        .nav-link .dropdown-arrow {
            width: 10px;
            height: 10px;
            transition: transform 0.25s ease;
            flex-shrink: 0;
        }
        .nav-list > li:hover .dropdown-arrow,
        .nav-list > li.dropdown-open .dropdown-arrow {
            transform: rotate(180deg);
        }

        /* Desktop dropdown panel */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 220px;
            background: var(--white, #fff);
            border: 1px solid var(--gray-200, #e5e7eb);
            border-radius: 12px;
            box-shadow: 0 12px 32px rgba(0,0,0,0.12);
            padding: 0.5rem 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(8px);
            transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
            z-index: 1000;
        }
        .nav-list > li:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .dropdown-menu a {
            display: block;
            padding: 0.75rem 1.25rem;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--primary, #0a1628);
            text-decoration: none;
            transition: background 0.2s ease, color 0.2s ease;
        }
        .dropdown-menu a:hover {
            background: var(--gray-50, #f9fafb);
            color: var(--accent, #c8a84e);
        }

        /* Hide desktop nav on mobile */
        @media (max-width: 900px) {
            .nav { display: none !important; }
        }

        /* ===== BURGER / MOBILE MENU ===== */
        .mobile-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 44px;
            height: 44px;
            background: none;
            border: none;
            cursor: pointer;
            z-index: 1100;
            gap: 5px;
        }
        .mobile-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--primary, #0a1628);
            border-radius: 2px;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }
        @media (max-width: 900px) {
            .mobile-toggle { display: flex; }
        }

        /* Burger X animation */
        .mobile-toggle.active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }
        .mobile-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        .mobile-toggle.active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* Mobile overlay menu */
        .mobile-menu-overlay {
            position: fixed;
            inset: 0;
            background: rgba(10, 22, 40, 0.5);
            backdrop-filter: blur(4px);
            z-index: 1050;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.35s ease, visibility 0.35s ease;
        }
        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: 0;
            width: 320px;
            max-width: 85vw;
            height: 100vh;
            background: var(--white, #fff);
            z-index: 1060;
            transform: translateX(100%);
            transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            overflow-y: auto;
            display: flex;
            flex-direction: column;
        }
        .mobile-menu.active {
            transform: translateX(0);
        }

        .mobile-menu-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.25rem 1.5rem;
            border-bottom: 1px solid var(--gray-200, #e5e7eb);
        }
        .mobile-menu-header .logo-title {
            font-size: 1rem;
            font-weight: 800;
            letter-spacing: 0.1em;
            color: var(--primary, #0a1628);
        }
        .mobile-menu-close {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gray-50, #f9fafb);
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s ease;
        }
        .mobile-menu-close:hover {
            background: var(--gray-200, #e5e7eb);
        }

        .mobile-menu-body {
            padding: 1rem 0;
            flex: 1;
        }

        /* Mobile nav items */
        .mobile-nav-item {
            border-bottom: 1px solid var(--gray-100, #f3f4f6);
        }
        .mobile-nav-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 1.5rem;
            font-size: 0.9375rem;
            font-weight: 700;
            color: var(--primary, #0a1628);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            transition: background 0.2s ease;
            cursor: pointer;
        }
        .mobile-nav-link:hover {
            background: var(--gray-50, #f9fafb);
        }
        .mobile-nav-link .mobile-arrow {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
            color: var(--gray-400, #9ca3af);
        }
        .mobile-nav-item.open .mobile-nav-link .mobile-arrow {
            transform: rotate(180deg);
            color: var(--accent, #c8a84e);
        }
        .mobile-nav-item.open > .mobile-nav-link {
            color: var(--accent, #c8a84e);
        }

        /* Mobile sub-menu */
        .mobile-sub-menu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease;
            background: var(--gray-50, #f9fafb);
        }
        .mobile-nav-item.open .mobile-sub-menu {
            max-height: 300px;
        }
        .mobile-sub-menu a {
            display: block;
            padding: 0.75rem 1.5rem 0.75rem 2.5rem;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--gray-600, #4b5563);
            text-decoration: none;
            transition: color 0.2s ease, background 0.2s ease;
        }
        .mobile-sub-menu a:hover {
            color: var(--accent, #c8a84e);
            background: var(--gray-100, #f3f4f6);
        }

        /* Mobile menu divider & secondary links */
        .mobile-menu-divider {
            height: 1px;
            background: var(--gray-200, #e5e7eb);
            margin: 0.75rem 1.5rem;
        }
        .mobile-secondary-links {
            padding: 0.25rem 0;
        }
        .mobile-secondary-links a {
            display: block;
            padding: 0.75rem 1.5rem;
            font-size: 0.8125rem;
            font-weight: 600;
            color: var(--gray-500, #6b7280);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            transition: color 0.2s ease;
        }
        .mobile-secondary-links a:hover {
            color: var(--accent, #c8a84e);
        }

        /* Mobile menu footer CTA */
        .mobile-menu-footer {
            padding: 1.25rem 1.5rem;
            border-top: 1px solid var(--gray-200, #e5e7eb);
        }
        .mobile-menu-footer .btn {
            display: block;
            width: 100%;
            text-align: center;
            padding: 1rem;
            font-size: 0.8125rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            background: var(--accent, #c8a84e);
            color: var(--white, #fff);
            border-radius: 10px;
            text-decoration: none;
            transition: background 0.25s ease, transform 0.25s ease;
        }
        .mobile-menu-footer .btn:hover {
            background: #d4edf4;
            color: var(--primary, #0a1628);
            transform: translateY(-2px);
        }

        /* Prevent body scroll when menu open */
        body.menu-open {
            overflow: hidden;
        }

        /* ===== END NAV STYLES ===== */


        /* Logo image styles */
        .logo-img {
            height: 110px;
            width: auto;
            display: block;
        }

        /* Mobile logo fix - prevent stretching on mobile devices */
        @media (max-width: 900px) {
            .logo-img {
                height: 70px;
                max-width: 220px;
                object-fit: contain;
            }
        }

        /* Reduce Book a Call button padding to give logo more space */
        .header-actions .btn-primary {
            padding-left: 1rem;
            padding-right: 1rem;
        }

        /* Book a Call button hover override */
        .header-actions .btn-primary:hover {
            background: #d4edf4 !important;
            color: var(--primary, #0a1628) !important;
        }

/* Additional styles for index3.html creative sections */

/* Two Column Card Hover Effect */
.column-card {
    transition: all 0.3s ease;
}

.column-card:hover {
    transform: translateY(-8px);
}

.column-card:hover .card-inner {
    border: 1px solid rgba(98, 191, 202, 0.2) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15) !important;
    transform: none !important;
}

/* Glassmorphism for Hero Service Boxes */
.hero-service-box {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15) !important;
}

.hero-service-box:hover {
    background: rgba(98, 191, 202, 0.12) !important;
    border: 1px solid rgba(98, 191, 202, 0.4) !important;
    box-shadow: 0 8px 32px 0 rgba(98, 191, 202, 0.25) !important;
}

.hero-service-title {
    color: #ffffff !important;
}

.hero-service-icon {
    background: rgba(98, 191, 202, 0.2) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(98, 191, 202, 0.3) !important;
}

.hero-service-icon svg {
    color: #62BFCA !important;
}

.hero-service-box:hover .hero-service-icon {
    background: rgba(98, 191, 202, 0.4) !important;
    border-color: rgba(98, 191, 202, 0.6) !important;
}

/* Tech Hero Background */
.hero {
    position: relative;
    overflow: hidden;
    background: #0a0f1a;
}

.hero-tech-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.35;
}

.hero-tech-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-tech-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(98, 191, 202, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(98, 191, 202, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
}

.hero-tech-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(98, 191, 202, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
}

.hero-tech-glow-1 {
    top: -200px;
    right: -100px;
    animation: float-glow 8s ease-in-out infinite;
}

.hero-tech-glow-2 {
    bottom: -200px;
    left: -100px;
    animation: float-glow 8s ease-in-out infinite 4s;
}

@keyframes float-glow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-circuit-lines {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.05;
}

.hero-circuit-lines svg {
    width: 100%;
    height: 100%;
}

/* View All Services Button */
.btn-view-services {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 12px;
    border: 2px solid #0f172a;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-view-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #62BFCA 0%, #4a9ba8 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-view-services:hover::before {
    left: 0;
}

.btn-view-services:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(98, 191, 202, 0.3);
    border-color: #62BFCA;
}

.btn-view-services svg {
    transition: transform 0.3s ease;
}

.btn-view-services:hover svg {
    transform: translateX(4px);
}

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

.service-image-card {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
    display: block;
}

.service-image-card:hover {
    transform: translateY(-8px);
}

.service-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-card-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 4rem 0;
}

.image-card-section.reverse {
    direction: rtl;
}

.image-card-section.reverse > * {
    direction: ltr;
}

.section-image-container {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.section-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.badge-icon {
    width: 48px;
    height: 48px;
    background: #0f172a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon svg {
    width: 24px;
    height: 24px;
    stroke: #62BFCA;
}

.badge-text {
    font-weight: 800;
    font-size: 1.125rem;
    color: #0f172a;
}

/* Direct consultation Section */
.direct-consultation-section {
    position: relative;
    padding: 8rem 0;
    background: #0f172a;
    overflow: hidden;
}

.consultation-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.consultation-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.consultation-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(98, 191, 202, 0.2));
    z-index: 1;
}

.consultation-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2362BFCA' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.consultation-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.consultation-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(98, 191, 202, 0.2);
    border: 1px solid rgba(98, 191, 202, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
}

.consultation-badge svg {
    width: 20px;
    height: 20px;
    stroke: #62BFCA;
}

.consultation-badge span {
    color: #62BFCA;
    font-weight: 800;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.consultation-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.consultation-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.consultation-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
}

.consultation-stat {
    text-align: center;
}

.consultation-stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #62BFCA;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.consultation-stat-label {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
    .service-image-grid,
    .image-card-section {
        grid-template-columns: 1fr;
    }

    .section-image-container {
        height: 400px;
    }

    .consultation-title {
        font-size: 2.5rem;
    }

    .consultation-stats {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .service-image-card {
        height: 300px;
    }
}

/* bank-recovery.html */
@media (max-width: 1024px) {
                section[style*="grid-template-columns: 1fr 1fr"] > div > div[style*="grid-template-columns: 1fr 1fr"] {
                    grid-template-columns: 1fr !important;
                    gap: 3rem !important;
                }
            }

/* bank-recovery.html */
.fraud-type-box { transition: all 0.3s ease; cursor: pointer; }
            .fraud-type-box:hover { transform: translateY(-8px); }
            .fraud-type-box:hover .fraud-type-icon { background: rgba(98, 191, 202, 0.2); transform: scale(1.1); }
            .fraud-type-icon { transition: all 0.3s ease; }
            @media (max-width: 768px) {
                section[style*="grid-template-columns: repeat(6, 1fr)"] > div > div { grid-template-columns: repeat(2, 1fr) !important; }
            }

/* bank-recovery.html */
.testimonial-slide { display: none; }
            .testimonial-slide.active { display: block; animation: fadeIn 0.5s; }
            @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
            .carousel-dot:hover { transform: scale(1.2); }

/* bank-recovery.html */
@media (max-width: 1024px) {
                section[style*="grid-template-columns: 1fr 1fr"] > div > div[style*="grid-template-columns: 1fr 1fr"] {
                    grid-template-columns: 1fr !important;
                }
                div[style*="grid-template-columns: 1fr 1fr"][style*="min-height: 500px"] {
                    grid-template-columns: 1fr !important;
                }
                div[style*="grid-template-columns: 1fr 1fr"][style*="min-height: 500px"] > div:last-child {
                    min-height: 400px !important;
                }
            }
            
            @media (max-width: 768px) {
                h2[style*="font-size: 2.5rem"] {
                    font-size: 2rem !important;
                }
                div[style*="grid-template-columns: 1fr 1fr"][style*="gap: 1.25rem"] {
                    grid-template-columns: 1fr !important;
                }
            }

/* bank-recovery.html */
.service-item:hover {
                transform: translateY(-4px);
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            }
            @media (max-width: 768px) {
                section[style*="grid-template-columns: repeat(2, 1fr)"] > div > div[style*="grid-template-columns: repeat(2, 1fr)"] {
                    grid-template-columns: 1fr !important;
                }
            }