 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

       body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #333;
    background-color: #000;
}

        /* Header Styles */
        header {
            background-color: #fff;
            padding: 20px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 24px;
            font-weight: 700;
            color: #000;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .logo img {
            height: 50px;
            width: auto;
            object-fit: contain;
        }

        .logo-text span {
            color: #7c3aed;
        }

   nav {
    display: flex;
    gap: 40px;
    align-items: left;
    flex: 1;
    justify-content: center;
    transform: translateX(-50px); /* 🔥 adjust value as needed */
}
    nav a { text-decoration: none; color: #000; font-weight: 500; font-size: 15px; transition: color 0.3s ease; }

        nav a:hover {
            color: #7c3aed;
        }

        .book-btn {
            background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
            color: #fff;
            border: none;
            padding: 12px 35px;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            white-space: nowrap;
        }

        .book-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(124, 58, 237, 0.4);
        }

        /* Mobile Menu Button */
        .menu-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
        }

        .menu-btn span {
            width: 25px;
            height: 3px;
            background: #000;
            border-radius: 2px;
            transition: all 0.3s ease;
            display: block;
        }

        .menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .menu-btn.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Mobile Navigation */
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        @media (max-width: 768px) {
            header {
                padding: 12px 15px;
                justify-content: space-between;
                align-items: center;
                flex-wrap: nowrap;
            }

            .logo {
                font-size: 16px;
                gap: 6px;
                flex-shrink: 0;
                margin-right: auto;
            }

            .logo img {
                height: 35px;
            }

            .logo-text {
                font-size: 12px;
            }

            .menu-btn {
                display: flex;
                flex-shrink: 0;
                margin-left: auto;
            }

            .nav-wrapper {
                position: absolute;
                top: 100%;
                right: 0;
                left: 0;
                background: #fff;
                flex-direction: column;
                gap: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
                z-index: 99;
            }

            .nav-wrapper.active {
                max-height: 500px;
            }

            nav {
                flex-direction: column;
                gap: 0;
                flex: none;
                margin: 0;
                justify-content: flex-start;
                width: 100%;
                padding: 15px 0;
                border-bottom: 1px solid #eee;
            }

            nav a {
                display: block;
                padding: 12px 15px;
                border-bottom: 1px solid #f0f0f0;
                width: 100%;
                text-align: left;
                font-size: 14px;
            }

            nav a:last-child {
                border-bottom: none;
            }

            .book-btn {
                width: calc(100% - 30px);
                margin: 15px 15px 15px 15px;
                padding: 10px 25px;
                text-align: center;
                font-size: 14px;
            }

            .hero {
                padding: 60px 20px 40px 20px;
            }

            .hero h1 {
                font-size: 36px;
            }

            .hero-content {
                max-width: 100%;
            }

            .hero-whatsapp {
                bottom: 20px;
                right: 10px;
                padding: 10px 15px 10px 10px;
            }

            .hero-whatsapp .whatsapp-icon {
                width: 28px;
                height: 28px;
            }

            .hero-whatsapp .whatsapp-text {
                font-size: 12px;
            }

            .services-section {
                padding: 40px 20px;
            }

            .services-title h2 {
                font-size: 32px;
            }

            .service-card {
                flex-direction: column;
                gap: 30px;
            }

            .service-card.reverse {
                flex-direction: column;
            }

            .service-content h3 {
                font-size: 28px;
            }

            .service-content p {
                font-size: 16px;
                max-width: 100%;
            }

            .service-image img {
                width: 100%;
                height: 250px;
            }

            .why-choose-section {
                padding: 40px 20px;
            }

            .why-choose-title h2 {
                font-size: 32px;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .testimonials-section {
                padding: 40px 20px;
            }

            .testimonials-title h2 {
                font-size: 32px;
            }

            .testimonials-title p {
                margin-bottom: 50px;
            }

            .testimonials-container {
                gap: 20px;
            }

            .testimonial-card {
                width: calc(100% - 20px);
                min-width: 280px;
                padding: 30px 20px;
            }

            .pricing-section {
                padding: 40px 20px;
            }

            .pricing-title h2 {
                font-size: 32px;
            }

            .pricing-container {
                gap: 20px;
            }

            .pricing-card {
                width: calc(100% - 20px);
                min-width: 280px;
                padding: 30px 20px;
            }

            .pricing-card.featured {
                transform: scale(1);
            }

            .pricing-card.featured:hover {
                transform: translateY(-10px);
            }

            .pricing-card-title {
                white-space: normal;
            }

            .portfolio-section {
                padding: 40px 20px;
            }

            .portfolio-title h2 {
                font-size: 32px;
            }

            #carousel-1 .portfolio-item {
                width: calc(50% - 10px);
            }

            #carousel-2 .portfolio-item,
            #carousel-3 .portfolio-item {
                width: calc(100% - 10px);
            }

            .footer {
                padding: 30px 20px;
            }

            .footer-content {
                flex-direction: column;
            }

            .footer-section {
                margin-bottom: 30px;
            }

            .footer-section h4 {
                font-size: 16px;
            }

            .footer-section p,
            .footer-section a {
                font-size: 14px;
            }

            .social-links {
                gap: 15px;
            }

            .cta-container {
                flex-direction: column;
                gap: 15px;
                padding: 20px;
            }

            .cta-container button {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            header {
                padding: 12px 15px;
            }

            .logo {
                font-size: 16px;
            }

            .logo img {
                height: 35px;
            }

            .hero {
                padding: 50px 15px 30px 15px;
                min-height: 80vh;
            }

            .hero h1 {
                font-size: 28px;
            }

            .hero p {
                font-size: 14px;
            }

            .hero-btn {
                padding: 12px 30px;
                font-size: 14px;
            }

            .services-title h2,
            .why-choose-title h2,
            .testimonials-title h2,
            .pricing-title h2,
            .portfolio-title h2 {
                font-size: 26px;
            }

            .service-content h3 {
                font-size: 22px;
            }

            .feature-card {
                padding: 25px 15px;
            }

            .testimonial-card {
                width: calc(100% - 15px);
                min-width: 260px;
            }

            .pricing-card {
                width: calc(100% - 15px);
                min-width: 260px;
            }

            .nav-wrapper.active {
                max-height: 600px;
            }

            #carousel-1 .portfolio-item {
                width: calc(100% - 10px);
            }
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
            url('img/hero.png');
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            padding: 80px 60px 60px 60px;
            position: relative;
        }

        .hero-content {
            color: #fff;
            max-width: 500px;
            z-index: 2;
        }

        .hero h1 {
            font-size: 50px;
            line-height: 1.2;
            font-weight: 800;
            
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero p {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 30px;
            opacity: 0.95;
            font-weight: 400;
        }

        .hero-btn {
            background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
            color: #fff;
            border: none;
            padding: 14px 40px;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: inline-block;
        }

        .hero-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(124, 58, 237, 0.5);
        }

        .hero-btn:active {
            transform: translateY(-1px);
        }

        /* WhatsApp Widget in Hero */
        .hero-whatsapp {
            position: absolute;
            bottom: 60px;
            right: 0;
            background: #1F7A63;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 18px 12px 12px;
            border-radius: 30px 0 0 30px;
            cursor: pointer;
            text-decoration: none;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            z-index: 10;
        }

        .hero-whatsapp:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
            background: #176d57;
        }

        .hero-whatsapp .whatsapp-icon {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .hero-whatsapp .whatsapp-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .hero-whatsapp .whatsapp-text {
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.3px;
            padding-right: 6px;
        }

        /* Services Section */
        .services-section {
            background-color: #fff;
            padding: 80px 60px;
        }

        .services-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .services-title h2 {
            font-size: 48px;
            font-weight: 800;
            color: #000;
            margin-bottom: 15px;
        }

        .services-title p {
            font-size: 16px;
            color: #666;
            max-width: 500px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .services-container {
            display: flex;
            flex-direction: column;
            gap: 60px;
        }

        .service-card {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .service-card.reverse {
            flex-direction: row-reverse;
        }

        .service-content {
            flex: 1;
        }

        .service-content h3 {
            font-size: 42px;
            font-weight: 700;
           
            color: #000;
            margin-bottom: 15px;
        }

        .service-content p {
            font-size: 20px;
            max-width: 90%;
            color: #666;
            line-height: 1.7;
            margin-bottom: 25px;
        }

        .service-btn {
            background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
            color: #fff;
            border: none;
            padding: 12px 35px;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .service-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(124, 58, 237, 0.4);
        }

        .service-image {
            flex: 1;
            position: relative;
        }

        .service-image img {
            width: 80%;
            height: 300px;
            border-radius: 16px;
            border: 2px solid #d1d5db;
            object-fit: cover;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            display: block;
        }

        .service-image::before {
            content: '';
            position: absolute;
            top: -12px;
            right: -12px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
            border-radius: 12px;
            opacity: 0.7;
            z-index: -1;
        }

        .service-image::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: -8px;
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
            border-radius: 8px;
            opacity: 0.6;
            z-index: -1;
        }
@media (max-width: 768px) {

    .services-section {
        padding: 50px 20px;
    }

    .services-title h2 {
        font-size: 32px;
    }

    .services-title p {
        font-size: 14px;
    }

    .services-container {
        gap: 40px;
    }

    /* Stack layout */
    .service-card,
    .service-card.reverse {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    /* Content full width */
    .service-content {
        width: 100%;
    }

    .service-content h3 {
        font-size: 28px;
    }

    .service-content p {
        font-size: 16px;
        max-width: 100%;
    }

    /* 🔥 Image center */
    .service-image {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .service-image img {
        width: 90%;
        height: auto;
    }

    /* 🔥 Button right side */
   
}
   @media (max-width: 768px) {

    .service-btn {
        display: block;
        margin: 0 auto;   /* 🔥 centers the button */
        text-align: center;
    }

}
     /* Why Choose Section */
        .why-choose-section {
            background: linear-gradient(135deg, #1a1f3a 0%, #2d2f4a 100%);
            padding: 80px 60px;
        }

        .why-choose-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .why-choose-title h2 {
            font-size: 48px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 15px;
        }

        .why-choose-title p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.8);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-card {
            background: #fff;
            padding: 40px 30px;
            border-radius: 16px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

       .feature-icon {
    width: 80px;
    height: 80px;
     margin: 0 0 25px 0;
    display: flex;
    
    justify-content: center;
    border: 2.5px solid #000;
    border-radius: 50%;
    font-size: 40px;
}

        .feature-icon img {
            width: 80%;
            height: 100%;
            object-fit: contain;
        }

        .feature-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: #000;
            margin-bottom: 12px;
        }

        .feature-card p {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }

        /* Testimonials Section */
        .testimonials-section {
          background: linear-gradient(
  to bottom,
  #ffffff 0%,
  #ffffff 28.9%,
  #1a1a1a 20%,
  #1a1a1a 100%
);
            padding: 80px 60px;
        }

        .testimonials-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .testimonials-title h2 {
            font-size: 48px;
            font-weight: 800;
            color: #000000;
            margin-bottom: 15px;
        }

      .testimonials-title p {
    font-size: 16px;
    color: black;
    max-width: 600px;
    margin: 0 auto 100px auto; /* bottom spacing added */
    line-height: 1.6;
}

        .testimonials-container {
            display: flex;
            justify-content: center;
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap;
        }

        .testimonial-card {
            background: #fff;
            border-radius: 20px;
            padding: 40px 30px;
            width: 300px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            position: relative;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        .testimonial-image {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            
            margin: -50px auto 20px auto;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 4px solid #1a1a1a ;
            overflow: hidden;
            position: relative;
            top: -50px;
        }

        .testimonial-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .testimonial-text {
            font-size: 16px;
            color: #333;
            line-height: 1.6;
            max-width: 120%;
            margin-bottom: 20px;
            font-style: italic;
        }

        .testimonial-text::before {
            content: '"';
            font-size: 22px;
            color: #7c3aed;
            margin-right: 5px;
        }

        .testimonial-text::after {
            content: '"';
            font-size: 22px;
            color: #7c3aed;
            margin-left: 5px;
        }

        .testimonial-name {
            font-size: 18px;
            font-weight: 700;
            color: #7c3aed;
            margin-bottom: 10px;
        }

        .testimonial-stars {
            font-size: 20px;
            color: #fbbf24;
            letter-spacing: 2px;
        }

        /* Pricing Section */
        .pricing-section {
            background-color: #fff;
            padding: 80px 60px;
        }

        .pricing-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .pricing-title h2 {
            font-size: 48px;
            font-weight: 800;
            color: #000;
            margin-bottom: 15px;
        }

        .pricing-title p {
            font-size: 16px;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .pricing-container {
            display: flex;
            justify-content: center;
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap;
        }

        .pricing-card {
            background: #1a1a1a;
            border-radius: 24px;
            padding: 40px 30px;
            width: 320px;
            color: #fff;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .pricing-card.featured {
           background: linear-gradient(
    180deg,
    #7864F7 0%,
    #000000 70%,
    rgba(0, 0, 0, 0.5) 85%,
    #000 100%
);
            transform: scale(1.05);
            box-shadow: 0 20px 50px rgba(124, 58, 237, 0.3);
        }

        .pricing-card:hover:not(.featured) {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-5px);
            box-shadow: 0 25px 60px rgba(124, 58, 237, 0.4);
        }

        /* Portfolio Section */
        .portfolio-section {
            background-color: #fff;
            padding: 80px 60px;
        }

        .portfolio-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .portfolio-title h2 {
            font-size: 48px;
            font-weight: 800;
            color: #000;
            margin-bottom: 15px;
        }

        .portfolio-title p {
            font-size: 16px;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .portfolio-container {
            display: flex;
            flex-direction: column;
            gap: 60px;
        }

        .portfolio-category {
            margin-bottom: 40px;
        }

        .portfolio-category h3 {
            font-size: 32px;
            font-weight: 700;
            color: #000;
            margin-bottom: 30px;
            text-align: center;
        }

        .portfolio-grid {
            display: flex;
            gap: 20px;
            overflow: hidden;
            padding: 20px 0;
            margin: 0 auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
            width: 100%;
            max-width: 1600px;
        }

        .portfolio-grid::-webkit-scrollbar {
            display: none;
        }

        .portfolio-grid-wrapper {
            display: flex;
            gap: 20px;
            animation-play-state: running !important;
        }

        /* Short-form (5 per row) - faster scroll */
        #carousel-1 .portfolio-grid-wrapper {
            animation: autoScrollShorts 35s linear infinite !important;
        }

        /* Long-form (3 per row) - medium scroll */
        #carousel-2 .portfolio-grid-wrapper {
            animation: autoScrollLongform 40s linear infinite !important;
        }

        /* SaaS (3 per row) - medium scroll */
        #carousel-3 .portfolio-grid-wrapper {
            animation: autoScrollSaas 40s linear infinite !important;
        }

        @keyframes autoScrollShorts {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-100% - 100px));
            }
        }

        @keyframes autoScrollLongform {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-100% - 60px));
            }
        }

        @keyframes autoScrollSaas {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-100% - 60px));
            }
        }

        .portfolio-item {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            flex-shrink: 0;
        }

        /* YouTube Shorts (9:16 vertical aspect ratio) */
        #carousel-1 .portfolio-item {
            width: calc(20% - 16px);
            aspect-ratio: 9 / 16;
        }

        /* Long-form & SaaS (3 per row, 16:9 aspect ratio) */
        #carousel-2 .portfolio-item,
        #carousel-3 .portfolio-item {
            width: calc(33.333% - 14px);
            aspect-ratio: 16 / 9;
        }

        .portfolio-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .portfolio-item iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .portfolio-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: rgba(124, 58, 237, 0.9);
            color: #fff;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 10;
        }

        .portfolio-item:hover .portfolio-badge {
            opacity: 1;
        }

        .pricing-badge {
            font-size: 12px;
            font-weight: 700;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
            opacity: 0.9;
        }

        .pricing-card-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.3;
            white-space: nowrap;
        }

        .pricing-price {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 10px;
            color: #fff;
        }

        .pricing-price span {
            font-size: 16px;
            font-weight: 400;
            opacity: 0.9;
        }

        .pricing-description {
            font-size: 14px;
            margin-bottom: 30px;
            opacity: 0.85;
            line-height: 1.6;
        }

        .pricing-features {
            flex: 1;
            margin-bottom: 30px;
        }

        .pricing-feature {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
            font-size: 14px;
        }

        .pricing-feature-icon {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .pricing-feature-icon::after {
            content: '✓';
            color: #fff;
            font-weight: bold;
            font-size: 12px;
        }

        .pricing-card.featured .pricing-feature-icon {
            background: rgba(255, 255, 255, 0.3);
        }

        .pricing-button {
            background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
            color: #fff;
            border: none;
            padding: 14px 30px;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            width: 100%;
        }

        .pricing-card.featured .pricing-button {
             background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
            color: #fff;
            border: none;
            padding: 14px 30px;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            width: 100%;
        }

        .pricing-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(124, 58, 237, 0.4);
        }

        .pricing-card.featured .pricing-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(124, 58, 237, 0.4);
        }

       .faq-section {
    background: #fffefe;
    padding: 80px 100px; /* increased left & right spacing */
}

        .faq-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 80px 100px; 
            background: black;
            display: flex;
            gap: 50px;
            align-items: flex-start;
        }

        .faq-left {
            flex: 0 0 35%;
        }

        .faq-right {
            flex: 0 0 65%;
        }

        .faq-title {
            font-size: 28px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 40px;
            
        }

        .faq-box {
            background: #2a2a2a;
            padding: 40px 30px;
            border-radius: 16px;
            text-align: center;
        }

        .faq-icon {
            width: 80px;
            height: 40px;
            margin: 0 auto 25px auto;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
        }

        .faq-icon img {
            width: 100%;
           
        }

        .faq-box p {
            font-size: 14px;
            color: #fff;
            margin-bottom: 30px;
            font-weight: 500;
        }

        .faq-button {
            background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
            color: #fff;
            border: none;
            padding: 14px 40px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: inline-block;
        }

        .faq-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(124, 58, 237, 0.5);
        }

        .faq-items {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .faq-item {
            background: #2a2a2a;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            background: #333;
            box-shadow: 0 8px 20px rgba(124, 58, 237, 0.2);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 25px;
            font-size: 12px;
            font-weight: 600;
            color: #fff;
            user-select: none;
            transition: all 0.3s ease;
        }

        .faq-question::after {
            content: '▼';
            font-size: 14px;
            color: #7c3aed;
            transition: transform 0.3s ease;
            flex-shrink: 0;
            margin-left: 15px;
        }

        .faq-item.active .faq-question::after {
            transform: rotate(-180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background: #1a1a1a;
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
        }

        .faq-answer p {
            padding: 0 25px 20px 25px;
            font-size: 10px;
            color: #ccc;
            line-height: 1.6;
            margin: 0;
        }

        /* Portfolio Responsive Styles */
        @media (max-width: 1600px) {
            #carousel-1 .portfolio-item {
                width: calc(20% - 16px);
            }

            #carousel-2 .portfolio-item,
            #carousel-3 .portfolio-item {
                width: calc(33.333% - 14px);
            }
        }

        @media (max-width: 1024px) {
            #carousel-1 .portfolio-item {
                width: calc(20% - 16px);
            }

            #carousel-2 .portfolio-item,
            #carousel-3 .portfolio-item {
                width: calc(33.333% - 14px);
            }
        }

        @media (max-width: 768px) {
            .portfolio-section {
                padding: 50px 20px;
            }

            .portfolio-title h2 {
                font-size: 36px;
            }

            .portfolio-category h3 {
                font-size: 24px;
            }

            .portfolio-grid {
                gap: 12px;
                max-width: 100%;
            }

            #carousel-1 .portfolio-item {
                width: calc(20% - 10px);
            }

            #carousel-2 .portfolio-item,
            #carousel-3 .portfolio-item {
                width: calc(33.333% - 10px);
            }

            @keyframes autoScrollShorts {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(calc(-100% - 60px));
                }
            }

            @keyframes autoScrollLongform {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(calc(-100% - 60px));
                }
            }

            @keyframes autoScrollSaas {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(calc(-100% - 60px));
                }
            }
        }

        @media (max-width: 480px) {
            .portfolio-section {
                padding: 40px 15px;
            }

            .portfolio-title h2 {
                font-size: 28px;
            }

            .portfolio-category h3 {
                font-size: 20px;
            }

            .portfolio-grid {
                gap: 10px;
                max-width: 100%;
            }

            #carousel-1 .portfolio-item {
                width: calc(20% - 8px);
            }

            #carousel-2 .portfolio-item,
            #carousel-3 .portfolio-item {
                width: calc(33.333% - 8px);
            }

            @keyframes autoScrollShorts {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(calc(-100% - 50px));
                }
            }

            @keyframes autoScrollLongform {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(calc(-100% - 50px));
                }
            }

            @keyframes autoScrollSaas {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(calc(-100% - 50px));
                }
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .faq-section {
                padding: 50px 20px;
            }

            .faq-container {
                flex-direction: column;
                gap: 40px;
            }

            .faq-left,
            .faq-right {
                flex: 1 1 100%;
            }

            .faq-title {
                font-size: 32px;
            }

            .faq-question {
                font-size: 15px;
                padding: 18px 20px;
            }

            .faq-answer p {
                font-size: 14px;
                padding: 0 20px 18px 20px;
            }

            .faq-button {
                padding: 12px 30px;
                font-size: 15px;
            }

            header {
                padding: 12px 15px;
                justify-content: space-between;
                align-items: center;
            }

            .logo {
                gap: 8px;
                font-size: 18px;
                margin-right: auto;
            }

            .logo img {
                height: 40px;
            }

            .menu-btn {
                display: flex;
                margin-left: auto;
            }

            nav {
                flex-direction: column;
                gap: 0;
                margin-left: 0;
                margin-right: 0;
                text-align: left;
            }

            nav a {
                font-size: 14px;
            }

            .hero {
                padding: 60px 20px 60px 20px;
            }

            .hero h1 {
                font-size: 40px;
            }

            .hero p {
                font-size: 14px;
            }

            .hero-content {
                max-width: 100%;
            }

            .hero-whatsapp {
                bottom: 20px;
                right: 20px;
                padding: 12px 18px;
                border-radius: 14px;
            }

            .whatsapp-icon {
                width: 28px;
                height: 28px;
            }

            .whatsapp-text {
                font-size: 13px;
            }

            .services-section {
                padding: 50px 20px;
            }

            .services-title h2 {
                font-size: 36px;
            }

            .service-card {
                flex-direction: column !important;
                gap: 30px;
            }

            .service-card.reverse {
                flex-direction: column !important;
            }

            .service-content h3 {
                font-size: 24px;
            }

            .service-content p {
                font-size: 14px;
            }

            .why-choose-section {
                padding: 50px 20px;
            }

            .why-choose-title h2 {
                font-size: 36px;
            }

            .why-choose-title p {
                font-size: 14px;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .feature-card {
                padding: 30px 20px;
            }

            .feature-icon {
                width: 70px;
                height: 70px;
                font-size: 35px;
            }

            .feature-card h3 {
                font-size: 18px;
            }

            .feature-card p {
                font-size: 13px;
            }

            .testimonials-section {
                padding: 50px 20px;
            }

            .testimonials-title h2 {
                font-size: 36px;
            }

            .testimonials-container {
                gap: 20px;
            }

            .testimonial-card {
                width: 100%;
                max-width: 300px;
            }

            .pricing-section {
                padding: 50px 20px;
            }

            .pricing-title h2 {
                font-size: 36px;
            }

            .pricing-container {
                gap: 20px;
            }

            .pricing-card {
                width: 100%;
                max-width: 300px;
            }

            .pricing-card.featured {
                transform: scale(1);
            }

            .pricing-card.featured:hover {
                transform: translateY(-10px);
            }
        }

        @media (max-width: 480px) {
            .faq-section {
                padding: 40px 15px;
            }

            .faq-container {
                flex-direction: column;
                gap: 30px;
            }

            .faq-title {
                font-size: 24px;
                margin-bottom: 30px;
            }

            .faq-box {
                padding: 30px 20px;
            }

            .faq-icon {
                width: 70px;
                height: 70px;
                margin-bottom: 20px;
                font-size: 35px;
            }

            .faq-box p {
                font-size: 16px;
                margin-bottom: 25px;
            }

            .faq-question {
                font-size: 14px;
                padding: 16px 15px;
            }

            .faq-answer p {
                font-size: 13px;
                padding: 0 15px 16px 15px;
            }

            .faq-button {
                padding: 11px 25px;
                font-size: 14px;
            }

            header {
                padding: 12px 15px;
            }

            .logo {
                font-size: 16px;
                gap: 6px;
            }

            .logo img {
                height: 35px;
            }

            nav {
                gap: 8px;
            }

            nav a {
                font-size: 12px;
            }

            .book-btn {
                padding: 10px 20px;
                font-size: 12px;
            }

            .hero {
                padding: 50px 15px 50px 15px;
            }

            .hero h1 {
                font-size: 32px;
            }

            .hero p {
                font-size: 13px;
            }

            .hero-btn {
                padding: 12px 30px;
                font-size: 14px;
            }

            .hero-whatsapp {
                bottom: 15px;
                right: 15px;
                padding: 10px 14px;
                border-radius: 12px;
            }

            .whatsapp-icon {
                width: 24px;
                height: 24px;
            }

            .whatsapp-text {
                font-size: 12px;
            }

            .services-section {
                padding: 40px 15px;
            }

            .services-title h2 {
                font-size: 28px;
            }

            .services-title p {
                font-size: 14px;
            }

            .service-content h3 {
                font-size: 20px;
            }

            .service-content p {
                font-size: 13px;
            }

            .service-btn {
                padding: 10px 25px;
                font-size: 13px;
            }

            .why-choose-section {
                padding: 40px 15px;
            }

            .why-choose-title h2 {
                font-size: 28px;
            }

            .why-choose-title p {
                font-size: 13px;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .feature-card {
                padding: 25px 15px;
            }

            .feature-icon {
                width: 60px;
                height: 60px;
                font-size: 30px;
            }

            .feature-card h3 {
                font-size: 16px;
            }

            .feature-card p {
                font-size: 12px;
            }

            .testimonials-section {
                padding: 40px 15px;
            }

            .testimonials-title h2 {
                font-size: 28px;
            }

            .testimonials-title p {
                font-size: 13px;
            }

            .testimonials-container {
                flex-direction: column;
                gap: 15px;
            }

            .testimonial-card {
                width: 100%;
                max-width: 100%;
            }

            .testimonial-text {
                font-size: 14px;
            }

            .testimonial-name {
                font-size: 16px;
            }

            .pricing-section {
                padding: 40px 15px;
            }

            .pricing-title h2 {
                font-size: 28px;
            }

            .pricing-title p {
                font-size: 13px;
            }

            .pricing-container {
                flex-direction: column;
                gap: 15px;
            }

            .pricing-card {
                width: 100%;
                max-width: 100%;
            }

            .pricing-card.featured {
                transform: scale(1);
            }

            .pricing-card-title {
                font-size: 20px;
            }

            .pricing-price {
                font-size: 36px;
            }

            .pricing-feature {
                font-size: 13px;
            }

            .pricing-button {
                padding: 12px 25px;
                font-size: 13px;
            }
        }