        /* =========================================
           CSS VARIABLES & RESET
           ========================================= */
        :root {
            --primary-lime: #0997CC; /* User's Blue */
            --primary-lime-dim: #8ABFDE;
            --bg-dark: #050a05;
            /*--bg-gradient: radial-gradient(circle at 10% 20%, rgb(16, 36, 26) 0%, rgb(5, 10, 5) 90%);*/
            --bg-gradient: radial-gradient(circle at 10% 20%, rgb(0 76 106) 0%, #005e09 90%);
            --glass-bg: rgba(255, 255, 255, 0.03);
            --glass-border: rgba(255, 255, 255, 0.1);
            --glass-highlight: rgba(255, 255, 255, 0.05);
            --text-white: #ffffff;
            --text-gray: #b0b0b0;
            --font-main: 'Poppins', sans-serif;
            --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

        body {
            font-family: var(--font-main);
            background: var(--bg-gradient);
            background-attachment: fixed;
            color: var(--text-white);
            overflow-x: hidden;
            line-height: 1.6;
            min-height: 100vh;
        }

        a { text-decoration: none; color: inherit; transition: var(--transition); }
        ul { list-style: none; }
        img { max-width: 100%; display: block; }
        
        /* --- UTILITIES --- */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .section-padding { padding: 100px 0; }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header span {
            color: var(--primary-lime);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.9rem;
            display: block;
            margin-bottom: 10px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
        }

        /* --- ENHANCED GLASSMORPHISM --- */
        .glass-panel {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
            border-radius: 20px;
            transform-style: preserve-3d;
        }

        /* Floating Orbs */
        .orb {
            position: fixed;
            border-radius: 50%;
            filter: blur(80px);
            z-index: 0;
            opacity: 0.4;
            animation: floatOrb 10s infinite alternate;
        }
        .orb-1 { width: 400px; height: 400px; background: #0997CC; top: -100px; left: -100px; }
        .orb-2 { width: 300px; height: 300px; background: #004d6e; bottom: 10%; right: -50px; animation-delay: 2s; }
        .orb-3 { width: 200px; height: 200px; background: #0a2e20; top: 40%; left: 50%; animation-delay: 4s; }

        @keyframes floatOrb {
            0% { transform: translate(0, 0); }
            100% { transform: translate(30px, 50px); }
        }

        /* --- CUSTOM CURSOR --- */
        .cursor-dot, .cursor-outline {
            position: fixed; top: 0; left: 0; transform: translate(-50%, -50%);
            border-radius: 50%; z-index: 9999; pointer-events: none;
        }
        .cursor-dot { width: 8px; height: 8px; background-color: var(--primary-lime); }
        .cursor-outline {
            width: 40px; height: 40px; border: 1px solid var(--primary-lime);
            transition: width 0.2s, height 0.2s, background-color 0.2s;
        }

        /* --- HEADER --- */
        header {
            position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
            transition: 0.3s ease; padding: 20px 0;
        }
        header.scrolled { padding: 10px 0; background: rgba(5, 10, 5, 0.95); backdrop-filter: blur(15px); border-bottom: 1px solid var(--glass-border); }
        
        .nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
        .logo { font-size: 28px; font-weight: 800; color: var(--text-white); letter-spacing: -1px; text-shadow: 0 0 10px rgba(9, 151, 204, 0.5); }
        .logo span { color: var(--primary-lime); }

        .nav-links { display: flex; gap: 30px; align-items: center; }
        .nav-links li { position: relative; }
        .nav-links a { font-size: 15px; font-weight: 500; position: relative; }
        .nav-links a::after {
            content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 0;
            background: var(--primary-lime); transition: 0.3s; box-shadow: 0 0 8px var(--primary-lime);
        }
        .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
        .nav-links a:hover { color: var(--primary-lime); text-shadow: 0 0 8px rgba(9, 151, 204, 0.4); }

        /* Dropdown */
        .dropdown-menu {
            position: absolute; top: 100%; left: 0;
            background: rgba(10, 20, 10, 0.95); backdrop-filter: blur(20px);
            min-width: 200px; opacity: 0; visibility: hidden;
            transform: translateY(10px); transition: var(--transition);
            border-radius: 10px; padding: 10px 0; border: 1px solid var(--glass-border);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .nav-links li:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
        .dropdown-menu li a { display: block; padding: 10px 20px; color: var(--text-gray); }
        .dropdown-menu li a:hover { background: rgba(9, 151, 204, 0.1); color: var(--primary-lime); padding-left: 25px; }

        .btn-cta {
            padding: 12px 30px; background: var(--primary-lime); color: var(--bg-black);
            font-weight: 600; border-radius: 50px; border: 2px solid var(--primary-lime);
            display: inline-block; cursor: pointer; box-shadow: 0 0 15px rgba(9, 151, 204, 0.4);
        }
        .btn-cta:hover { background: transparent; color: var(--primary-lime); box-shadow: 0 0 25px rgba(9, 151, 204, 0.6); }
        
        .mobile-toggle { display: none; font-size: 24px; cursor: pointer; }

        /* --- HERO SECTION --- */
        .hero-swiper { width: 100%; height: 100vh; position: relative; overflow: hidden; }
        .swiper-slide { display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
        .slide-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; filter: brightness(0.3); transform: scale(1.2); transition: transform 8s ease; }
        .swiper-slide-active .slide-bg { transform: scale(1); }
        .slide-content { position: relative; z-index: 2; text-align: center; max-width: 800px; padding: 0 20px; opacity: 0; transform: translateY(30px); transition: all 1s ease 0.3s; }
        .swiper-slide-active .slide-content { opacity: 1; transform: translateY(0); }
        .slide-content h2 { font-size: 4rem; line-height: 1.1; margin-bottom: 20px; font-weight: 800; text-transform: uppercase; text-shadow: 0 5px 15px rgba(0,0,0,0.5); }
        .slide-content h2 span { color: var(--primary-lime); display: block; text-shadow: 0 0 20px rgba(9, 151, 204, 0.6); }
        .slide-content p { font-size: 1.2rem; color: #ddd; margin-bottom: 40px; text-shadow: 0 2px 5px rgba(0,0,0,0.5); }

        .swiper-pagination-bullet { width: 12px; height: 12px; background: #fff; opacity: 0.5; }
        .swiper-pagination-bullet-active { background: var(--primary-lime); opacity: 1; width: 30px; border-radius: 10px; box-shadow: 0 0 10px var(--primary-lime); }
        .swiper-button-next, .swiper-button-prev { color: var(--primary-lime); background: rgba(0,0,0,0.5); width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(5px); border: 1px solid var(--glass-border); }
        .swiper-button-next:after, .swiper-button-prev:after { font-size: 20px; font-weight: bold; }

        /* --- BRANDS --- */
        .brands-section { padding: 30px 0; overflow: hidden; background: rgba(0,0,0,0.3); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); }
        .marquee { display: flex; gap: 50px; animation: scroll 20s linear infinite; }
        .brand-item { font-size: 1.5rem; font-weight: 700; color: var(--text-gray); opacity: 0.5; white-space: nowrap; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        /* --- ABOUT --- */
        .raedix-about-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .raedix-about-img { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.6); border: 1px solid var(--glass-border); }
        .raedix-about-img img { width: 100%; transition: transform 0.5s; }
        .raedix-about-img:hover img { transform: scale(1.05); }
        .raedix-check-list { margin-top: 30px; }
        .raedix-check-item { display: flex; align-items: center; margin-bottom: 15px; color: var(--text-gray); }
        .raedix-check-item i { color: var(--primary-lime); margin-right: 15px; background: rgba(9, 151, 204, 0.1); padding: 8px; border-radius: 50%; font-size: 12px; }

        /* --- SERVICES --- */
        .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; }
        .service-card { padding: 40px 30px; transition: var(--transition); position: relative; overflow: hidden; border: 1px solid transparent; }
        .service-card:hover { border-color: var(--primary-lime); }
        .service-icon { font-size: 40px; color: var(--primary-lime); margin-bottom: 20px; text-shadow: 0 0 10px rgba(9, 151, 204, 0.5); }
        .service-card h3 { font-size: 1.5rem; margin-bottom: 15px; transform: translateZ(20px); }
        .service-card p { color: var(--text-gray); font-size: 0.9rem; transform: translateZ(10px); }

        /* --- WHY CHOOSE US (NEW) --- */
        .why-choose-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        .why-item {
            text-align: center;
            padding: 30px;
            background: rgba(255,255,255,0.02);
            border: 1px solid var(--glass-border);
            border-radius: 15px;
            transition: 0.3s;
        }
        .why-item:hover {
            background: rgba(9, 151, 204, 0.05);
            transform: translateY(-5px);
            border-color: var(--primary-lime);
        }
        .why-icon {
            width: 80px; height: 80px; background: linear-gradient(135deg, var(--primary-lime), #004d6e);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 32px; color: #fff; margin: 0 auto 20px;
            box-shadow: 0 10px 20px rgba(9, 151, 204, 0.3);
        }
        .why-item h4 { margin-bottom: 10px; color: #fff; }
        .why-item p { font-size: 0.9rem; color: var(--text-gray); }

        /* --- PORTFOLIO --- */
        .portfolio-filter { display: flex; justify-content: center; gap: 20px; margin-bottom: 40px; flex-wrap: wrap; }
        .filter-btn { color: var(--text-gray); cursor: pointer; font-weight: 500; transition: 0.3s; border: none; background: none; font-size: 1rem; padding: 5px 10px; }
        .filter-btn.active, .filter-btn:hover { color: var(--primary-lime); text-shadow: 0 0 8px var(--primary-lime); }
        
        .portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 20px; }
        .portfolio-item { position: relative; border-radius: 15px; overflow: hidden; aspect-ratio: 4/3; }
        .portfolio-link { display: block; width: 100%; height: 100%; position: relative; z-index: 10; }
        .portfolio-link img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
        .portfolio-link:hover img { transform: scale(1.1); }
        .portfolio-overlay {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(5, 10, 5, 0.85); backdrop-filter: blur(5px);
            display: flex; flex-direction: column;
            justify-content: center; align-items: center; opacity: 0; transition: 0.3s;
            pointer-events: none;
        }
        .portfolio-link:hover .portfolio-overlay { opacity: 1; }

        /* --- STATS --- */
        .stats-section { position: relative; border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); background: rgba(0,0,0,0.2); }
        .stats-wrapper { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; z-index: 2; }
        .stat-box { text-align: center; padding: 40px; }
        .stat-number { font-size: 3.5rem; font-weight: 800; color: var(--primary-lime); display: block; margin-bottom: 10px; text-shadow: 0 0 15px rgba(9, 151, 204, 0.4); }

        /* --- TEAM SECTION (Active/Faded Effect) --- */
        .team-slider { padding: 40px 0; overflow: hidden; }
        
        /* Default slide state (Faded/Small) */
        .team-slider .swiper-slide {
            opacity: 0.4;
            transform: scale(0.85);
            transition: all 0.5s ease;
        }

        /* Active slide state (Bright/Big) */
        .team-slider .swiper-slide-active {
            opacity: 1;
            transform: scale(1);
        }

        .raedix-team-card { border-radius: 20px; overflow: hidden; text-align: center; border: 1px solid var(--glass-border); background: rgba(255,255,255,0.02); height: 100%; display: flex; flex-direction: column; }
        .raedix-team-img { width: 100%; height: 300px; object-fit: cover; object-position: top; filter: grayscale(100%); transition: var(--transition); }
        .raedix-team-card:hover .raedix-team-img { filter: grayscale(0%); }
        .raedix-team-info { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; justify-content: center; }
        .raedix-team-info h4 { color: #fff; font-size: 1.2rem; margin-bottom: 5px; }
        .raedix-team-info span { color: var(--primary-lime); font-size: 0.9rem; font-weight: 500; }

        /* --- TESTIMONIALS --- */
        .raedix-testimonials { background: rgba(0,0,0,0.2); }
        .testi-slider .swiper-slide { height: auto; padding-bottom: 50px; }
        .raedix-testi-card { padding: 40px; position: relative; height: 100%; }
        .raedix-testi-card i { font-size: 40px; color: rgba(255,255,255,0.05); position: absolute; top: 20px; left: 20px; }
        .raedix-testi-text { font-style: italic; color: var(--text-gray); margin-bottom: 25px; position: relative; z-index: 2; }
        .raedix-testi-author { display: flex; align-items: center; }
        .raedix-author-img { width: 50px; height: 50px; border-radius: 50%; margin-right: 15px; object-fit: cover; border: 2px solid var(--primary-lime); }
        .raedix-author-info h5 { color: #fff; font-size: 1rem; }
        .raedix-author-info span { font-size: 0.8rem; color: var(--primary-lime); }

        /* --- PRICING --- */
        .raedix-pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
        .raedix-price-card { padding: 50px 30px; text-align: center; position: relative; border: 1px solid var(--glass-border); background: rgba(255,255,255,0.02); }
        .raedix-price-card.featured { border: 2px solid var(--primary-lime); background: linear-gradient(180deg, rgba(9, 151, 204, 0.1) 0%, rgba(0,0,0,0) 100%); box-shadow: 0 0 30px rgba(9, 151, 204, 0.2); }
        .raedix-price-card:hover { transform: translateY(-10px); border-color: var(--primary-lime); }
        .raedix-price-amount { font-size: 3rem; font-weight: 700; color: #fff; margin: 20px 0; }
        .raedix-price-amount span { font-size: 1rem; color: var(--text-gray); font-weight: 400; }
        .raedix-price-features { margin: 30px 0; text-align: left; }
        .raedix-price-features li { margin-bottom: 15px; color: var(--text-gray); }
        .raedix-price-features i { color: var(--primary-lime); margin-right: 10px; }

        /* --- BLOG --- */
        .blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
        .blog-card { background: rgba(0,0,0,0.3); border-radius: 15px; overflow: hidden; border: 1px solid var(--glass-border); transition: var(--transition); }
        .blog-card:hover { transform: translateY(-5px); border-color: var(--primary-lime); }
        .blog-img { height: 200px; width: 100%; object-fit: cover; }
        .blog-content { padding: 25px; }
        .blog-date { color: var(--primary-lime); font-size: 0.8rem; margin-bottom: 10px; display: block; }
        .blog-title { font-size: 1.2rem; color: #fff; margin-bottom: 15px; line-height: 1.4; }
        .blog-link { color: var(--text-gray); font-size: 0.9rem; border-bottom: 1px solid var(--text-gray); padding-bottom: 2px; }
        .blog-link:hover { color: var(--primary-lime); border-color: var(--primary-lime); }

        /* --- CONTACT --- */
        .contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
        .contact-info-item { display: flex; align-items: center; margin-bottom: 30px; }
        .contact-icon { width: 60px; height: 60px; background: rgba(255, 255, 255, 0.05); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 24px; color: var(--primary-lime); margin-right: 20px; border: 1px solid var(--glass-border); }
        .form-group { margin-bottom: 20px; }
        .form-control { width: 100%; padding: 15px 20px; background: rgba(0, 0, 0, 0.3); border: 1px solid var(--glass-border); color: var(--text-white); border-radius: 10px; font-family: inherit; }
        .form-control:focus { outline: none; border-color: var(--primary-lime); background: rgba(0, 0, 0, 0.5); box-shadow: 0 0 10px rgba(9, 151, 204, 0.2); }
        .submit-btn { width: 100%; padding: 15px; background: var(--primary-lime); border: none; color: var(--bg-black); font-weight: 700; border-radius: 10px; cursor: pointer; transition: 0.3s; box-shadow: 0 0 15px rgba(9, 151, 204, 0.4); }
        .submit-btn:hover { background: #fff; box-shadow: 0 0 20px rgba(255, 255, 255, 0.6); }

        /* --- FAQ --- */
        .raedix-faq { max-width: 800px; margin: 0 auto; }
        .raedix-accordion-item { background: rgba(255,255,255,0.03); margin-bottom: 15px; border-radius: 10px; overflow: hidden; border: 1px solid var(--glass-border); }
        .raedix-accordion-header { padding: 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: 0.3s; }
        .raedix-accordion-header:hover { background: rgba(255,255,255,0.05); }
        .raedix-accordion-header h5 { font-size: 1.1rem; font-weight: 500; }
        .raedix-accordion-icon { transition: 0.3s; color: var(--primary-lime); }
        .raedix-accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; padding: 0 20px; }
        .raedix-accordion-body p { padding-bottom: 20px; color: var(--text-gray); font-size: 0.95rem; }
        .raedix-accordion-item.active .raedix-accordion-icon { transform: rotate(180deg); }
        .raedix-accordion-item.active .raedix-accordion-body { max-height: 200px; }
        .raedix-accordion-item.active { border-color: var(--primary-lime); background: rgba(9, 151, 204, 0.05); }

        /* --- MAP --- */
        .map-container { margin-bottom: 50px; border-radius: 20px; overflow: hidden; border: 1px solid var(--glass-border); }
        .map-iframe { width: 100%; height: 400px; border: 0; filter: grayscale(100%) invert(92%) contrast(83%); /* Dark Mode Map Filter */ }

        /* --- FOOTER --- */
        footer { background: #020502; padding-top: 80px; border-top: 1px solid var(--glass-border); }
        .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 50px; }
        .footer-col h4 { color: var(--text-white); margin-bottom: 20px; }
        .footer-links li { margin-bottom: 10px; }
        .footer-links a { color: var(--text-gray); }
        .footer-links a:hover { color: var(--primary-lime); padding-left: 5px; text-shadow: 0 0 5px var(--primary-lime); }
        .social-icons a { display: inline-flex; width: 40px; height: 40px; background: rgba(255,255,255,0.05); justify-content: center; align-items: center; border-radius: 50%; margin-right: 10px; transition: 0.3s; border: 1px solid var(--glass-border); }
        .social-icons a:hover { background: var(--primary-lime); color: var(--bg-black); transform: translateY(-3px); box-shadow: 0 0 15px var(--primary-lime); }
        .copyright { border-top: 1px solid var(--glass-border); padding: 20px 0; text-align: center; color: var(--text-gray); font-size: 0.9rem; }

        /* --- CTA --- */
        .raedix-cta { padding: 80px 0; background: linear-gradient(90deg, rgba(9, 151, 204, 0.2) 0%, rgba(0,0,0,0) 100%); border: 1px solid var(--glass-border); text-align: center; border-radius: 20px; margin-bottom: 50px; position: relative; overflow: hidden; }
        .raedix-cta::before { content:''; position: absolute; top:0; left:0; width: 5px; height: 100%; background: var(--primary-lime); box-shadow: 0 0 20px var(--primary-lime); }
        .raedix-cta h2 { color: var(--text-white); font-size: 2.5rem; margin-bottom: 20px; text-shadow: 0 0 10px rgba(255,255,255,0.3); }
        .raedix-cta .btn-dark { background: var(--bg-black); color: #fff; border: 1px solid var(--glass-border); margin-top: 20px; }
        .raedix-cta .btn-dark:hover { background: #fff; color: var(--primary-lime); border-color: #fff; }

        /* Toast */
        #toast { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(100px); background: rgba(0,0,0,0.8); backdrop-filter: blur(10px); padding: 15px 30px; border-radius: 50px; border: 1px solid var(--primary-lime); display: flex; align-items: center; gap: 10px; opacity: 0; transition: 0.5s; z-index: 10000; box-shadow: 0 0 20px rgba(9, 151, 204, 0.4); }

        /* --- FLOATING BUTTONS --- */
        .float-buttons { position: fixed; bottom: 30px; right: 20px; z-index: 9999; display: flex; flex-direction: column; gap: 15px; }
        .float-btn {
            width: 55px; height: 55px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
            font-size: 24px; color: white; box-shadow: 0 4px 15px rgba(0,0,0,0.5); transition: all 0.3s ease;
            position: relative; animation: pulse 2s infinite;
        }
        .float-btn:hover { transform: scale(1.1); animation: none; }
        .btn-whatsapp { background-color: #25D366; }
        .btn-call { background-color: var(--primary-lime); }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
            100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
        }

        /* =========================================
           RESPONSIVE MEDIA QUERIES
           ========================================= */
        @media (max-width: 1024px) {
            .contact-wrapper { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; } 
        }

        @media (max-width: 768px) {
            /* Mobile Nav */
            .nav-links {
                display: none; position: absolute; top: 80px; left: 0; width: 100%;
                background: rgba(5, 10, 5, 0.98); backdrop-filter: blur(20px); flex-direction: column; padding: 20px;
                text-align: center; border-bottom: 1px solid var(--primary-lime);
            }
            .nav-links.active { display: flex; }
            .mobile-toggle { display: block; }
            
            /* Mobile Dropdown */
            .dropdown-menu { position: static; visibility: visible; opacity: 1; transform: none; background: transparent; border: none; display: none; padding-left: 20px; box-shadow: none; }
            .dropdown-menu.show { display: block; }
            .nav-links li i.fa-chevron-down { transition: transform 0.3s; }
            .nav-links li.active i.fa-chevron-down { transform: rotate(180deg); }

            /* 1. About Section: Column 12 */
            .raedix-about-wrapper { grid-template-columns: 1fr; } 

            /* 2. Counter: Column 6 (2 per row) */
            .stats-wrapper { grid-template-columns: repeat(2, 1fr); gap: 15px; } 
            .stat-box { padding: 20px; }
            .stat-number { font-size: 2.5rem; }

            /* 3. Team Section: Full Width Column 12 Fix */
            .team-slider { margin-left: -20px; margin-right: -20px; padding-left: 20px; padding-right: 20px; width: calc(100% + 40px); }
            /* On mobile, we might want just 1 slide full width, no opacity trick needed */
            .team-slider .swiper-slide { transform: none; opacity: 1; }
            
            /* Footer: Column 12 */
            .footer-grid { grid-template-columns: 1fr; } 

            .slide-content h2 { font-size: 2.5rem; }
        }


/* Inner Page Hero Section Style */
        .inner-page-hero {
            height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            background-color: var(--bg-dark);
            overflow: hidden;
        }
        .inner-page-hero .slide-bg {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            object-fit: cover;
            z-index: 1;
            filter: brightness(0.3);
        }
        .inner-page-hero .slide-content {
            position: relative;
            z-index: 2;
            text-align: center;
            /* FIX: Force visibility since there is no Swiper slider to activate it */
            opacity: 1 !important; 
            transform: translateY(2rem) !important;
        }
        .inner-page-hero .slide-content h2 {
            font-size: 1.8rem; 
        }
        .inner-page-hero p{
            margin-bottom: 10px;
            font-size: 1rem;
        }

        /* Utility for text alignment on mobile */
        @media (max-width: 768px) {
            .inner-page-hero { height: 50vh; }
            .inner-page-hero .slide-content h2 { font-size: 1.5rem; }
        }

/* Team Details Wrapper */
        .team-details-wrapper {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 60px;
            align-items: start;
        }

        /* Left Side: Image & Socials */
        .team-details-card {
            position: sticky;
            top: 100px; /* Sticky position under header */
        }
        .team-details-img-box {
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid var(--glass-border);
            box-shadow: 0 20px 50px rgba(0,0,0,0.6);
        }
        .team-details-img-box img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }
        .team-details-img-box:hover img {
            transform: scale(1.03);
        }
        .team-details-info {
            margin-top: 30px;
            text-align: center;
        }
        .team-details-info h2 {
            font-size: 2rem;
            margin-bottom: 5px;
        }
        .team-details-info span {
            color: var(--primary-lime);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }
        .team-details-social {
            margin-top: 20px;
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        .team-details-social a {
            width: 40px; height: 40px;
            border: 1px solid var(--glass-border);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-white);
            transition: 0.3s;
        }
        .team-details-social a:hover {
            background: var(--primary-lime);
            border-color: var(--primary-lime);
            color: #000;
            box-shadow: 0 0 15px rgba(9, 151, 204, 0.5);
        }

        /* Right Side: Content */
        .team-details-content h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--text-white);
            border-bottom: 1px solid var(--glass-border);
            padding-bottom: 10px;
        }
        .team-details-content p {
            color: var(--text-gray);
            margin-bottom: 20px;
            line-height: 1.8;
        }
        
        /* Skills Section */
        .team-details-skills {
            margin-top: 40px;
        }
        .skill-item {
            margin-bottom: 20px;
        }
        .skill-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            font-size: 0.9rem;
            color: var(--text-white);
        }
        .skill-bar {
            height: 6px;
            background: rgba(255,255,255,0.1);
            border-radius: 10px;
            overflow: hidden;
        }
        .skill-progress {
            height: 100%;
            background: linear-gradient(90deg, var(--primary-lime), #004d6e);
            border-radius: 10px;
            width: 0; /* Animated via JS or just static width */
            transition: width 1s ease;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .team-details-wrapper {
                grid-template-columns: 1fr;
            }
            .team-details-card {
                position: static; /* Remove sticky on mobile */
            }
        }


/* Blog Details Layout */
        .blog-details-wrapper {
            display: grid;
            grid-template-columns: 2fr 1fr; /* 2/3 for content, 1/3 for sidebar */
            gap: 50px;
        }

        /* Main Post Styles */
        .blog-details-post {
            background: rgba(0,0,0,0.3);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            overflow: hidden;
        }
        .blog-details-header-img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }
        .blog-details-body {
            padding: 40px;
        }
        .blog-details-meta {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
            color: var(--text-gray);
            font-size: 0.9rem;
            border-bottom: 1px solid var(--glass-border);
            padding-bottom: 15px;
        }
        .blog-details-meta span i {
            color: var(--primary-lime);
            margin-right: 5px;
        }
        
        .blog-details-body h1 {
            font-size: 2.2rem;
            line-height: 1.3;
            margin-bottom: 25px;
            color: #fff;
        }
        .blog-details-body h3 {
            color: var(--primary-lime);
            margin-top: 30px;
            margin-bottom: 15px;
        }
        .blog-details-body p {
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 20px;
            font-size: 1rem;
        }
        .blog-details-tags {
            margin-top: 30px;
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .blog-details-tag {
            background: rgba(255,255,255,0.05);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            color: var(--primary-lime);
            border: 1px solid var(--glass-border);
        }

        /* Sidebar Styles */
        .blog-sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background: rgba(255,255,255,0.03);
            border: 1px solid var(--glass-border);
            border-radius: 15px;
            padding: 25px;
        }
        .sidebar-widget h4 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: #fff;
            border-left: 3px solid var(--primary-lime);
            padding-left: 10px;
        }
        .sidebar-search {
            display: flex;
            border: 1px solid var(--glass-border);
            border-radius: 5px;
            overflow: hidden;
        }
        .sidebar-search input {
            background: transparent;
            border: none;
            padding: 10px;
            color: #fff;
            flex-grow: 1;
            outline: none;
        }
        .sidebar-search button {
            background: var(--primary-lime);
            border: none;
            padding: 0 15px;
            cursor: pointer;
            color: #000;
        }

        .recent-post-item {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .recent-post-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }
        .recent-post-img {
            width: 70px;
            height: 70px;
            border-radius: 8px;
            object-fit: cover;
        }
        .recent-post-info h6 {
            font-size: 0.95rem;
            color: #fff;
            line-height: 1.4;
            margin-bottom: 5px;
            transition: 0.3s;
        }
        .recent-post-info h6:hover {
            color: var(--primary-lime);
        }
        .recent-post-info span {
            font-size: 0.8rem;
            color: var(--text-gray);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .blog-details-wrapper {
                grid-template-columns: 1fr;
            }
            .blog-details-header-img {
                height: 250px;
            }
            .blog-details-body h1 {
                font-size: 1.6rem;
            }
        }


/* Service Details Layout */
        .service-details-wrapper {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 50px;
        }

        /* Main Content */
        .service-details-main h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: #fff;
            border-left: 4px solid var(--primary-lime);
            padding-left: 15px;
        }
        .service-details-main p {
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 20px;
            font-size: 1rem;
        }

        /* Feature List Grid */
        .service-features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin: 40px 0;
        }
        .service-feature-item {
            background: rgba(255,255,255,0.03);
            padding: 20px;
            border-radius: 10px;
            border: 1px solid var(--glass-border);
            display: flex;
            align-items: center;
            transition: 0.3s;
        }
        .service-feature-item:hover {
            border-color: var(--primary-lime);
            background: rgba(9, 151, 204, 0.05);
        }
        .service-feature-item i {
            color: var(--primary-lime);
            margin-right: 15px;
            font-size: 1.2rem;
        }
        .service-feature-item h5 {
            margin: 0;
            font-size: 1rem;
            font-weight: 500;
        }

        /* Process Steps */
        .service-process {
            margin-top: 50px;
        }
        .process-step {
            display: flex;
            margin-bottom: 30px;
            position: relative;
        }
        .process-step:not(:last-child)::after {
            content: '';
            position: absolute;
            left: 20px;
            top: 45px;
            bottom: -15px;
            width: 2px;
            background: var(--glass-border);
        }
        .process-icon {
            width: 45px; height: 45px;
            background: rgba(255,255,255,0.05);
            border: 1px solid var(--primary-lime);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
            z-index: 1;
        }
        .process-icon span {
            color: var(--primary-lime);
            font-weight: 700;
        }
        .process-content h4 {
            margin-bottom: 5px;
            font-size: 1.2rem;
        }
        .process-content p {
            color: var(--text-gray);
            font-size: 0.9rem;
            margin: 0;
        }

        /* Sidebar */
        .service-sidebar {
            position: sticky;
            top: 100px;
        }
        .sidebar-card {
            background: rgba(0,0,0,0.3);
            border: 1px solid var(--glass-border);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
        }
        .sidebar-card h4 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #fff;
        }
        .sidebar-service-link {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            padding: 10px;
            border-radius: 8px;
            transition: 0.3s;
        }
        .sidebar-service-link:hover, .sidebar-service-link.active {
            background: rgba(9, 151, 204, 0.1);
        }
        .sidebar-service-link i {
            margin-right: 10px;
            color: var(--primary-lime);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .service-details-wrapper {
                grid-template-columns: 1fr;
            }
            .service-features-grid {
                grid-template-columns: 1fr;
            }
        }