  :root {
            --primary-bg: #000000;
            --secondary-bg: #ffffff;
            --text-light: #ffffff;
            --text-dark: #1a1a1a;
            --accent-blue: #000000;
            --accent-cyan: #00d4ff;
            --soft-grey: #f4f7fa;
            --transition-speed: 0.4s;
            --section-padding: 100px 8%;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--secondary-bg);
            overflow-x: hidden;
        }

        /* Utility Classes */
        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all var(--transition-speed);
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: var(--accent-blue);
            color: #fff;
        }

        .btn-primary:hover {
            background: #001f3f;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 48, 96, 0.2);
        }


        /* Custom Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(12, 12, 12, 0.9);
            backdrop-filter: blur(15px);
            z-index: 2000;
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .logo img {
            height: 45px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links a {
            text-decoration: none;
            color: #fff;
            font-weight: 500;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--accent-cyan);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 80px;
        }
        .hero-video {
            width: 100%;
            height: 100%;
            object-fit: cover; /* makes it fill perfectly */
        }
        .hero-inner {
            display: flex;
            width: 100%;
            height: 100%;
            align-items: center;
        }

        .hero-left {
            flex: 1;
            padding: 0 0% 0 0%;
        }

        .hero-right {
            flex: 1;
            height: 100%;
            padding: 0;
            background: #000;
            position: relative;
            overflow: hidden;
        
            /* REMOVE GRID */
            display: block;
        }

        .hero-left h1 {
            font-size: 4.5rem;
            font-weight: 900;
            color: #000;
            line-height: 1;
            margin-bottom: 25px;
            padding-left: 80px;
        }

        .hero-left p {
            font-size: 1.1rem;
            color: #444;
            margin-bottom: 35px;
            max-width: 550px;
            padding-left: 80px;
        }

        .hero-btns {
            display: flex;
            gap: 20px;
            padding-left: 80px;
        }

        .hero-grid-item {
            border-radius: 15px;
            overflow: hidden;
            position: relative;
        }

        .hero-grid-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.8);
            transition: transform 0.5s;
        }

        /* Brand Carousel */
        .brands {
            padding: 80px 0;
            background: #fff;
            text-align: center;
        }

        .brands h3 {
            font-size: 1.8rem;
            color: var(--accent-blue);
            font-weight: 700;
            display: inline-block;
            margin-bottom: 15px;
            position: relative;
        }

        .brands h3::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -5px;
            transform: translateX(-50%);
            width: 80%;
            height: 2px;
            background: var(--accent-blue);
        }

        .brands .container {
            overflow: hidden;
            border-bottom: 1px solid #eee;
            padding-bottom: 60px;
        }

        .brand-container {
            display: flex;
            width: 200%;
            animation: scrollBrands 30s linear infinite;
        }

        .brand-track {
            display: flex;
            justify-content: space-around;
            width: 50%;
            align-items: center;
        }

        @keyframes scrollBrands {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .brand-track img {
            height: 100px;
            transition: all 0.3s;
        }
.portfolio {
            background: #ffffff;
            padding: 100px 5%;
            overflow: hidden;
        }

        .section-tag_insta {
            color: #fff;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-size: 0.9rem;
            display: block;
            margin-bottom: 10px;
            text-align: center;
        }

        .section-title_insta {
            font-size: 3rem;
            font-weight: 800;
           color: #fff;
            margin-bottom: 40px;
            text-align: center;
        }

        .portfolio-slider {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px 0 80px !important;
            overflow: visible !important;
        }

        .swiper-slide {
            display: flex;
            justify-content: center;
        }

        /* Portfolio Video Slider Styles */
        .portfolio-card {
            background: #000;
            border-radius: 28px;
            overflow: hidden;
            position: relative;
            aspect-ratio: 9/16;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            width: 100%;
            max-width: 350px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .portfolio-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
        }

        .portfolio-card video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            background: #111;
        }

        .reel-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.6) 100%);
            padding: 25px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            z-index: 2;
            pointer-events: none;
            opacity: 0.9;
        }

        .reel-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            color: #fff;
            font-size: 1.5rem;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
        }

        .reel-stats {
            display: flex;
            gap: 20px;
            color: #fff;
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .reel-stat {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .reel-stat i {
            font-size: 1.1rem;
        }

        /* Navigation Arrows */
        .portfolio-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 55px;
            height: 55px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
            color: #111;
            z-index: 20;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .portfolio-nav:hover {
            background: var(--accent-blue);
            color: #fff;
            transform: translateY(-50%) scale(1.15);
        }

        .portfolio-prev { left: 10px; }
        .portfolio-next { right: 10px; }

        @media (max-width: 1300px) {
            .portfolio-prev { left: 10px; }
            .portfolio-next { right: 10px; }
        }

        /* Sections General */
        section {
            padding: var(--section-padding);
        }

        .section-tag {
            color: var(--accent-blue);
            font-family: 'Roboto', sans-serif;
            font-style: italic;
            margin-bottom: 15px;
            font-size: 1.3rem;
            display: block;
        }

        .section-title {
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--accent-blue);
            margin-bottom: 25px;
            line-height: 1.1;
        }

        /* Who We Are & Experiences */
        .flex-section {
            display: flex;
            align-items: center;
            gap: 80px;
        }

        .flex-img img {
            width: 100%;
            border-radius: 30px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.1);
        }

        .flex-content {
            flex: 1;
        }

        .flex-img {
            flex: 1;
        }

        /* Stats */
        .progress-box {
            margin-bottom: 25px;
        }

        .progress-info {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .progress-bar-outer {
            height: 10px;
            background: #edf2f7;
            border-radius: 10px;
            overflow: hidden;
        }

        .progress-bar-inner {
            height: 100%;
            background: linear-gradient(to right, var(--accent-blue), var(--accent-cyan));
            width: 0;
            transition: width 1.5s ease-out;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }

        .service-item {
            padding: 50px 40px;
            border-radius: 20px;
            background: #fff;
            border: 1px solid #f0f0f0;
            transition: all 0.4s;
            text-align: left;
        }

        .service-item:hover {
            transform: translateY(-10px);
            background: var(--accent-blue);
            color: #fff;
        }

        .service-item i {
            font-size: 3rem;
            color: var(--accent-blue);
            margin-bottom: 25px;
        }

        .service-item:hover i {
            color: var(--accent-cyan);
        }

        /* Showcase */
        .showcase {
            background: #000;
            color: #fff;
            text-align: center;
        }

        .creators-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }

        .creator-card {
            height: 400px;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
        }

        .creator-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .creator-info {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 20px;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            text-align: left;
        }

        /* Banner CTA */
        .banner-cta {
            padding: 100px 5%;
        }

        .banner-inner {
            background: linear-gradient(rgba(0, 48, 96, 0.7), rgba(0, 48, 96, 0.7)), url('https://images.unsplash.com/photo-1516035069371-29a1b244cc32?auto=format') center/cover;
            padding: 80px 40px;
            border-radius: 40px;
            text-align: center;
            color: #fff;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: 400px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .banner-inner h2 {
            font-size: 3.5rem;
            font-weight: 800;
            max-width: 800px;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .banner-inner p {
            font-size: 1.1rem;
            opacity: 0.9;
            letter-spacing: 1px;
        }

        /* Footer */
        footer {
            background: #0c0c0c;
            color: #999;
            padding: 80px 8% 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 9fr 3fr;
            gap: 60px;
        }

        .footer-col h4 {
            color: #fff;
            margin-bottom: 25px;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col li {
            margin-bottom: 12px;
        }

        .footer-col a {
            color: inherit;
            text-decoration: none;
        }

        .footer-col a:hover {
            color: var(--accent-cyan);
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icons a {
            width: 40px;
            height: 40px;
            background: #1a1a1a;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
        }

        /* FAQ Section */
        .faq {
            background: #fff;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 20px;
            border-bottom: 1px solid #eee;
            padding-bottom: 15px;
        }

        .faq-question {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            background: none;
            border: none;
            text-align: left;
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--accent-blue);
            cursor: pointer;
            transition: color 0.3s;
        }

        .faq-question:hover {
            color: var(--accent-cyan);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            color: #666;
            font-size: 1rem;
            line-height: 1.6;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
            padding-bottom: 15px;
        }

        .faq-item.active i {
            transform: rotate(180deg);
        }

        /* Why Choose Us Section */
        .why-choose {
            background: #fff;
            padding: 80px 8%;
        }

        .why-flex {
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .why-content {
            flex: 1;
        }

        .why-img {
            flex: 1;
            position: relative;
        }

        .why-img img.main-img {
            width: 100%;
            border-radius: 20px;
        }

        .why-img img.overlay-img {
            position: absolute;
            bottom: -50px;
            left: -50px;
            width: 60%;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            border: 5px solid #fff;
        }

        .why-list {
            margin-top: 35px;
            list-style: none;
        }

        .why-list-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 25px;
        }

        .why-list-icon {
            width: 50px;
            height: 50px;
            background: #f0f7ff;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-blue);
            font-size: 1.5rem;
            flex-shrink: 0;
            transition: 0.3s;
        }

        .why-list-item:hover .why-list-icon {
            background: var(--accent-blue);
            color: #fff;
        }

        .why-list-text h4 {
            font-size: 1.25rem;
            color: var(--accent-blue);
            margin-bottom: 5px;
        }

        .why-list-text p {
            font-size: 0.95rem;
            color: #666;
        }

        /* Updated FAQ Design */
        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 80px;
            align-items: flex-start;
        }

        .faq-left {
            position: sticky;
            top: 120px;
        }

        .faq-left .section-tag {
            font-family: 'Roboto', sans-serif;
            font-style: italic;
            font-weight: bold;
        }

        .faq-illustration {
            margin-top: 40px;
            width: 100%;
        }

        .faq-illustration img {
            width: 100%;
            max-width: 450px;
        }

        .faq-container {
            max-width: none;
            margin: 0;
        }

        .faq-item {
            margin-bottom: 15px;
            border-bottom: none;
            padding-bottom: 0;
            border-radius: 12px;
            overflow: hidden;
            background: #f8fbff;
            box-shadow: 0 4px 15px rgba(0, 48, 96, 0.05);
            transition: all 0.3s ease;
        }

        .faq-question {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 25px;
            background: #fff;
            border: none;
            text-align: left;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--accent-blue);
            cursor: pointer;
            transition: all 0.3s;
        }

        .faq-question span {
            flex: 1;
        }

        .faq-question i {
            font-size: 1.1rem;
            transition: transform 0.3s;
            color: var(--accent-blue);
            margin-left: 15px;
        }

        .faq-item.active .faq-question {
            background: linear-gradient(to right, #4a78a3, #6a9ac3);
            color: #fff;
        }

        .faq-item.active .faq-question i {
            color: #fff;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s ease;
            background: #fff;
            padding: 0 25px;
            color: #555;
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 25px;
        }

        /* Slider Styles */
        .swiper {
            width: 100%;
            padding: 15px 0;
        }

        .swiper-slide {
            transition: transform 0.3s;
        }

        .swiper-pagination-bullet {
            background: var(--accent-cyan) !important;
        }

        .swiper-button-next, .swiper-button-prev {
            color: var(--accent-cyan) !important;
        }

        .testimonial-pagination {
            position: relative !important;
            margin-top: 30px;
        }

        .testimonial-pagination .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: #fff !important;
            opacity: 0.5;
        }

        .testimonial-pagination .swiper-pagination-bullet-active {
            opacity: 1;
            background: var(--accent-cyan) !important;
        }

        /* Testimonials */
        .testimonials {
            padding: 60px 5%;
            background: linear-gradient(rgba(0, 48, 96, 0.6), rgba(0, 48, 96, 0.6)), url('https://images.unsplash.com/photo-1515886657613-9f3515b0c78f?auto=format') center/cover fixed;
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .testimonial-card-featured {
            background: #fff;
            padding: 60px;
            border-radius: 0; /* Boxy as in screenshot */
            max-width: 1000px;
            width: 100%;
            position: relative;
            box-shadow: 0 30px 60px rgba(0,0,0,0.3);
        }

        .testimonial-card-featured .wave-icon {
            position: absolute;
            top: 40px;
            left: 40px;
            width: 40px;
            opacity: 0.3;
        }

        .testimonial-stars {
            color: #ffb400;
            font-size: 1.2rem;
            margin-bottom: 30px;
            display: flex;
            gap: 5px;
        }

        .testimonial-card-featured .testimonial-text {
            font-size: 1.2rem;
            color: #333;
            line-height: 1.8;
            font-style: normal;
            margin-bottom: 40px;
            font-family: 'Poppins', sans-serif;
        }

        .testimonial-author-featured {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .author-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid #f0f0f0;
        }

        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info-featured h4 {
            font-size: 1.3rem;
            color: var(--accent-blue);
            margin-bottom: 2px;
        }

        .author-info-featured p {
            color: #888;
            font-size: 0.9rem;
        }

        .quote-icon-large {
            position: absolute;
            bottom: 40px;
            right: 40px;
            font-size: 4rem;
            color: #f0f7ff;
            z-index: 0;
        }

        /* Get In Touch */
        .get-in-touch {
            background: #000;
            color: #fff;
            text-align: center;
            padding: 80px 8%;
        }

        .get-in-touch h2 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .get-in-touch p {
            max-width: 700px;
            margin: 0 auto 40px;
            color: #ccc;
        }

        .newsletter-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            gap: 10px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 15px 25px;
            border-radius: 50px;
            border: none;
            background: #1a1a1a;
            color: #fff;
            outline: none;
        }

        .newsletter-form .btn {
            padding: 15px 40px;
            background: var(--accent-cyan);
            color: #000;
        }

        /* Responsive */
        @media (max-width: 992px) {
  .hero {
        height: auto;
        padding-top: 100px;
    }

    .hero-inner {
        display: flex;
        flex-direction: column-reverse; /* 👈 THIS puts video on top */
    }

    .hero-right {
        width: 100%;
        height: 280px; /* adjust if needed */
    }

    .hero-left {
        width: 100%;
        padding: 20px;
        text-align: center;
    }

    .hero-left h1 {
        font-size: 2.2rem;
        padding-left: 0;
        line-height: 1.2;
    }

    .hero-left p {
        font-size: 1rem;
        padding-left: 0;
        margin: 15px auto 25px;
    }

    .hero-btns {
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
        padding-left: 0px;
    }
            
            .flex-section { flex-direction: column; text-align: center; }
            .hero-left h1 { font-size: 2rem; }
            .hero { flex-direction: column; height: auto; }
            .hero-right { height: 400px; width: 100%; }
            
            .why-flex { flex-direction: column; text-align: center; }
            .why-list-item { text-align: left; }
            .why-img .overlay-img { left: 0; bottom: -30px; width: 50%; }

            .faq-grid { grid-template-columns: 1fr; gap: 40px; }
            .faq-left { position: static; text-align: center; }
            .faq-left .section-tag { background-position: center left; }
        }