        /* THEME: Default Light Mode */
        :root {
            /* Backgrounds */
    --bg: #F8FAFC;       /* Very light blue-grey */
    --surface: #FFFFFF;
    --card: #FFFFFF;
    --border: #E2E8F0;
    
    /* Text */
    --text: #0F172A;     /* Slate 900 */
    --muted: #64748B;    /* Slate 500 */
    
    /* Primary Accent (The Gradient Stars) */
    --accent: #af0534;
    --accent-dark: #070a66;
    --warm: #0bf1f5;
    
    /* Gradients (Applied in classes) */
    --gradient-primary: linear-gradient(135deg, #2563EB 0%, #06B6D4 100%);
    --gradient-bg: radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.08) 0%, transparent 50%);
            --font-display: 'Outfit', sans-serif;
            --font-body: 'DM Sans', sans-serif;
        }
        /* 1. Define the variable default */
:root {
    --scrollbar-width: 0px;
}

/* 2. Stop scrolling and pad the body */
body.modal-open {
    overflow: hidden !important;
    padding-right: var(--scrollbar-width) !important;
}

/* 3. FIX THE SHAKE: Pad ALL fixed elements so they don't jump */
/* This targets your Header, WhatsApp button, and Scroll Top button */
#mainHeader,
.whatsapp-btn,
.scroll-top {
    padding-right: var(--scrollbar-width) !important;
    /* Optional: Prevent transition animations on padding which makes it look like a 'shake' */
    transition: padding 0s !important; 
}
        /* Dark Mode Class */
        body.dark-mode {
            --bg: #0a0a0f;
            --surface: #12121a;
            --card: #1a1a25;
            --border: #2a2a3a;
            --text: #ffffff;
            --muted: #6b7280;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: var(--font-body);
            background-color: var(--bg);
            color: var(--text);
            transition: background-color 0.4s ease, color 0.4s ease;
            line-height: 1.6;
            overflow-x: hidden;
        }

        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: transparent; }
        ::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
        ::-webkit-scrollbar-thumb:hover { background: var(--accent); }

        .container { max-width: 1350px; margin: 0 auto; padding: 0 24px; }
        .gradient-text {
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 50%, #0056ff 100%);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
        }

        /* Buttons */
        .btn-primary {
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
            color: #ffffff; padding: 14px 32px; border-radius: 50px; font-weight: 600;
            font-size: 0.95rem; border: none; cursor: pointer; transition: all 0.3s ease;
            display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
        }
        .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgb(53 144 246 / 65%); }
        .btn-secondary {
            background: transparent; color: var(--text); padding: 14px 32px; border-radius: 50px;
            font-weight: 600; border: 2px solid #1d5db2; cursor: pointer; transition: all 0.3s ease;
            display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
        }
        .btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

        /* --- TOPBAR --- */
        .topbar { background-image: linear-gradient(45deg, #045a88, #4e0404); border-bottom: 1px solid var(--border); padding: 10px 0; display: none; transition: background-color 0.4s ease; }
        @media (min-width: 768px) { .topbar { display: block; } }
        .topbar-content { display: flex; justify-content: space-between; align-items: center; font-size: 0.875rem; }
        .topbar-links { display: flex; gap: 24px; }
        .topbar-link { display: flex; align-items: center; gap: 8px; color: #ffffff; text-decoration: none; transition: color 0.3s; font-weight: 700;}
        .topbar-link:hover { color: var(--accent); }
        .social-icons { display: flex; gap: 10px; }
        .social-icon { width: 34px; height: 34px; border-radius: 50%; background: #fff; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: #0c4f9f; transition: all 0.3s; text-decoration: none; }
        .social-icon:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-2px); }

        /* --- HEADER --- */
        .header { position: sticky; top: 0; z-index: 1000; padding: 16px 0; transition: all 0.3s ease; background-color: var(--bg); }
        .header.scrolled { padding: 16px 0; background-color: var(--surface); box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05); }
        body.dark-mode .header.scrolled { box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3); }
        .header-content { display: flex; align-items: center; justify-content: space-between; }
        .logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
        .logo-img { width: 200px; height: auto; }
        
        /* Desktop Nav */
        .desktop-nav { display: none; }
        @media (min-width: 1024px) { .desktop-nav { display: flex; align-items: center; gap: 4px; } }
        .nav-item { position: relative; }
                .nav-link:hover::before, .nav-link.active::before { width: 60%; }

        .nav-link { padding: 5px 18px; font-size: 0.95rem; font-weight: 600; color: #2a2a3a; text-decoration: none; border-radius: 8px; transition: all 0.3s; display: flex; align-items: center; gap: 4px; }
                .nav-link:hover, .nav-link.active { color: #dc0303; background:rgba(81, 151, 224, 0.05); }

        body.dark-mode .nav-link { color: var(--text); }

        /* Dropdown */
        .dropdown-menu { position: absolute; top: 100%; left: 0; margin-top: 8px; min-width: 220px; background-color: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 10px; box-shadow: 0 20px 50px rgba(0,0,0,0.1); opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease; z-index: 100; }
        body.dark-mode .dropdown-menu { box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
        .nav-item:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
        .dropdown-link { display: block; padding: 12px 16px; font-size: 0.9rem; color: var(--muted); text-decoration: none; border-radius: 10px; transition: all 0.2s; }
        .dropdown-link:hover { color: #ffffff; background: #0e4e8f; padding-left: 20px; }

        .header-actions { display: none; gap: 16px; align-items: center; }
        @media (min-width: 1024px) { .header-actions { display: flex; } }
        .theme-toggle { width: 44px; height: 44px; border-radius: 50%; background: transparent; border: 1px solid var(--border); color: var(--text); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s; display: none; }
        .theme-toggle:hover { border-color: var(--accent); color: var(--accent); }

        /* Mobile Menu */
        .mobile-toggle { display: flex; gap: 12px; align-items: center; }
        @media (min-width: 1024px) { .mobile-toggle { display: none; } }
        .menu-btn { background: none; border: none; color: var(--text); cursor: pointer; padding: 4px; }
        .mobile-menu { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; background-color: var(--surface); }
        .mobile-menu.open { max-height: 700px; margin-top: 16px; border-radius: 16px; border: 1px solid var(--border); }
        .mobile-nav { padding: 16px; display: flex; flex-direction: column; gap: 4px; }
        .mobile-link { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; color: var(--muted); text-decoration: none; border-radius: 10px; transition: all 0.2s; font-weight: 500; }
        .mobile-link:hover, .mobile-link.active { background: var(--card); color: var(--accent); }
        .mobile-dropdown { display: none; flex-direction: column; gap: 2px; padding-left: 16px; margin-bottom: 4px; }
        .mobile-dropdown.open { display: flex; }
        .mobile-dropdown a { font-size: 0.9rem; color: var(--muted); padding: 10px 16px; text-decoration: none; border-radius: 8px; }
        .mobile-dropdown a:hover { color: var(--accent); background: var(--card); }

        /* Hero Slider */
        .hero-slider { 
            position: relative; 
            display: flex; 
            align-items: center; 
            overflow: hidden; 
            min-height: 100vh;
        }
        
        .hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 50%, rgba(0, 212, 170, 0.1) 0%, transparent 50%), radial-gradient(ellipse at 80% 20%, rgb(255 107 53 / 11%) 0%, #a5c6e46b 50%); z-index: 0; }
        body.dark-mode .hero-bg { background: radial-gradient(ellipse at 20% 50%, rgba(0, 212, 170, 0.1) 0%, transparent 50%), radial-gradient(ellipse at 80% 20%, rgb(255 107 53 / 11%) 0%, #a5c6e46b 50%); }

        .slide { 
            position: absolute; 
            top: 0; 
            left: 0; 
            width: 100%; 
            height: 100%; 
            z-index: 1; 
            padding: 100px 0 80px; 
            display: flex; 
            align-items: center; 
            opacity: 0; 
            visibility: hidden; 
            transition: opacity 1s ease, visibility 1s ease; 
        }
        .slide.active { opacity: 1; visibility: visible; z-index: 2; }
        
        .hero-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; position: relative; z-index: 2; width: 100%; }
        @media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; gap: 60px; } }
        
        .hero-content { text-align: center; }
        @media (min-width: 1024px) { .hero-content { text-align: left; } }
        
        .hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px; background: rgb(0 106 212 / 18%); border: 1px solid rgba(0, 212, 170, 0.3); border-radius: 50px; font-size: 0.875rem; color: #1e2022; margin-bottom: 24px;  }
        .hero-title { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 50px); font-weight: 800; line-height: 1.1; margin-bottom: 24px; }
        @media (min-width: 1024px) { .hero-title { font-size: clamp(2.5rem, 6vw, 50px); } }
        
        .hero-desc { font-size: 1rem; color: #000; max-width: 520px; margin: 0 auto 36px; line-height: 1.7;  }
        @media (min-width: 1024px) { .hero-desc { margin: 0 0 36px 0; font-size: 1.15rem; } }
        
        .hero-buttons { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 48px; justify-content: center; }
        @media (min-width: 1024px) { .hero-buttons { justify-content: flex-start; } }
        
        .hero-stats { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; }
        @media (min-width: 1024px) { .hero-stats { justify-content: flex-start; } }
        .hero-stat-value { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: #0f4c8d; }
        @media (min-width: 1024px) { .hero-stat-value { font-size: 2rem; } }
        .hero-stat-label { font-size: 0.875rem; color: #20324b; font-weight: 600;}
        
        .hero-visual { position: relative; max-width: 500px; margin: 0 auto; }
        @media (min-width: 1024px) { .hero-visual { max-width: 100%; } }
        
        .hero-img { width: 100%; border-radius: 24px; border: 1px solid var(--border); box-shadow: 0 30px 60px rgba(0,0,0,0.1); transition: transform 0.5s ease; }
        .hero-visual:hover .hero-img { transform: scale(1.02) rotate(0.5deg); }
        body.dark-mode .hero-img { box-shadow: 0 30px 60px rgba(0,0,0,0.3); }
        .float-card { position: absolute; background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 16px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); animation: float 3s ease-in-out infinite; display: none; }
        @media (min-width: 768px) { .float-card { display: block; } }
        body.dark-mode .float-card { box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
        .float-card-1 { bottom: -20px; left: -20px; animation-delay: 0s; }
        .float-card-2 { top: -20px; right: -20px; animation-delay: 0.5s; }
        @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

        /* Slider Dots */
        .slider-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 12px; z-index: 10; }
        @media (min-width: 768px) { .slider-dots { bottom: 40px; } }
        .dot { width: 12px; height: 12px; border-radius: 50%; background: var(--border); cursor: pointer; transition: all 0.3s; border: none; padding: 0; }
        .dot.active { background: var(--accent); width: 36px; border-radius: 6px; }

        /* Section Styling */
        .section { padding: 60px 0; }
        @media (min-width: 768px) { .section { padding: 100px 0; } }
        .section-surface { background-color: var(--surface); }
        .section-header { text-align: center; margin-bottom: 40px; position: relative; }
        @media (min-width: 768px) { .section-header { margin-bottom: 60px; } }
        .section-label { font-weight: 600; text-transform: uppercase; letter-spacing: 2px; font-size: 0.85rem; color: var(--accent); margin-bottom: 12px; }
        .section-title { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.75rem); font-weight: 700; margin-bottom: 16px; }
        .section-desc { font-size: 1rem; color: var(--muted); max-width: 600px; margin: 0 auto; }
        @media (min-width: 768px) { .section-desc { font-size: 1.1rem; } }

        /* Grids & Cards */
        .services-grid, .features-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
        @media (min-width: 640px) { .services-grid, .features-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
        @media (min-width: 1200px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }
        


        
        .service-card, .feature-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 32px; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
        .service-card:hover, .feature-card:hover { transform: translateY(-8px); box-shadow: 0 25px 50px #5197e047; border-color: var(--accent); }
        body.dark-mode .service-card:hover, body.dark-mode .feature-card:hover { box-shadow: 0 25px 50px #5197e047; }
        
        .service-icon, .feature-icon { width: 60px; height: 60px; border-radius: 16px; background: rgb(0 122 212 / 10%); border: 1px solid rgb(10 23 153 / 20%); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: #0b529d; }
        .service-card h3, .feature-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
        .service-card p, .feature-card p { color: var(--muted); line-height: 1.6; }

        /* Counters */
        .counters-section { padding: 50px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background-image: linear-gradient(45deg, #510325, #250c5f);}
        @media (min-width: 768px) { .counters-section { padding: 60px 0; } }
        .counters-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
        @media (min-width: 768px) { .counters-grid { grid-template-columns: repeat(4, 1fr); } }
        .counter-item { text-align: center; }
        .counter-value { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; color: #093897; }
        .counter-label { font-size: 0.9rem; color: #fff; margin-top: 4px; }

        /* Split Layout */
        .split-section-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; }
        @media (min-width: 1024px) { .split-section-grid { grid-template-columns: 0.8fr 1.2fr; gap: 80px; } }
        .split-content { position: relative; text-align: center; }
        @media (min-width: 1024px) { .split-content { position: sticky; top: 120px; text-align: left; } }
        .split-content h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 700; margin-bottom: 20px; }
        .split-content p { color: var(--muted); font-size: 1.05rem; margin-bottom: 32px; line-height: 1.7; }

        /* Products / Sectors */
        .cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
        @media (min-width: 768px) { .cards-grid { grid-template-columns: repeat(4, 1fr); } }
        .product-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 24px; transition: all 0.3s ease; text-align: center; }
        .product-card:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: 0 15px 30px rgba(0,0,0,0.05); }
        body.dark-mode .product-card:hover { box-shadow: 0 15px 30px rgba(0,0,0,0.2); }
        .product-card i { width: 70px; height: 70px; line-height: 70px; border-radius: 50%; background-color: #f1f1f1; color: #3c55c8; font-size: 26px; margin-bottom: 15px; display: inline-block; transition: 0.3s ease; }
        .product-card:hover i { background-color: var(--accent); color: white; }
        .product-card h4 { font-size: 1rem; margin-bottom: 4px; }
        
        /* Integrations */
        .integrations-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
        @media (min-width: 640px) { .integrations-grid { grid-template-columns: repeat(4, 1fr); } }
        .integration-card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; aspect-ratio: 1; transition: all 0.3s ease; }
        .integration-card:hover { border-color: var(--accent); transform: translateY(-2px); }
        .integration-logo { width: 48px; height: 48px; border-radius: 12px; background: rgba(0, 212, 170, 0.1); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 1rem; margin-bottom: 10px; }
        .integration-card span { font-size: 0.85rem; text-align: center; }

        /* Recent Projects Slider */
        .projects-section { padding: 4rem 0; overflow: hidden; background-color: var(--surface); }
        @media (min-width: 768px) { .projects-section { padding: 6rem 0; } }
        .projects-track-wrapper { overflow: hidden; }
        .projects-track { display: flex; gap: 24px; animation: scroll-left 35s linear infinite; width: max-content; }
        /* Pause on hover */
        .projects-track:hover { animation-play-state: paused; }
        
        .project-slide { width: 300px; height: 220px; border-radius: 20px; overflow: hidden; position: relative; flex-shrink: 0; border: 1px solid var(--border); }
        @media (min-width: 768px) { .project-slide { width: 350px; height: 250px; } }
        .project-slide img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
        .project-slide:hover img { transform: scale(1.1); }
        .project-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; background: linear-gradient(to top, rgb(0 0 0), #022156); color: #fff; transition: all 0.3s ease; opacity: 0.8; }
        .project-slide:hover .project-overlay { opacity: 1; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); }
        .project-overlay h4 { font-size: 1.1rem; margin-bottom: 4px; transform: translateY(10px); transition: transform 0.3s ease; }
        .project-slide:hover .project-overlay h4 { transform: translateY(0); }
        .project-overlay span { font-size: 0.8rem; opacity: 0; transition: opacity 0.3s ease 0.1s; }
        .project-slide:hover .project-overlay span { opacity: 0.8; }
        
        @keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        /* Testimonials */
        .testimonials-wrapper { overflow: hidden; margin: 0 -24px; padding: 0 24px; }
        .testimonials-track { display: flex; gap: 24px; padding-bottom: 20px; animation: scroll-testimonials 30s linear infinite; width: max-content; }
        /* Pause on hover */
        .testimonials-track:hover { animation-play-state: paused; }

        @keyframes scroll-testimonials { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        .testimonial-card { flex-shrink: 0; width: 300px; background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 28px; transition: all 0.3s ease; }
        @media (min-width: 768px) { .testimonial-card { width: 400px; } }
        .testimonial-card:hover { transform: translateY(-5px); border-color: var(--accent); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
        .testimonial-stars { display: flex; gap: 2px; margin-bottom: 16px; color: #fbbf24; }
        .testimonial-text { font-size: 1rem; margin-bottom: 20px; line-height: 1.6; }
        .testimonial-author { display: flex; align-items: center; gap: 14px; }
        .testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--warm)); display: flex; align-items: center; justify-content: center; font-weight: 700; color: #0a0a0f; }
        
        /* Blog */
        .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
        @media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
        @media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
        .blog-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; transition: all 0.3s ease; }
        .blog-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
        body.dark-mode .blog-card:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
        .blog-image-wrapper { height: 200px; overflow: hidden; position: relative; }
        .blog-image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
        .blog-card:hover .blog-image { transform: scale(1.1); }
        .blog-content { padding: 24px; }
        .blog-category { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--accent); margin-bottom: 8px; }
        .blog-title { font-size: 1.15rem; font-weight: 600; margin-bottom: 12px; line-height: 1.4; }
        .blog-excerpt { font-size: 0.9rem; color: var(--muted); margin-bottom: 16px; line-height: 1.6; }
        .blog-meta { display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: var(--muted); }

        /* CTA Section */
        .cta-section { position: relative; overflow: hidden; }
        .cta-bg { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,212,170,0.05) 0%, rgba(255,107,53,0.03) 100%); }
        body.dark-mode .cta-bg { background: linear-gradient(135deg, rgba(0,212,170,0.08) 0%, rgba(255,107,53,0.05) 100%); }
        .cta-grid { display: grid; grid-template-columns: 1fr; gap: 50px; align-items: center; position: relative; z-index: 2; }
        @media (min-width: 1024px) { .cta-grid { grid-template-columns: 1fr 1fr; } }
        .cta-content { text-align: center; }
        @media (min-width: 1024px) { .cta-content { text-align: left; } }
        .cta-content h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.75rem); font-weight: 700; margin-bottom: 20px; }
        .cta-content p { color: var(--muted); font-size: 1.1rem; margin-bottom: 28px; }
        .cta-buttons { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 20px; justify-content: center; }
        @media (min-width: 1024px) { .cta-buttons { justify-content: flex-start; } }
        .cta-img { width: 100%; border-radius: 24px; border: 1px solid var(--border); box-shadow: 0 30px 60px rgba(0,0,0,0.1); transition: transform 0.5s ease; }
        .cta-img:hover { transform: scale(1.02); }
        body.dark-mode .cta-img { box-shadow: 0 30px 60px rgba(0,0,0,0.2); }

        /* Brands */
        .brands-section { padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
        .brands-label { text-align: center; font-size: 18px;     font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 30px; }
        .brands-track-wrapper { overflow: hidden; }
        .brands-track { display: flex; gap: 50px; animation: marquee 25s linear infinite; width: max-content; }
        /* Pause on hover */
        .brands-track:hover { animation-play-state: paused; }
        
        .brand-item { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: #3F51B5; opacity: 0.8; white-space: nowrap; transition: all 0.3s ease; cursor: default; }
        /* Highlight on hover */
        .brand-item:hover { opacity: 1; color: var(--accent); transform: scale(1.1); }
        
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        /* --- FOOTER --- */
        .footer { background-color: var(--surface); border-top: 1px solid var(--border); padding: 60px 0 30px; }
        @media (min-width: 1024px) { .footer { padding: 80px 0 30px; } }
        
        .footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 50px; text-align: left; }
        @media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); text-align: left; } }
        @media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }

        .footer-brand { display: flex; flex-direction: column; align-items: left; }
        @media (min-width: 768px) { .footer-brand { align-items: flex-start; } }
        .footer-brand p { color: #fff; margin: 16px 0 20px; font-size: 0.95rem;  }
        
        .footer-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 20px; }
        
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 12px; }
        .footer-link { color: var(--muted); text-decoration: none; font-size: 0.95rem; transition: color 0.3s; display: inline-flex; align-items: center; gap: 8px; }
        .footer-link:hover { color: var(--accent); }
        .footer-link svg { width: 14px; height: 14px; opacity: 0.5; transition: opacity 0.3s; }
        .footer-link:hover svg { opacity: 1; }

        .footer-contact-list { list-style: none; }
        .footer-contact-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; color: var(--muted); font-size: 0.95rem; justify-content: left; }
        .footer-contact-list svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }

        .newsletter-form { display: flex; margin-top: 16px; justify-content: left; }
        .newsletter-input { flex: 1; max-width: 250px; background: var(--card); border: 1px solid var(--border); padding: 12px 16px; border-radius: 10px 0 0 10px; color: var(--text); font-family: var(--font-body); font-size: 0.9rem; outline: none; }
        .newsletter-input:focus { border-color: var(--accent); }
        .newsletter-btn { background: var(--accent); color: #0a0a0f; border: none; padding: 0 20px; font-weight: 600; border-radius: 0 10px 10px 0; cursor: pointer; }
        
        .footer-bottom { border-top: 1px solid var(--border); padding-top: 30px; display: flex; flex-direction: column; gap: 16px; align-items: center; text-align: center; }
        @media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
        .footer-bottom p { font-size: 0.9rem; color: var(--muted); }
        .footer-legal { display: flex; gap: 24px; }
        .footer-legal a { font-size: 0.85rem; color: var(--muted); text-decoration: none; }
        .footer-legal a:hover { color: var(--accent); }

        /* Floating Buttons */
        .scroll-top, .whatsapp-btn { position: fixed; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 50; box-shadow: 0 4px 15px rgba(0,0,0,0.15); transition: all 0.3s; }
        .scroll-top { bottom: 24px; right: 24px; width: 50px; height: 50px; background-image: linear-gradient(45deg, #00a5ff, #0017da); color: #ffffff; border: none; cursor: pointer; opacity: 0; visibility: hidden; }
        .scroll-top.show { opacity: 1; visibility: visible; }
        .whatsapp-btn { bottom: 90px; right: 24px; width: 54px; height: 54px; background: #25D366; }
        .scroll-top:hover, .whatsapp-btn:hover { transform: scale(1.1); }

        /* Animations */
        .reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); }
        .reveal.visible { opacity: 1; transform: translateY(0); }
        /* Stagger children */
        .reveal.visible > *:nth-child(1) { transition-delay: 0.1s; }
        .reveal.visible > *:nth-child(2) { transition-delay: 0.2s; }
        .reveal.visible > *:nth-child(3) { transition-delay: 0.3s; }

        /* Arrow Button in Section Header */
        .arrow-button {
            position: absolute;
            top: 0;
            right: 0;
            display: none; /* Hidden on mobile by default */
            align-items: center;
            gap: 0.5rem;
            color: var(--accent);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        @media (min-width: 768px) { .arrow-button { display: inline-flex; } }

        .arrow-button:hover { transform: translateX(5px); }
        .arrow-button svg { transition: transform 0.3s ease; }
        .arrow-button:hover svg { transform: translateX(3px); }

        /* Service Card Arrow */
        .card-arrow {
            position: absolute;
            bottom: 2rem;
            right: 2rem;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(79, 70, 229, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.3s ease;
        }
        .service-card { position: relative; }
        .service-card:hover .card-arrow { opacity: 1; transform: scale(1); }
        .service-card:hover .card-arrow:hover { background-color: var(--accent); color: white; transform: scale(1.1); }

        /* About Section Styles */
        .about-section { position: relative; padding: 80px 0; overflow: hidden; }
        .about-bg { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(135deg, #ffe8ccb3 0%, #b5cdf3 100%); opacity: 0.3; z-index: -1; }
        body.dark-mode .about-bg { opacity: 0.1; }
        .about-grid { display: grid; grid-template-columns: 1fr; gap: 60px; align-items: center; }
        @media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }
        .about-content h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 700; margin-bottom: 20px; }
        .about-content p { font-size: 1.1rem; line-height: 1.8; color: var(--muted); margin-bottom: 30px; }
        .points-row { display: flex; gap: 15px; justify-content: space-between; flex-wrap: wrap; }
        .point-item { flex: 1 1 100%; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 20px 15px; background: var(--card); border: 1px solid var(--border); border-radius: 12px; transition: transform 0.3s ease, box-shadow 0.3s ease; margin-bottom: 15px; }
        @media (min-width: 640px) { .point-item { flex: 1 1 30%; } }
        .point-item:hover { transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
        .point-icon { display: inline-flex; align-items: center; justify-content: center; width: 50px; height: 50px; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); border-radius: 50%; margin-bottom: 15px; color: white; font-size: 24px; }
        .about-buttons { display: flex; gap: 15px; margin-top: 40px; flex-wrap: wrap; }
        
        .floating-card { position: absolute; bottom: -20px; right: -20px; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: white; padding: 20px; border-radius: 16px; box-shadow: 0 20px 40px rgba(0,0,0,0.2); z-index: 10; min-width: 180px; animation: float 3s ease-in-out infinite; display: none; }
        @media (min-width: 768px) { .floating-card { display: block; } }

        /* About Image Hover */
        .about-img { transition: transform 0.5s ease; }
        .about-img:hover { transform: scale(1.05); }

        /* --- MODAL LOGIN STYLES --- */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(5px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        .modal-container {
            background: var(--card);
            width: 100%;
            max-width: 420px;
            border-radius: 24px;
            padding: 40px;
            position: relative;
            transform: translateY(20px) scale(0.95);
            transition: transform 0.3s ease;
            border: 1px solid var(--border);
            box-shadow: 0 20px 50px rgba(0,0,0,0.2);
            margin: 20px;
        }
        .modal-overlay.active .modal-container {
            transform: translateY(0) scale(1);
        }
        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: transparent;
            border: none;
            color: var(--muted);
            cursor: pointer;
            transition: color 0.3s;
            font-size: 24px;
        }
        .modal-close:hover { color: var(--text); }
        .modal-header { text-align: center; margin-bottom: 30px; }
        .modal-header h3 { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 8px; }
        .modal-header p { color: var(--muted); }
        
        .form-group { margin-bottom: 20px; }
        .form-group label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.9rem; }
        .form-input {
            width: 100%;
            padding: 14px 16px;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 12px;
            color: var(--text);
            font-family: var(--font-body);
            font-size: 1rem;
            transition: border-color 0.3s;
            outline: none;
        }
        .form-input:focus { border-color: var(--accent); }
        
        .form-options { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; font-size: 0.9rem; }
        .form-options a { color: var(--accent); text-decoration: none; }
        .form-options a:hover { text-decoration: underline; }
        
        .modal-footer { text-align: center; margin-top: 24px; font-size: 0.9rem; color: var(--muted); }
        .modal-footer a { color: var(--accent); font-weight: 600; text-decoration: none; }

        .social-login { display: flex; gap: 12px; margin-top: 24px; }
        .social-btn { flex: 1; padding: 12px; border: 1px solid var(--border); border-radius: 12px; background: var(--surface); cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: all 0.3s; color: var(--text); font-weight: 500; }
        .social-btn:hover { background: var(--card); border-color: var(--accent); }

        /* Login Link in Nav */
        .nav-login-btn {
            background: transparent;
            color: var(--accent);
            border: 1px solid var(--accent);
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
            text-decoration: none;
        }
        .nav-login-btn:hover {
            background: var(--accent);
            color: white;
        }
            .faq-grid {
                        display: grid;
                        grid-template-columns: 1fr 1fr;
                        gap: 50px;
                        align-items: center;
                    }

                    /* Tablet & Mobile */
                    @media (max-width: 992px) {
                        .faq-grid {
                            grid-template-columns: 1fr;
                        }
                    }

                    .faq-item {
                        border-radius: 12px;
                        overflow: hidden;
                        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
                        background: #fff;
                        margin-bottom: 15px;
                    }

                    .faq-question {
                        width: 100%;
                        padding: 18px;
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        border: none;
                        background: #fff;
                        font-size: 16px;
                        font-weight: 500;
                        cursor: pointer;
                    }

                    .faq-answer {
                        max-height: 0;
                        overflow: hidden;
                        transition: max-height 0.4s ease;
                        padding: 0 18px;
                        color: #666;
                    }

                    .faq-answer.open {
                        padding: 18px;
                    }

                    .faq-icon {
                        font-size: 18px;
                        transition: 0.3s;
                    }

                    .faq-right img {
                        width: 100%;
                        border-radius: 16px;
                        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
                    }
                                  .footer {
                    background: #0f172a;
                    color: #cbd5e1;
                    padding: 80px 0 25px;
                }

                /* Grid Layout */
                .footer-grid {
                    display: grid;
                    grid-template-columns: 320px 1fr 1fr 1fr 320px;
                    gap: 20px;
                }

                /* Brand & Contact fixed width */
                .footer-brand,
                .footer-contact {
                    max-width: 320px;
                }

                /* Logo */
                .footer-logo {
                    color: #fff;
                    font-size: 26px;
                    font-weight: 700;
                }

                /* Titles */
                .footer-title {
                    font-size: 18px;
                    font-weight: 600;
                    margin-bottom: 20px;
                    color: #fff;
                }

                /* Description */
                .footer-desc {
                    line-height: 1.8;
                    margin: 18px 0 25px;
                }

                /* Links */
                .footer-links {
                    list-style: none;
                    padding: 0;
                }

                .footer-links li {
                    margin-bottom: 14px;
                }

                .footer-link {
                    text-decoration: none;
                    color: #cbd5e1;
                    transition: all 0.3s ease;
                }

                .footer-link:hover {
                    color: #6366f1;
                    padding-left: 8px;
                }

                /* Contact */
                .footer-contact-list {
                    list-style: none;
                    padding: 0;
                }

                .footer-contact-list li {
                    display: flex;
                    gap: 12px;
                    margin-bottom: 16px;
                }

                .contact-icon {
                    width: 36px;
                    height: 36px;
                    background: #1e293b;
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }

                .contact-link {
                    color: #cbd5e1;
                    text-decoration: none;
                    transition: 0.3s;
                }

                .contact-link:hover {
                    color: #6366f1;
                }

                /* Social Icons */
                .social-icons {
                    display: flex;
                    gap: 12px;
                }

                .social-icon {
                    width: 38px;
                    height: 38px;
                    background: #fff;
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    color: #0c4f9f;
                    transition: all 0.3s ease;
                }

                .social-icon:hover {
                    background: #6366f1;
                    color: #fff;
                    transform: translateY(-5px);
                }

                /* Newsletter */
                .newsletter-form {
                    display: flex;
                    margin-top: 15px;
                    border-radius: 8px;
                    overflow: hidden;
                    border: 1px solid #1e293b;
                    transition: 0.3s;
                }

                .newsletter-form:hover {
                    border-color: #6366f1;
                    box-shadow: 0 0 12px rgba(99,102,241,0.25);
                }

                .newsletter-form input {
                    flex: 1;
                    padding: 12px 15px;
                    border: none;
                    background: #1e293b;
                    color: #fff;
                    outline: none;
                }

                .newsletter-form input::placeholder {
                    color: #94a3b8;
                }

                .newsletter-form button {
                    padding: 12px 30px;
                    border: none;
                    background: #6366f1;
                    color: #fff;
                    cursor: pointer;
                    transition: 0.3s;
                }

                .newsletter-form button:hover {
                    background: #4f46e5;
                }

                /* Bottom */
                            .footer-bottom {
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        margin-top: 60px;
                        padding-top: 20px;
                        border-top: 1px solid #1e293b;
                        font-size: 14px;
                        color: #94a3b8;
                        flex-wrap: wrap;
                        gap: 15px;
                    }

                    .footer-bottom-right {
                        display: flex;
                        gap: 20px;
                    }

                    .footer-bottom-right a {
                        color: #94a3b8;
                        text-decoration: none;
                        transition: 0.3s;
                        position: relative;
                    }

                    .footer-bottom-right a:hover {
                        color: #6366f1;
                    }

                    /* Mobile Responsive */
                    @media (max-width: 768px) {
                        .footer-bottom {
                            flex-direction: column;
                            text-align: center;
                        }

                        .footer-bottom-right {
                            justify-content: center;
                        }
                    }

                .mt-30 {
                    margin-top: 30px;
                }

                /* Responsive */
                @media (max-width: 1200px) {
                    .footer-grid {
                        grid-template-columns: repeat(2, 1fr);
                    }

                    .footer-brand,
                    .footer-contact {
                        max-width: 100%;
                    }
                }

                @media (max-width: 768px) {
                    .footer-grid {
                        grid-template-columns: 1fr;
                    }
                }
     /* THEME: Default Light Mode */
        :root {
            --bg: #f8f9fc;
            --surface: #ffffff;
            --card: #ffffff;
            --border: #e2e8f0;
            --text: #0f172a;
            --muted: #64748b;
          --accent: #af0534;
    --accent-dark: #070a66;
    --warm: #0bf1f5;
            --font-display: 'Outfit', sans-serif;
            --font-body: 'DM Sans', sans-serif;
        }
            /* 1. Define the variable default */
:root {
    --scrollbar-width: 0px;
}

/* 2. Stop scrolling and pad the body */
body.modal-open {
    overflow: hidden !important;
    padding-right: var(--scrollbar-width) !important;
}

/* 3. FIX THE SHAKE: Pad ALL fixed elements so they don't jump */
/* This targets your Header, WhatsApp button, and Scroll Top button */
#mainHeader,
.whatsapp-btn,
.scroll-top {
    padding-right: var(--scrollbar-width) !important;
    /* Optional: Prevent transition animations on padding which makes it look like a 'shake' */
    transition: padding 0s !important; 
}
        /* Dark Mode Class */
        body.dark-mode {
            --bg: #0a0a0f;
            --surface: #12121a;
            --card: #1a1a25;
            --border: #2a2a3a;
            --text: #ffffff;
            --muted: #6b7280;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: var(--font-body);
            background-color: var(--bg);
            color: var(--text);
            transition: background-color 0.4s ease, color 0.4s ease;
            line-height: 1.6;
            overflow-x: hidden;
        }

        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: transparent; }
        ::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
        ::-webkit-scrollbar-thumb:hover { background: var(--accent); }

        .container { max-width: 1350px; margin: 0 auto; padding: 0 24px; }
        .gradient-text {
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 50%, #0056ff 100%);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
        }

        /* Buttons */
        .btn-primary {
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
            color: #ffffff; padding: 14px 32px; border-radius: 50px; font-weight: 600;
            font-size: 0.95rem; border: none; cursor: pointer; transition: all 0.3s ease;
            display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
        }
        .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(53, 144, 246, 0.65); }
        .btn-secondary {
            background: transparent; color: var(--text); padding: 14px 32px; border-radius: 50px;
            font-weight: 600; border: 2px solid #1d5db2; cursor: pointer; transition: all 0.3s ease;
            display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
        }
        .btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

        /* --- TOPBAR (Source: index.php) --- */
        .topbar { background-image: linear-gradient(45deg, #045a88, #4e0404); border-bottom: 1px solid var(--border); padding: 10px 0; display: none; transition: background-color 0.4s ease; }
        @media (min-width: 768px) { .topbar { display: block; } }
        .topbar-content { display: flex; justify-content: space-between; align-items: center; font-size: 0.875rem; }
        .topbar-links { display: flex; gap: 24px; }
        .topbar-link { display: flex; align-items: center; gap: 8px; color: #ffffff; text-decoration: none; transition: color 0.3s; font-weight: 700;}
        .topbar-link:hover { color: var(--accent); }
        .social-icons { display: flex; gap: 10px; }
        .social-icon { width: 38px; height: 38px; border-radius: 50%; background: #fff; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: #0c4f9f; transition: all 0.3s; text-decoration: none; }
        .social-icon:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-2px); }

        /* --- HEADER (Source: index.php) --- */
        .header { position: sticky; top: 0; z-index: 1000; padding: 16px 0; transition: all 0.3s ease; background-color: var(--bg); }
        .header.scrolled { padding: 16px 0; background-color: var(--surface); box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05); }
        body.dark-mode .header.scrolled { box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3); }
        .header-content { display: flex; align-items: center; justify-content: space-between; }
        .logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
        .logo-img { width: 200px; height: auto; }
        
        /* Desktop Nav */
        .desktop-nav { display: none; }
        @media (min-width: 1024px) { .desktop-nav { display: flex; align-items: center; gap: 4px; } }
        .nav-item { position: relative; }
                .nav-link:hover::before, .nav-link.active::before { width: 60%; }

        .nav-link { padding: 5px 18px; font-size: 0.95rem; font-weight: 600; color: #2a2a3a; text-decoration: none; border-radius: 8px; transition: all 0.3s; display: flex; align-items: center; gap: 4px; }
                        .nav-link:hover, .nav-link.active { color: #dc0303; background:rgba(81, 151, 224, 0.05); }

        body.dark-mode .nav-link { color: var(--text); }

        /* Dropdown */
        .dropdown-menu { position: absolute; top: 100%; left: 0; margin-top: 8px; min-width: 220px; background-color: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 10px; box-shadow: 0 20px 50px rgba(0,0,0,0.1); opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease; z-index: 100; }
        body.dark-mode .dropdown-menu { box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
        .nav-item:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
        .dropdown-link { display: block; padding: 12px 16px; font-size: 0.9rem; color: var(--muted); text-decoration: none; border-radius: 10px; transition: all 0.2s; }
        .dropdown-link:hover { color: #fff; background: #0e4e8f;     padding-left: 20px;}

        .header-actions { display: none; gap: 16px; align-items: center; }
        @media (min-width: 1024px) { .header-actions { display: flex; } }
        .theme-toggle { width: 44px; height: 44px; border-radius: 50%; background: transparent; border: 1px solid var(--border); color: var(--text); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s; display: none; }
        .theme-toggle:hover { border-color: var(--accent); color: var(--accent); }

        /* Mobile Menu */
        .mobile-toggle { display: flex; gap: 12px; align-items: center; }
        @media (min-width: 1024px) { .mobile-toggle { display: none; } }
        .menu-btn { background: none; border: none; color: var(--text); cursor: pointer; padding: 4px; }
        .mobile-menu { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; background-color: var(--surface); }
        .mobile-menu.open { max-height: 700px; margin-top: 16px; border-radius: 16px; border: 1px solid var(--border); }
        .mobile-nav { padding: 16px; display: flex; flex-direction: column; gap: 4px; }
        .mobile-link { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; color: var(--muted); text-decoration: none; border-radius: 10px; transition: all 0.2s; font-weight: 500; }
        .mobile-link:hover, .mobile-link.active { background: var(--card); color: var(--accent); }
        .mobile-dropdown { display: none; flex-direction: column; gap: 2px; padding-left: 16px; margin-bottom: 4px; }
        .mobile-dropdown.open { display: flex; }
        .mobile-dropdown a { font-size: 0.9rem; color: var(--muted); padding: 10px 16px; text-decoration: none; border-radius: 8px; }
        .mobile-dropdown a:hover { color: var(--accent); background: var(--card); }

        /* Breadcrumb */
        .breadcrumb-section { position: relative; padding: 4rem 0; border-bottom: 1px solid var(--border); background-image: url('../images/about-bred.jpg'); background-size: cover; background-position: center; }
        .breadcrumb-overlay { position: absolute; inset: 0; background: rgba(10, 10, 15, 0.92); z-index: 1; transition: background 0.4s; }
        body.dark-mode .breadcrumb-overlay { background: rgba(10, 10, 15, 0.98); }
        body:not(.dark-mode) .breadcrumb-overlay { background: rgb(14 9 9 / 78%); }
        .breadcrumb-content { position: relative; z-index: 2; text-align: center; }

        /* About Section */
        .about-section { padding: 6rem 0; background-color: var(--surface); }
        .about-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: start; }
        @media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } .about-sticky { position: sticky; top: 120px; } }
        .about-image-wrapper { position: relative; }
        .about-img { width: 100%; border-radius: 24px; border: 1px solid var(--border); box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
        .about-badge { position: absolute; bottom: -20px; right: -20px; background-color: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 1.5rem; box-shadow: 0 10px 30px rgba(0,0,0,0.1); text-align: center; }

        /* Tabs */
        .tabs-nav { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
        .tab-btn { padding: 10px 22px; font-weight: 600; font-size: 0.9rem; color: var(--muted); border-radius: 50px; background: transparent; border: 1px solid #3F51B5; cursor: pointer; transition: all 0.3s; }
        .tab-btn:hover { color: var(--accent); background: rgba(0,212,170,0.05); }
        .tab-btn.active { color: #fff; background: #082f71; }
        .tab-content { display: none; animation: fadeIn 0.5s ease forwards; }
        .tab-content.active { display: block; }

        /* Features */
        .features-section { padding: 6rem 0; background-color: var(--surface); }
        .features-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 3rem; }
        @media (min-width: 768px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (min-width: 1200px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }
        
        .feature-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 32px; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
        .feature-card:hover { transform: translateY(-8px); box-shadow: 0 25px 50px rgba(0, 212, 170, 0.1); border-color: var(--accent); }
        body.dark-mode .feature-card:hover { box-shadow: 0 25px 50px rgba(0, 212, 170, 0.15); }
        .feature-icon { width: 60px; height: 60px; border-radius: 16px; background: rgba(0, 212, 170, 0.1); border: 1px solid rgba(0, 212, 170, 0.2); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--accent); }
        .feature-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
        .feature-card p { color: var(--muted); line-height: 1.6; }

        /* Stats */
                /* Section */
            .counters-section {
                padding: 50px 0;
                background-image:linear-gradient(45deg, #26095b, #4d0702);
            }

            /* Grid */
            .counters-grid {
                display: flex;
                justify-content: space-between;
                flex-wrap: wrap;
                gap: 30px;
            }

            /* Counter Card */
            .counter-item {
                flex: 1;
                min-width: 220px;
                display: flex;
                align-items: center;
                gap: 15px;
                padding: 25px;
                border-radius: 14px;
                background: #ffffff;
                box-shadow: 0 5px 20px rgba(0,0,0,0.05);
                transition: all 0.3s ease;
            }

            .counter-item:hover {
                transform: translateY(-6px);
                box-shadow: 0 12px 30px rgba(0,0,0,0.1);
            }

            /* Icon */
            .counter-icon {
                width: 60px;
                height: 60px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 24px;
            }

            /* Icon Colors */
            .bg-indigo { background: #eef2ff; color: #4f46e5; }
            .bg-cyan   { background: #e0f7fa; color: #00acc1; }
            .bg-green  { background: #e8f5e9; color: #43a047; }
            .bg-orange { background: #fff3e0; color: #fb8c00; }

            /* Text */
            .counter-value {
                font-size: 28px;
                font-weight: 700;
                color: #111;
            }

            .counter-label {
                font-size: 14px;
                color: #666;
                margin-top: 4px;
            }
        /* FAQ */
        .faq-section { padding: 6rem 0; }
        .faq-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
        @media (min-width: 1024px) { .faq-grid { grid-template-columns: 1fr 1fr; } }
        .faq-item { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; margin-bottom: 1rem; background-color: var(--card); }
        .faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 1.5rem; background: none; border: none; color: var(--text); font-weight: 600; font-size: 1rem; text-align: left; cursor: pointer; }
        .faq-icon { transition: transform 0.3s; color: var(--accent); }
        .faq-item.active .faq-icon { transform: rotate(180deg); }
        .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; background: var(--surface); }
        .faq-answer-inner { padding: 0 1.5rem 1.5rem; color: var(--muted); line-height: 1.7; }
        .faq-item.active .faq-answer { max-height: 500px; }

        
        /* Brands */
        .brands-section { padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
        .brands-label { text-align: center; font-size: 18px;     font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 30px; }
        .brands-track-wrapper { overflow: hidden; }
        .brands-track { display: flex; gap: 50px; animation: marquee 25s linear infinite; width: max-content; }
        /* Pause on hover */
        .brands-track:hover { animation-play-state: paused; }
        
        .brand-item { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color:#3F51B5; opacity: 0.8; white-space: nowrap; transition: all 0.3s ease; cursor: default; }
        /* Highlight on hover */
        .brand-item:hover { opacity: 1; color: var(--accent); transform: scale(1.1); }
        
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        /* --- FOOTER (Source: index.php) --- */
        .footer { background: #0f172a; color: #cbd5e1; padding: 80px 0 25px; }

        /* Footer Grid: 5 columns on desktop */
        .footer-grid { display: grid; grid-template-columns: 320px 1fr 1fr 1fr 320px; gap: 50px; }
        
        /* Responsive Grid */
        @media (max-width: 1200px) {
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .footer-grid { grid-template-columns: 1fr; }
        }

        /* Logo */
        .footer-logo { color: #fff; font-size: 26px; font-weight: 700; display:block; margin-bottom: 15px; }

        /* Titles */
        .footer-title { font-size: 18px; font-weight: 600; margin-bottom: 20px; color: #fff; }

        /* Description */
        .footer-desc { line-height: 1.8; margin: 18px 0 25px; color: #cbd5e1; }

        /* Links */
        .footer-links { list-style: none; padding: 0; }
        .footer-links li { margin-bottom: 14px; }
        .footer-link { text-decoration: none; color: #cbd5e1; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 8px; font-size: 0.95rem; }
        .footer-link:hover { color: #6366f1; padding-left: 8px; }
        .footer-link svg { width: 14px; height: 14px; opacity: 0.5; transition: opacity 0.3s; }
        .footer-link:hover svg { opacity: 1; }

        /* Contact */
        .footer-contact-list { list-style: none; padding: 0; }
        .footer-contact-list li { display: flex; gap: 12px; margin-bottom: 16px; }
        .contact-icon { width: 36px; height: 36px; background: #1e293b; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
        .contact-icon svg { color: #6366f1; width: 16px; height: 16px; }
        .contact-link { color: #cbd5e1; text-decoration: none; transition: 0.3s; }
        .contact-link:hover { color: #6366f1; }

        /* Social Icons */
        .social-icons { display: flex; gap: 12px; }
        .footer .social-icon { background: #1e293b; border: none; color: #cbd5e1; }
        .footer .social-icon:hover { background: #6366f1; color: #fff; transform: translateY(-5px); }

        /* Newsletter */
        .newsletter-form { display: flex; margin-top: 15px; border-radius: 8px; overflow: hidden; border: 1px solid #1e293b; transition: 0.3s; }
        .newsletter-form:hover { border-color: #6366f1; box-shadow: 0 0 12px rgba(99,102,241,0.25); }
        .newsletter-form input { flex: 1; padding: 12px 15px; border: none; background: #1e293b; color: #fff; outline: none; font-family: var(--font-body); }
        .newsletter-form input::placeholder { color: #94a3b8; }
        .newsletter-form button { padding: 12px 30px; border: none; background: #6366f1; color: #fff; cursor: pointer; transition: 0.3s; }
        .newsletter-form button:hover { background: #4f46e5; }

        /* Bottom */
        .footer-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 60px; padding-top: 20px; border-top: 1px solid #1e293b; font-size: 14px; color: #94a3b8; flex-wrap: wrap; gap: 15px; }
        .footer-bottom-right { display: flex; gap: 20px; }
        .footer-bottom-right a { color: #94a3b8; text-decoration: none; transition: 0.3s; }
        .footer-bottom-right a:hover { color: #6366f1; }

        /* Login Modal Styles */
        .modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(5px); display: flex; align-items: center; justify-content: center; z-index: 2000; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
        .modal-overlay.active { opacity: 1; visibility: visible; }
        .modal-container { background: var(--card); width: 100%; max-width: 420px; border-radius: 24px; padding: 40px; position: relative; transform: translateY(20px) scale(0.95); transition: transform 0.3s ease; border: 1px solid var(--border); box-shadow: 0 20px 50px rgba(0,0,0,0.2); margin: 20px; }
        .modal-overlay.active .modal-container { transform: translateY(0) scale(1); }
        .modal-close { position: absolute; top: 20px; right: 20px; background: transparent; border: none; color: var(--muted); cursor: pointer; transition: color 0.3s; font-size: 24px; }
        .modal-close:hover { color: var(--text); }
        .modal-header { text-align: center; margin-bottom: 30px; }
        .modal-header h3 { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 8px; }
        .modal-header p { color: var(--muted); }
        .form-group { margin-bottom: 20px; }
        .form-group label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.9rem; }
        .form-input { width: 100%; padding: 14px 16px; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; color: var(--text); font-family: var(--font-body); font-size: 1rem; transition: border-color 0.3s; outline: none; }
        .form-input:focus { border-color: var(--accent); }
        .form-options { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; font-size: 0.9rem; }
        .form-options a { color: var(--accent); text-decoration: none; }
        .social-login { display: flex; gap: 12px; margin-top: 24px; }
        .social-btn { flex: 1; padding: 12px; border: 1px solid var(--border); border-radius: 12px; background: var(--surface); cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: all 0.3s; color: var(--text); font-weight: 500; }
        .social-btn:hover { background: var(--card); border-color: var(--accent); }

        /* Floating Buttons */
        .scroll-top, .whatsapp-btn { position: fixed; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 50; box-shadow: 0 4px 15px rgba(0,0,0,0.15); transition: all 0.3s; }
        .scroll-top { bottom: 24px; right: 24px; width: 50px; height: 50px; background-image: linear-gradient(45deg, #00a5ff, #0017da); color: #ffffff; border: none; cursor: pointer; opacity: 0; visibility: hidden; }
        .scroll-top.show { opacity: 1; visibility: visible; }
        .whatsapp-btn { bottom: 90px; right: 24px; width: 54px; height: 54px; background: #25D366; }
        .scroll-top:hover, .whatsapp-btn:hover { transform: scale(1.1); }

              /* Section Styling */
        .section { padding: 60px 0; }
        @media (min-width: 768px) { .section { padding: 100px 0; } }
        .section-surface { background-color: var(--surface); }
        .section-header { text-align: center; margin-bottom: 40px; position: relative; }
        @media (min-width: 768px) { .section-header { margin-bottom: 60px; } }
        .section-label { font-weight: 600; text-transform: uppercase; letter-spacing: 2px; font-size: 0.85rem; color: var(--accent); margin-bottom: 12px; }
        .section-title { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.75rem); font-weight: 700; margin-bottom: 16px; }
        .section-desc { font-size: 1rem; color: var(--muted); max-width: 600px; margin: 0 auto; }
        @media (min-width: 768px) { .section-desc { font-size: 1.1rem; } }


           /* CTA Section */
        .cta-section { position: relative; overflow: hidden; }
        .cta-bg { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,212,170,0.05) 0%, rgba(255,107,53,0.03) 100%); }
        body.dark-mode .cta-bg { background: linear-gradient(135deg, rgba(0,212,170,0.08) 0%, rgba(255,107,53,0.05) 100%); }
        .cta-grid { display: grid; grid-template-columns: 1fr; gap: 50px; align-items: center; position: relative; z-index: 2; }
        @media (min-width: 1024px) { .cta-grid { grid-template-columns: 1fr 1fr; } }
        .cta-content { text-align: center; }
        @media (min-width: 1024px) { .cta-content { text-align: left; } }
        .cta-content h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.75rem); font-weight: 700; margin-bottom: 20px; }
        .cta-content p { color: var(--muted); font-size: 1.1rem; margin-bottom: 28px; }
        .cta-buttons { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 20px; justify-content: center; }
        @media (min-width: 1024px) { .cta-buttons { justify-content: flex-start; } }
        .cta-img { width: 100%; border-radius: 24px; border: 1px solid var(--border); box-shadow: 0 30px 60px rgba(0,0,0,0.1); transition: transform 0.5s ease; }
        .cta-img:hover { transform: scale(1.02); }
        body.dark-mode .cta-img { box-shadow: 0 30px 60px rgba(0,0,0,0.2); }



        /* Animations */
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
        .reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); }
        .reveal.visible { opacity: 1; transform: translateY(0); }
    /* --- THEME VARIABLES --- */
        :root {
            --bg: #f8f9fc;
            --surface: #ffffff;
            --card: #ffffff;
            --border: #e2e8f0;
            --text: #0f172a;
            --muted: #64748b;
             --accent: #af0534;
    --accent-dark: #070a66;
    --warm: #0bf1f5;
            --font-display: 'Outfit', sans-serif;
            --font-body: 'DM Sans', sans-serif;
        }
        /* 1. Define the variable default */
:root {
    --scrollbar-width: 0px;
}

/* 2. Stop scrolling and pad the body */
body.modal-open {
    overflow: hidden !important;
    padding-right: var(--scrollbar-width) !important;
}

/* 3. FIX THE SHAKE: Pad ALL fixed elements so they don't jump */
/* This targets your Header, WhatsApp button, and Scroll Top button */
#mainHeader,
.whatsapp-btn,
.scroll-top {
    padding-right: var(--scrollbar-width) !important;
    /* Optional: Prevent transition animations on padding which makes it look like a 'shake' */
    transition: padding 0s !important; 
}
        body.dark-mode {
            --bg: #0a0a0f;
            --surface: #12121a;
            --card: #1a1a25;
            --border: #2a2a3a;
            --text: #ffffff;
            --muted: #6b7280;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: var(--font-body);
            background-color: var(--bg);
            color: var(--text);
            transition: background-color 0.4s ease, color 0.4s ease;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Scrollbar */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: transparent; }
        ::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
        ::-webkit-scrollbar-thumb:hover { background: var(--accent); }

        .container { max-width: 1350px; margin: 0 auto; padding: 0 24px; }
        .gradient-text { color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }

        /* Buttons */
        .btn-primary {
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
            color: #ffffff; padding: 14px 32px; border-radius: 50px; font-weight: 600;
            font-size: 0.95rem; border: none; cursor: pointer; transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
            position: relative; overflow: hidden; z-index: 1;
        }
        .btn-primary::after {
            content: ''; position: absolute; top: 0; left: 0; width: 0%; height: 100%;
            background: rgba(255,255,255,0.1); transition: width 0.3s ease; z-index: -1;
        }
        .btn-primary:hover::after { width: 100%; }
        .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(53, 144, 246, 0.65); }
        
        .btn-secondary {
            background: transparent; color: var(--text); padding: 14px 32px; border-radius: 50px;
            font-weight: 600; border: 2px solid #034193; cursor: pointer; transition: all 0.3s ease;
            display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
        }
        .btn-secondary:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

        /* --- TOPBAR --- */
        .topbar { background-image: linear-gradient(45deg, #045a88, #4e0404); border-bottom: 1px solid var(--border); padding: 10px 0; display: none; transition: background-color 0.4s ease; }
        @media (min-width: 768px) { .topbar { display: block; } }
        .topbar-content { display: flex; justify-content: space-between; align-items: center; font-size: 0.875rem; }
        .topbar-links { display: flex; gap: 24px; }
        .topbar-link { display: flex; align-items: center; gap: 8px; color: #ffffff; text-decoration: none; transition: color 0.3s; font-weight: 700;}
        .topbar-link:hover { color: var(--accent); }
        .social-icons { display: flex; gap: 10px; }
        .social-icon { width: 38px; height: 38px; border-radius: 50%; background: #fff; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: #0c4f9f; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); text-decoration: none; }
        .social-icon:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-4px) rotate(5deg); }

        /* --- HEADER --- */
        .header { position: sticky; top: 0; z-index: 1000; padding: 16px 0; transition: all 0.3s ease; background-color: var(--bg); }
        .header.scrolled { padding: 20px 0; background-color: var(--surface); box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05); }
        body.dark-mode .header.scrolled { box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3); }
        .header-content { display: flex; align-items: center; justify-content: space-between; }
        .logo { display: flex; align-items: center; gap: 12px; text-decoration: none; transition: transform 0.3s; }
        .logo:hover { transform: scale(1.02); }
        .logo-img { width: 200px; height: auto; }
        
        .desktop-nav { display: none; }
        @media (min-width: 1024px) { .desktop-nav { display: flex; align-items: center; gap: 4px; } }
        .nav-item { position: relative; }
        .nav-link { padding: 5px 18px; font-size: 0.95rem; font-weight: 600; color: #2a2a3a; text-decoration: none; border-radius: 8px; transition: all 0.3s; display: flex; align-items: center; gap: 4px; position: relative; }
        .nav-link::before {
            content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 2px;
            background: var(--accent); transition: all 0.3s ease; transform: translateX(-50%);
        }
                .nav-link:hover::before, .nav-link.active::before { width: 60%; }

                         .nav-link:hover, .nav-link.active { color: #dc0303; background:rgba(81, 151, 224, 0.05); }

        body.dark-mode .nav-link { color: var(--text); }

        .dropdown-menu { position: absolute; top: 100%; left: 0; margin-top: 8px; min-width: 220px; background-color: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 10px; box-shadow: 0 20px 50px rgba(0,0,0,0.1); opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease; z-index: 100; }
        body.dark-mode .dropdown-menu { box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
        .nav-item:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
        .dropdown-link { display: block; padding: 12px 16px; font-size: 0.9rem; color: var(--muted); text-decoration: none; border-radius: 10px; transition: all 0.2s; }
        .dropdown-link:hover { color: #ffffff; background: #0e4e8f; padding-left: 20px; }

        .header-actions { display: none; gap: 16px; align-items: center; }
        @media (min-width: 1024px) { .header-actions { display: flex; } }
        .theme-toggle { width: 44px; height: 44px; border-radius: 50%; background: transparent; border: 1px solid var(--border); color: var(--text); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s; display: none; }
        .theme-toggle:hover { border-color: var(--accent); color: var(--accent); transform: rotate(15deg); }

        /* Mobile Menu */
        .mobile-toggle { display: flex; gap: 12px; align-items: center; }
        @media (min-width: 1024px) { .mobile-toggle { display: none; } }
        .menu-btn { background: none; border: none; color: var(--text); cursor: pointer; padding: 4px; transition: transform 0.3s; }
        .menu-btn:hover { transform: scale(1.1); }
        .mobile-menu { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0, 1, 0, 1); background-color: var(--surface); }
        .mobile-menu.open { max-height: 700px; margin-top: 16px; border-radius: 16px; border: 1px solid var(--border); transition: max-height 0.5s ease-in-out; }
        .mobile-nav { padding: 16px; display: flex; flex-direction: column; gap: 4px; }
        .mobile-link { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; color: var(--muted); text-decoration: none; border-radius: 10px; transition: all 0.2s; font-weight: 500; }
        .mobile-link:hover, .mobile-link.active { background: var(--card); color: var(--accent); transform: translateX(5px); }
        .mobile-dropdown { display: none; flex-direction: column; gap: 2px; padding-left: 16px; margin-bottom: 4px; }
        .mobile-dropdown.open { display: flex; animation: fadeIn 0.3s ease; }
        .mobile-dropdown a { font-size: 0.9rem; color: var(--muted); padding: 10px 16px; text-decoration: none; border-radius: 8px; }
        .mobile-dropdown a:hover { color: var(--accent); background: var(--card); }

        /* --- BREADCRUMB --- */
        .breadcrumb-section { position: relative; padding: 4rem 0; border-bottom: 1px solid var(--border); background-image: url('../images/blog.avif'); background-size: cover; background-position: center; }
        .breadcrumb-overlay { position: absolute; inset: 0; background: rgb(10 10 15 / 75%); z-index: 1; transition: background 0.4s; }
        .breadcrumb-content { position: relative; z-index: 2; text-align: center; animation: fadeIn 1s ease; }

        /* --- BLOG LAYOUT & ANIMATIONS --- */
        .blog-section { padding: 5rem 0; background-color: var(--bg); }
        .blog-layout { display: grid; grid-template-columns: 1fr; gap: 3rem; }
        @media (min-width: 992px) { .blog-layout { grid-template-columns: 1fr 380px; } }

        /* Blog Grid */
        .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
        @media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
        
        /* --- ENHANCED BLOG CARD --- */
        .blog-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 16px;
            overflow: hidden;
            /* Premium easing function */
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            display: flex;
            flex-direction: column;
            height: 100%;
            position: relative;
            z-index: 1;
        }
        
        /* Image Zoom Effect */
        .blog-thumb-wrapper {
            overflow: hidden; /* Key for containing the zoom */
            position: relative;
        }
        .blog-thumb { 
            width: 100%; 
            height: 220px; 
            object-fit: cover; 
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
        }
        
        /* Card Hover State */
        .blog-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            border-color: var(--accent);
            z-index: 2;
        }
        .blog-card:hover .blog-thumb {
            transform: scale(1.08); /* Zoom in effect */
        }
        body.dark-mode .blog-card:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.4); }

        .blog-content { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; z-index: 2; background: var(--card); }
        
        .blog-meta { display: flex; align-items: center; gap: 12px; font-size: 0.8rem; color: var(--muted); margin-bottom: 12px; }
        .blog-tag { 
            background: rgba(81, 151, 224, 0.1); color: var(--accent); padding: 4px 10px; 
            border-radius: 6px; font-weight: 600; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.5px;
            transition: background 0.3s;
        }
        .blog-card:hover .blog-tag { background: var(--accent); color: #fff; }
        
        .blog-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; line-height: 1.4; transition: color 0.3s; }
        .blog-title a { text-decoration: none; color: var(--text); transition: color 0.3s; }
        .blog-card:hover .blog-title a { color: var(--accent); }
        
        .blog-excerpt { font-size: 0.95rem; color: var(--muted); margin-bottom: 1.5rem; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
        
        .blog-footer { border-top: 1px solid var(--border); padding-top: 1rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; }
        .blog-author { display: flex; align-items: center; gap: 8px; font-weight: 600; color: var(--text); }
        .blog-read-more { color: var(--accent); font-weight: 600; text-decoration: none; display: flex; align-items: center; gap: 5px; transition: all 0.3s; }
        .blog-read-more i { transition: transform 0.3s ease; }
        .blog-read-more:hover { gap: 10px; }
        .blog-read-more:hover i { transform: translateX(4px); }

        /* --- SIDEBAR & ANIMATIONS --- */
        .sidebar-widget { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 1.5rem; margin-bottom: 2rem; transition: transform 0.3s ease; }
        .sidebar-widget:hover { border-color: var(--border); } /* Subtle hover */
        .widget-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 1.25rem; padding-bottom: 10px; border-bottom: 2px solid var(--border); display: inline-block; }
        
        /* Search */
        .search-box { position: relative; }
        .search-input { width: 100%; padding: 12px 16px 12px 40px; border: 1px solid var(--border); border-radius: 10px; background: var(--surface); color: var(--text); outline: none; transition: all 0.3s; }
        .search-input:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(81, 151, 224, 0.1); }
        .search-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--muted); transition: color 0.3s; }
        .search-box:focus-within .search-icon { color: var(--accent); }

        /* Categories Hover Effect */
        .category-list { list-style: none; padding: 0; margin: 0; }
        .category-item { margin-bottom: 0.5rem; }
        .category-link { display: flex; justify-content: space-between; padding: 10px 12px; border-radius: 8px; text-decoration: none; color: var(--muted); transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
        .category-link:hover { color: var(--accent); background: rgba(81, 151, 224, 0.08); transform: translateX(5px); }
        .category-count { background: var(--surface); padding: 2px 8px; border-radius: 10px; font-size: 0.75rem; border: 1px solid var(--border); transition: all 0.3s; }
        .category-link:hover .category-count { background: var(--accent); color: #fff; border-color: var(--accent); }

        /* Recent Posts Image Hover */
        .recent-post { display: flex; gap: 12px; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--border); transition: transform 0.3s; }
        .recent-post:hover { transform: translateX(5px); }
        .recent-post:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
        .recent-thumb-wrapper { overflow: hidden; border-radius: 8px; width: 70px; height: 70px; flex-shrink: 0; }
        .recent-thumb { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
        .recent-post:hover .recent-thumb { transform: scale(1.1); }
        
        .recent-info h5 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
        .recent-info h5 a { text-decoration: none; color: var(--text); transition: color 0.2s; }
        .recent-info h5 a:hover { color: var(--accent); }
        .recent-date { font-size: 0.8rem; color: var(--muted); }

        /* Pagination */
        .pagination { display: flex; justify-content: center; gap: 8px; margin-top: 3rem; }
        .page-link { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 8px; border: 1px solid var(--border); background: var(--card); color: var(--text); text-decoration: none; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
        .page-link:hover, .page-link.active { background: var(--accent); color: #fff; border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 5px 15px rgba(81, 151, 224, 0.3); }
        .page-link:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

        /* --- FOOTER --- */
        .footer { background: #0f172a; color: #cbd5e1; padding: 80px 0 25px; }
        .footer-grid { display: grid; grid-template-columns: 320px 1fr 1fr 1fr 320px; gap: 50px; }
        @media (max-width: 1200px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; } }
        .footer-logo { color: #fff; font-size: 26px; font-weight: 700; display:block; margin-bottom: 15px; }
        .footer-title { font-size: 18px; font-weight: 600; margin-bottom: 20px; color: #fff; }
        .footer-desc { line-height: 1.8; margin: 18px 0 25px; color: #cbd5e1; }
        .footer-links { list-style: none; padding: 0; }
        .footer-links li { margin-bottom: 14px; }
        .footer-link { text-decoration: none; color: #cbd5e1; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 8px; font-size: 0.95rem; }
        .footer-link:hover { color: #6366f1; padding-left: 8px; }
        .footer-link svg { width: 14px; height: 14px; opacity: 0.5; transition: opacity 0.3s; }
        .footer-link:hover svg { opacity: 1; }
        .footer-contact-list { list-style: none; padding: 0; }
        .footer-contact-list li { display: flex; gap: 12px; margin-bottom: 16px; }
        .contact-icon { width: 36px; height: 36px; background: #1e293b; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
        .contact-icon svg { color: #6366f1; width: 16px; height: 16px; }
        .contact-link { color: #cbd5e1; text-decoration: none; transition: 0.3s; }
        .contact-link:hover { color: #6366f1; }
        .footer .social-icon { background: #1e293b; border: none; color: #cbd5e1; }
        .footer .social-icon:hover { background: #6366f1; color: #fff; transform: translateY(-5px); }
        .newsletter-form { display: flex; margin-top: 15px; border-radius: 8px; overflow: hidden; border: 1px solid #1e293b; transition: 0.3s; }
        .newsletter-form:hover { border-color: #6366f1; box-shadow: 0 0 12px rgba(99,102,241,0.25); }
        .newsletter-form input { flex: 1; padding: 12px 15px; border: none; background: #1e293b; color: #fff; outline: none; font-family: var(--font-body); }
        .newsletter-form input::placeholder { color: #94a3b8; }
        .newsletter-form button { padding: 12px 30px; border: none; background: #6366f1; color: #fff; cursor: pointer; transition: 0.3s; }
        .newsletter-form button:hover { background: #4f46e5; }
        .footer-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 60px; padding-top: 20px; border-top: 1px solid #1e293b; font-size: 14px; color: #94a3b8; flex-wrap: wrap; gap: 15px; }
        .footer-bottom-right { display: flex; gap: 20px; }
        .footer-bottom-right a { color: #94a3b8; text-decoration: none; transition: 0.3s; }
        .footer-bottom-right a:hover { color: #6366f1; }

        /* --- MODAL --- */
        .modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(5px); display: flex; align-items: center; justify-content: center; z-index: 2000; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
        .modal-overlay.active { opacity: 1; visibility: visible; }
        .modal-container { background: var(--card); width: 100%; max-width: 420px; border-radius: 24px; padding: 40px; position: relative; transform: translateY(20px) scale(0.95); transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); border: 1px solid var(--border); box-shadow: 0 20px 50px rgba(0,0,0,0.2); margin: 20px; }
        .modal-overlay.active .modal-container { transform: translateY(0) scale(1); }
        .modal-close { position: absolute; top: 20px; right: 20px; background: transparent; border: none; color: var(--muted); cursor: pointer; transition: color 0.3s; font-size: 24px; }
        .modal-close:hover { color: var(--text); transform: rotate(90deg); }
        .modal-header { text-align: center; margin-bottom: 30px; }
        .modal-header h3 { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 8px; }
        .modal-header p { color: var(--muted); }
        .form-group { margin-bottom: 20px; }
        .form-group label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.9rem; }
        .form-input { width: 100%; padding: 14px 16px; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; color: var(--text); font-family: var(--font-body); font-size: 1rem; transition: border-color 0.3s; outline: none; }
        .form-input:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(81, 151, 224, 0.1); }
        .form-options { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; font-size: 0.9rem; }
        .form-options a { color: var(--accent); text-decoration: none; }
        .social-login { display: flex; gap: 12px; margin-top: 24px; }
        .social-btn { flex: 1; padding: 12px; border: 1px solid var(--border); border-radius: 12px; background: var(--surface); cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: all 0.3s; color: var(--text); font-weight: 500; }
        .social-btn:hover { background: var(--card); border-color: var(--accent); transform: translateY(-2px); }

        /* Floating Buttons */
        .scroll-top, .whatsapp-btn { position: fixed; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 50; box-shadow: 0 4px 15px rgba(0,0,0,0.15); transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
        .scroll-top { bottom: 24px; right: 24px; width: 50px; height: 50px; background-image: linear-gradient(45deg, #00a5ff, #0017da); color: #ffffff; border: none; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(20px); }
        .scroll-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
        .whatsapp-btn { bottom: 90px; right: 24px; width: 54px; height: 54px; background: #25D366; }
        .scroll-top:hover, .whatsapp-btn:hover { transform: scale(1.1) rotate(5deg); }

        /* Toast Notification */
        #toast {
            visibility: hidden;
            min-width: 250px;
            background-color: var(--text);
            color: var(--bg);
            text-align: center;
            border-radius: 8px;
            padding: 16px;
            position: fixed;
            z-index: 3000;
            left: 50%;
            bottom: 30px;
            transform: translateX(-50%) translateY(20px);
            font-size: 0.9rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            opacity: 0;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        #toast.show { visibility: visible; opacity: 1; transform: translateX(-50%) translateY(0); }

        /* Animations */
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
        /* Enhanced Reveal Class */
        .reveal { 
            opacity: 0; 
            transform: translateY(40px); 
            transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); 
        }
        .reveal.visible { opacity: 1; transform: translateY(0); }
     /* THEME: Default Light Mode */
        :root {
            --bg: #f8f9fc;
            --surface: #ffffff;
            --card: #ffffff;
            --border: #e2e8f0;
            --text: #0f172a;
            --muted: #64748b;
               --accent: #af0534;
    --accent-dark: #070a66;
    --warm: #0bf1f5;
            --font-display: 'Outfit', sans-serif;
            --font-body: 'DM Sans', sans-serif;
        }
        /* 1. Define the variable default */
:root {
    --scrollbar-width: 0px;
}

/* 2. Stop scrolling and pad the body */
body.modal-open {
    overflow: hidden !important;
    padding-right: var(--scrollbar-width) !important;
}

/* 3. FIX THE SHAKE: Pad ALL fixed elements so they don't jump */
/* This targets your Header, WhatsApp button, and Scroll Top button */
#mainHeader,
.whatsapp-btn,
.scroll-top {
    padding-right: var(--scrollbar-width) !important;
    /* Optional: Prevent transition animations on padding which makes it look like a 'shake' */
    transition: padding 0s !important; 
}
        /* Dark Mode Class */
        body.dark-mode {
            --bg: #0a0a0f;
            --surface: #12121a;
            --card: #1a1a25;
            --border: #2a2a3a;
            --text: #ffffff;
            --muted: #6b7280;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: var(--font-body);
            background-color: var(--bg);
            color: var(--text);
            transition: background-color 0.4s ease, color 0.4s ease;
            line-height: 1.6;
            overflow-x: hidden;
        }

        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: transparent; }
        ::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
        ::-webkit-scrollbar-thumb:hover { background: var(--accent); }

        .container { max-width: 1350px; margin: 0 auto; padding: 0 24px; }
        .gradient-text {
           color:#fff;
        }

        /* Buttons */
        .btn-primary {
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
            color: #ffffff; padding: 14px 32px; border-radius: 50px; font-weight: 600;
            font-size: 0.95rem; border: none; cursor: pointer; transition: all 0.3s ease;
            display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
        }
        .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(53, 144, 246, 0.65); }
        .btn-secondary {
            background: transparent; color: var(--text); padding: 14px 32px; border-radius: 50px;
            font-weight: 600; border: 2px solid #034193; cursor: pointer; transition: all 0.3s ease;
            display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
        }
        .btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

        /* --- TOPBAR (Source: about.php) --- */
        .topbar { background-image: linear-gradient(45deg, #045a88, #4e0404); border-bottom: 1px solid var(--border); padding: 10px 0; display: none; transition: background-color 0.4s ease; }
        @media (min-width: 768px) { .topbar { display: block; } }
        .topbar-content { display: flex; justify-content: space-between; align-items: center; font-size: 0.875rem; }
        .topbar-links { display: flex; gap: 24px; }
        .topbar-link { display: flex; align-items: center; gap: 8px; color: #ffffff; text-decoration: none; transition: color 0.3s; font-weight: 700;}
        .topbar-link:hover { color: var(--accent); }
        .social-icons { display: flex; gap: 10px; }
        .social-icon { width: 38px; height: 38px; border-radius: 50%; background: #fff; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: #0c4f9f; transition: all 0.3s; text-decoration: none; }
        .social-icon:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-2px); }

        /* --- HEADER (Source: about.php) --- */
        .header { position: sticky; top: 0; z-index: 1000; padding: 16px 0; transition: all 0.3s ease; background-color: var(--bg); }
        .header.scrolled { padding: 20px 0; background-color: var(--surface); box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05); }
        body.dark-mode .header.scrolled { box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3); }
        .header-content { display: flex; align-items: center; justify-content: space-between; }
        .logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
        .logo-img { width: 200px; height: auto; }
        
        /* Desktop Nav */
        .desktop-nav { display: none; }
        @media (min-width: 1024px) { .desktop-nav { display: flex; align-items: center; gap: 4px; } }
        .nav-item { position: relative; }
                .nav-link:hover::before, .nav-link.active::before { width: 60%; }

        .nav-link { padding: 5px 18px; font-size: 0.95rem; font-weight: 600; color: #2a2a3a; text-decoration: none; border-radius: 8px; transition: all 0.3s; display: flex; align-items: center; gap: 4px; }
                         .nav-link:hover, .nav-link.active { color: #dc0303; background:rgba(81, 151, 224, 0.05); }

        body.dark-mode .nav-link { color: var(--text); }

        /* Dropdown */
        .dropdown-menu { position: absolute; top: 100%; left: 0; margin-top: 8px; min-width: 220px; background-color: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 10px; box-shadow: 0 20px 50px rgba(0,0,0,0.1); opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease; z-index: 100; }
        body.dark-mode .dropdown-menu { box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
        .nav-item:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
        .dropdown-link { display: block; padding: 12px 16px; font-size: 0.9rem; color: var(--muted); text-decoration: none; border-radius: 10px; transition: all 0.2s; }
        .dropdown-link:hover { color: #ffffff; background: #0e4e8f; padding-left: 20px; }

        .header-actions { display: none; gap: 16px; align-items: center; }
        @media (min-width: 1024px) { .header-actions { display: flex; } }
        .theme-toggle { width: 44px; height: 44px; border-radius: 50%; background: transparent; border: 1px solid var(--border); color: var(--text); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s; display: none; }
        .theme-toggle:hover { border-color: var(--accent); color: var(--accent); }

        /* Mobile Menu */
        .mobile-toggle { display: flex; gap: 12px; align-items: center; }
        @media (min-width: 1024px) { .mobile-toggle { display: none; } }
        .menu-btn { background: none; border: none; color: var(--text); cursor: pointer; padding: 4px; }
        .mobile-menu { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; background-color: var(--surface); }
        .mobile-menu.open { max-height: 700px; margin-top: 16px; border-radius: 16px; border: 1px solid var(--border); }
        .mobile-nav { padding: 16px; display: flex; flex-direction: column; gap: 4px; }
        .mobile-link { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; color: var(--muted); text-decoration: none; border-radius: 10px; transition: all 0.2s; font-weight: 500; }
        .mobile-link:hover, .mobile-link.active { background: var(--card); color: var(--accent); }
        .mobile-dropdown { display: none; flex-direction: column; gap: 2px; padding-left: 16px; margin-bottom: 4px; }
        .mobile-dropdown.open { display: flex; }
        .mobile-dropdown a { font-size: 0.9rem; color: var(--muted); padding: 10px 16px; text-decoration: none; border-radius: 8px; }
        .mobile-dropdown a:hover { color: var(--accent); background: var(--card); }

        /* Breadcrumb */
        .breadcrumb-section { position: relative; padding: 4rem 0; border-bottom: 1px solid var(--border); background-image: url('../images/contact.jpg'); background-size: cover; background-position: center; }
        .breadcrumb-overlay { position: absolute; inset: 0; background: rgba(10, 10, 15, 0.92); z-index: 1; transition: background 0.4s; }
        body.dark-mode .breadcrumb-overlay { background: rgba(10, 10, 15, 0.98); }
        body:not(.dark-mode) .breadcrumb-overlay { background: rgb(10 10 15 / 75%); }
        .breadcrumb-content { position: relative; z-index: 2; text-align: center; }

        /* --- CONTACT LAYOUT --- */
        .contact-section { padding: 6rem 0; background-color: var(--surface); }
        .contact-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; }
        @media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1.2fr; } }

        /* Contact Info */
        .contact-info-box { background: var(--card); border: 1px solid var(--border); border-radius: 24px; padding: 2.5rem; height: fit-content; }
        .info-item { display: flex; gap: 1.5rem; margin-bottom: 2rem; }
        .info-icon { width: 50px; height: 50px; border-radius: 12px; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
        .info-content h4 { font-size: 1.1rem; margin-bottom: 0.25rem; }
        .info-content p { color: var(--muted); font-size: 0.95rem; }
        .info-content a { color: var(--muted); text-decoration: none; transition: color 0.3s; }
        .info-content a:hover { color: var(--accent); }

        /* Contact Form */
        .contact-form-wrapper {background-image: linear-gradient(45deg, #f7c7c780, #c1e3fe96); border: 1px solid var(--border); border-radius: 24px; padding: 2.5rem; }
        .form-group { margin-bottom: 1.5rem; }
        .form-group label { display: block; font-weight: 500; margin-bottom: 0.5rem; font-size: 0.9rem; color: var(--text); }
        .form-control { width: 100%; background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 15px 15px; color: var(--text); font-family: var(--font-body); font-size: 0.95rem; transition: all 0.3s; outline: none; }
        .form-control:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(81, 151, 224, 0.1); }
        .form-control::placeholder { color: var(--muted); }
        textarea.form-control { min-height: 120px; resize: vertical; }
        
        /* File Upload */
        .file-upload-area { border: 2px dashed #000; border-radius: 10px; padding: 1.5rem; text-align: center; cursor: pointer; transition: all 0.3s; position: relative; }
        .file-upload-area:hover { border-color: var(--accent); background: rgba(81, 151, 224, 0.02); }
        .file-upload-area input { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; }
        .file-upload-icon { color: var(--muted); margin-bottom: 0.5rem; }

        /* Map */
        .map-section { padding: 0 0 6rem; background-color: var(--surface); }
        .map-container { border-radius: 24px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 20px 40px rgba(0,0,0,0.1); height: 400px; width: 100%; }
        body.dark-mode .map-container { box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
        .map-container iframe { width: 100%; height: 100%; border: none; filter: grayscale(20%) invert(92%) contrast(90%); }
        body:not(.dark-mode) .map-container iframe { filter: none; }

        /* --- FOOTER (Source: about.php) --- */
        .footer { background: #0f172a; color: #cbd5e1; padding: 80px 0 25px; }

        /* Footer Grid: 5 columns on desktop */
        .footer-grid { display: grid; grid-template-columns: 320px 1fr 1fr 1fr 320px; gap: 50px; }
        
        /* Responsive Grid */
        @media (max-width: 1200px) {
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .footer-grid { grid-template-columns: 1fr; }
        }

        /* Logo */
        .footer-logo { color: #fff; font-size: 26px; font-weight: 700; display:block; margin-bottom: 15px; }

        /* Titles */
        .footer-title { font-size: 18px; font-weight: 600; margin-bottom: 20px; color: #fff; }

        /* Description */
        .footer-desc { line-height: 1.8; margin: 18px 0 25px; color: #cbd5e1; }

        /* Links */
        .footer-links { list-style: none; padding: 0; }
        .footer-links li { margin-bottom: 14px; }
        .footer-link { text-decoration: none; color: #cbd5e1; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 8px; font-size: 0.95rem; }
        .footer-link:hover { color: #6366f1; padding-left: 8px; }
        .footer-link svg { width: 14px; height: 14px; opacity: 0.5; transition: opacity 0.3s; }
        .footer-link:hover svg { opacity: 1; }

        /* Contact */
        .footer-contact-list { list-style: none; padding: 0; }
        .footer-contact-list li { display: flex; gap: 12px; margin-bottom: 16px; }
        .contact-icon { width: 36px; height: 36px; background: #1e293b; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
        .contact-icon svg { color: #6366f1; width: 16px; height: 16px; }
        .contact-link { color: #cbd5e1; text-decoration: none; transition: 0.3s; }
        .contact-link:hover { color: #6366f1; }

        /* Social Icons */
        .social-icons { display: flex; gap: 12px; }
        .footer .social-icon { background: #1e293b; border: none; color: #cbd5e1; }
        .footer .social-icon:hover { background: #6366f1; color: #fff; transform: translateY(-5px); }

        /* Newsletter */
        .newsletter-form { display: flex; margin-top: 15px; border-radius: 8px; overflow: hidden; border: 1px solid #1e293b; transition: 0.3s; }
        .newsletter-form:hover { border-color: #6366f1; box-shadow: 0 0 12px rgba(99,102,241,0.25); }
        .newsletter-form input { flex: 1; padding: 12px 15px; border: none; background: #1e293b; color: #fff; outline: none; font-family: var(--font-body); }
        .newsletter-form input::placeholder { color: #94a3b8; }
        .newsletter-form button { padding: 12px 30px; border: none; background: #6366f1; color: #fff; cursor: pointer; transition: 0.3s; }
        .newsletter-form button:hover { background: #4f46e5; }

        /* Bottom */
        .footer-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 60px; padding-top: 20px; border-top: 1px solid #1e293b; font-size: 14px; color: #94a3b8; flex-wrap: wrap; gap: 15px; }
        .footer-bottom-right { display: flex; gap: 20px; }
        .footer-bottom-right a { color: #94a3b8; text-decoration: none; transition: 0.3s; }
        .footer-bottom-right a:hover { color: #6366f1; }

        /* Login Modal Styles */
        .modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(5px); display: flex; align-items: center; justify-content: center; z-index: 2000; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
        .modal-overlay.active { opacity: 1; visibility: visible; }
        .modal-container { background: var(--card); width: 100%; max-width: 420px; border-radius: 24px; padding: 40px; position: relative; transform: translateY(20px) scale(0.95); transition: transform 0.3s ease; border: 1px solid var(--border); box-shadow: 0 20px 50px rgba(0,0,0,0.2); margin: 20px; }
        .modal-overlay.active .modal-container { transform: translateY(0) scale(1); }
        .modal-close { position: absolute; top: 20px; right: 20px; background: transparent; border: none; color: var(--muted); cursor: pointer; transition: color 0.3s; font-size: 24px; }
        .modal-close:hover { color: var(--text); }
        .modal-header { text-align: center; margin-bottom: 30px; }
        .modal-header h3 { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 8px; }
        .modal-header p { color: var(--muted); }
        .form-group { margin-bottom: 20px; }
        .form-group label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.9rem; }
        .form-input { width: 100%; padding: 14px 16px; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; color: var(--text); font-family: var(--font-body); font-size: 1rem; transition: border-color 0.3s; outline: none; }
        .form-input:focus { border-color: var(--accent); }
        .form-options { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; font-size: 0.9rem; }
        .form-options a { color: var(--accent); text-decoration: none; }
        .social-login { display: flex; gap: 12px; margin-top: 24px; }
        .social-btn { flex: 1; padding: 12px; border: 1px solid var(--border); border-radius: 12px; background: var(--surface); cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: all 0.3s; color: var(--text); font-weight: 500; }
        .social-btn:hover { background: var(--card); border-color: var(--accent); }

        /* Floating Buttons */
        .scroll-top, .whatsapp-btn { position: fixed; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 50; box-shadow: 0 4px 15px rgba(0,0,0,0.15); transition: all 0.3s; }
        .scroll-top { bottom: 24px; right: 24px; width: 50px; height: 50px; background-image: linear-gradient(45deg, #00a5ff, #0017da); color: #ffffff; border: none; cursor: pointer; opacity: 0; visibility: hidden; }
        .scroll-top.show { opacity: 1; visibility: visible; }
        .whatsapp-btn { bottom: 90px; right: 24px; width: 54px; height: 54px; background: #25D366; }
        .scroll-top:hover, .whatsapp-btn:hover { transform: scale(1.1); }

        /* Animations */
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
        .reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); }
        .reveal.visible { opacity: 1; transform: translateY(0); }
        .contact-heading {
                margin-bottom: 40px;
            }

            .contact-title {
                font-size: 2rem;
                font-weight: 700;
                line-height: 1.4;
                margin: 10px 0;
            }

            .contact-title span {
                color: var(--primary);
            }

            .contact-subtitle {
                color: var(--muted);
                max-width: 500px;
                font-size: 15px;
            }
