   :root {
            --white: #FFFFFF;
            --gray-blue: #82909A;
            --dark-gray: #414141;
            --light-gray: #2A2A2A;
            --dark-brown: #989187;
            --very-dark: #121212;
            --accent : #7600FF;
        }
        *{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        @font-face {
            font-family: 'Montserrat';
            src: url('fonts/Montserrat-Regular.woff2') format('woff2');
            font-weight: 400;
            font-style: normal;
        }

            @font-face {
            font-family: 'Montserrat';
            src: url('fonts/Montserrat-Medium.woff2') format('woff2');
            font-weight: 500;
            font-style: normal;
        }

            @font-face {
            font-family: 'Montserrat';
            src: url('fonts/Montserrat-SemiBold.woff2') format('woff2');
            font-weight: 600;
            font-style: normal;
        }

            @font-face {
            font-family: 'Montserrat';
            src: url('fonts/Montserrat-Bold.woff2') format('woff2');
            font-weight: 700;
            font-style: normal;
        }

        @font-face {
            font-family: 'Gotham';
            src: url('/fonts/gotham-book.woff2') format('woff2');
            font-weight: 400;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Gotham';
            src: url('/fonts/gotham-bold.woff2') format('woff2');
            font-weight: 700;
            font-style: normal;
            font-display: swap;
        }
        html{
            font-size: 16px;
        }
        @media(max-width:1000px){
            html{
                font-size: 14px;
            }
        }
        @media(max-width:768px){
            html{
                font-size: 12px;
            }
          
        }
        body {
            overflow-x: clip;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        body {
            background: var(--very-dark);
        }
      
        img {
            user-drag: none;
            -webkit-user-drag: none;
            pointer-events: auto;
        }
        li{
                font-family: "Montserrat", sans-serif;
        }
        h1,h2,h3,h4,h5,h6,p,a,li{
            text-decoration: none;
            color: #ffffff;
            
        }
        h1,h2,h3,h4,h5,h6 {
            font-family: 'Gotham', sans-serif;
        }
        h1{
            font-size: 3rem;
        }
        h1 b {
            font-size: 3rem;
            font-weight: 700;
            font-family: 'Gotham', sans-serif;
        }
        h2{
            font-size: 3rem;
            font-weight: bold;
        }
        h3{
            font-size: 32px;
            font-weight: bold;
        }
        h4{
            font-size: 1.25rem;
            font-weight: bold;
        }
        a{
            
            font-weight: 700;
            font-family: 'Gotham', sans-serif;
        }
        button{
            font-weight: 700;
            font-family: 'Gotham', sans-serif;

        }

        p b{
               font-weight: 700;
            font-family: 'Gotham', sans-serif;
        }
        p{
            font-weight: 400;
            font-family: "Montserrat",sans-serif;
        }
        .xl6-text{
            font-size: 4rem;      
        }
        .xl5-text{
            font-size: 3rem      
        }
        .xl4-text{
            font-size: 2.5rem        
        }
        .xl3-text{
            font-size: 2rem      
        }
        .xl2-text{
            font-size: 1.5rem     
        }
        .xl-text{
            font-size:1.25rem; 
            color: #82909A;
            opacity: 0.7;            
        }
        .l-text{
            font-size: 1.13rem;
            color: #A0A0A0;
        }
        .m-text{
            font-size: 1rem;
        }
        .s-text{
            font-size: 0.875rem;
        }
        .xs-text{
            font-size: 0.75rem;
        }
        .xs2-text{
            font-size: 0.65rem;
        }
        .gray-text{
            color: #A0A0A0;
        }
        .cta-button a{
            font-size: 16px;
            background: linear-gradient(135deg, #9B9187 0%, rgba(144,134,123,0.44) 100%);
            width:fit-content;
            padding: 15px 26px;
            border-radius: 10px;
            transition: all .4s ease;
            position: relative;
        }
        .cta-button a span{
            position: relative;
            z-index: 2;
        }
        .cta-button a::before{
            z-index: 1;
            content: "";
            width:100%;
            height: 100%;
            position: absolute;
            bottom: 0;
            left: 0;
            background: linear-gradient(90deg, #7600FF 0%, #281D45 100%);
            transition: all .4s ease;
            opacity: 0;
            border-radius: 10px;

        }
        .cta-button a:hover::before{
            /* width: 100%;
            height: 100%; */
            opacity: 1;
            z-index: 0;
        }
         .cta-button button{
            font-size: 1.13rem;
            background: linear-gradient(145deg, #82909A 0%, #5B6770 100%);
            width:fit-content;
            padding: 15px 26px;
            border-radius: 10px;
            color: var(--white);
            position: relative;
            border: none;
            
         }
         .cta-button button:hover{
            cursor: pointer;
         }

         .cta-button button span{
            position: relative;
            z-index: 2;
        }
        .cta-button button::before{
            z-index: 1;
            content: "";
            width:101%;
            height: 101%;
            position: absolute;
            bottom: 0;
            left: 0;
            background: linear-gradient(90deg, #7600FF 0%, #281D45 100%);
            transition: all .4s ease;
            opacity: 0;
            border-radius: 10px

        }
        .cta-button button:hover::before{
            /* width: 100%;
            height: 100%; */
            opacity: 1;
            z-index: 0;
        }
        .container{     
            padding: 100px;
            width: 100%;
            max-width: 1440px;
            margin-inline: auto;
        }
        .image-container img{
            width: 100%;
        }
        .video-container video{
            width: 100%;
        }
        .flex-column{
            display: flex;
            flex-direction: column;
        }
        header{
            width: 100vw;
            background: var(--very-dark);
        } 
        header .header-container{
            display: flex;
            max-width: 1440px;
            width: 100%;
            gap: 1rem;
            padding: 20px 100px;
            align-items: center;
            justify-content: flex-start;
            
        }
        @media (max-width: 768px){
            header .header-container{
                padding-inline: 5%; 
            }
        }

        /* hero section start */
        .hero-section{
            height: 630px;
            max-height: 674px;
            width: 100vw;
            background: var(--very-dark);
            position: relative;
        }
        .hero-section .overlay{
            display: none;

            height: 0;
            width: 100vw;
            background: linear-gradient(to bottom , rgba(0,0,0,0.15) , transparent);
            -webkit-backdrop-filter: blur(2.5px);
            backdrop-filter: blur(2.5px);

            position: absolute;
            bottom: 0;
            left: 0;
            z-index: 4;

            pointer-events: none;
        }
        .hero-section-inner{
            position: relative;
            width: 100%;
            /* height: 100%; */
            height: 630px;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            max-width: 1440px;
            margin-inline:auto;
        }
        .hero-section .container{
            /* padding-inline:0; */
            padding-right: 0;
        }
        .hero-section .text-container{
            padding-left: 6px;
            position: relative;
            z-index: 5;
            display: flex;
            flex-direction: column;
            max-width: 600px;
            width: 100%;
            
        } 
        .hero-section .text-container h1{
            margin-bottom: 30px;
            line-height: 1.4;
        }
        .hero-section .text-container p{
            margin-bottom: 40px;
            max-width: 453px;
        }
     
        .hero-section .image-container.iceberg {
            position: relative;
            right: 150px;
            z-index: 3; /* keep it under labels */

        }
        
        .hero-section .image-container.iceberg::after{
              content: '';
                position: absolute;
                left: -50vw;   /* push it out to the left */
                top: -200px;   /* push it up if iceberg isn’t at top */
                width: 200vw;  /* big enough to cover full section */
                height: 608px; /* your desired overlay height */
                background: linear-gradient(to bottom, rgba(0,0,0,0.15), transparent);
                backdrop-filter: blur(2.5px);
                z-index: 2;
                pointer-events: none;
        }
        .hero-section .image-container.iceberg img{
            position: relative;
            z-index: 3;
            z-index: 3;
        }
    
        .iceberg .outer-circle{
            position: relative;
            z-index: 4;
            width: 13px;
            height: 13px;
            border-radius: 50%;
            border: 1px solid #fff;

            display: flex;
            justify-content: center;
            align-items:center;
        }
          .iceberg .outer-circle .inner-circle{
            width: 7px;
            height: 7px;
            background: #fff;
            border-radius: 50%;
        }
        .iceberg-text .dashed-line{
            width: 30px;
            height: 1px;
            border: 1px dashed #fff;
        }
     
        .iceberg-text-1 .dashed-line{
            height: 1px;
            width: 20px;
        }
         .iceberg .iceberg-text{
            position: absolute;
            display: flex;
            align-items: center;
            justify-content: center;
            gap:  0.5rem;
            z-index: 5;
        }
      
        .iceberg .iceberg-text:nth-child(even){
            flex-direction:row-reverse;

        }
       
        /* .iceberg .iceberg-text:nth-of-type(n+6) p{
            color: var(--gray-blue);
        }
        .iceberg .iceberg-text:nth-of-type(n+6) .dashed-line,
        .iceberg .iceberg-text:nth-of-type(n+6) .outer-circle{
            border-color: var(--gray-blue);
        }  */
        /* .iceberg .iceberg-text:nth-of-type(n+6) .inner-circle{
            background-color: var(--gray-blue);
        } */
        .iceberg .iceberg-text-1{
            top: 50px;
            left: -45px;
        }
         .iceberg .iceberg-text-2{
            top: 50px;
            right: 40px;
        }
        .iceberg .iceberg-text-3{
            top: 120px;
            left: -130px;
        }
        .iceberg .iceberg-text-4{
            top: 120px;
            right: -100px;
        }
        .iceberg .iceberg-text-5{
            top: 225px;
            left: -145px;
        }
        .iceberg .iceberg-text-6{
            top: 225px;
            right: -100px;
        }
        .iceberg .iceberg-text-7{
            top: 290px;
            left: -120px;
        }
        .iceberg .iceberg-text-8{
            top: 290px;
            right: -105px;
        }
        .iceberg .iceberg-text-9{
            top: 360px;
            left: -120px;
        }
        .iceberg .iceberg-text-10{
            top: 360px;
            right: -80px;
        }
        .iceberg .iceberg-text-11{
            top: 420px;
            left: -155px;
        }
        .iceberg .iceberg-text-12{
            top: 420px;
            right: -30px;
        } 

        /* Default hidden state */
        .iceberg .dashed-line,
        .iceberg .s-text {
            /* opacity: 0; */
            transition: opacity 0.4s ease, transform 0.3s ease;
            transform: translateY(5px);
            pointer-events: none;
        }
        .iceberg-text {
            position: relative;
        }

        .outer-circle {
            transition: transform 0.2s ease;
        }

        .iceberg .dashed-line,
       .iceberg  .s-text {
            transform: translateY(10px);
            transition: all 0.3s ease;
        }

        .iceberg-text {
            position: relative;

        }

            /* Initial state before animation */
        .iceberg .dashed-line,
        .iceberg .s-text {
            transform: translateX(20px);
            transition: all 0.5s ease;
        }

        .iceberg-text.animate-in .dashed-line,
        .iceberg-text.animate-in .s-text {
            opacity: 1;
            transform: translateY(0);
        }

        /* Remove this line so fade-out uses transition */
        .iceberg-text:not(.animate-in) .dashed-line,
        .iceberg-text:not(.animate-in) .s-text {
        /* Nothing here; default already fades due to transition */
        }

        /* Hover state stays the same */
        /* .iceberg-text:hover .dashed-line,
        .iceberg-text:hover .s-text {
            opacity: 1;
            transform: translateX(0);
        } */
        .iceberg-text .iceberg-label {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .iceberg-text:nth-child(even) .iceberg-label {
            flex-direction: row-reverse;
        }
        /* .iceberg-text:hover .iceberg-label {
            transform: scale(1.15);
            transition: transform 0.2s ease;
        } */
        .iceberg-text:nth-child(odd)  .iceberg-label { transform-origin: left center; }
        .iceberg-text:nth-child(even) .iceberg-label { transform-origin: right center; }
        /* When parent is hovered */
        /* .iceberg-text:hover .outer-circle {
            transform: scale(1.3);
        } */

        /* .iceberg-text:hover .dashed-line {
            opacity: 1;
            transform: translateY(0);
        } */

        /* .iceberg-text:hover .s-text {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.1s;
        } */


        /* When revealed, show all labels (reuses your animate-in styles) */
        #iceberg.revealed .iceberg-text .dashed-line,
        #iceberg.revealed .iceberg-text .s-text {
            opacity: 1;
            transform: translateY(0);
        }

        /* Slight size bump for labels when revealed */
        #iceberg.revealed .iceberg-text .s-text { 
            transform: translateY(0) scale(1.08);
        }

        /* Optional: make dots feel “active” when revealed */
        #iceberg.revealed .outer-circle { transform: scale(1.2); transition: transform .2s ease; }

        .hero-section .image-container .light{
            background: #82909A;
            filter: blur(100px);
            width: 200px;
            height: 200px;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%,-50%);
        }
        .section-light{
            position: absolute;
            top:200px;
            left: -179px;
            width: 358px;
            height: 358px;
            border-radius: 50%;
            filter: blur(150px);
            background-color: #9B9187;
            opacity: 0.39;
        }
      
        .cta-button{
            border-radius: 15px;
            border: 1.2px solid #303030;
            width: fit-content;
            padding: 25px 10px;
        }
        
        .cta-button a{
            color: #ffffff;
        }
     
    /* hero section end */
        
    /* about section start */
        .banner-container{
            padding-top: 0;
            padding-bottom: 0;
        }
        .banner{
            position: relative;
            width: 100%;
            height: 158px;
            padding-top: 0;
            padding-bottom: 0;
            border: 1px solid #414141;
            border-radius: 10px;
            text-align: center;

            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
            overflow: clip;
        }
        /* .about-section .brown-light{
           position: absolute;
           bottom: 0;
           left: 0;
           pointer-events: none;
           background: var(--dark-brown);
            width: 400px;
            height: 400px;
            filter: blur(252px);

        }
        .about-section .blue-light{
            position: absolute;
            top: -100px;
            right: -136px;
            pointer-events: none;
            background: var(--gray-blue);
            width: 400px;
            height: 400px;
            filter: blur(252px);
        } */
         .banner .banner-background{
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            object-fit: cover;
         }
        .banner p{
            text-align: center;
        }
        .banner p.small-text{
            font-size: 16px;
        }
        .banner p.large-text{
            font-size: 36px;
            font-weight: 500;
            font-family: 'gotham';
        }
        .about-section{
        position: relative;
        overflow-x: clip;
        }
        .about-section-inner{
            display: flex;
            justify-content: space-between;
            gap: 60px;
        }
        .about-section-inner .video-container{
            max-width: 658px;
            width: 100%;
        }
   
        .about-section-inner .content-container{
        display: flex;
        flex-direction: column;
        gap: 64px;
        max-width: 554px;
        position: relative;
        z-index: 1;
        }
        .about-section-inner .text-container{
        display: flex;
        flex-direction: column;
        gap: 32px;
        }
        .about-section-inner .text-container p.l-text{
        color: var(--white);
        line-height: 1.5;
        }
        .about-section-inner .stats-container {
            max-width: 420px;

            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: repeat(2, 1fr);
            gap: 50px 100px;
            align-items: start;
        }

        .about-section-inner .stat-item {
            text-align: left;
            transform: translateY(30px);
        }

        .about-section-inner .stat-number {
            font-weight: 700;
            margin-bottom: 16px;
            display: block;
            color: var(--gray-blue);

        }
        .about-section-inner .stat-number svg{
            margin-left: 16px;
        }
        .about-section-inner .stat-label {
            font-weight: bold;
        }

    

        
    /* about section end */
    /* team section start */
      .team-section-inner {
        overflow-x: clip;
      }
      .team-section-inner .chairman-container{
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 72px;
        margin-bottom: 40px;
    }
    .team-section-inner .chairman-container .chairman-image-title .image-container{
        margin-bottom: 16px;
    }
    .team-section-inner .chairman-container .chairman-name{
        color: #fff;
        font-weight: 500;
        margin-bottom: 6px;
    }   
    .team-section-inner .chairman-container .chairman-title{
        color: var(--gray-blue);
        font-weight: 500;
    }
    .team-section-inner .chairman-container .text-container{
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        height: 100%;
        max-width: 466px;
    }
    .team-section-inner .chairman-container .text-container h3{
        margin-bottom: 48px;
        color: #D8D8D8;
        font-weight: 500;
    }
    .team-section-inner .chairman-container .text-container p.l-text{
        margin-bottom: 24px; 
        color: var(--gray-blue);
        font-weight: 500;
    }


    .team-slider-container h4{
        margin-bottom: 16px;
    }
     .team-slider {
            background: #121212;
            color: white;
            font-family: Arial, sans-serif;
        }

        .team-slider .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .team-slider .section-title {
            font-size: 3rem;
            font-weight: bold;
            text-align: center;
            margin-bottom: 60px;
            color: white;
        }
        .team-slider .team-grid {
            display: flex;
            overflow-x: auto;
            overflow-y: clip;
            scrollbar-width: none;
            margin-bottom: 50px;
            -webkit-overflow-scrolling: touch;
             scroll-behavior: smooth;
            user-select: none;
            -webkit-user-select: none;
        }

        .dragging {
        cursor: grabbing !important;
        }
     

        .team-slider .team-card {
            width: 250px;
            height: 350px;
            background: transparent;
            cursor: pointer;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
            border-inline: 1px solid var(--dark-brown);
            opacity: 0.4;
            text-align: center;
        }

        .team-slider .team-card.active {
            width: 294px;
            border-left-color: #D8D8D8;
            border-right-color: #222;
            opacity: 1;

        }

        .team-slider .team-image {
            position: absolute;
            top: 0;
            left: 20px;
            right: 20px;
            height: 100%;
            border-radius: 8px;
            overflow: hidden;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .team-slider .team-card.active .team-image {
            opacity: 1;
        }

        .team-slider .team-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .team-slider .team-image::before{
            content: '';
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(18,18,18,1) 5% ,rgba(18,18,18,0.5) 50%,rgba(18,18,18,0));
            position: absolute;
            z-index: 5;
        }

        /* .team-slider .team-content {
            position: absolute;
            z-index: 5;
            bottom: 20px;
            left: 20px;
            right: 20px;
            text-align: left;
            transition: all .4s ease;
        } */
        .team-slider .team-content {
            z-index: 5;
            text-align: left;
            transition: all .4s ease;
            margin: 20px 20px 0 20px;
        }
        
        .team-slider .team-card.active .team-content {
            position: absolute;
            left: 20px;
            right: 20px;
            bottom: 20px;

        }
        .team-slider .team-card:not(.active) .team-content {
            bottom: 80%;
            transform: translateY(50%);
        }

        .team-slider .team-title {
            font-family: "Montserrat",sans-serif;
            text-transform: uppercase;
            font-weight: 500;
            color: var(--dark-brown);
            margin-bottom: 8px;
        }
        .team-slider .team-card.active .team-title {
            color: #fff;
        }
        .team-slider .team-name {
            font-family: "Montserrat",sans-serif;
            color: #fff;
            opacity: 0;
            transition: opacity 0.3s ease;
            font-weight: 500;
        }

        .team-slider .team-card.active .team-name {
            opacity: 1;
        }
        /* hide native scrollbar on the grid itself */
        .team-slider .team-grid{
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            touch-action: pan-x;
        }
        .team-slider .team-grid::-webkit-scrollbar{ display:none; }
        /* custom scrub bar */
        .scrub { width: 370px; margin: 10px auto 0; }
        .scrub-track {
        position: relative;
        height: 6px;
        background: #2f2f2f;
        border-radius: 999px;
        }
        .scrub-thumb {
        position: absolute; inset: 0 auto 0 0;
        width: 80px;                /* JS will set real width */
        background: #9fb2c6;
        border-radius: 999px;
        transform: translateX(0);
        touch-action: none;         /* we handle drag */
        cursor: grab;
        }
        .scrub-thumb.dragging { cursor: grabbing; }
     .team-slider .team-grid.dragging{
         
     }
      @media (min-width: 769px) {
            .team-slider .team-grid {
                cursor: grab;
                touch-action: pan-x;
            }
            
            .team-slider .team-grid.dragging {
                cursor: grabbing !important;
            }
        }
        
        /* Mobile - allow normal scrolling */
        @media (max-width: 768px) {
            .team-slider .team-grid {
                touch-action: manipulation; /* Allows both horizontal and vertical */
            }
        }
    /* team section end */
     /* proccess section start */
        .process{
            position: relative;
            overflow-x: clip;
        }
        .process .brown-light{
            position: absolute;
            border-radius: 50%;
            top: -250px;
            right: -350px;
            pointer-events: none;
            background: var(--dark-brown);
            width: 450px;
            height: 450px;
            filter: blur(70px);
            opacity: 0.39;
            z-index: 1;
        }
        .process .blue-light{
              position: absolute;
              border-radius: 50%;
            bottom: 0;
            left: -350px;
            pointer-events: none;
            background: var(--gray-blue);
            width: 450px;
            height: 450px;
            filter: blur(50px);
            opacity: 0.39;
            z-index: 1;
        }
        .process-inner{
            display: flex;
            flex-direction: column;
            gap: 4rem;
            text-align: center;
        }
      
        .process .steps{
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }
    
          .process .arrow{
            height: 16px;
        }
        .process .step{
            position: relative;
            height: 264px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: center;
            z-index: 1;
        }
        .process .step p.xl3-text{
            margin-bottom: 30px;
        }
        .process .step:nth-of-type(1) {
            height: 300px;
        }
        .process .step:nth-of-type(1) p.xl3-text{
            margin-bottom: 20px;
        }
       .process .step .flex-column {
           gap: 7px;
        }
        .process .step .flex-column p{
            color: var(--gray-blue);
        }
       .process .step .image-container{
            /* width: 94px; */
            height: 140px;
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            z-index: -1;

        }
        
       .process .step .line {
            overflow: hidden;
        }

          .process .step  .l-text {
             opacity: 1;
            margin: 0;
        }
       
    /* proccess section end */
    /* case studies start */
    
        .case-studies-section {
            background: var(--very-dark);
            position: relative;
            overflow-x: clip;
        }
        .case-studies.container{
            padding-right: 0;
        }
        .case-studies-title {
            font-weight: bold;
            margin-bottom: 80px;
            color: white;
        }

        .case-studies-content {
            display: flex;
            align-items: center;
            gap: 100px;
            height: 500px;
        }

        /* Left Side - Images Stack */
        .images-container {
            flex: 1;
            position: relative;
            height: 100%;
            perspective: 1000px;
        }

        .image-stack {
            margin-top: 30px;
            position: relative;
            width: 100%;
            height: 100%;
            max-width: 500px
        }

        .case-image {
            position: absolute;
            right: 0;
            width: 390px;
            height: 434px;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            background: #333;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: #888;
            border: 2px solid #444;
        }

        .case-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .case-image::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,var(--dim, 0)); /* 0..1 */
        pointer-events: none;
        }
        /* Initial positioning for GSAP */
        .case-image[data-position="0"] {
            z-index: 4;
            transform: translateX(0) scale(1);
            opacity: 1;
        }

        .case-image[data-position="1"] {
            z-index: 3;
            transform: translateX(-70px) scale(0.9);
            /* opacity: 0.8; */
        }
 
        .case-image[data-position="2"] {
            z-index: 2;
            transform: translateX(-130px) scale(0.8);
            /* opacity: 0.6; */
        }
        
        .case-image[data-position="3"] {
            z-index: 1;
            transform: translateX(-185px) scale(0.7);
            /* opacity: 0.4; */
        }
     
        .case-image[data-position="hidden"] {
            z-index: 0;
            transform: translateX(-200px) scale(0.6);
            opacity: 0;
        }

        /* Right Side - Project Info */
        .project-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 100%;
            position: relative;
        }
        .project-info .projects-list-overlay{
            height: 425px;
            width: 192px;
            top: 30px;
            position: absolute;
        }
        .project-list-container {
            position: relative;
            height: 350px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .project-list {
            list-style: none;
            position: relative;
            padding: 0;
            margin: 0;
            height: 440px; /* <-- ADDED for absolute positioning */
        }

        .project-item {
            padding: 20px 0;
            transition: all 0.3s ease;
            opacity: 0.5;
            text-align: center;
            right: -10px;

            /* position set by JS */
        }

        .project-item.active {
            opacity: 1;
        }

        .project-item:hover {
            opacity: 0.8;
        }

        .project-name {
            font-weight: 600;
            color: #fff;
            margin-bottom: 5px;
            transition: color 0.3s ease;
        }

        .project-item.active .project-name {
            color: white;
        }

        .project-description {
            color: var(--gray-blue);
            transition: color 0.3s ease;
        }

     

        /* Navigation Arrow */
        .project-info .nav-arrow {
            position: absolute;
            width: 108px;
            height: 108px;
            border: 2px solid #9B9187;
            background: linear-gradient(to top ,#9b918780 , var(--very-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-left: auto;
            top: 35%;
            left: -60px;
        }

        .project-info .nav-arrow:hover {
            border-color: #666;
        }

        .project-info .nav-arrow svg {
            margin-top: 5px;
            width: 24px;
            height: 24px;
            transition: transform 0.3s ease;
        }
        @media(max-width:768px){
            .project-info .nav-arrow svg{
                margin-top:3px;
            }
        }


    /* case studies end */
    
    /* awards section start */
        .awards{
            position: relative;
            overflow: hidden;
        }
          .awards .awards-bg{
              width: 100vw;
              max-width: 1440px;
              position: absolute;
              top: 50%;
              left: 50%;
              transform: translate(-50%,-50%) ;
              z-index: 0;

            }
          .awards .awards-bg::after{
            content: '';
            width: 100vw;
            height: 100%;
            max-width: 1440px;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1;
            /* background: radial-gradient(circle, rgba(18,18,18,0) 0%, var(--very-dark) 100%); */
            background: radial-gradient(ellipse 50% 42%  at 50% 45%, rgba(12,12,12,0) 0%, var(--very-dark) 100%);

        }
        .awards .awards-bg video{
            width: 100%;
        }
        .awards-inner{
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-content: center;
            gap: 80px;
            text-align: center;
            position: relative;
            z-index: 1;
        }
        .awards-inner .cards{
            display: flex;
            justify-content: space-between;
            align-content: center;
        }
        .awards-inner .cards p{
            max-width: 230px;
        }
        .awards .card .xl-text{
            color: #fff;
        }
        .awards .card img{
            margin-bottom: 1rem;
            width: 200px;
        }
        .awards .card .xl-text{
            color: #fff;
            opacity: 1;
            margin-bottom: 10px;
        }
       @media(max-width:768px){
           .awards .awards-bg video{
               height:100%;
               width:unset;
           }
           .awards .awards-bg{
               top:80%;
           }
       }
    /* awards section end */
    /* testimonials section start */

        .testimonial .container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 100px;
            position: relative;
        }

        .testimonial .title-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 50px;
            position: relative;
            z-index: 4;
        }
        .testimonial .text-container{
            display: flex;
            flex-direction: column;
        }
        .testimonial .title-nav h2 {
            max-width: 600px;
        }
        
        .testimonial .title-nav h2 b {
            background: linear-gradient(135deg, #FFFFFF 4%, #7600FF 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .testimonial .text-container > p.l-text{
            color: var(--gray-blue);
            max-width: 451px;
            width: 100%;
            font-weight: 500;
        }

        .testimonial .custom-nav {
            display: flex;
            gap: 20px;
        }

        .testimonial .custom-nav button {
            width: 46px;
            height: 46px;
            background: transparent;
            color: #000;
            border: 1px solid var(--dark-gray);
            border-radius: 10px;
            font-size: 1.5rem;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .testimonial .custom-nav button:hover {
            background: var(--gray-blue);
        }
        .testimonial .custom-nav button svg path{
            fill: var(--dark-gray)
        }
        .testimonial .custom-nav button:hover svg path{
            fill: var(--white)
        }

        .testimonial .slider-container {
            position: relative;
            overflow: hidden;
            width: 100%;
        }

        .testimonial .background {
            pointer-events: none;
            position: absolute;
            z-index: 7;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(18, 18, 18, 1) 2%, rgba(18, 18, 18, 0), rgba(18, 18, 18, 1) 98%);
        }

        .testimonial .slider-track {
            height: 480px;
            display: flex;
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            align-items: center;
        }

        .testimonial .slide {
            /* flex: 0 0 328px; */
            display: flex;
            width: 328px;
            height: 450px;
            background: #2A2A2A;
            border: 2px solid #414141;
            color: white;
            border-radius: 30px;
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: transform;
            margin-right: -60px;
            position: relative;
        }
        
        .testimonial .slide:last-child {
            margin-right: 0;
        }

        .testimonial .card-header {
            display: flex;
            justify-content: flex-start;
            align-items: start;
            gap: 10px;
            width: 100%;
            margin-bottom: 20px;
        }

        .testimonial .image-container {
            border-radius: 50%;
            border: 2px solid #414141;
            background: #2A2A2A;
            height: 60px;
            width: 60px;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-shrink: 0;
        }

        .testimonial .image-container img {
            width: 60%;
            /* height: 18px; */
        }

        .testimonial .title-description p:first-child {
            font-weight: bold;
            margin-bottom: 5px;
        }

        .testimonial .xs2-text {
            font-size: 0.8rem;
        }

        .testimonial .gray-text {
            color: var(--gray-blue);
        }

        .testimonial .card-text {
            flex: 1;
            line-height: 1.5;
            margin-bottom: 20px;
        }

        .testimonial .media-controls {
            display: flex;
            flex-direction: column;
            gap: 20px;
            align-items: center;
            gap: 15px;
            margin-top: auto;
        }

        .testimonial .record-image {
         
        }

        .testimonial .slide.active .play-image {
            background: #7600FF;
            border: none;
            border-radius: 50%;
        }
        .testimonial .play-image {
           width: 50px;
            height: 50px;
            background: repeating-linear-gradient(
                90deg,
                #7600FF 0px,
                #7600FF 2px,
                transparent 2px,
                transparent 4px
            ); 
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            position: relative;
            background: #2A2A2A;
            border: 1px solid #414141;
            border-radius: 50%;
        }
        .testimonial .play-image::after {
            content: '';
            width: 0;
            height: 0;
            border-left: 12px solid white;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
            margin-left: 3px;
        }

      
    /* testimonials section end */
    /* faqs section start */
   
        .faqs-inner{
            position: relative;
            overflow: hidden;
            border: 1px solid #414141;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 50px;
            padding-bottom: 100px;
            gap: 4rem;
            border-radius: 12px;
        }
        .faqs-content-container{
            /* padding: 20px; */
        }
       .faqs .tab {
            display: flex;
            flex-direction: column;
            overflow: hidden;
            transition: height 0.4s ease;
            border-bottom: 1px solid #2A2A2A;
            height: auto; /* this will be controlled via JS */
        }
        .faqs .tab:hover{
            cursor: pointer;
        }

        .tab hr{
            border: 1px solid #2A2A2A;
            width: 100%;
        }
        .faqs .question{
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faqs .question .xl-text{
            color: #fff;
            opacity: 1;
            padding: 20px 0;
        }
        .faqs .answer .xl-text{
            color: #fff;
            opacity: 1;
        }
        .faqs .answer p.m-text{
            color: var(--gray-blue);
            line-height: 1.5;
        }
        .plus{
            height: 18px;
            width: 18px;
            position: relative;
        }
        .plus:hover{
            cursor: pointer;
        }
        .plus .line{
            height: 2px;
            width: 18px;
            position: absolute;
            background: #fff;
        }
        .plus .line:nth-of-type(1){
            left:calc( 50% + -1px);
            top: 50%;
            transform: translate(-50%, -50%);
        }
        .plus .line:nth-of-type(2){
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%) rotate(90deg);
            transition: all .4s ease;
        }
        .faqs .tab.active .plus .line:nth-of-type(2){
            transform: translate(-50%, -50%) rotate(0);
        }
        .faqs .answer{
            padding-bottom: 20px;
        }
        .faqs .blue-light{
           position: absolute;
           top: 0;
           right: 0;
           pointer-events: none;
        }
        .faqs .brown-light{
            position: absolute;
            bottom: 0;
            left: 0;
            pointer-events: none;
        }
       
    /* faqs section end */
    /* contact section start */
        .contact{
            position: relative;
            margin: 0 auto;
            width: 100vw;
        
            
        }
        /* .contact .background{
            pointer-events: none;
            position: absolute;
            z-index: 4;
            top: 0;
            left: 0;
            width: 1440px;
            height: 600px;
            background: linear-gradient(to right, var(--very-dark) 0%, rgba(18, 18, 18, 0),var(--very-dark) 95%);
        } */
        .contact-form-section {
            color: #fff;
            position: relative;
            z-index: 2;
            background: url('/images/contact-background-3.png');
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            position: relative;
        }

        .contact-form-section h2 {
            margin-bottom: 4rem;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            max-width: 800px;
        }

        .form-row {
            display: flex;
            gap: 1rem;
        }

        .form-row input,
        textarea {
            flex: 1;
            padding: 15px;
            background: #2a2a2a;
            border: 1px solid var(--dark-gray);
            border-radius: 5px;
            color: #fff;
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;

        }
        .form-row input::placeholder,
        textarea::placeholder{
            color: var(--gray-blue);
        }

        textarea {
            resize: vertical;
        }

   
        .contact .cta-button{
            border-radius: 15px;
            border: 1.2px solid #303030;
            width: fit-content;
            padding: 10px;
            align-self: flex-end
        }
        
        .contact .btn-row{
            display:flex;
            justify-content:flex-end;
            position: relative;
            width:100%;
            margin-top:10px;
        }
        .contact .btn-row .privacy-notice{
            font-size:12px;
            color: var(--gray-blue);
            position:absolute;
            left:0;
            top:-15px;
        }
        @media(max-width:768px){
            .contact .btn-row .privacy-notice{
                font-size:10px;
            }
        }
        .contact .btn-row .privacy-notice a{
            font-size:inherit;
            font-family:inherit;
        }
        
      
        .form-group {
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .form-group label {
            font-size: 0.9rem;
            margin-bottom: 6px;
            color: #fff;
            font-family: 'Montserrat', sans-serif;
        }

        .full-width {
        width: 100%;
        }

        .contact-form textarea {
        width: 100%;
        }
    /* contact section end */
    /* footer start */
        .site-footer {
            background: var(--very-dark);
            color: #fff;
            font-family: 'Montserrat', sans-serif;
            border-top: 1px solid #1e1e1e;
            padding-top: 0;
        }

        .footer-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            padding: 40px 0;
        }

        .footer-logo {
            width: 200px;
        }

        .footer-nav {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .footer-nav a {
            color: #fff;
            font-size: 0.95rem;
            text-decoration: none;
            opacity: 0.8;
        }

        .footer-nav a:hover {
            opacity: 1;
        }
        
        .footer-bottom {
            margin-top: 30px;
            padding-top: 20px;
            padding-bottom: 20px;
            border-top: 1px solid #2a2a2a;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom .copy-rights-links {
            display: flex;
            justify-content: space-between;
            width: 100%;
            max-width: 478px;
        }
        .footer-bottom .copy-right {
            font-size: 0.85rem;
            color: #d8d8d8;
            font-weight: 500;
        }
        .footer-bottom .links {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 50px;
        }
        .footer-bottom .links p {
            text-decoration: underline;
        }
        .footer-bottom .our-socials {
            font-weight: bold;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
            align-items: center;
            flex-wrap: wrap;
        }
        .footer-social a svg{
            width: 25px;
        }
        .footer-social img {
            width: 24px;
            height: 24px;
            filter: invert(100%);
        }
        @media(max-width:768px){
            .footer-social{
                align-self:center;
            }
        }
    /* footer end */


/*
****** Services Section
*/

.services-section {
    position: relative;
    background-image: url('/images/services-background.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    overflow: hidden;
}
.services-section .section-content{
    justify-content: space-between;
}
.services-section .container{
    position: relative;
    z-index: 3;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 250px;
    background: linear-gradient(to bottom, var(--very-dark), transparent);
    z-index: 1;
    pointer-events: none;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 250px;
    background: linear-gradient(to top, var(--very-dark), transparent);
    z-index: 1;
    pointer-events: none;
}

.services-section .service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
    padding: 0 60px 75px 60px;
    border-radius: 5px;
    width: 400px;
    height: 567px;
    margin-bottom: 20px;
    overflow: hidden;
    /* background: rgba(0, 0, 0, 0.4); */
    background: transparent;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    transition: all .4s ease;
}
.services-section .service-card::before {
    pointer-events: none;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    padding: 1.5px; /* Border thickness */
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.1) 60%, 
        rgba(255, 255, 255, 0.075) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: subtract;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}
.services-section .service-card .card-icon{
    position: absolute;
    top: 20px;
    right: 20px;
}
.services-section .service-card.active{
    padding-bottom: 30px;
}
.services-section .spacer {
    margin-top: 230px;
    transition: all .4s ease;
}
.services-section .service-card.active .spacer{
        margin-top: 110px;
}

.services-section .section-title {
    font-weight: bold;
    margin-bottom: 20px;
}
.services-section .section-headline {
    width: 100%;
    max-width: 553px;
    margin-bottom: 50px;
}
.services-section .section-description {
    max-width: 400px;
    width: 100%;
    margin-top: 8px;
}
.services-section .service-card h3 {
    max-width: 200px;
    margin-bottom: 15px;
}

.services-section .service-card .toggle-more {
    font-weight: 400;
    text-decoration: underline;
    transition: all .4s ease;
}
.services-section .service-card .toggle-more:hover {
    font-weight: 700;
}

.services-section .service-card .collaps-poits {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 1s ease, opacity 0.4s ease;

}

.services-section .service-card.active .collaps-poits {
    max-height: 500px;
    opacity: 1;
}
.services-section .service-card.active .toggle-more {
    display: none;
}

.services-section .service-card .collaps-poits ul li {
    background-color: #8f8f8f1c;
    padding: 10px 20px;
    margin: 0 0 12px 0;
    border-radius: 5px;
}

.services-section .service-card .collaps-poits ul li .index-container {
    margin-right: 10px;
}
.services-section .service-card .collaps-poits ul li .index {
    color: var(--dark-brown);
}


/* Row */
.row {
    display: flex;
    flex-wrap: wrap;
}

/* Column base */
[class*="col-"] {
    position: relative;
    width: 100%;
}

/* Medium columns (md) - 768px and up */
@media (min-width: 768px) {
 
    
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Large columns (lg) - 992px and up */
@media (min-width: 992px) {
    .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

/* Text utilities */
.text-end {
    text-align: right;
}
.text-start {
    text-align: left;
}

@media (max-width: 767.98px) {
    .text-end {
        text-align: left; /* Often overridden for mobile */
    }
}

/* Mobile behavior (below 768px) */
@media (max-width: 767.98px) {
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 991.98px) {
    .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
}

/* Small devices behavior */
@media (min-width: 576px) and (max-width: 767.98px) {
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}




@media(max-width:1440px){
    h1{
        font-size: 40px;
    }
    h2{
        font-size: 40px;
    }
    h3{
        font-size: 26px;
    }
    h4{
        font-size: 16px;
        font-weight: bold;
    }
    a{
        font-size: 14px;
    }
    .xl3-text {
        font-size: 26px;
    }
    .l-text{
        font-size: 16px;
    }
    .m-text{
        font-size: 14px;
    }
    .s-text{
        font-size: 12px;
    }
    /* about stats section start */
    .banner{
        height: 132px;
    }
    .banner p.small-text{
        font-size: 14px;
    }
    .banner p.large-text{
        font-size: 30px;
    }
    .about-section-inner .content-container{
        width: 425px;
    }
    .about-section-inner .image-container{
        max-width: 520px;
    }
    /* about stats section end */
    /* services section start */
    .services-section .service-card {
        height: 500px;
        /* height: 427.5px; */
        width: 322px;
        padding-inline:30px;
    }
    .services-section .service-card.active{
        gap: 4px;
    }
    .services-section .spacer{
        margin-top: 150px;
    }
    .services-section .service-card.active .spacer{
        margin-top: 35px;
    }
    .toggle-more{
        font-size: 12px;
    }
    .services-section .service-card.active h3{
        margin-bottom: 4px;
    }

    /* services section end */
    /* team section start */
    /* .team-slider .team-card {
        width: 156px;
        height: 300px;
        background: transparent;
        cursor: pointer;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        flex-shrink: 0;
        border-inline: 1px solid var(--dark-brown);
        opacity: 0.4;
    }
    .team-slider .team-card.active {
        width: 250px;
        height: 300px;
        border-left-color: #D8D8D8;
        opacity: 1; */

    /* }
        .team-slider .team-image{
        height: 205px;
    } */
    /* team section end */
    /* process section start */
    .process .step{
        height: 250px;
    }
    
    .process .step:nth-of-type(1) {
        height: 280px;
    }
    /* process section end */
    /* case studies section start */
    .project-info{
        width: 400px;
        flex: unset;
    }
    .project-info .projects-list-overlay{
        height: 340px;
        top: 75px;
        width: unset;
    }
    .project-info .nav-arrow{
        width: 90px;
        height: 90px;
        top: 38%;
        left: -53px;
    }
    .case-image{
        width: 321px;
        height: 365px;
    }
    /* awards section start */
    .awards .card img{
        width: 173px;
    }
    /* awards section end */
    /* case studies section end */
        .form-group label{
            font-size: 13px;
        }
        .form-row input, textarea{
            font-size: 12px;
        }
        .cta-button button{
            font-size: 16px;;
        }

        .footer-nav a{
            font-size: 14px;
        }
}


@media(max-width:1200px) and (min-width:1000px){
    .services-section .service-card{
        width: 300px;
    }
}
@media(max-width:768px){
    h1{
        font-size: 40px;
    }
    h2{
        font-size: 40px;
    }
    h3{
        font-size: 26px;
    }
    h4{
        font-size: 16px;
        font-weight: bold;
    }
    a{
        font-size: 14px;
    }
    .xl3-text {
        font-size: 26px;
    }
    .l-text{
        font-size: 16px;
    }
    .m-text{
        font-size: 14px;
    }
    .s-text{
        font-size: 12px;
    }
    
} 
/* hero respo start */
 
   @media(max-width:1440px){
        /* .iceberg .iceberg-text-1{
            left: 10px;
        }
         .iceberg .iceberg-text-2{
            right: 5px;
        }
        .iceberg .iceberg-text-3{
            left: -75px;
        }
        .iceberg .iceberg-text-4{
            right: -105px;
        }
        .iceberg .iceberg-text-5{
            left: -125px;
        }
        .iceberg .iceberg-text-6{
            right: -85px;
        }
        .iceberg .iceberg-text-7{
            left: -75px;
        }
        .iceberg .iceberg-text-8{
            right: -50px;
        }
        .iceberg .iceberg-text-9{
            left: -75px;
        }
        .iceberg .iceberg-text-10{
            right: -70px;
        }
        .iceberg .iceberg-text-11{
            left: -40px;
        }
        .iceberg .iceberg-text-12{
            right: -110px;
        }  */
        
   }
   /* @media (min-width: 1000px){
        .hero-section { height: 90vh; max-height: none;position: relative; }
       
    } */

   @media(max-width:1440px){
    .iceberg .iceberg-text .s-text{
        font-size: 0.875rem;
    }
   }
   @media(max-width:1200px){
     
   }
   @media(max-width:1100px){
     .hero-section .text-container p{
        max-width: 400px;
     }
   }
   @media(max-width:1000px){
     .hero-section h1,
    .hero-section .text-container{
        display: none;
    }
     /* .hero-section h1,
    .hero-section .text-container p,
    .hero-section .text-container a,
    .hero-section .text-container .cta-button{
        display: none;
    } */
     .hero-section-inner{
        justify-content: center;
     }
    .hero-section .image-container.iceberg{
        right: unset;
    }
    .iceberg .dashed-line, .iceberg .s-text{
        opacity: 1;
        transform: none;
    }
   }
   @media(max-width:768px){
       .hero-section{
        height: 476px;
       }
       .hero-section .text-container{
        padding-left: 0;
       }
        .hero-section .container{
            padding:50px 20px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .hero-section .section-light{
            display: none;
        }

        .hero-section .overlay{
            height: 0;
        }
        .hero-section .image-container.iceberg{
            width: 200px;
        }
       .iceberg-text .dashed-line{
        width: 20px;
       }
       .iceberg .outer-circle{
           width: 8.63px;
           height: 8.63px;
        }
        .iceberg .outer-circle .inner-circle{
             width: 4.65px;
            height: 4.65px;
        }
         .iceberg .iceberg-text-1{
            top: 25px;
            left: -50px;
        }
         .iceberg .iceberg-text-2{
            top: 25px;
            right: -5px;
        }
        .iceberg .iceberg-text-3{
            top: 90px;
            left: -95px;
        }
        .iceberg .iceberg-text-4{
            top: 90px;
            right: -108px;
        }
        .iceberg .iceberg-text-5{
            top: 160px;
            left: -105px;
        }
        .iceberg .iceberg-text-6{
            top: 160px;
            right: -100px;
        }
        .iceberg .iceberg-text-7{
            top: 200px;
            left: -90px;
        }
        .iceberg .iceberg-text-8{
            top: 200px;
            right: -100px;
        }
        .iceberg .iceberg-text-9{
            top: 250px;
            left: -90px;
        }
        .iceberg .iceberg-text-10{
            top: 250px;
            right: -85px;
        }
        .iceberg .iceberg-text-11{
            top: 295px;
            left: -80px;
            text-align: right;
        }
        .iceberg .iceberg-text-12{
            top: 300px;
            right: -45px;
        } 
        .iceberg .iceberg-text p.s-text{
            font-size: 10px;
            max-width: 100px;
        }
        .iceberg .iceberg-text:nth-of-type(odd) p.s-text{
            text-align: right;
        }
    }
    @media (max-width: 429px) {
        .hero-section .image-container.iceberg{
            width: 170px;
        }
        .hero-section .overlay{
            height: 217px;
        }
        .iceberg-text .dashed-line{
            width: 10px;
        }
        .iceberg .outer-circle{
            width: 7px;
            height: 7px;
        }
        .iceberg .outer-circle .inner-circle{
            width:3px;
            height: 3px;
        }

         .iceberg .iceberg-text-1{
            top: 20px;
            left: -35px;
        }
         .iceberg .iceberg-text-2{
            top: 20px;
            right: 5px;
        }
        .iceberg .iceberg-text-3{
            top: 75px;
            left: -85px;
        }
        .iceberg .iceberg-text-4{
            top: 75px;
            right: -95px;
        }
        .iceberg .iceberg-text-5{
            top: 135px;
            left: -90px;
        }
        .iceberg .iceberg-text-6{
            top: 135px;
            right: -90px;
        }
        .iceberg .iceberg-text-7{
            top: 170px;
            left: -80px;
        }
        .iceberg .iceberg-text-8{
            top: 170px;
            right: -100px;
        }
        .iceberg .iceberg-text-9{
            top: 205px;
            left: -90px;
        }
        .iceberg .iceberg-text-10{
            top: 205px;
            right: -90px;
        }
        .iceberg .iceberg-text-11{
            top: 230px;
            left: -85px;
            text-align: right;
        }
        .iceberg .iceberg-text-12{
            top: 230px;
            right: -65px;
        } 
    }

/* hero respo end */
/* about respo start */
/* Mobile Design - Stay in 2x2 grid */
        @media (max-width: 1100px) {
        .about-section-inner .content-container,
        .about-section-inner .text-container{
            gap: 30px;
        }
          
        }
        @media (max-width: 1100px ) and (min-width: 768px) {
        .about-section-inner .content-container{
            max-width: 400px;
            align-self: flex-start;
        }
        .about-section-inner .video-container{
            align-self: flex-start;
        }
        .about-section-inner .image-container{
                max-width: 400px;
        }
        
        
        }
        @media (max-width: 1000px)and (min-width: 768px) {
            .about-section-inner{
                align-items: center;
            }
        }
        @media (max-width: 1000px) {
             .about-section-inner{
                flex-direction: column-reverse;
                gap: 30px;
            }
        }
        @media (max-width: 768px) {
       
        .about-section-inner .content-container{
            width: 90%;
            max-width: unset;
        }
            .about-section.stats-container {
                padding: 40px 16px;
            }
            
            .about-section.stats-container {
                gap: 32px 24px;
            }
            .about-section-inner .stat-number svg{
                width: 16px;
                height: 16px;
            }
            .banner{
                height: 220px;
                width: 100%;
            }
            .banner p.large-text {
                font-size: 32px;
            }
            .banner p.small-text {
                font-size: 14px;
                width: 95%;
            }
        }

        @media (max-width: 480px) {
            .about-section-inner .content-container{
                width: 100%;
            }
            .about-section.stats-container {
                max-width: 392px;
                padding: 32px 16px;
            }
            
            .about-section.stats-container {
                gap: 28px 20px;
            }
            
            .about-section.stat-number {
                margin-bottom: 4px;
            }
        }
        /* about respo end */
        /* services respo start */
        @media (max-width: 1200px) {
             .services-section .section-content{
                margin-bottom: 30px;
            }
            .services-section .section-headline{
                margin-bottom: 20px;
            }
            .services-section .section-description{
                margin-top: 0;
            }
        }
        @media (max-width: 1000px) {
            .services-section .col-lg-4{
                display: flex;
                justify-content: center;
            }
           
        }
        @media (max-width: 480px) {
            /*.services-section .section-content{*/
            /*    padding-inline: 15px;*/
            /*}*/
            .services-section .col-lg-4{
                justify-content:start;
            }
        }
/* services respo end */
/* process respo start */
 @media( max-width: 1440px ) and (min-width:1200px) {
    .process .brown-light{
        top: -250px;
        right: -320px;
        width: 382px;
        height: 382px;
        filter: blur(150px);
        opacity: 0.39;
    }
    .process .blue-light{
        left: -320px;
        width: 382px;
        height: 382px;
        filter: blur(120px);
        opacity: 0.39;
    }
 }
 @media( max-width: 1119px ){
    .process .brown-light,
    .process .blue-light{
        display: none;
    }
 }
 @media( max-width: 1399px ) and (min-width:1276px) {
            .process .step .l-text {
                font-size: 1rem
            }
        }
        @media( max-width: 1275px) and (min-width:1105px){
            .process .step .l-text {
                font-size: 0.9rem
            }
        }
        @media( max-width: 1104px) and (min-width:993px){
            .process .step .l-text {
                font-size: 0.8rem
            }
        }
        @media( max-width: 1000px){
            .process .step:nth-of-type(1) {
                height: 250px;
            }
            .process .steps .arrow{
                display: none;
            }
        }
/* process respo end */
/* case studies respo start */

        /* Responsive Design */
        @media (max-width: 768px) {
            .case-studies.container{
                padding-left: 0 ;
            }
            .case-studies-title{
                margin-bottom: 0;
                padding-left: 30px;
            }
            .case-studies-content {
                flex-direction: column-reverse;
                gap: 50px;
                height: auto;
            }
            .project-info .projects-list-overlay{
                width: 100vw;
                height: unset;
                top: 0;
                left: 50%;
                transform: translateX(-50%);
            }
            .project-info .nav-arrow{
                top: unset;
                bottom: -25%;
                left: 50%;
                transform: translateX(-50%) rotate(-90deg);
                width: 18%;
                height: unset;
                aspect-ratio:1/1
            }
            .images-container {
                height: 434px;
                max-width: 434px;
                width: 100%;
                padding-right: 10px;
            }
            .image-stack{
                height: 390px;
                max-width: 434px;
                width: 100%;
            }

            .case-image {
                /* width: 330px; */
                /* height: 366px; */
                width: calc(100% - 25px);
            }

            .project-info {
                width: 100%;
                aspect-ratio:437/220;
                flex-shrink: 0;
            }

             .project-list-container {
                 display: flex;
                justify-content: center; /* Center the viewport */
                align-items: center;
                height: auto;
                width: 100%;
                overflow-x: hidden;
                overflow-y: hidden;
            }

            .project-list {
                display: flex;
                flex-direction: row;
                width: max-content;
                padding: 20px 0;
                height: auto;
                position: relative;
                left: 0;
                align-items: center;
                transform: translate(230px, 0px); /* Your centering value - adjust as needed */
                transition: none; /* No CSS transition, GSAP handles it */
            }

            
            .project-item {
                width: 200px;
                min-width: 200px;
                margin-right: 20px;
                position: relative !important; /* <-- Force relative on mobile */
                top: auto !important;
            }
            
            .project-item:last-child {
                margin-right: 0;
            }
        }
/* case studies respo end */
/* team respo start */
  @media(max-width:768px){
            .team-section-inner .chairman-container{
                flex-direction: column;
                gap: 30px;
                
            }
            .team-section-inner .chairman-container .chairman-name{
                font-size: 18px;
            }
            .team-section-inner .chairman-container .chairman-title{
                font-size: 14px;
            }
            .team-section-inner .chairman-container .text-container h3{
                margin-bottom: 16px;
            }
            .team-section-inner .chairman-container .text-container{
                margin-bottom: 40px;
            }
            .scrub-track{
                width: 80vw;
            }
        }
/* team respo end */
/* awards respo start */
 @media ( max-width: 1000px){
            .awards-inner .cards{
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 35px;
            }
            .awards-inner .cards .card{
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                align-items: center;
            }
            
        }
        @media ( max-width: 600px){
            .awards .card img{
                width: 150px;
            }
            .awards .card .xl-text{
                margin-bottom: 0
            }
        }
        
/* awards respo end */
/* testimonials respo start */
  /* Responsive Design */
        @media (max-width: 1440px) {
            .testimonial .container {
                padding: 100px 5%;
            }
        }

        @media (max-width: 1200px) {
            .testimonial .container {
                padding: 50px 5%;
            }
            
            .testimonial .title-nav h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .testimonial .container {
                padding: 30px 20px;
            }

            .testimonial .title-nav {
                flex-direction: column;
                gap: 20px;
                text-align: center;
                margin-bottom: 20px;
            }

            .testimonial .title-nav h2 {
                font-size: 1.8rem;
            }

            .testimonial .slide {
                flex: 0 0 280px;
                width: 280px;
                height: 400px;
                padding: 25px;
                margin-right: -50px;
            }

            .testimonial .slider-track {
                padding: 30px 0;
            }
        }

        @media (max-width: 480px) {
            .testimonial .slide {
                flex: 0 0 260px;
                width: 260px;
                height: 380px;
                padding: 20px;
                margin-right: -40px;
            }

            .testimonial .title-nav h2 {
                font-size: 1.5rem;
            }
        }
/* testimonials respo end */
/* faqs respo start */
 @media (max-width:768px){
            .faqs-inner{
                padding-inline: 5%;
                padding-bottom: 50px;
            }
            .faqs-inner .question .xl-text{
                max-width:90%;
            }
        }
/* faqs respo end */



@media (max-width: 1200px) {
  .container {
    padding: 60px;
  }
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}

@media (max-width: 992px) {
    html{
        font-size: 14px;
    }
  .hero-section{
    overflow: hidden;
    height: fit-content;
  }
  .hero-section-inner,
  .project-inner,
  .process .steps {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
  .hero-section-inner{
    flex-direction:column-reverse;
}
  .process .steps .arrow{
    transform: rotate(90deg);
    margin: 30px 0;
  }

  .projects .text-container,
  .process .step {
    max-width: 100%;
    width: 100%;
  }

  .carousel {
    perspective: none;
    height: auto;
    flex-wrap: wrap;
    /* transform: rotateX(-11deg) rotateZ(5deg) translateY(-70px) scale(0.7); */
    transform: rotateX(-11deg) rotateZ(5deg) translateY(-190px) translateX(40px) scale(0.6);
}

  .carousel-image {
    margin: 0;
    transform: none;
    background: none;
  }
}

@media (max-width: 768px) {
    html{
        font-size: 12.75px;
    }
  .header .header-container,
  .title-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .form-row {
    flex-direction: column;
  }

  .cta-button {
    align-self: stretch;
  }

  .cta-button a,
  .cta-button button {
    width: 100%;
    text-align: center;
  }
  .team-section .cta-button a{
      padding-inline:15px;
  }
  .footer-nav {
    gap: 1rem;
  }
  .site-footer{
    padding: 50px 15px;
  }
  .footer-nav a{
    font-size: 12px;
    font-weight: 400;
  }
  .footer-top{
    padding: 0;
  }
}
@media (max-width: 576px) {
        .carousel {
            height: 400px;
            /* transform: rotateX(-11deg) rotateZ(5deg) translateY(-70px) scale(0.7); */
            transform: rotateX(-11deg) rotateZ(5deg) translateY(-140px) translateX(-60px) scale(0.6);
        }

  h1 {
    font-size: 2rem;
  }

  h1 b {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .xl6-text,
  .xl5-text,
  .xl4-text {
    font-size: 2rem;
  }

  .container {
    padding: 30px;
  }

  .footer-logo-placeholder {
    width: 150px;
  }
}

