﻿/* =========================================
   1. GLOBAL VARIABLES & RESET
   ========================================= */
:root {
    --primary-color: #0F172A;
    --secondary-color: #1E293B;
    --accent-color: #6366F1;
    --accent-hover: #4F46E5;
    --accent-light: rgba(99, 102, 241, 0.1);
    --whatsapp-color: #22C55E;
    --complaint-color: #3B82F6;
    --text-main: #334155;
    --text-muted: #64748B;
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.07), 0 2px 4px -2px rgb(0 0 0 / 0.05);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.05);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Outfit', 'Poppins', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    overflow-x: hidden;
    padding-bottom: 80px;
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.01em;
}

/* Animations Reveal */
.reveal-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s forwards;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

a {
    text-decoration: none;
}

/* =========================================
   2. NAVIGATION BAR
   ========================================= */
.navbar {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
    padding: 1.25rem 0;
}

.navbar.scrolled {
    padding: 0.75rem 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-lg);
}

.navbar-brand {
    font-weight: 800;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.02em;
}

.nav-link {
    color: var(--text-main);
    font-weight: 600;
    margin-left: 15px;
    transition: var(--transition);
    font-size: 0.95rem;
}

    .nav-link:hover, .nav-link.active {
        color: var(--accent-color);
        transform: translateY(-1px);
    }

.nav-btn {
    background-color: var(--accent-color);
    color: white !important;
    padding: 10px 24px;
    border-radius: 50px;
    margin-left: 15px;
    font-weight: 600;
    box-shadow: 0 4px 14px 0 rgba(99, 102, 241, 0.39);
}

    .nav-btn:hover {
        background-color: var(--accent-hover);
        box-shadow: 0 6px 20px rgba(99, 102, 241, 0.23);
        transform: translateY(-2px);
    }

/* Mobile Nav Adjustments */
@media (max-width: 991px) {
    .navbar {
        padding: 0.75rem 0;
    }
    .navbar-collapse {
        background: white;
        padding: 24px;
        margin-top: 15px;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-xl);
        border: 1px solid #f1f5f9;
        text-align: center;
    }
    .nav-link {
        margin: 10px 0;
        font-size: 1.1rem;
    }
    .nav-btn {
        margin-left: 0;
        margin-top: 15px;
        display: block;
        width: 100%;
    }
}

/* =========================================
   3. HERO SECTIONS
   ========================================= */

/* Home Page Hero */
.hero-section {
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.95)), url('images/hero_cyber_recovery_1772754681712.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.04em;
}

.hero-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 140px 0 80px;
        text-align: center;
    }
}

/* Inner Pages Header (About, Services, Contact, etc.) */
.page-header {
    background: linear-gradient(135deg, #0b1c36 0%, #1a3b5d 100%);
    padding: 120px 0 80px;
    color: white;
    text-align: center;
    position: relative;
}

/* Breadcrumbs */
.breadcrumb {
    justify-content: center;
    background: rgba(255,255,255,0.1);
    display: inline-flex;
    padding: 5px 20px;
    border-radius: 50px;
}

.breadcrumb-item a {
    color: #ccc;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: white;
}


/* =========================================
   4. COMMON COMPONENTS
   ========================================= */

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

    .section-title h6 {
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
    font-size: 0.875rem;
}

.section-title h2 {
    font-weight: 800;
    color: var(--primary-color);
    font-size: 2.75rem;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.float-animation {
    animation: float 4s ease-in-out infinite;
}

/* Buttons */
.btn-primary-custom {
    background-color: var(--accent-color);
    border: none;
    padding: 15px 35px;
    border-radius: 10px;
    font-weight: 600;
    color: white;
    transition: all 0.3s;
}

    .btn-primary-custom:hover {
        background-color: var(--accent-hover);
        transform: translateY(-2px);
    }

/* Trust Badges (Home) */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 20px;
    align-items: center;
    justify-items: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 25px;
    backdrop-filter: blur(5px);
    margin-top: 3rem;
}

.trust-item {
    color: white;
    font-size: 1.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.7;
    transition: all 0.3s;
}

    .trust-item:hover {
        opacity: 1;
        transform: translateY(-2px);
    }

    .trust-item span {
        font-size: 0.65rem;
        margin-top: 8px;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 500;
    }

/* Stats Section */
.stats-section {
    background: #f8fafc;
    padding: 80px 0;
    margin-top: -60px;
    position: relative;
    z-index: 2;
}

.stats-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    height: 100%;
    border: 1px solid #f1f5f9;
    transition: var(--transition);
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
    letter-spacing: -0.05em;
}

.stats-card p {
    color: var(--accent-color);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    margin-bottom: 4px;
}


/* =========================================
   5. PAGE SPECIFIC STYLES
   ========================================= */

/* --- ABOUT PAGE & SECTIONS --- */
.about-section {
    padding: 80px 0;
    background-color: white;
}

.about-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

    .about-img img {
        width: 100%;
        height: auto;
        transition: transform 0.5s;
    }

    .about-img:hover img {
        transform: scale(1.03);
    }

/* Mission Icons (About Page) */
.mission-icon-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    height: 100%;
    border-bottom: 4px solid var(--accent-color);
    transition: transform 0.3s;
}

    .mission-icon-box:hover {
        transform: translateY(-5px);
    }

    .mission-icon-box i {
        color: var(--accent-color);
        margin-bottom: 20px;
    }

/* Certifications Strip */
.cert-strip {
    background: #e9ecef;
    padding: 40px 0;
    overflow: hidden;
}

.cert-logo {
    font-size: 1.5rem;
    color: #6c757d;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

    .cert-logo:hover {
        opacity: 1;
        color: var(--primary-color);
    }

/* Team Cards */
.team-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    text-align: center;
    overflow: hidden;
    border: 1px solid #f1f5f9;
}

.team-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
    border-color: var(--accent-light);
}

/* About Page specific team styling structure */
.team-header {
    height: 100px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

.team-img-wrapper {
    margin-top: -50px;
    text-align: center;
}

.team-img {
    width: 120px; /* Unified size */
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white; /* White border for overlap look */
    box-shadow: 0 0 0 5px rgba(67, 97, 238, 0.1); /* Subtle outer ring */
}

.team-body {
    padding: 20px;
    text-align: center;
}


/* --- SERVICES & FEATURES --- */
.feature-card {
    background: var(--bg-white);
    border: 1px solid #f1f5f9;
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(99, 102, 241, 0.2);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--accent-color), #818cf8);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-light);
    color: var(--accent-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 24px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--accent-color);
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.2);
}

.feature-card h4 {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Service Detail Cards (Services Page) */
.service-detail-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
}

    .service-detail-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 50px rgba(67, 97, 238, 0.1);
        border-color: rgba(67, 97, 238, 0.2);
    }

.service-header {
    padding: 30px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 20px;
}

.service-icon-lg {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.service-body {
    padding: 30px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

    .service-list li {
        margin-bottom: 10px;
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 0.95rem;
        color: #555;
    }

        .service-list li i {
            color: var(--whatsapp-color);
            margin-top: 5px;
        }


/* --- PROCESS & TIMELINE --- */

/* Horizontal/Standard Timeline (Home) */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: linear-gradient(to bottom, transparent, #e2e8f0 10%, #e2e8f0 90%, transparent);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-container {
    padding: 20px 60px;
    position: relative;
    width: 50%;
}

.timeline-container::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    right: -8px;
    background-color: white;
    border: 3px solid var(--accent-color);
    top: 40px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.timeline-container.right {
    left: 50%;
}

.timeline-container.right::after {
    left: -8px;
}

.timeline-content {
    padding: 32px;
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid #f1f5f9;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-light);
}

@media (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }
    .timeline-container {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    .timeline-container.right {
        left: 0;
    }
    .timeline-container::after {
        left: 23px;
        right: auto;
    }
}

/* Vertical Process Timeline (Process Page) */
.process-wrapper {
    position: relative;
    padding: 40px 0;
}

.process-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #e9ecef;
    transform: translateX(-50%);
}

.process-item {
    position: relative;
    margin-bottom: 60px;
    width: 50%;
    padding-right: 50px;
}

    .process-item:nth-child(even) {
        margin-left: auto;
        padding-right: 0;
        padding-left: 50px;
    }

.process-circle {
    position: absolute;
    right: -25px;
    top: 0;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border: 5px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

.process-item:nth-child(even) .process-circle {
    right: auto;
    left: -25px;
}

.process-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    position: relative;
}

    .process-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    }

    .process-card::before {
        content: '';
        position: absolute;
        top: 20px;
        right: -10px;
        width: 20px;
        height: 20px;
        background: white;
        transform: rotate(45deg);
    }

.process-item:nth-child(even) .process-card::before {
    right: auto;
    left: -10px;
}

/* Checklist Box (Process Page) */
.checklist-box {
    background: #f1f5f9;
    border-radius: 20px;
    padding: 40px;
}

.checklist-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

    .checklist-item i {
        color: var(--whatsapp-color);
        margin-right: 15px;
        font-size: 1.2rem;
    }


/* --- CONTACT & COMPLAINT FORMS --- */

/* Contact Cards */
.contact-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    height: 100%;
    transition: transform 0.3s;
    border-bottom: 3px solid transparent;
}

    .contact-card:hover {
        transform: translateY(-5px);
        border-bottom-color: var(--accent-color);
    }

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(67, 97, 238, 0.1);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

/* Contact Form Box */
.contact-form-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

/* Secure Complaint Form (Complaint Page) */
.complaint-section {
    background: #0d1b2a;
    color: white;
    padding: 80px 0;
    position: relative;
}

.complaint-form-wrapper {
    background: white;
    color: #333;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.form-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.05);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.form-header {
    background: #f1f5f9;
    padding: 25px 40px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.security-badge {
    background: #e0f2fe;
    color: #0369a1;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-body {
    padding: 40px;
}

.form-section-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f8f9fa;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .form-section-title span {
        background: var(--accent-color);
        color: white;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
    }

.form-control, .form-select {
    padding: 14px 20px;
    border-radius: var(--radius-md);
    border: 1px solid #e2e8f0;
    background-color: #f8fafc;
    font-size: 0.95rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
    border-color: var(--accent-color);
    background-color: white;
}

.form-label {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.file-upload-box {
    border: 2px dashed #dee2e6;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

    .file-upload-box:hover {
        border-color: var(--accent-color);
        background: #eef2ff;
    }

/* Info Card (Sidebar) */
.info-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    margin-bottom: 20px;
    border-left: 4px solid var(--accent-color);
}


/* =========================================
   6. MISC & INTERACTIVE ELEMENTS
   ========================================= */

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    margin: 20px;
    text-align: center;
    position: relative;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #f8f9fa;
}

.quote-icon {
    color: var(--accent-color);
    opacity: 0.2;
    font-size: 3rem;
    position: absolute;
    top: 20px;
    left: 20px;
}

/* Chat Bubble (Floating) */
.chat-bubble {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(67, 97, 238, 0.4);
    z-index: 999;
    cursor: pointer;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(67, 97, 238, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(67, 97, 238, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(67, 97, 238, 0);
    }
}

/* Sticky Bottom Bar */
.sticky-action-bar {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    z-index: 1000;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto;
}

.action-btn {
    flex: 1;
    padding: 14px 20px;
    border: none;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.85rem;
    transition: var(--transition);
    text-decoration: none;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
    border-radius: 50px 0 0 50px;
}

.btn-complaint {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    border-radius: 0 50px 50px 0;
}

.action-btn:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
    color: white;
}

@media (max-width: 576px) {
    .sticky-action-bar {
        bottom: 15px;
        left: 15px;
        right: 15px;
    }
    .action-btn {
        padding: 12px 10px;
        font-size: 0.75rem;
    }
}


/* =========================================
   7. RESPONSIVE ADJUSTMENTS
   ========================================= */

@media (max-width: 991px) {
    /* Hero Adjustments */
    .hero-section {
        text-align: center;
        padding-top: 130px;
        padding-bottom: 80px;
    }

    .stats-section {
        margin-top: 0;
        padding-top: 50px;
    }

    /* Timeline Fixes (Home) */
    .timeline::after {
        left: 31px;
    }

    .timeline-container {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

        .timeline-container::after {
            left: 21px;
        }

        .timeline-container.right {
            left: 0%;
        }

    /* Process Page Timeline Fixes */
    .process-line {
        left: 30px;
    }

    .process-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 0;
    }

        .process-item:nth-child(even) {
            padding-left: 70px;
            padding-right: 0;
        }

    .process-circle {
        left: 5px;
        right: auto;
    }

    .process-item:nth-child(even) .process-circle {
        left: 5px;
        right: auto;
    }

    .process-card::before {
        left: -10px;
        right: auto;
    }

    /* Form Padding */
    .form-body {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .trust-grid {
        gap: 15px;
        margin-top: 2rem;
    }

    body {
        padding-bottom: 70px;
    }
}

/* =========================================
   7. REVIEWS & MARQUEE
   ========================================= */

/* Review Marquee Container */
.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    /* Fades the edges for a smooth look */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
    display: inline-block;
    padding-left: 100%; /* Start animation from off-screen */
}

/* Scrolling Animations */
.scroll-left {
    animation: scrollLeft 25s linear infinite;
}

.scroll-right {
    animation: scrollRight 30s linear infinite;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Review Card Styling */
.review-card {
    display: inline-block;
    width: 320px;
    white-space: normal;
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-right: 24px;
    box-shadow: var(--shadow-md);
    vertical-align: top;
    transition: var(--transition);
    border: 1px solid #f1f5f9;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-light);
}

.review-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-main);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    background: var(--bg-light);
    color: var(--accent-color);
}

.review-info h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
    color: var(--primary-color);
}

.review-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.policy-container {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.policy-nav {
    position: sticky;
    top: 120px;
}

    .policy-nav .nav-link {
        color: #6c757d;
        font-size: 0.95rem;
        padding: 10px 15px;
        border-left: 3px solid transparent;
        margin-left: 0;
        transition: all 0.3s;
    }

        .policy-nav .nav-link:hover,
        .policy-nav .nav-link.active {
            color: var(--accent-color);
            border-left-color: var(--accent-color);
            background: linear-gradient(to right, rgba(67, 97, 238, 0.05), transparent);
        }

.policy-content h2 {
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

    .policy-content h2:first-child {
        margin-top: 0;
    }

.policy-content p, .policy-content ul {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

    .policy-content ul li {
        margin-bottom: 10px;
    }

/* Footer Enhancements */
footer {
    background-color: #0F172A !important;
    border-top: 1px solid #1e293b;
}

footer h6 {
    color: white;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

footer .nav-link {
    padding: 0;
    margin: 0 0 12px 0;
    color: #94A3B8 !important;
    font-weight: 400;
    font-size: 0.9rem;
    transition: var(--transition);
}

footer .nav-link:hover {
    color: var(--accent-color) !important;
    transform: translateX(5px);
}

footer p {
    line-height: 1.7;
    color: #94A3B8 !important;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 2rem;
    margin-top: 3rem;
    color: #64748B;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}