
        :root {
            --primary-orange: #FF9A27;
            --secondary-orange: #FFD773;
            --dark: #000000;
            --light-gray: #BEBEBE;
            --text-gray: #686868;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            overflow-x: hidden;
            background: #fff;
        }

        /* Hero Section */
        .hero-section {
            background: #000;
            border-radius: 0 0 126px 126px;
            padding: 50px 0 120px;
            position: relative;
           
        }
         .customers-title span{
            font-size: 200px;line-height: 0.8;
        }
       

        /* Navigation */
        .navbar-custom {
            background: rgba(255, 255, 255, 0.25);
            border-radius: 92px;
            padding: 20px 40px;
            margin-bottom: 40px;
        }

        

        .navbar-nav .nav-link {
            color: var(--light-gray) !important;
            font-size: 22px;
            font-weight: 400;
            letter-spacing: -0.01em;
            margin: 0 20px;
            transition: color 0.3s;
        }

        .navbar-nav .nav-link:hover {
            color: #fff !important;
        }

       

        /* Logo */
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-image {
            width: 204px;
            height: 50px;
            object-fit: contain;
            flex-shrink: 0;
        }

        /* CTA Button */
        .btn-cta {
            background: var(--primary-orange);
            color: #fff;
            font-family: 'Tilt Warp', cursive;
            font-size: 22px;
            padding: 14px 48px;
            border-radius: 34px;
            border: none;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .btn-cta-orange{
           background: #FF9A27!important;
           color: #fff;
           font-family: 'Tilt Warp', cursive;
            font-size: 22px;
            padding: 14px 48px;
            border-radius: 34px;
            border: none;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .btn-cta:hover {
            background: var(--primary-orange);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 154, 39, 0.3);
        }

       
        /* Hero Content */
        .hero-title {
            font-family: 'Anton', sans-serif;
            font-size: 120px;
            line-height: 1.17;
            letter-spacing: 0.02em;
            background: linear-gradient(98.45deg, #F3822C 43.53%, #FFD773 99.84%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 30px;
        }


        .hero-subtitle {
            font-size: 40px;
            line-height: 1.3;
            letter-spacing: -0.01em;
            color: #fff;
            max-width: 780px;
        }

        

        /* Hero Video */
        .hero-video {
            background: linear-gradient(135deg, #FFD773 0%, #FF9A27 100%);
            border-radius: 60px;
            height: 570px;
            width: fit-content;
            margin-top: 100px;
            margin-bottom: -285px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .hero-video video{
          border-radius: 60px;
        }

        @media (max-width: 768px) {
            .hero-video {
                height: 400px;
                margin-top: 60px;
                margin-bottom: -200px;
                border-radius: 40px;
            }
        }

        @media (max-width: 576px) {
            .hero-video {
                height: 300px;
                margin-top: 40px;
                margin-bottom: -150px;
                border-radius: 30px;
            }
        }

        .play-button {
            width: 120px;
            height: 120px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform 0.3s;
            position: relative;
        }

        .play-button:hover {
            transform: scale(1.1);
        }

        .play-button::after {
            content: '';
            width: 0;
            height: 0;
            border-left: 30px solid var(--primary-orange);
            border-top: 20px solid transparent;
            border-bottom: 20px solid transparent;
            margin-left: 8px;
        }

        @media (max-width: 768px) {
            .play-button {
                width: 90px;
                height: 90px;
            }
            .play-button::after {
                border-left: 22px solid var(--primary-orange);
                border-top: 15px solid transparent;
                border-bottom: 15px solid transparent;
            }
        }

        /* Services Section */
        .section-title {
            font-family: 'Anton', sans-serif;
            font-size: 120px;
            line-height: 1.3;
            letter-spacing: -0.03em;
            text-align: center;
            color: #000;
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 70px;
            }
        }

        @media (max-width: 576px) {
            .section-title {
                font-size: 50px;
            }
        }

        .section-subtitle {
            font-family: 'Anton', sans-serif;
            font-size: 64px;
            line-height: 1.3;
            letter-spacing: -0.03em;
            text-align: center;
            background: linear-gradient(98.47deg, #F3822C 43.52%, #FFD773 112.71%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 40px;
        }

        @media (max-width: 768px) {
            .section-subtitle {
                font-size: 42px;
            }
            .service-card{
                min-height: 100%;
                width: 80%;
                margin: auto;
            }
            .service-card.orange{
                border-radius: 25px;
            }
            .service-card.blend{
                border-radius: 25px;
            }
        }

     

        .services-diagram {
            position: relative;
            min-height: 1200px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
@media (max-width: 768px) {
    .services-diagram {
        min-height: 600px;
    }
}


     .navbar-toggler{
        background: #fff;
     }
        .service-line {
           position: absolute;
    width: 100%;
    height: 100%;
    background: url(images/curve-path.png);
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 20px;
    right: 50%;
    background-attachment: local;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
        }

        @media (max-width: 768px) {
            .service-line {
                display: block;
            }
        }

        .service-item {
            position: absolute;
            display: flex;
            align-items: center;
            gap: 40px;
        }

        @media (max-width: 768px) {
            .service-item {
                position: relative !important;
                margin-bottom: 60px;
                flex-direction: column;
                text-align: center;
            }
        }

        .service-icon {
            width: 122px;
            height: 122px;
           
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 50px;
            flex-shrink: 0;
        }

        .service-title {
            font-size: 32px;
            line-height: 1.3;
            letter-spacing: -0.01em;
            text-transform: uppercase;
            color: #000;
            font-weight: 400;
            max-width: 350px;
        }
         .dec-back img{
       
        width: 100%;
         }
        /* Description Section */
        .description-text {
            font-size: 24px;
            line-height: 1.3;
            letter-spacing: -0.01em;
            text-align: center;
            color: var(--text-gray);
            max-width: 960px;
            margin: 80px auto;
        }

        @media (max-width: 768px) {
            .description-text {
                font-size: 18px;
                margin: 50px auto;
            }
        }

        /* Work Section */
        .work-section {
            background: #000;
            padding: 100px 0;
            position: relative;
        }

        @media (max-width: 768px) {
            .work-section {
                padding: 60px 0;
            }
        }

        .work-title {
            font-family: 'Anton', sans-serif;
            font-size: 80px;
            line-height: 0.94;
            letter-spacing: -0.01em;
            text-align: center;
            color: #fff;
        }

        .work-title-orange {
            color: var(--primary-orange);
        }

        @media (max-width: 768px) {
            .work-title {
                font-size: 50px;
            }
        }

        .work-gallery {
            margin-top: 80px;
            position: relative;
        }

        .work-item {
            background: #fff;
            opacity: 0.47;
            border-radius: 18px;
            height: 400px;
            transition: all 0.3s;
        }

        .work-item:hover {
            opacity: 1;
        }

        .work-item.active {
            background: var(--primary-orange);
            opacity: 1;
            border-radius: 18px 18px 18px 80px;
            height: 522px;
        }

        .work-item-inner {
            background: #010101;
            border-radius: 26px;
            margin: 28px;
            height: calc(100% - 56px);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 40px;
        }

        .work-item-number {
            font-size: 42px;
            font-weight: 700;
            letter-spacing: -0.01em;
            color: #fff;
            line-height: 0.98;
        }

        .work-item-title {
            font-size: 38px;
            font-weight: 700;
            letter-spacing: -0.01em;
            color: #fff;
            line-height: 1.17;
            margin-top: 20px;
        }

        /* Customers Section */
        .customers-section {
            padding: 100px 0 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .pillar-im{
           margin-top: -12%;
          }
          .pillar-im img{
           width: 100%;
          }  
        @media (max-width: 768px) {
            .customers-section {
                padding: 60px 0 0;
                overflow: hidden;
            }
        }

        .customers-title {
            font-family: 'Anton', sans-serif;
            font-size: 80px;
            letter-spacing: -0.01em;
            color: #000;
            margin-bottom: 60px;
           
          
        }

        @media (max-width: 768px) {
            .customers-title {
                font-size: 50px;
            }
        }

        .customer-logo {
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 120px;
        }

        .customer-logo img {
            max-width: 100%;
            height: auto;
            opacity: 0;
          
        }

       
/* Why Choose Us Section */
        .why-section {
            background: #000;
            padding:  0;
            position: relative;
            overflow: hidden;
        }

/* Circular Cursor */
        .cursor-circle {
            position: fixed;
            width: 180px;
            height: 180px;
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            transform: translate(-50%, -50%);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            background: radial-gradient(50% 50% at 50% 50%, #FF9A27 0%, rgba(153, 92, 23, 0.7) 70%, rgba(153, 92, 23, 0) 100%);
        }

        .cursor-circle.visible {
            opacity: 1;
        }

        .cursor-circle-text {
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            text-align: center;
            line-height: 1.4;
            padding: 10px;
        }

        .cursor-circle-text .brand {
            display: block;
            font-size: 16px;
            letter-spacing: 1px;
        }

        .cursor-circle-text .over {
            display: block;
            color: #fff;
        }

        .cursor-circle-text .brunch {
            display: block;
            letter-spacing: 2px;
        }

        /* Background Reveal Text */
        .background-reveal {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 400px;
            height: 400px;
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
        }

        .background-reveal.visible {
            opacity: 0.15;
        }

        .background-reveal svg {
            width: 100%;
            height: 100%;
        }

        /* Why Card Hover Effect */
        .why-card {
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }

        .why-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(255, 154, 39, 0.3);
        }

        .why-card.highlighted {
            background: var(--primary-orange) !important;
        }

        .why-card.highlighted .why-number,
        .why-card.highlighted .why-card-title,
        .why-card.highlighted .why-card-text {
            color: #fff !important;
        }

        @media (max-width: 768px) {
            .why-section {
                padding: 60px 0;
            }
        }

        .why-card {
            background: #fff;
            border-radius: 20px;
            padding: 30px;
            height: 100%;
            min-height: 277px;
            width: 277px;
            margin: auto;
        }

        .why-card.orange {
            background: url(images/hover.png);
                background-size: cover;
    background-position: center;
        }
        .why-card.org {
            background: url(images/sd.png);
                background-size: cover;
    background-position: center;
        }

        .why-number {
            font-size: 70px;
            font-weight: 600;
            letter-spacing: -0.01em;
            line-height: 0.98;
            color: var(--primary-orange);
        }

        .why-card.orange .why-number {
            color: #fff;
        }

        .why-card-title {
            font-size: 26px;
            font-weight: 700;
            letter-spacing: -0.01em;
            line-height: 0.98;
            margin: 28px 0 14px;
        }

        .why-card.orange .why-card-title {
            color: #fff;
        }

        .why-card-text {
            font-size: 18px;
            line-height: 1.3;
            letter-spacing: -0.01em;
        }

        .why-card.orange .why-card-text {
            color: #fff;
        }

        /* Services Cards Section */
        .services-cards-section {
            padding: 100px 0;
        }

        @media (max-width: 768px) {
            .services-cards-section {
                padding: 60px 0;
            }
        }

        .service-card {
            border: 1px solid #000;
            border-radius: 25px;
            padding: 40px 30px 0px;
            height: 100%;
            min-height: 222px;
            background: #fff;
            transition: all 0.3s;
            position: relative;
        }

        .service-card:hover {
        background-image: url("images/hover.png"); /* YOUR IMAGE */
        background-size: cover;
        background-position: center;
        color: #fff;
        border-color: #fff;
        }
        .service-card:hover .service-card-text {
                color: #fff;
                }
                .service-card:hover::after{
                    content: "";
            position: absolute;
                left: 0;
    top: -110px;

            width: 100%;
            height: 200px;
            background-image: url("images/3d-egg.png");
            background-size: contain;
            background-repeat:no-repeat ;
            background-position: center;
          
                }

        .service-card.orange {
          
            border-radius: 120px 25px 25px 25px;
        }
        .service-card.blend {
               border-radius: 25px 120px 25px 25px;
                }
        
        .service-card-title {
            font-size: 32px;
            font-weight: 700;
            letter-spacing: -0.01em;
            line-height: 0.98;
            margin-bottom: 20px;
        }

        

        .service-card-text {
            font-size: 14px;
            line-height: 1.3;
            letter-spacing: -0.01em;
            color: var(--text-gray);
        }

        
        /* Testimonials Section */
        .testimonials-section {
            background: #000;
            padding: 100px 0;
        }

        @media (max-width: 768px) {
            .testimonials-section {
                padding: 60px 0;
            }
        }

        .testimonials-title {
            font-size: 80px;
            font-weight: 700;
            letter-spacing: -0.01em;
            line-height: 0.94;
            text-align: center;
            color: #fff;
            margin-bottom: 30px;
        }

        @media (max-width: 768px) {
            .testimonials-title {
                font-size: 50px;
            }
        }

        .testimonials-subtitle {
            font-size: 22px;
            line-height: 1.3;
            letter-spacing: -0.01em;
            text-align: center;
            color: #fff;
            margin-bottom: 80px;
        }

        @media (max-width: 768px) {
            .testimonials-subtitle {
                font-size: 18px;
            }
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.22);
            border: 1px solid #fff;
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 20px;
        }

        .testimonial-text {
            font-size: 25px;
            line-height: 1.3;
            letter-spacing: -0.01em;
            color: #fff;
        }

        @media (max-width: 768px) {
            .testimonial-text {
                font-size: 18px;
            }
        }

        /* Testimonial Carousel Styles */
        .testimonial-carousel-wrapper {
            overflow: hidden;
            height: 550px;
            position: relative;
        }

        .testimonial-carousel {
            display: flex;
            flex-direction: column;
            animation: scrollUp 40s linear infinite;
            position: absolute;
            width: 100%;
        }

        .testimonial-carousel:hover {
            animation-play-state: paused;
        }

        @keyframes scrollUp {
            0% {
                transform: translateY(0);
            }
            100% {
                transform: translateY(-50%);
            }
        }

        /* Responsive adjustments */
        @media (max-width: 991px) {
            .testimonial-carousel-wrapper {
                height: 400px;
            }
        }

        @media (max-width: 768px) {
            .testimonial-carousel-wrapper {
                height: 400px;
            }
            
            .testimonial-text {
                font-size: 16px;
            }
            
            .testimonial-card {
                padding: 20px;
            }
        }

        /* Mission Vision Section */
        .mission-vision-section {
            padding: 100px 0;
            position: relative;
        }
        .mission-vision-section::after {
            content: "";
            position: absolute;
            right: 0;
               top: 2%;
            width: 12%;
            height: 30%;
            background-image: url("images/els.png"); /* your image path */
            background-repeat: no-repeat;
            background-size: contain; /* or cover */
            background-position: center;
           
            pointer-events: none;  /* click block na ho */
            }
        @media (max-width: 768px) {
            .mission-vision-section {
                padding: 60px 0;
            }
        }

        .mv-title {
            font-family: 'Anton', sans-serif;
            font-size: 120px;
            line-height: 1.3;
            letter-spacing: -0.03em;
            color: #000;
            text-align: center;
        }

        @media (max-width: 768px) {
            .mv-title {
                font-size: 70px;
            }
        }

        .mv-text {
            font-size: 28px;
            line-height: 1.3;
            letter-spacing: -0.01em;
            color: #000;
            
            align-items: center;
          
        }
         .mission-chec{
            display: flex;
                align-items: flex-end;
         }
        @media (max-width: 768px) {
            .mv-text {
                font-size: 20px;
            }
        }

        .mv-number {
            font-size: 200px;
            font-weight: 700;
            color: var(--primary-orange);
            opacity: 0.4;
            height: 260px;
            align-items: center;
            
            
        }

        /* CTA Section */
        .cta-section {
           
            padding: 100px 0;
            text-align: center;
            position: relative;
        }

        @media (max-width: 768px) {
            .cta-section {
                padding: 60px 0;
            }
        }

        .cta-title {
            font-size: 80px;
            font-weight: 700;
            letter-spacing: -0.05em;
            line-height: 1.16;
            color: #000;
            margin-bottom: 40px;
        }
         #services{
            margin-top: 120px;
         }
        @media (max-width: 768px) {
            .cta-title {
                font-size: 50px;
            }
        }

        @media (max-width: 576px) {
            .cta-title {
                font-size: 35px;
            }
        }

/* Additional Mobile Responsiveness - Only for Mobile View */
@media (max-width: 768px) {
    /* Hero Section Mobile Improvements */
    .hero-section {
        padding: 20px 0 60px;
        border-radius: 0 0 40px 40px;
    }

    .navbar-custom {
        padding: 12px 15px;
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: 48px !important;
        line-height: 1.1 !important;
        margin-bottom: 20px !important;
    }

    .hero-subtitle {
        font-size: 20px !important;
        line-height: 1.4 !important;
        max-width: 100% !important;
    }

    .hero-video {
        height: 100% !important;
        margin-top: 30px !important;
        margin-bottom: -140px !important;
        border-radius: 25px !important;
    }
    .hero-video video {
      border-radius: 25px;
    }

    .play-button {
        width: 70px !important;
        height: 70px !important;
    }

    .play-button::after {
        border-left: 18px solid var(--primary-orange) !important;
        border-top: 12px solid transparent !important;
        border-bottom: 12px solid transparent !important;
    }

    /* Services Section Mobile */
    .section-title {
        font-size: 55px !important;
        line-height: 1.2 !important;
    }

    .section-subtitle {
       
        margin-bottom: 30px !important;
    }

    .description-text {
        font-size: 16px !important;
        line-height: 1.4 !important;
        margin: 40px auto !important;
    }

    /* Work Section Mobile */
    .work-title {
        font-size: 40px !important;
        line-height: 0.9 !important;
    }

    /* Customers Section Mobile */
    .customers-title {
        font-size: 40px !important;
    }

    

    /* Why Section Mobile */
    

    

   

    /* Services Cards Mobile */
    .service-card {
        padding: 30px 20px 0px !important;
        margin-bottom: 30px !important;
    }

    

    /* Testimonials Mobile */
    .testimonials-title {
        font-size: 40px !important;
    }

    .testimonials-subtitle {
        font-size: 16px !important;
        margin-bottom: 60px !important;
    }

    .testimonial-text {
        font-size: 14px !important;
    }

    .testimonial-card {
        padding: 15px !important;
        margin-bottom: 15px !important;
    }

    /* Mission Vision Mobile */
    .mv-title {
        font-size: 80px !important;
    }

    .mv-text {
        font-size: 18px !important;
        line-height: 1.4 !important;
    }

    .mv-number {
        font-size: 120px !important;
        height: 160px !important;
    }

    /* CTA Section Mobile */
    .cta-title {
        font-size: 40px !important;
        line-height: 1.2 !important;
    }

    .cta-subtitle {
        font-size: 20px !important;
    }

    /* Footer Mobile */
    footer {
      background: url(images/footerback-ph.png)!important;
        padding: 50px 0px 10px 0px !important;
        background-position: top!important;
        background-size: cover!important;
        background-repeat: no-repeat!important;
    }

    .footer-email {
        font-size: 18px !important;
        text-align: center;
        display: block!important;
    }
      .social-icons{
        text-align: center;
      }
    .social-icons a {
        font-size: 20px !important;
    }

    /* Container adjustments for mobile */
    .container-1500 {
        padding: 0 15px !important;
    }

    /* Button improvements for mobile */
    .btn-cta {
        font-size: 16px !important;
        padding: 10px 30px !important;
        width: auto !important;
        min-width: 120px !important;
    }

    .btn-cta-white {
        font-size: 16px !important;
        padding: 10px 30px !important;
    }

    /* Carousel mobile improvements */
    .carousel-container {
        height: 350px !important;
    }

    .carousel-item-3d {
        width: 180px !important;
        height: 250px !important;
    }

    .nav-btn {
        width: 40px !important;
        height: 40px !important;
        font-size: 18px !important;
    }

    .btn-prev {
        left: 5px !important;
    }

    .btn-next {
        right: 5px !important;
    }

    .card-info {
        padding: 15px !important;
    }

    .card-info h5 {
        font-size: 14px !important;
    }

    .card-info p {
        font-size: 11px !important;
    }

    /* Spacing improvements */
    .py-section {
        padding: 40px 0 !important;
    }

    /* Mission vision layout fix */
    .mission-chec {
       
        gap: 20px !important;
    }
.dec-back img {
    display: none;
}
    .mv-text.text-end {
        text-align: left !important;
    }

    /* Why cards grid fix */
    .row.g-4.mt-4 .col-lg-4,
    .row.g-4.mt-4 .col-lg-8,
    .row.g-4.mt-4 .col-md-4,
    .row.g-4.mt-4 .col-md-8 {
        margin-bottom: 20px !important;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile improvements */
    .hero-title {
        font-size: 40px !important;
    }

    .hero-subtitle {
        font-size: 18px !important;
    }

    .section-title {
        font-size: 45px !important;
    }

    

    .work-title {
        font-size: 35px !important;
    }

    .customers-title {
        font-size: 35px !important;
    }

 
    .testimonials-title {
        font-size: 35px !important;
    }

    .mv-title {
        font-size: 60px !important;
    }

    .cta-title {
        font-size: 35px !important;
    }

    .carousel-container {
        height: 300px !important;
    }

    .carousel-item-3d {
        width: 150px !important;
        height: 200px !important;
    }
}

        .cta-subtitle {
            font-size: 32px;
            font-weight: 600;
            letter-spacing: 0.01em;
            color: #000;
            margin-bottom: 10px;
        }

        @media (max-width: 768px) {
            .cta-subtitle {
                font-size: 24px;
            }
        }

        .btn-cta-white {
            background: #fff!important;
            color: var(--primary-orange)!important;
            font-family: 'Tilt Warp', cursive!important;
            font-size: 22px!important;
            padding: 14px 48px!important;
            border-radius: 34px!important;
            border: none;
            transition: transform 0.3s;
        }

        .btn-cta-white:hover {
            transform: translateY(-2px);
            background: #fff;
            color: var(--primary-orange);
        }

        /* Footer */
        footer {
          background: url(images/footerback.png);
      
    background-position: top;
    background-size: cover;
     overflow: hidden;
    padding: 200px 0px 30px 0px;
   
        }

        .footer-email {
            font-size: 22px;
            color: #0C0C0C;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .social-icons a {
            color: #000;
            font-size: 24px;
            margin-left: 15px;
            transition: color 0.3s;
        }

        .social-icons a:hover {
            color: var(--primary-orange);
        }

        /* Spacing utilities */
        .py-section {
            padding: 100px 0;
        }

        @media (max-width: 768px) {
            .py-section {
                padding: 60px 0;
            }
        }

        /* Container 1500px for desktop */
        .container-1500 {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 15px;
        }

        @media (max-width: 1500px) {
            .container-1500 {
                max-width: 100%;
                padding: 0 20px;
            }
        }
        .our-spread {
  padding: 80px 20px;
  text-align: center;
  background: #fff;
  font-family: Arial, sans-serif;
}

.our-spread h2 {
  font-size: 36px;
  font-weight: 800;
}

.subtitle {
  color: #ff7a00;
  font-weight: 700;
  margin-bottom: 50px;
}

.spread-wrapper {
  position: relative;
  width: 260px;
  margin: 0 auto;
}

/* Curved orange path image */
.spread-path {
  width: 100%;
  display: block;
}

/* White circles */
.node {
  position: absolute;
  width: 58px;
  height: 58px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* POSITIONING (matches image flow) */
.node-1 { top: 20px; left: 40px; }
.node-2 { top: 120px; left: 150px; }
.node-3 { top: 220px; left: 40px; }
.node-4 { top: 320px; left: 150px; }
.node-5 { top: 420px; left: 40px; }
.node-6 { top: 520px; left: 150px; }
.node-7 { top: 620px; left: 40px; }
.node-8 { top: 720px; left: 150px; }
.node-9 { top: 820px; left: 40px; }

.note {
  font-size: 11px;
  max-width: 500px;
  margin: 40px auto 25px;
  color: #666;
}

.btn {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 16px 74px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 400;
  font-size: 22px;
}
.test-img{
    padding: 10px 20px;
}
.testimonial-card span{
    color: #fff;
}
    
.wrk-ga{
        align-items: center;
    justify-content: center;
    display: flex;
    margin-top: 60px;

}

.carousel-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  height: 600px;
  perspective: 1800px;
}

.carousel-wrapper {
  position: absolute;
  top: 0%;
  left: 38%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.carousel-3d {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.carousel-item-3d {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  height: 480px;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-3d {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: #1a1a1a;
  
  position: relative;
  transform-style: preserve-3d;
 
  transform: perspective(800px) rotateY(0deg);
}

.card-3d img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

/* Active Card - Center with slight curve */
.carousel-item-3d.active .card-3d {
   transform: perspective(800px) rotateY(0deg) scale(1.05);
}

/* Side Cards - Faded gray with angle */
.carousel-item-3d:not(.active) .card-3d {
  background: #666;
  filter: brightness(0.5) grayscale(1);
}

.carousel-item-3d.active .card-3d {
  filter: brightness(1) grayscale(0);
}

/* Hide cards behind (only show 5: 2 left, center, 2 right) */
.carousel-item-3d.hidden {
  opacity: 0 !important;
  pointer-events: none;
  visibility: hidden;
}

/* Left cards - angled inward */
.carousel-item-3d.left-1 .card-3d {
  transform: perspective(800px) rotateY(45deg);
}

.carousel-item-3d.left-2 .card-3d {
  transform: perspective(800px) rotateY(55deg);
}

/* Right cards - angled inward */
.carousel-item-3d.right-1 .card-3d {
  transform: perspective(800px) rotateY(-45deg);
}

.carousel-item-3d.right-2 .card-3d {
  transform: perspective(800px) rotateY(-55deg);
}

/* Card Info Overlay */
.card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(255, 140, 0, 0.95), transparent);
  color: white;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s;
}

.carousel-item-3d.active .card-info {
  opacity: 1;
}

.card-info h5 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  color: white;
}

.card-info p {
  font-size: 16px;
  opacity: 0.9;
  margin: 0;
}

/* Navigation Buttons - Circular with Icons */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  transition: all 0.3s;
  font-size: 28px;
  font-weight: bold;
}

.nav-btn:hover {
  background: rgba(255, 140, 0, 0.3);
  border-color: rgba(255, 140, 0, 0.6);
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 0 30px rgba(255, 140, 0, 0.5);
}

.nav-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.btn-prev {
  left: 40px;
}

.btn-next {
  right: 40px;
}

/* Pagination - Circular Dots */
.carousel-pagination {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 100;
  align-items: center;
}

.pagination-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.pagination-dot:hover {
  background: rgba(255, 140, 0, 0.5);
  transform: scale(1.3);
}

.pagination-dot.active {
  background: #ff8c00;
  width: 18px;
  height: 18px;
  border-color: rgba(255, 140, 0, 0.5);
  box-shadow: 0 0 20px rgba(255, 140, 0, 0.7);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .carousel-container {
    height: 500px;
  }
  
  .carousel-item-3d {
    width: 280px;
    height: 400px;
  }
  
  .card-info h5 {
    font-size: 20px;
  }
  
  .card-info p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .carousel-container {
    height: 450px;
  }
  
  .carousel-item-3d {
    width: 240px;
    height: 340px;
  }
  
  .nav-btn {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  
  .btn-prev {
    left: 20px;
  }
  
  .btn-next {
    right: 20px;
  }
  
  .card-info {
    padding: 20px;
  }
  
  .card-info h5 {
    font-size: 18px;
  }
  
  .card-info p {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .carousel-container {
    height: 400px;
  }
  
  .carousel-item-3d {
    width: 200px;
    height: 300px;
  }
  
  .nav-btn {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
  
  .btn-prev {
    left: 10px;
  }
  
  .btn-next {
    right: 10px;
  }
  
  .pagination-dot {
    width: 12px;
    height: 12px;
  }
  
  .pagination-dot.active {
    width: 16px;
    height: 16px;
  }
  
  .carousel-pagination {
    bottom: 30px;
    gap: 12px;
  }
  
  .card-info h5 {
    font-size: 16px;
  }
  
  .card-info p {
    font-size: 12px;
  }
}
    

.carousel-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  height: 600px;
  perspective: 1800px;
}

.carousel-wrapper {
  position: absolute;
  top: 0;
  left: 38%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.carousel-3d {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.carousel-item-3d {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  height: 480px;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-3d {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: #1a1a1a;
  position: relative;
  transform-style: preserve-3d;
  transform: perspective(800px) rotateY(0deg);
}

.card-3d img,
.card-3d video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.card-3d video {
  pointer-events: none;
}

/* Active Card - Center with slight curve */
.carousel-item-3d.active .card-3d {
  transform: perspective(800px) rotateY(0deg) scale(1.05);
}

/* Side Cards - Faded gray with angle */
.carousel-item-3d:not(.active) .card-3d {
  background: #666;
  filter: brightness(0.5) grayscale(1);
}

.carousel-item-3d.active .card-3d {
  filter: brightness(1) grayscale(0);
}

/* Hide cards behind (only show 5: 2 left, center, 2 right) */
.carousel-item-3d.hidden {
  opacity: 0 !important;
  pointer-events: none;
  visibility: hidden;
}

/* Left cards - angled inward */
.carousel-item-3d.left-1 .card-3d {
  transform: perspective(800px) rotateY(45deg);
}

.carousel-item-3d.left-2 .card-3d {
  transform: perspective(800px) rotateY(55deg);
}

/* Right cards - angled inward */
.carousel-item-3d.right-1 .card-3d {
  transform: perspective(800px) rotateY(-45deg);
}

.carousel-item-3d.right-2 .card-3d {
  transform: perspective(800px) rotateY(-55deg);
}

/* Card Info Overlay */
.card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(255, 140, 0, 0.95), transparent);
  color: white;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s;
}

.carousel-item-3d.active .card-info {
  opacity: 1;
}

.card-info h5 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  color: white;
}

.card-info p {
  font-size: 16px;
  opacity: 0.9;
  margin: 0;
}

/* Navigation Buttons - Circular with Icons */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  transition: all 0.3s;
  font-size: 28px;
  font-weight: bold;
}

.nav-btn:hover {
  background: rgba(255, 140, 0, 0.3);
  border-color: rgba(255, 140, 0, 0.6);
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 0 30px rgba(255, 140, 0, 0.5);
}

.nav-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.btn-prev {
  left: 40px;
}

.btn-next {
  right: 40px;
}

/* Pagination - Circular Dots */
.carousel-pagination {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 100;
  align-items: center;
}

.pagination-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.pagination-dot:hover {
  background: rgba(255, 140, 0, 0.5);
  transform: scale(1.3);
}

.pagination-dot.active {
  background: #ff8c00;
  width: 18px;
  height: 18px;
  border-color: rgba(255, 140, 0, 0.5);
  box-shadow: 0 0 20px rgba(255, 140, 0, 0.7);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .carousel-container {
    height: 500px;
  }
  
  .carousel-item-3d {
    width: 280px;
    height: 420px;
  }
  
  .card-info h5 {
    font-size: 20px;
  }
  
  .card-info p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .carousel-container {
    height: 500px;
    perspective: 1200px;
  }
  
  .carousel-item-3d {
    width: 260px;
    height: 380px;
  }
  
  .nav-btn {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  
  .btn-prev {
    left: 15px;
  }
  
  .btn-next {
    right: 15px;
  }
  
  .card-info {
    padding: 20px;
  }
  
  .card-info h5 {
    font-size: 18px;
  }
  
  .card-info p {
    font-size: 13px;
  }

  .card-3d {
    border-radius: 18px;
  }
}

@media (max-width: 576px) {
  .carousel-container {
    height: 450px;
    perspective: 1000px;
  }
  
  .carousel-item-3d {
    width: 220px;
    height: 340px;
  }
  
  .nav-btn {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
  
  .btn-prev {
    left: 10px;
  }
  
  .btn-next {
    right: 10px;
  }
  
  .pagination-dot {
    width: 12px;
    height: 12px;
  }
  
  .pagination-dot.active {
    width: 16px;
    height: 16px;
  }
  
  .carousel-pagination {
    bottom: 25px;
    gap: 10px;
  }
  
  .card-info {
    padding: 15px;
  }
  
  .card-info h5 {
    font-size: 16px;
  }
  
  .card-info p {
    font-size: 12px;
  }

  .card-3d {
    border-radius: 16px;
  }
}

@media (max-width: 400px) {
  .carousel-container {
    height: 400px;
  }
  
  .carousel-item-3d {
    width: 180px;
    height: 280px;
  }

  .card-info {
    padding: 12px;
  }

  .card-info h5 {
    font-size: 14px;
    margin-bottom: 4px;
  }
  
  .card-info p {
    font-size: 11px;
  }

  .nav-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

.carousel-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  height: 600px;
  perspective: 1800px;
}

.carousel-wrapper {
  position: absolute;
  top: 0%;
  left: 38%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.carousel-3d {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.carousel-item-3d {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  height: 480px;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-3d {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: #1a1a1a;
  position: relative;
  transform-style: preserve-3d;
  transform: perspective(800px) rotateY(0deg);
}

.card-3d img,
.card-3d video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.card-3d video {
  pointer-events: none;
}

/* Video Controls */
.video-controls {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s;
}

.carousel-item-3d.active .video-controls {
  opacity: 1;
}

.control-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 18px;
}

.control-btn:hover {
  background: rgba(255, 140, 0, 0.8);
  border-color: rgba(255, 140, 0, 0.6);
  transform: scale(1.1);
}

.control-btn:active {
  transform: scale(0.95);
}

/* Active Card - Center with slight curve */
.carousel-item-3d.active .card-3d {
  transform: perspective(800px) rotateY(0deg) scale(1.05);
}

/* Side Cards - Faded gray with angle */
.carousel-item-3d:not(.active) .card-3d {
  background: #666;
  filter: brightness(0.5) grayscale(1);
}

.carousel-item-3d.active .card-3d {
  filter: brightness(1) grayscale(0);
}

/* Hide cards behind (only show 5: 2 left, center, 2 right) */
.carousel-item-3d.hidden {
  opacity: 0 !important;
  pointer-events: none;
  visibility: hidden;
}

/* Left cards - angled inward */
.carousel-item-3d.left-1 .card-3d {
  transform: perspective(800px) rotateY(45deg);
}

.carousel-item-3d.left-2 .card-3d {
  transform: perspective(800px) rotateY(55deg);
}

/* Right cards - angled inward */
.carousel-item-3d.right-1 .card-3d {
  transform: perspective(800px) rotateY(-45deg);
}

.carousel-item-3d.right-2 .card-3d {
  transform: perspective(800px) rotateY(-55deg);
}

/* Navigation Buttons - Circular with Icons */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  transition: all 0.3s;
  font-size: 28px;
  font-weight: bold;
}

.nav-btn:hover {
  background: rgba(255, 140, 0, 0.3);
  border-color: rgba(255, 140, 0, 0.6);
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 0 30px rgba(255, 140, 0, 0.5);
}

.nav-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.btn-prev {
  left: 40px;
}

.btn-next {
  right: 40px;
}

/* Pagination - Circular Dots */
.carousel-pagination {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 100;
  align-items: center;
}

.pagination-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.pagination-dot:hover {
  background: rgba(255, 140, 0, 0.5);
  transform: scale(1.3);
}

.pagination-dot.active {
  background: #ff8c00;
  width: 18px;
  height: 18px;
  border-color: rgba(255, 140, 0, 0.5);
  box-shadow: 0 0 20px rgba(255, 140, 0, 0.7);
}


        /* Main contain */
        .contain {
            position: relative;
            width: 100vw;
            max-width: 1510px;
            height: 1420px;
            margin: 0 auto;
            background: #000000;
            overflow: hidden;
        }

        /* Orange Glow Effect */
        .glow {
            position: absolute;
            width: 762px;
            height: 762px;
            left: 755px;
            top: 338px;
            background: radial-gradient(50% 50% at 50% 50%, #FF9A27 0%, rgba(153, 92, 23, 0) 100%);
            opacity: 0.66;
            filter: blur(15.5px);
            pointer-events: none;
        }

        /* Background Text BRANDS OVER BRUNCH */
        .bg-text {
            position: absolute;
            width: 414px;
            height: 309px;
            left: 1010px;
            top: 560px;
            font-family: 'Tilt Warp', sans-serif;
            font-weight: 400;
            font-size: 98px;
            line-height: 91%;
            letter-spacing: -0.07em;
            color: #FF9A27;
            opacity: 0.22;
            pointer-events: none;
            transition: transform 0.3s ease-out;
        }

        /* Header */
        .header {
            position: absolute;
            width: 729px;
            height: 75px;
            left: 50%;
            transform: translateX(-50%);
            top: 123px;
            font-family: 'Anton', sans-serif;
            font-weight: 400;
            font-size: 80px;
            line-height: 94%;
            text-align: center;
            letter-spacing: -0.01em;
            color: #FFFFFF;
        }

        /* Subtitle */
        .subtitle {
            position: absolute;
            width: 382px;
            height: 46px;
            left: 50%;
            transform: translateX(-50%);
            top: 206px;
            font-family: 'Poppins', sans-serif;
            font-weight: 400;
            font-size: 38px;
            line-height: 57px;
            letter-spacing: 0.01em;
            text-align: center;
            color: #FFFFFF;
        }

        /* Box Styles */
        .box {
            position: absolute;
            border-radius: 20px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .box:hover {
            box-shadow: 0 20px 40px rgba(249, 154, 39, 0.4);
            transform: translateY(-5px);
        }

        .box-number {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 600;
            font-size: 70px;
            line-height: 98%;
            letter-spacing: -0.01em;
        }

        .box-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            font-size: 26px;
            line-height: 98%;
            letter-spacing: -0.01em;
        }

        .box-description {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 400;
            font-size: 18px;
            line-height: 130%;
            letter-spacing: -0.01em;
        }

        /* Box 1 - Top Left White */
        .box-1 {
            width: 277px;
            height: 277px;
            left: 50%;
            margin-left: -400px;
            top: 316px;
            background: #FFFFFF;
        }

        .box-1 .box-number {
            position: absolute;
            left: 32px;
            top: 22px;
            color: #FF9A27;
        }

        .box-1 .box-title {
            position: absolute;
            width: 189px;
            left: 29px;
            top: 119px;
            color: #000000;
        }

        .box-1 .box-description {
            position: absolute;
            width: 214px;
            left: 29px;
            top: 153px;
            color: #000000;
        }

        /* Box 2 - Top Right Orange (Bigger) */
        .box-2 {
            width: 488px;
            height: 277px;
            left: 50%;
            margin-left: -95px;
            top: 316px;
             background: url(images/hover.png);
                background-size: cover;
    background-position: center;
        }

        .box-2 .box-number {
            position: absolute;
            left: 36px;
            top: 39px;
            color: #FFFFFF;
        }

        .box-2 .box-title {
            position: absolute;
            width: 346px;
            left: 36px;
            top: 127px;
            color: #FFFFFF;
        }

        .box-2 .box-description {
            position: absolute;
            width: 294px;
            left: 36px;
            top: 167px;
            font-size: 26px;
            line-height: 98%;
            color: #FFFFFF;
        }

        /* Box 3 - Middle Left White */
        .box-3 {
            width: 277px;
            height: 277px;
            left: 50%;
            margin-left: -517px;
            top: 623px;
            background: #FFFFFF;
             background: url(images/sd.png);
                background-size: cover;
    background-position: center;
        }

        .box-3 .box-number {
            position: absolute;
            left: 29px;
            top: 36px;
            color: #FF9A27;
        }

        .box-3 .box-title {
            position: absolute;
            width: 193px;
            left: 30px;
            top: 133px;
            color: #000000;
        }

        .box-3 .box-description {
            position: absolute;
            width: 219px;
            left: 30px;
            top: 189px;
            color: #000000;
        }

        /* Box 4 - Bottom Center White */
        .box-4 {
            width: 277px;
            height: 277px;
            left: 50%;
            margin-left: -210px;
            top: 808px;
            background: #FFFFFF;
        }

        .box-4 .box-number {
            position: absolute;
            left: 22px;
            top: 24px;
            color: #FF9A27;
        }

        .box-4 .box-title {
            position: absolute;
            width: 193px;
            left: 28px;
            top: 121px;
            color: #000000;
        }

        .box-4 .box-description {
            position: absolute;
            width: 219px;
            left: 28px;
            top: 183px;
            color: #000000;
        }

        /* Box 5 - Right White */
        .box-5 {
            width: 277px;
            height: 277px;
            left: 50%;
            margin-left: 97px;
            top: 708px;
            background: #FFFFFF;
        }

        .box-5 .box-number {
            position: absolute;
            left: 22px;
            top: 24px;
            color: #FF9A27;
        }

        .box-5 .box-title {
            position: absolute;
            width: 203px;
            left: 22px;
            top: 121px;
            color: #000000;
        }

        .box-5 .box-description {
            position: absolute;
            width: 219px;
            left: 22px;
            top: 181px;
            color: #000000;
        }

        /* CTA Button */
        .cta-button {
            position: absolute;
           
            left: 45%;
            margin-left: -182px;
            top: 1194px;
          
            cursor: pointer;
           
        }

        .cta-button:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(255, 154, 39, 0.5);
        }

        .cta-text {
            position: absolute;
            width: 216.45px;
            height: 36.77px;
            left: 75.75px;
            top: 17.48px;
            font-family: 'Tilt Warp', sans-serif;
            font-weight: 400;
            font-size: 22px;
            line-height: 130%;
            text-align: center;
            letter-spacing: -0.01em;
            color: #FFFFFF;
        }
    

        @media (max-width: 1200px) {
            .hero-title {
                font-size: 90px;
            }
        }
     @media (max-width: 991px) {
            .navbar-nav .nav-link {
                font-size: 18px;
                margin: 10px 0;
            }
        }
        
 @media (max-width: 768px) {
            .btn-cta {
                font-size: 18px;
                padding: 12px 36px;
            }
            .btn-cta-orange{
               font-size: 18px;
                padding: 12px 36px;
            }
             .hero-section {
                border-radius: 0 0 60px 60px;
                padding: 30px 0 80px;
            }
            .hero-subtitle {
                font-size: 28px;
            }
             .wrk-ga{
             overflow: hidden;   
             margin-top: 0;
            }
              .customers-title span{
            font-size: 80px;line-height: 0.8;
        }
         .navbar-custom {
                border-radius: 20px;
                padding: 15px 20px;
            }
             .hero-title {
                font-size: 60px;
            }
              .section-subtitle {
                font-size: 42px;
            }
            .service-card{
                min-height: 100%;
            }
            .service-card.orange{
                padding-top: 57px!important;
            }
            .service-card.blend{
                padding-top: 57px!important;
            }
            .pillar-im{
                margin-top: -30%;
            }
        }
        @media (max-width: 576px) {
            .hero-title {
                font-size: 45px;
            }
             .hero-subtitle {
                font-size: 22px;
            }
        }
       
/* Responsive Design */
@media (max-width: 1200px) {
  .carousel-container {
    height: 520px;
  }
  
  .carousel-item-3d {
    width: 280px;
    height: 420px;
  }
}

@media (max-width: 768px) {
 
.carousel-wrapper {
  position: absolute;
  top: 0%;
  left: 25%;
}
  .carousel-container {
    height: 480px;
    perspective: 1200px;
  }
  
  .carousel-item-3d {
    width: 240px;
    height: 360px;
  }
  
  .nav-btn {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  
  .btn-prev {
    left: 10px;
  }
  
  .btn-next {
    right: 10px;
  }

  .video-controls {
    bottom: 15px;
    right: 15px;
    gap: 8px;
  }

  .control-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .card-3d {
    border-radius: 18px;
  }
  
  .carousel-pagination {
    bottom: 30px;
  }
}

@media (max-width: 576px) {
  .carousel-container {
    height: 420px;
    perspective: 1000px;
  }
  
  .carousel-item-3d {
    width: 200px;
    height: 320px;
  }
  
  .nav-btn {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
  
  .btn-prev {
    left: 5px;
  }
  
  .btn-next {
    right: 5px;
  }
  
  .pagination-dot {
    width: 12px;
    height: 12px;
  }
  
  .pagination-dot.active {
    width: 16px;
    height: 16px;
  }
  
  .carousel-pagination {
    bottom: 20px;
    gap: 10px;
  }

  .video-controls {
    bottom: 12px;
    right: 12px;
    gap: 6px;
  }

  .control-btn {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .card-3d {
    border-radius: 16px;
  }
}

@media (max-width: 400px) {
  .carousel-container {
    height: 380px;
    perspective: 900px;
  }
  
  .carousel-item-3d {
    width: 170px;
    height: 280px;
  }

  .nav-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .video-controls {
    bottom: 10px;
    right: 10px;
    gap: 5px;
  }

  .control-btn {
    width: 32px;
    height: 32px;
    font-size: 13px;
    border-width: 1.5px;
  }

  .pagination-dot {
    width: 10px;
    height: 10px;
  }
  
  .pagination-dot.active {
    width: 14px;
    height: 14px;
  }

  .carousel-pagination {
    bottom: 15px;
    gap: 8px;
  }

  .card-3d {
    border-radius: 14px;
  }
}

@media (max-width: 360px) {
  .carousel-container {
    height: 350px;
  }
  
  .carousel-item-3d {
    width: 150px;
    height: 250px;
  }

  .nav-btn {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .btn-prev {
    left: 3px;
  }
  
  .btn-next {
    right: 3px;
  }
}

 
       

     
           
        
