:root {
    /* Cyber Mystic Color Palette */
    --primary: #00ff9d;      /* Cyber Teal */
    --primary-dark: #00cc7d;  /* Darker Teal */
    --secondary: #ff003c;     /* Deep Red */
    --secondary-dark: #cc002f; /* Darker Red */
    --accent: #9d00ff;        /* Mystic Purple */
    --spiritual: #7b68ee;     /* Spiritual Blue */
    --highlight: #ffcc00;     /* Gold */
    --dark: #0a0a0a;          /* Near Black */
    --darker: #111;           /* Slightly lighter than dark */
    --light: #f8f9fa;         /* Off-white */
    --gray: #616161;          /* Medium Gray */
    --dark-gray: #333;        /* Dark Gray */
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--spiritual));
    --gradient-dark: linear-gradient(135deg, var(--dark), #1a1a1a);
    --gradient-accent: linear-gradient(135deg, var(--accent), var(--spiritual));
    
    /* Text Colors */
    --text-primary: #212529;
    --text-secondary: #495057;
    --text-light: #f8f9fa;
    --text-muted: #6c757d;
    
    /* Typography */
    --font-primary: 'Rajdhani', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* Universal Text Contrast Solution */
[class*="bg-"] {
    /* Default text colors */
    --text-color: var(--text-primary);
    --heading-color: var(--text-primary);
    --muted-color: var(--text-muted);
    
    /* Auto-detect background darkness and set appropriate text colors */
    background-color: var(--bg-color, transparent);
    color: var(--text-color);
}

/* Dark backgrounds */
.bg-dark, .bg-primary, .bg-secondary, 
[class*="bg-"][style*="background"][style*="dark"],
[class*="bg-"][style*="background"][style*="#"],
[class*="bg-"][style*="background"][style*="rgb"],
[class*="bg-"][style*="background"][style*="linear-gradient"] {
    --text-color: var(--text-light);
    --heading-color: var(--text-light);
    --muted-color: rgba(255, 255, 255, 0.8);
}

/* Light backgrounds */
.bg-light, .bg-white, 
[class*="bg-"][style*="background: white"],
[class*="bg-"][style*="background: #fff"],
[class*="bg-"][style*="background: #ffffff"] {
    --text-color: #212529;
    --heading-color: #212529;
    --muted-color: #6c757d;
    color: #212529;
}

/* Ensure text is visible in light backgrounds */
.bg-light p,
.bg-white p,
.bg-light span,
.bg-white span,
.bg-light div,
.bg-white div,
.bg-light a:not(.btn),
.bg-white a:not(.btn) {
    color: #212529 !important;
}

/* Specific heading colors for light backgrounds */
.bg-light h1, .bg-light h2, .bg-light h3, .bg-light h4, .bg-light h5, .bg-light h6,
.bg-white h1, .bg-white h2, .bg-white h3, .bg-white h4, .bg-white h5, .bg-white h6 {
    color: #212529 !important;
}

/* Base Styles */
body {
    font-family: var(--font-secondary);
    color: var(--text-primary);
    background-color: var(--light);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Apply text colors */
p, li, td, th, label, .text-muted {
    color: var(--text-color, var(--text-primary));
}

h1, h2, h3, h4, h5, h6 {
    color: var(--heading-color, var(--text-primary));
}

.text-muted {
    color: var(--muted-color, var(--text-muted)) !important;
}

/* Cards should inherit text colors */
.card {
    color: var(--text-color, var(--text-primary));
}

.card h1, .card h2, .card h3,
.card h4, .card h5, .card h6 {
    color: var(--heading-color, var(--text-primary));
}

.card p, .card .text-muted {
    color: var(--text-color, var(--text-primary));
}

/* Force white text on primary/dark backgrounds */
.bg-primary, .bg-dark, .bg-secondary {
    --text-color: var(--text-light) !important;
    --heading-color: var(--text-light) !important;
    --muted-color: rgba(255, 255, 255, 0.8) !important;
}

/* Ensure text is visible on all backgrounds */
h1, h2, h3, h4, h5, h6 {
    color: #212529; /* Dark color for headings */
}

p, li, td, th, label, .text-muted {
    color: #495057; /* Slightly lighter than headings */
}

/* Dark background sections */
.bg-dark, .bg-primary, .bg-secondary {
    color: #fff; /* White text on dark backgrounds */
}

.bg-dark h1, .bg-dark h2, .bg-dark h3,
.bg-dark h4, .bg-dark h5, .bg-dark h6,
.bg-primary h1, .bg-primary h2, .bg-primary h3,
.bg-primary h4, .bg-primary h5, .bg-primary h6,
.bg-secondary h1, .bg-secondary h2, .bg-secondary h3,
.bg-secondary h4, .bg-secondary h5, .bg-secondary h6 {
    color: #fff;
}

.bg-dark p, .bg-dark li, .bg-dark .text-muted,
.bg-primary p, .bg-primary li, .bg-primary .text-muted,
.bg-secondary p, .bg-secondary li, .bg-secondary .text-muted {
    color: rgba(255, 255, 255, 0.9);
}

/* Light background sections */
.bg-light, .bg-white {
    color: #333; /* Dark text on light backgrounds */
}

.bg-light h1, .bg-light h2, .bg-light h3,
.bg-light h4, .bg-light h5, .bg-light h6,
.bg-white h1, .bg-white h2, .bg-white h3,
.bg-white h4, .bg-white h5, .bg-white h6 {
    color: #212529;
}

.bg-light p, .bg-light li, .bg-light .text-muted,
.bg-white p, .bg-white li, .bg-white .text-muted {
    color: #495057;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color:#b3b3b3;
}

p, li, td, th, label, .text-muted {
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Ensure text is visible on all backgrounds */
.card, .bg-light, .bg-white {
    color: #333;
}

.card h1, .card h2, .card h3, .card h4, .card h5, .card h6 {
    color: #1a1a1a;
}

/* Improve contrast for better readability */
.text-muted {
    color: #6c757d !important;
}

/* Ensure form text is visible */
.form-control, .form-select {
    color: #333;
    background-color: #fff;
}

/* Fix text visibility in cards */
.card {
    color: #333;
}

.card-body {
    color: #333;
}

/* Fix text in dark sections */
.bg-dark, .bg-primary {
    color: #fff;
}

.bg-dark h1, .bg-dark h2, .bg-dark h3, 
.bg-dark h4, .bg-dark h5, .bg-dark h6 {
    color: #fff;
}

.bg-dark p, .bg-dark li, .bg-dark .text-muted {
    color: rgba(255, 255, 255, 0.9);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

/* Buttons */
.btn {
    font-family: var(--font-primary);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--light) !important;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 168, 255, 0.3);
    color: var(--light) !important;
}

.btn-outline-light {
    border: 1px solid var(--primary);
    color: var(--primary) !important;
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--primary);
    color: var(--light) !important;
    border-color: var(--primary);
}

/* Topbar */
.topbar {
    background: var(--darker);
    color: var(--dark);
    font-size: 0.875rem;
    border-bottom: 1px solid var(--dark-gray);
}

.topbar .social a {
    color: var(--dark);
    margin-left: 12px;
}

/* Navbar */
.navbar {
    background-color: var() !important;
    box-shadow: var(--shadow-sm);
}

.navbar-brand {
    color: var(--dark) !important;
}

.navbar-brand span {
    color: var(--primary) !important;
}

/* Cards */
.card {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    background-color: #fff;
    color: #333; /* Default text color for cards */
    overflow: hidden;
    margin-bottom: 1.5rem;
}

/* Card text colors */
.card {
    color: #333;
}

.card h1, .card h2, .card h3,
.card h4, .card h5, .card h6 {
    color: #212529;
}

.card p, .card li, .card .text-muted {
    color: #495057;
}

/* Dark cards */
.card.bg-dark, .card.bg-primary, .card.bg-secondary {
    color: #fff;
}

.card.bg-dark h1, .card.bg-dark h2, .card.bg-dark h3,
.card.bg-dark h4, .card.bg-dark h5, .card.bg-dark h6,
.card.bg-primary h1, .card.bg-primary h2, .card.bg-primary h3,
.card.bg-primary h4, .card.bg-primary h5, .card.bg-primary h6,
.card.bg-secondary h1, .card.bg-secondary h2, .card.bg-secondary h3,
.card.bg-secondary h4, .card.bg-secondary h5, .card.bg-secondary h6 {
    color: #fff;
}

.card.bg-dark p, .card.bg-dark li, .card.bg-dark .text-muted,
.card.bg-primary p, .card.bg-primary li, .card.bg-primary .text-muted,
.card.bg-secondary p, .card.bg-secondary li, .card.bg-secondary .text-muted {
    color: rgba(255, 255, 255, 0.9);
}

.card-body {
    padding: 1.5rem;
}

.card h4 {
    color: #212529;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.card p {
    color: #495057;
    margin-bottom: 0;
}

/* Fix for NRI card specifically */
.bg-primary.card {
    background: linear-gradient(135deg, #0d6efd, #0b5ed7) !important;
    color: #fff !important;
}

.bg-primary.card h1,
.bg-primary.card h2,
.bg-primary.card h3,
.bg-primary.card h4,
.bg-primary.card h5,
.bg-primary.card h6,
.bg-primary.card p,
.bg-primary.card li,
.bg-primary.card span,
.bg-primary.card div {
    color: #fff !important;
}

/* Ensure text is visible in all cards */
#who-we-help .card {
    background: #fff;
    color: #333;
}

#who-we-help .card h1,
#who-we-help .card h2,
#who-we-help .card h3,
#who-we-help .card h4,
#who-we-help .card h5,
#who-we-help .card h6 {
    color: #212529;
}

#who-we-help .card p,
#who-we-help .card li,
#who-we-help .card .text-muted {
    color: #6c757d;
}

/* Special case for dark cards in who-we-help section */
#who-we-help .bg-primary.card,
#who-we-help .bg-dark.card,
#who-we-help .bg-secondary.card {
    color: #fff !important;
}

#who-we-help .bg-primary.card h1,
#who-we-help .bg-primary.card h2,
#who-we-help .bg-primary.card h3,
#who-we-help .bg-primary.card h4,
#who-we-help .bg-primary.card h5,
#who-we-help .bg-primary.card h6,
#who-we-help .bg-primary.card p,
#who-we-help .bg-primary.card li,
#who-we-help .bg-primary.card span,
#who-we-help .bg-primary.card div,
#who-we-help .bg-dark.card h1,
#who-we-help .bg-dark.card h2,
#who-we-help .bg-dark.card h3,
#who-we-help .bg-dark.card h4,
#who-we-help .bg-dark.card h5,
#who-we-help .bg-dark.card h6,
#who-we-help .bg-dark.card p,
#who-we-help .bg-dark.card li,
#who-we-help .bg-dark.card span,
#who-we-help .bg-dark.card div {
    color: #fff !important;
}

/* Avatar styles */
.avatar {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border-radius: 50%;
    font-size: 2rem;
}

.bg-primary .avatar {
    background: rgba(255,255,255,0.2) !important;
    color: #fff !important;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

/* Sections */
.section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    position: relative;
    margin-bottom: 3rem;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary);
}

/* Forms */
.form-control {
    border: 1px solid #ced4da;
    border-radius: 5px;
    padding: 0.75rem 1rem;
    transition: var(--transition);
    background-color: #fff;
    color: #333;
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control:focus {
    color: #333;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 168, 255, 0.25);
    border-color: var(--primary);
}

/* Tables */
.table {
    color: var(--dark);
}

.table thead th {
    border-bottom: 2px solid var(--dark-gray);
    color: var(--dark);
    font-weight: 600;
}

.table td, .table th {
    border-top: 1px solid var(--dark-gray);
}

/* Alerts */
.alert {
    border: none;
    border-radius: 5px;
    color: white;
}

.alert-primary {
    background-color: var(--primary);
}

/* Utility Classes */
.bg-light {
    background-color: var(--darker) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.text-muted {
    color: var(--gray) !important;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .section {
        padding: 3rem 0;
    }
}

/* Hero Carousel */
#hero {
    position: relative;
}

.swiper-slide {
    min-height: 95vh;
    display: flex;
    align-items: center;
    color: var(--light);
    background-size: cover;
    background-position: center;
    position: relative;
}

.swiper-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    opacity: 0.85;
}

.swiper-slide .content {
    position: relative;
    z-index: 2;
}

.swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: var(--light);
    opacity: 0.5;
    border: 2px solid var(--primary);
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--light);
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    opacity: 0.85;
    animation: gradientShift 12s ease infinite;
}

.hero-slide .content {
    position: relative;
    z-index: 2;
}

/* Ken-Burns */
.hero-slide {
    animation: kenburns 15s ease-in-out infinite alternate;
}

@keyframes kenburns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.15);
    }
}

/* Carousel Indicators */
#heroCarousel .carousel-indicators [data-bs-target] {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--light);
    opacity: 0.5;
    border: 2px solid var(--primary);
    transition: all 0.3s;
}

#heroCarousel .carousel-indicators .active {
    opacity: 1;
    background: var(--primary);
}

#hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    animation: gradientShift 12s ease infinite;
    z-index: 1;
    opacity: 0.9;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

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

.trust-badges i {
    font-size: 2rem;
    color: var(--light);
    margin-right: 1rem;
    transition: transform 0.3s;
}

.trust-badges i:hover {
    transform: scale(1.2) rotate(6deg);
}

.wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

/* Gradient Utility */
.bg-teal-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.wave svg {
    display: block;
    width: 100%;
    height: 100px;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 50px;
    text-align: center;
}

/* ============================================
   Timeline Section
   ============================================ */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, 
        transparent, 
        rgba(0, 255, 157, 0.3), 
        rgba(157, 0, 255, 0.3), 
        transparent);
    transform: translateX(-50%);
    z-index: 0;
}

.timeline-card {
    position: relative;
    background: rgba(20, 20, 40, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1;
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyber-teal), var(--mystic-purple));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(157, 0, 255, 0.2);
}

.timeline-card:hover::before {
    opacity: 1;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: white;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.timeline-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 16px;
    z-index: -1;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.timeline-card:hover .timeline-icon {
    transform: rotate(5deg) scale(1.1);
}

.timeline-card:hover .timeline-icon::after {
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    opacity: 0.5;
}

.timeline-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    transition: all 0.3s ease;
}

.timeline-card:hover .timeline-number {
    transform: scale(1.1);
    color: rgba(255, 255, 255, 0.05);
}

.timeline-content h4 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.timeline-content h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--cyber-teal), transparent);
    transition: all 0.3s ease;
}

.timeline-card:hover .timeline-content h4::after {
    width: 80px;
}

/* Responsive Timeline */
@media (max-width: 991.98px) {
    .timeline-line {
        left: 30px;
    }
    
    .timeline-card {
        margin-left: 60px;
    }
    
    .timeline-card::before {
        left: -60px;
        width: 30px;
        height: 2px;
        top: 50%;
        transform: translateY(-50%);
        background: linear-gradient(90deg, var(--cyber-teal), var(--mystic-purple));
    }
}

/* ============================================
   Success Story Section
   ============================================ */
.story-card {
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyber-teal), var(--mystic-purple));
    opacity: 0.7;
    transition: all 0.3s ease;
    z-index: 1;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: rgba(157, 0, 255, 0.2);
}

.story-card:hover::before {
    opacity: 1;
    height: 4px;
}

.story-highlight {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.story-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--cyber-teal), var(--mystic-purple));
    opacity: 0.7;
    transition: all 0.3s ease;
}

.story-highlight:hover {
    transform: translateX(5px);
}

.story-highlight:hover::before {
    opacity: 1;
    width: 5px;
}

.stat-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-value {
    font-size: 1.75rem;
    background: linear-gradient(90deg, var(--cyber-teal), var(--mystic-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Timeline Styles */
.case-timeline {
    padding-left: 1.5rem;
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.timeline-marker {
    position: absolute;
    left: -1.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    z-index: 1;
    transition: all 0.3s ease;
}

.timeline-content {
    position: relative;
    transition: all 0.3s ease;
    background: rgba(20, 20, 40, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.timeline-content:hover {
    transform: translateX(5px);
    border-color: rgba(157, 0, 255, 0.2) !important;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.03) 0%, rgba(157, 0, 255, 0.03) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.timeline-content:hover::before {
    opacity: 1;
}

/* Metric Cards */
.metric-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.05) 0%, rgba(157, 0, 255, 0.05) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.metric-card:hover::before {
    opacity: 1;
}

.metric-icon {
    transition: all 0.3s ease;
}

.metric-card:hover .metric-icon {
    transform: rotate(5deg) scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .case-timeline {
        margin-top: 3rem;
        padding-left: 0;
    }
    
    .timeline-track {
        left: 20px !important;
    }
    
    .timeline-marker {
        left: 12px;
    }
    
    .timeline-content {
        margin-left: 2.5rem;
    }
}

/* ============================================
   Prevention Tips Section
   ============================================ */
.prevention-card {
    background: rgba(15, 15, 25, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.prevention-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.03) 0%, rgba(157, 0, 255, 0.03) 100%);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: -1;
}

.prevention-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: rgba(157, 0, 255, 0.2);
}

.prevention-card:hover::before {
    opacity: 1;
}

.prevention-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    position: relative;
    z-index: 1;
    margin-left: -10px;
    transition: all 0.3s ease;
}

.prevention-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--cyber-teal), var(--mystic-purple));
    opacity: 0.1;
    z-index: -1;
    transition: all 0.3s ease;
}

.prevention-card:hover .prevention-icon {
    transform: rotate(5deg) scale(1.1);
}

.prevention-card:hover .prevention-icon::before {
    opacity: 0.2;
    transform: scale(1.1);
}

.prevention-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
    transition: all 0.3s ease;
}

.prevention-card:hover .prevention-number {
    transform: scale(1.1);
    color: rgba(255, 255, 255, 0.03);
}

/* Alert Styling */
.alert-dark {
    background: rgba(20, 20, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px 25px;
    transition: all 0.3s ease;
}

.alert-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(157, 0, 255, 0.2);
}

/* ============================================
   Success Numbers Section
   ============================================ */
#testimonials {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

#testimonials .card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

#testimonials .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

#testimonials .card-body {
    padding: 2rem;
}

#testimonials .card.bg-primary {
    background: linear-gradient(135deg, #0d6efd, #0b5ed7) !important;
}

#testimonials .card.bg-primary * {
    color: #fff !important;
}

#testimonials .avatar {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 1rem;
    background: rgba(13, 110, 253, 0.1);
    flex-shrink: 0;
}

#testimonials .card.bg-primary .avatar {
    background: rgba(255, 255, 255, 0.2) !important;
}

#testimonials .text-warning {
    color: #ffc107 !important;
}

#testimonials h5 {
    color: #212529;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

#testimonials .card.bg-primary h5 {
    color: #fff !important;
}

#testimonials .card p.testimonial-text {
    color: #2c3e50 !important;
    margin: 1.5rem 0;
    font-size: 1.05rem;
    line-height: 1.8;
    font-style: italic;
    position: relative;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #0d6efd;
}

#testimonials .card .text-muted {
    color: #6c757d !important;
    font-style: normal;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#testimonials .card .text-muted i {
    color: #0d6efd;
    font-size: 1.1rem;
}

/* Ensure text is visible on all backgrounds */
#testimonials .card {
    background: #fff;
    border: 1px solid #e9ecef;
}

#testimonials .card-body {
    padding: 2rem;
}

#testimonials h5 {
    color: #212529;
    font-weight: 600;
    font-size: 1.1rem;
}

#testimonials .card.bg-primary p {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* ============================================
   Know Your Rights Section
   ============================================ */
#rights {
    background: linear-gradient(135deg, var(--primary), #0b5ed7) !important;
    color: #fff !important;
    padding: 5rem 0;
}

#rights .section-title {
    color: #fff !important;
    margin-bottom: 3rem;
}

#rights .feature-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#rights .feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

#rights .feature-card i {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

#rights .feature-card h5 {
    color: #fff !important;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

#rights .feature-card p {
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 0;
}

/* ============================================
   FAQ Section
   ============================================ */
#faqs {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

#faqs .card {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
}

#faqs .card-body {
    padding: 1.5rem;
}

#faqs h5 {
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

#faqs h5 i {
    margin-right: 0.75rem;
    color: #0d6efd;
    font-size: 1.25rem;
}

#faqs .card {
    border-left: 3px solid #0d6efd;
}

#faqs .card:hover {
    border-color: #0d6efd;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.1);
    transform: translateX(5px);
}

#faqs p, #faqs .text-muted {
    color: #495057 !important;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-left: 2rem;
}

#faqs .card:hover h5 {
    color: #0d6efd;
}

#faqs .accordion-button:not(.collapsed) {
    background-color: rgba(13, 110, 253, 0.05);
    color: #0d6efd;
}

#faqs .accordion-button:focus {
    box-shadow: none;
    border-color: #0d6efd;
}

#faqs .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230d6efd'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* ============================================
   Process Section - Cyber Mystic Theme
   ============================================ */
#process {
    background-color: #0a0a0a;
    color: #fff;
    position: relative;
    overflow: hidden;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(0, 255, 157, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(157, 0, 255, 0.1) 0%, transparent 25%);
    padding: 6rem 0;
}

/* Glitch Effect */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.glitch::before {
    color: #00ff9d;
    z-index: -1;
    animation: glitch-effect 3s infinite;
}

.glitch::after {
    color: #9d00ff;
    z-index: -2;
    animation: glitch-effect 2s infinite reverse;
}

@keyframes glitch-effect {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

/* Cyber Timeline */
.cyber-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.cyber-timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, #00ff9d, #9d00ff);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
}

.cyber-step {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.cyber-step:nth-child(odd) {
    left: 0;
    text-align: right;
    padding-right: 80px;
}

.cyber-step:nth-child(even) {
    left: 50%;
    text-align: left;
    padding-left: 80px;
}

.step-number {
    position: absolute;
    width: 50px;
    height: 50px;
    background: #0a0a0a;
    color: #00ff9d;
    border: 2px solid #00ff9d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    top: 20px;
    z-index: 1;
    box-shadow: 0 0 15px rgba(0, 255, 157, 0.5);
}

.cyber-step:nth-child(odd) .step-number {
    right: -25px;
}

.cyber-step:nth-child(even) .step-number {
    left: -25px;
}

.step-content {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 157, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.cyber-step:hover .step-content {
    transform: translateY(-5px);
    box-shadow: 0 5px 30px rgba(0, 255, 157, 0.2);
    border-color: rgba(0, 255, 157, 0.3);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 255, 157, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #00ff9d;
    font-size: 1.5rem;
    margin-left: auto;
    margin-right: auto;
    animation: float 3s ease-in-out infinite;
}

.cyber-step:nth-child(even) .step-icon {
    margin-left: 0;
    margin-right: auto;
}

.cyber-step:nth-child(odd) .step-icon {
    margin-left: auto;
    margin-right: 0;
}

.cyber-heading {
    color: #00ff9d;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.3rem;
}

.cyber-line {
    height: 2px;
    background: linear-gradient(90deg, #00ff9d, #9d00ff);
    margin: 20px 0;
    opacity: 0.3;
}

.step-content p {
    color: #b3b3b3;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Mystic Glow Effect */
.mystic-glow {
    text-shadow: 0 0 10px rgba(157, 0, 255, 0.5);
}

/* Floating Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Add delay to each icon */
.cyber-step:nth-child(2) .step-icon { animation-delay: 0.5s; }
.cyber-step:nth-child(3) .step-icon { animation-delay: 1s; }
.cyber-step:nth-child(4) .step-icon { animation-delay: 1.5s; }
.cyber-step:nth-child(5) .step-icon { animation-delay: 2s; }
.cyber-step:nth-child(6) .step-icon { animation-delay: 2.5s; }

/* Responsive Design */
@media (max-width: 768px) {
    .cyber-timeline::before {
        left: 31px;
    }

    .cyber-step {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
        text-align: left !important;
    }

    .cyber-step:nth-child(even) {
        left: 0;
    }

    .step-number {
        left: 6px !important;
        right: auto !important;
    }

    .step-content {
        padding: 20px;
    }

    .step-icon {
        margin-left: 0 !important;
        margin-right: auto !important;
    }
    
    #process {
        padding: 4rem 0;
    }
}

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

#process .step {
    position: relative;
    padding-left: 6rem;
    margin-bottom: 3.5rem;
    transition: all 0.3s ease;
}

#process .step:last-child {
    margin-bottom: 0;
}

#process .step::before {
    content: '';
    position: absolute;
    left: 1.5rem;
    top: 3rem;
    bottom: -3.5rem;
    width: 2px;
    background: #e9ecef;
    z-index: -1;
}

#process .step:last-child::before {
    display: none;
}

#process .step:hover {
    transform: translateX(10px);
}

#process .step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 3rem;
    height: 3rem;
    background: #0d6efd;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
    transition: all 0.3s ease;
}

#process .step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.4);
}

#process h4 {
    color: #212529;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.35rem;
    position: relative;
    display: flex;
    align-items: center;
}

#process h4 i {
    margin-right: 0.75rem;
    color: #0d6efd;
    font-size: 1.5rem;
}

#process p {
    color: #495057;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.7;
    padding-left: 2.25rem;
}

#process .step:hover h4 {
    color: #0d6efd;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    #process .step {
        padding-left: 5rem;
        margin-bottom: 2.5rem;
    }
    
    #process .step::before {
        left: 1.5rem;
    }
    
    #process h4 {
        font-size: 1.2rem;
    }
    
    #process p {
        font-size: 0.95rem;
        padding-left: 0;
    }
}

/* ============================================
   Why Bank Accounts Get Frozen Section
   ============================================ */
#why-freeze {
    padding: 5rem 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

#why-freeze .section-title {
    position: relative;
    margin-bottom: 4rem;
    text-align: center;
}

#why-freeze .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #0d6efd;
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

#why-freeze .card {
    border: none;
    border-radius: 10px;
    transition: all 0.4s ease;
    height: 100%;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

#why-freeze .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #0d6efd;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

#why-freeze .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(13, 110, 253, 0.15);
}

#why-freeze .card:hover::before {
    transform: scaleX(1);
}

#why-freeze .card-body {
    padding: 2.5rem 2rem;
    position: relative;
    z-index: 1;
}

#why-freeze .icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

#why-freeze .card:hover .icon-wrapper {
    background: #0d6efd;
    transform: rotate(5deg) scale(1.1);
}

#why-freeze i {
    font-size: 2rem;
    color: #0d6efd;
    transition: all 0.3s ease;
}

#why-freeze .card:hover i {
    color: #fff;
    transform: scale(1.1);
}

#why-freeze h5 {
    color: #212529;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

#why-freeze .card:hover h5 {
    color: #0d6efd;
}

#why-freeze p {
    color: #6c757d;
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.7;
    transition: all 0.3s ease;
}

#why-freeze .card:hover p {
    color: #495057;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    #why-freeze .card {
        margin-bottom: 1.5rem;
    }
    
    #why-freeze .icon-wrapper {
        margin: 0 auto 1.5rem;
    }
    
    #why-freeze .card-body {
        text-align: center;
    }
}

/* Why Freeze Section */
#why-freeze {
    background-color: #f8f9fa;
    padding: 5rem 0;
}

/* Why Freeze Section - Card Styles */
#why-freeze .card {
    border: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

#why-freeze .card-body {
    padding: 2rem 1.5rem;
    color: #212529;
    text-align: center;
}

#why-freeze .card-title {
    color: #0d6efd;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.2rem;
}

#why-freeze .card-text {
    color: #495057;
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

#why-freeze .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

#why-freeze .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

#why-freeze .card-body {
    padding: 2rem 1.5rem;
}

#why-freeze .icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

#why-freeze .card:hover .icon-wrapper {
    background: #0d6efd;
    color: #fff;
    transform: scale(1.05);
}

#why-freeze h5 {
    color: #212529;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

#why-freeze p {
    color: #6c757d;
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

#why-freeze .card:hover h5 {
    color: #0d6efd;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    #why-freeze .col-md-3 {
        margin-bottom: 1.5rem;
    }
}

/* Cards */
.feature-card {
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* Timeline */
.timeline-step {
    position: relative;
    padding-left: 45px;
    margin-bottom: 40px;
}

.timeline-step::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary);
}

.timeline-step i {
    position: absolute;
    left: 0;
    background: var(--primary);
    color: var(--dark);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Floating Elements */
.call-btn {
    position: fixed;
    bottom: 100px;
    right: 25px;
    z-index: 999;
}

.pay-badge {
    position: fixed;
    bottom: 160px;
    right: -40px;
    background: var(--primary);
    color: var(--dark);
    padding: 8px 46px;
    transform: rotate(-45deg);
    z-index: 998;
    font-weight: 600;
}

.chat-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--primary);
    color: var(--dark);
    padding: 12px 22px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
#footer {
    position: relative;
    overflow: hidden;
}

#footer::before {
    content: "";
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: var(--darker);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

#footer {
    background: var(--dark);
    color: var(--light);
}

#footer a {
    color: var(--light);
    text-decoration: none;
}

#footer a:hover {
    text-decoration: underline;
}

/* Carousel height */
#freezeCarousel .carousel-item img {
    height: 60vh;
    object-fit: cover;
}

/* Utility Classes */
.text-muted {
    color: var(--gray) !important;
}

.text-light {
    color: var(--light) !important;
}

.bg-dark {
    background-color: var(--dark) !important;
}

.bg-darker {
    background-color: var(--darker) !important;
}

/* Responsive Adjustments */
/* ============================================
   We've Helped 1500+ People Section
   ============================================ */
#who-we-help {
    background-color: #f8f9fa;
    padding: 5rem 0;
}

#who-we-help .card {
    background: #fff;
    color: #333 !important;
    border: 1px solid rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#who-we-help .card h4 {
    color: #212529 !important;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

#who-we-help .card p {
    color: #6c757d !important;
    margin-bottom: 0;
}

/* NRI Card Specific */
#who-we-help .card.bg-primary {
    background: linear-gradient(135deg, #0d6efd, #0b5ed7) !important;
    color: #fff !important;
}

#who-we-help .card.bg-primary h4,
#who-we-help .card.bg-primary p,
#who-we-help .card.bg-primary .card-body {
    color: #fff !important;
}

#who-we-help .card.bg-primary .avatar {
    background: rgba(255,255,255,0.2) !important;
    color: #fff !important;
}

/* Responsive Styles */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .section-title {
        margin-bottom: 2rem;
    }

    .feature-card {
        margin-bottom: 1.5rem;
    }
}

/* Fix for Bootstrap's dark theme compatibility */
.bg-light {
    background-color: #1a1a2e !important;
    color: #f8f9fa !important;
}

.bg-light h1,
.bg-light h2,
.bg-light h3,
.bg-light h4,
.bg-light h5,
.bg-light h6,
.bg-light p,
.bg-light .text-muted,
.bg-light .lead,
.bg-light .card,
.bg-light .card-body,
.bg-light .card-title,
.bg-light .card-text {
    color: #f8f9fa !important;
}

/* Fix for process section text visibility */
#process,
#process .step-content p,
#process .text-muted,
#process .lead {
    color: #f8f9fa !important;
}

#process .cyber-heading {
    color: #00ff9d !important;
}

#process .step-content {
    background: rgba(10, 10, 10, 0.8) !important;
    border: 1px solid rgba(0, 255, 157, 0.3) !important;
}

#process .step-icon {
    background: rgba(0, 255, 157, 0.2) !important;
    color: #00ff9d !important;
}

/* FAQ Section Text Visibility Fix */
#faqs .card,
#faqs .card-body,
#faqs h5,
#faqs p,
#faqs .text-muted {
    color: #ffffff !important;
}

#faqs .card {
    background-color: #fff !important;
    transition: all 0.3s ease;
}

#faqs .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1) !important;
}

#faqs .bi-question-circle-fill {
    color: #0d6efd !important;
}

#faqs .border-primary {
    border-color: #0d6efd !important;
}

/* Real Stories Section - Text Visibility Fix */
#testimonials .card {
    background-color: #fff !important;
    color: #212529 !important;
    transition: all 0.3s ease;
    border: none !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
}

#testimonials .card h5,
#testimonials .card p,
#testimonials .card .text-muted {
    color: #212529 !important;
}

#testimonials .card.bg-primary {
    background: linear-gradient(135deg, #0d6efd, #0a58ca) !important;
    color: #fff !important;
}

#testimonials .card.bg-primary h5,
#testimonials .card.bg-primary p,
#testimonials .card.bg-primary .text-muted,
#testimonials .card.bg-primary .text-warning {
    color: #fff !important;
}

#testimonials .avatar {
    background-color: rgba(13, 110, 253, 0.1) !important;
    color: #0d6efd !important;
}

#testimonials .card.bg-primary .avatar {
    background-color: rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
}

#testimonials .text-warning {
    color: #ffc107 !important;
}

#testimonials .card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

/* Fix for form controls in dark theme */
.bg-light .form-control,
.bg-light .form-select {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--light);
}

.bg-light .form-control:focus,
.bg-light .form-select:focus {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light);
    border-color: var(--primary);
}

/* Fix for tables in dark theme */
.bg-light .table {
    color: var(--light);
    --bs-table-bg: transparent;
    --bs-table-striped-bg: rgba(255, 255, 255, 0.02);
    --bs-table-hover-bg: rgba(0, 255, 157, 0.1);
}

.bg-light .table > :not(caption) > * > * {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

/* Footer Styles */
.site-footer {
    background-color: #1a1a2e !important;
    color: #f8f9fa !important;
}

.site-footer a,
.site-footer a.text-muted,
.site-footer a:not(.btn) {
    color: #ffffff !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.site-footer a:hover {
    color: #00ff9d !important;
    text-decoration: none;
}

.site-footer .text-muted {
    color: #adb5bd !important;
}

.site-footer .footer-logo,
.site-footer .footer-logo .text-dark,
.site-footer .footer-logo .text-dark i,
.site-footer .footer-logo .text-primary {
    color: #ffffff !important;
}

.site-footer .widget-title {
    color: #00ff9d !important;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.site-footer .widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #00ff9d;
}

.site-footer .social-icon {
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.site-footer .social-icon:hover {
    background-color: #00ff9d;
    color: #0a0a0a !important;
    transform: translateY(-3px);
}

/* Fix for footer links in lists */
.site-footer .footer-links a,
.site-footer .footer-contact a {
    color: #ffffff !important;
    display: block;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.site-footer .footer-links a:hover,
.site-footer .footer-contact a:hover {
    color: #00ff9d !important;
    padding-left: 5px;
}

/* Footer bottom links */
.footer-legal-links a {
    color: #adb5bd !important;
    transition: all 0.3s ease;
}

.footer-legal-links a:hover {
    color: #00ff9d !important;
    text-decoration: none;
}

/* Hero Slider Styles */
#hero {
    position: relative;
    color: #ffffff;
}

.slide-inner {
    min-height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 100px 0;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content .lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.hero-content .text-primary {
    color: #00ff9d !important;
    font-weight: 700;
}

.hero-content .text-warning {
    color: #ffcc00 !important;
    font-weight: 600;
}

.hero-content .btn {
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.hero-content .btn-primary {
    background: linear-gradient(135deg, #00ff9d, #00cc7a);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 255, 157, 0.3);
}

.hero-content .btn-outline-light {
    border: 2px solid #fff;
    background: transparent;
}

.hero-content .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hero-content .bi {
    margin-right: 8px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content .lead {
        font-size: 1.3rem;
    }
}

@media (max-width: 767.98px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content .lead {
        font-size: 1.1rem;
    }
    
    .hero-content .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* ============================================
   Bank Unfreeze Page Styles
   ============================================ */
.bank-unfreeze-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    color: #fff;
}

.cyber-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 157, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.cyber-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 157, 0.1);
    border-color: rgba(0, 255, 157, 0.3);
}

.cyber-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.1), rgba(157, 0, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #00ff9d;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.cyber-btn {
    background: linear-gradient(45deg, #00ff9d, #9d00ff);
    color: #0a0a0a;
    border: none;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
}

.cyber-btn:hover {
    color: #0a0a0a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 157, 0.3);
}

.cyber-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #9d00ff, #00ff9d);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cyber-btn:hover::before {
    opacity: 1;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.whatsapp-float span {
    display: none;
    font-size: 14px;
    margin-left: 10px;
    white-space: nowrap;
}

.whatsapp-float:hover {
    width: auto;
    padding: 0 20px;
    border-radius: 30px;
}

.whatsapp-float:hover span {
    display: inline-block;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #9d00ff;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    bottom: 100px;
}

.back-to-top:hover {
    background: #00ff9d;
    color: #0a0a0a;
}

/* Animation Classes */
.glitch {
    position: relative;
    display: inline-block;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #ff003c;
    animation: glitch-anim-1 2s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: 2px 0 #00ff9d;
    animation: glitch-anim-2 2s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
    0% { clip: rect(44px, 9999px, 26px, 0); }
    5% { clip: rect(13px, 9999px, 56px, 0); }
    10% { clip: rect(61px, 9999px, 29px, 0); }
    15% { clip: rect(52px, 9999px, 74px, 0); }
    20% { clip: rect(63px, 9999px, 27px, 0); }
    25% { clip: rect(97px, 9999px, 55px, 0); }
    30% { clip: rect(93px, 9999px, 20px, 0); }
    35% { clip: rect(1px, 9999px, 60px, 0); }
    40% { clip: rect(91px, 9999px, 28px, 0); }
    45% { clip: rect(7px, 9999px, 29px, 0); }
    50% { clip: rect(50px, 9999px, 42px, 0); }
    55% { clip: rect(25px, 9999px, 53px, 0); }
    60% { clip: rect(14px, 9999px, 59px, 0); }
    65% { clip: rect(78px, 9999px, 24px, 0); }
    70% { clip: rect(3px, 9999px, 8px, 0); }
    75% { clip: rect(66px, 9999px, 4px, 0); }
    80% { clip: rect(10px, 9999px, 2px, 0); }
    85% { clip: rect(31px, 9999px, 37px, 0); }
    90% { clip: rect(87px, 9999px, 100px, 0); }
    95% { clip: rect(82px, 9999px, 58px, 0); }
    100% { clip: rect(60px, 9999px, 85px, 0); }
}

@keyframes glitch-anim-2 {
    0% { clip: rect(65px, 9999px, 119px, 0); }
    5% { clip: rect(52px, 9999px, 114px, 0); }
    10% { clip: rect(78px, 9999px, 130px, 0); }
    15% { clip: rect(79px, 9999px, 122px, 0); }
    20% { clip: rect(25px, 9999px, 120px, 0); }
    25% { clip: rect(64px, 9999px, 20px, 0); }
    30% { clip: rect(61px, 9999px, 6px, 0); }
    35% { clip: rect(60px, 9999px, 102px, 0); }
    40% { clip: rect(119px, 9999px, 115px, 0); }
    45% { clip: rect(10px, 9999px, 56px, 0); }
    50% { clip: rect(97px, 9999px, 98px, 0); }
    55% { clip: rect(73px, 9999px, 103px, 0); }
    60% { clip: rect(23px, 9999px, 56px, 0); }
    65% { clip: rect(38px, 9999px, 130px, 0); }
    70% { clip: rect(1px, 9999px, 83px, 0); }
    75% { clip: rect(79px, 9999px, 72px, 0); }
    80% { clip: rect(110px, 9999px, 10px, 0); }
    85% { clip: rect(15px, 9999px, 37px, 0); }
    90% { clip: rect(53px, 9999px, 27px, 0); }
    95% { clip: rect(23px, 9999px, 106px, 0); }
    100% { clip: rect(138px, 9999px, 63px, 0); }
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .bank-unfreeze-hero {
        padding: 100px 0 60px;
    }
    
    .cyber-card {
        margin-bottom: 20px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 16px;
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top.active {
        bottom: 80px;
    }
}

/* Fix for background-clip warning */
.bg-cyber-teal {
    background-color: #00ff9d !important;
}

.text-cyber-teal {
    color: #00ff9d !important;
}

.bg-cyber-dark {
    background: #0a0a0a;
}

/* Success Numbers Section */
.counter-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(157, 0, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.counter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(157, 0, 255, 0.1);
    border-color: rgba(157, 0, 255, 0.3);
}

.counter-badge {
    width: 60px;
    height: 60px;
    background: rgba(0, 255, 157, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--primary);
}

.counter-number {
    font-family: var(--font-primary);
    background: linear-gradient(135deg, #00ff9d, #7b68ee);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.counter-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0.5;
    filter: blur(30px);
}

.trust-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(157, 0, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.trust-badge:hover {
    background: rgba(157, 0, 255, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* 3-Phase Recovery Section */
.phase-card {
    background: rgba(10, 10, 10, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(157, 0, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    z-index: 1;
}

.phase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.03) 0%, rgba(157, 0, 255, 0.03) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.phase-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(157, 0, 255, 0.15);
    border-color: rgba(157, 0, 255, 0.3);
}

.phase-card:hover::before {
    opacity: 1;
}

.phase-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(255, 255, 255, 0.03);
    z-index: -1;
}

.phase-badge .badge {
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.phase-icon {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 70px;
    height: 70px;
    background: rgba(0, 255, 157, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.phase-card:hover .phase-icon {
    transform: scale(1.1) rotate(5deg);
    opacity: 1;
}

.phase-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0.3;
    filter: blur(40px);
    transition: all 0.5s ease;
}

.phase-card:hover .phase-glow {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1.1);
}

.phase-connector {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(157, 0, 255, 0.3), transparent);
    z-index: -1;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .phase-connector {
        display: none !important;
    }
    
    .phase-card {
        margin-bottom: 2rem;
    }
    
    .phase-card:last-child {
        margin-bottom: 0;
    }
}

/* Utility Classes */
.bg-purple-soft {
    background-color: rgba(157, 0, 255, 0.1) !important;
}

.text-purple {
    color: #9d00ff !important;
}

.bg-cyan-soft {
    background-color: rgba(0, 200, 255, 0.1) !important;
}

.text-cyan {
    color: #00c8ff !important;
}

.bg-primary-soft {
    background-color: rgba(0, 255, 157, 0.1) !important;
}

.text-yellow {
    color: #ffcc00 !important;
}

.pulse-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 0 rgba(0, 255, 157, 0.7);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 255, 157, 0.7);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(0, 255, 157, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 255, 157, 0);
    }
}

/* Fix for accordion in dark mode */
.accordion-button:not(.collapsed) {
    color: #00ff9d;
    background-color: rgba(0, 255, 157, 0.1);
}

.accordion-button:focus {
    border-color: #00ff9d;
    box-shadow: 0 0 0 0.25rem rgba(0, 255, 157, 0.25);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300ff9d'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-item {
    margin-bottom: 1rem;
    background: rgba(20, 20, 40, 0.5);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:not(:last-child) {
    margin-bottom: 1rem;
}

.faq-question {
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(20, 20, 40, 0.3);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-question:hover {
    background: rgba(0, 255, 157, 0.05);
}

.faq-question[aria-expanded="true"] {
    background: rgba(0, 255, 157, 0.1);
    border-bottom: 1px solid rgba(0, 255, 157, 0.2);
}

.faq-question[aria-expanded="true"] .bi-chevron-down {
    transform: rotate(180deg);
}

.faq-answer {
    background: rgba(10, 10, 20, 0.5);
    padding: 0 1.5rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-icon {
    transition: all 0.3s ease;
    margin-right: 1rem;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.faq-question:hover .faq-icon {
    transform: scale(1.1);
}

.text-gradient {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-card {
    background: rgba(20, 20, 40, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
}

/* ============================================
   Trusted Banks & 4-Step Process
   ============================================ */
.bank-logos {
    position: relative;
    z-index: 1;
}

.bank-logo-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.bank-logo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.1), rgba(157, 0, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.bank-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 255, 157, 0.3) !important;
}

.bank-logo-item:hover::before {
    opacity: 1;
}

.bank-logo-item img {
    transition: all 0.3s ease;
    filter: brightness(0) invert(0.8);
}

.bank-logo-item:hover img {
    filter: brightness(0) invert(1);
    transform: scale(1.1);
}

/* Process Steps */
.process-steps {
    position: relative;
    z-index: 1;
}

.process-card {
    background: rgba(20, 20, 40, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-card:hover {
    transform: translateY(-10px);
    background: rgba(30, 30, 60, 0.5);
    border-color: rgba(0, 255, 157, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.process-card:hover::before {
    opacity: 1;
}

.process-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
}

.process-card:hover .process-number {
    color: rgba(0, 255, 157, 0.1);
    transform: scale(1.2);
}

.process-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 157, 0.1);
    color: var(--primary);
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.process-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.2), rgba(157, 0, 255, 0.2));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-card:hover .process-icon {
    transform: scale(1.1) rotate(5deg);
    background: transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.process-card:hover .process-icon::before {
    opacity: 1;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* No-Unfreeze, No-Fee Card */
.cyber-card {
    border-radius: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

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

.cyber-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ===== Footer Styles ===== */
.site-footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #0f0f1a 100%);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjAxKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
    pointer-events: none;
    opacity: 0.2;
}

.footer-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 70% 30%, rgba(0, 255, 157, 0.03) 0%, transparent 50%), 
                radial-gradient(ellipse at 30% 70%, rgba(157, 0, 255, 0.03) 0%, transparent 50%);
}

.footer-widget {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.footer-logo {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-icon-wrapper {
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 157, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
}

.footer-logo i {
    font-size: 1.5rem;
    color: var(--primary);
}

.footer-widget .widget-title {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-widget .widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-links i {
    margin-right: 0.5rem;
    font-size: 0.75rem;
    color: var(--primary);
}

.footer-contact .contact-icon {
    color: var(--primary);
    font-size: 1.25rem;
    min-width: 24px;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
    display: block;
    line-height: 1.5;
}

.footer-contact a:hover {
    color: var(--primary) !important;
    text-shadow: 0 0 10px rgba(0, 255, 157, 0.3);
}

.footer-contact .small {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.25rem;
    font-weight: 400;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.social-icon i {
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-icon:hover {
    color: #fff !important;
    transform: translateY(-3px);
    border-color: transparent;
    box-shadow: 0 5px 20px rgba(0, 255, 157, 0.2);
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon:hover i {
    transform: scale(1.2);
}

/* Footer Bottom */
.footer-bottom {
    position: relative;
    padding-top: 2rem;
    margin-top: 2rem;
    z-index: 2;
}

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.5) !important;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.footer-legal-links a:hover {
    color: var(--primary) !important;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
    margin: 0;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 5px 20px rgba(0, 255, 157, 0.3);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 157, 0.4);
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .faq-question {
        padding: 1.25rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .faq-icon {
        margin-bottom: 0.75rem;
    }
    
    .cta-card .btn {
        width: 100%;
        margin-top: 1rem;
    }
}
