@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}


body {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: bold;
    background-color: black;
}

html {
    font-size: 10px;
}






/*---logo---*/
/*navigation bar*/
.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: #FC5C03;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: top 0.3s ease-in-out;
    margin-top: -14px;
  }
  
  .hidden {
    top: -100px;
  }
  
  .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }
  
  .logo img {
    max-height: 50px;
  }
  
  .menu {
    flex: 1;
    padding-top: 30px;
  }
  
 
  .menu ol {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: space-between;
  }
  
  .menu ol li {
    margin: 0 10px;
    
  }
  
  .menu-item {
    border: 1px solid #ffa777;
    border-radius: 10px;
    padding: 1px 10px 1px 10px; 
    /* background-color: #ffa777;  */
    background-color: #ffffff;
    transition: background-color 0.3s ease, color 0.3s ease;
}

  .menu-item:hover {
    background-color: black;
    border: 1px solid black;
  }

  .menu ol li a {
    font-family: 'Space Grotesk', sans-serif;
    
    text-decoration: none;
    color: black;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 1px;
    
  }
  
  .menu-item:hover a {
    color: white !important;
}
  
  .hamburgers {
    font-size: 20px;
    margin-top: 25px;
    float: right;
    display: none;
    cursor: pointer;
  }
.mobile-menu {
  display: none;
  position: fixed;
  top: 57px;
  left: 0;
  width: 100%;
  height: calc(100vh - 57px);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px); /* 👈 Add this line */
  padding: 30px 20px;
  text-align: left;
  z-index: 1000;
}

.mobile-menu {
  border: 1px solid transparent; /* Force a new layer for rendering */
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ol {
    list-style: none;
    padding: 0;
    margin: 0;
    
}

.mobile-menu ol li {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2); /* Thin line between items */
}

.mobile-menu ol li a {
    font-family: 'Space Grotesk', sans-serif;
    text-decoration: none;
    color: black; /* Black text */
    font-weight: 500;
    font-size: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu ol li a span {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.5); /* Faded arrow */
}

.close-menu {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: black;
    cursor: pointer;
    font-weight: bold;
}



@keyframes slideUpFade {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}


  /* Responsive Styles */
  @media (max-width: 768px) {
    .menu {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: #FC5C03;
      padding: 10px 0;
    }
  
    .menu.active {
      display: flex;
    }
  
    .menu ol {
      flex-direction: column;
      align-items: center;
    }
  
    .menu ol li {
      margin: 10px 0;
    }
  
    .hamburgers {
      display: block;
    }
  
    .logo {
      justify-content: space-between;
      width: 100%;
    }
  }

/*navigation bar end*/

/*---main--*/


/*--circles--*/

main {
    font-family: 'Space Grotesk', sans-serif;
    width: 100%;
    padding: 0;
    margin: 0;
    background: rgb(255, 255, 255);
}

.landing-page {
    z-index: 5;
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: center;
    background: rgb(255, 255, 255);
}

/*---circles--*/

main {
    font-family: 'Space Grotesk', sans-serif;
    width: 100%;
    padding: 0;
    margin: 0;
    background: #fff;
}

.landing-page {
    z-index: 5;
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.center-container {
    display: flex;
    width: 90%;
    height: 100vh;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    margin: auto;
}

.circle-container {
    display: flex; 
    width: 60%;
    height: 80%;
    justify-content: space-between;
    background: #fff;
    align-items: center;
}

.circle-1, .circle-2, .circle-3 {
    position: relative;
    width: 25%;
    height: 30rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -260px;
}

.circle-1 .link, .circle-2 .link, .circle-3 .link {
    position: absolute;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-1 .link p, .circle-2 .link p, .circle-3 .link p {
    font-size: 2.2rem;
    letter-spacing: 5px;
}

.circle-1 .text, .circle-2 .text, .circle-3 .text {
    color: #707070;
    width: 100%;
    height: 100%;
    position: absolute;
    animation: rotateText 10s linear infinite;
}

.circle-1 .text p, .circle-2 .text p, .circle-3 .text p {
    font-size: 1.2rem;
}

@keyframes rotateText {
    0% {
        transform: rotate(360deg);
    }
    100% {
        transform: rotate(3deg);
    }
}

.circle-1 .text span, .circle-2 .text span, .circle-3 .text span {
    position: absolute;
    left: 50%;
    font-size: 1.2em;
    transform-origin: 0 15rem;
}

@media (max-width: 901px) {
    .circle-container {
        flex-direction: column;
        width: 100%;
        height: auto;
        margin-bottom: 50px; /* Add space below circles */
    }

    .circle-1, .circle-2, .circle-3 {
        width: 80%;
        height: 20rem;
        margin: 20px 0;
    }

    .circle-1 .text span, .circle-2 .text span, .circle-3 .text span {
        transform-origin: 0 10rem;
    }

    .images {
        position: relative; 
            z-index: 1; /* Ensures it's below circles */
            margin-top: 180px; /* Push Show Reel further down */
    }

    .landing-page {
        padding-bottom: 100px; /* Extra space below circles */
        margin-top: 0;
        padding-top: 0;
    }
    
    .img-11 {
        margin-top: 0; /* Remove negative margin */
    }
}     

@media only screen and (min-width: 600px) and (max-width: 798px) {
    .images {
        position: relative; 
            z-index: 1; /* Ensures it's below circles */
            margin-top: 300px; /* Push Show Reel further down */
    }
    .circle-container {
        margin-top: 120px;
    }
}

@media only screen and (min-width: 799px) and (max-width: 898px) {
    .images {
        position: relative; 
            z-index: 1; /* Ensures it's below circles */
            margin-top: 380px; /* Push Show Reel further down */
    }
    .circle-container {
        margin-top: 180px;
    }
}

@media (max-width: 399px) {
    .circle-1, .circle-2, .circle-3 {
        width: 100%; /* Make the circles bigger */
        height: 36rem; /* Increase height */
    }

    .circle-1 .text span, .circle-2 .text span, .circle-3 .text span {
        transform-origin: 0 18rem; /* Adjust text rotation pivot */
    }
    .center-container {
        margin-top: 50px;
    }
    
}



/*--circles-end--*/


/*------about-us--------*/

.about-us {
    width: 100%;
    height: 100vh;
    border: 1px solid rgb(0, 0, 0);
    color: rgb(0, 0, 0);
}

.about-us .row {
    height: 100%;
}

.about-container {
    border: 1px solid rgb(0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;    
}

.about-container img {
    max-width: 100%;
    max-height: 100%;
}






/*----web-form-data-----*/

/*instrument copy*/
.page-22 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
    width: 100%;
    height: 65vh;
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    justify-content: center;
    align-items: center;
    display: flex;
    margin-top: 0em;
    background-image: url('/images/patterns/home-about.svg'); /* Replace 'path_to_your_image.jpg' with your image file path */
    background-size: cover; /* Ensures the image covers the entire container */
    background-position: center; /* Centers the image within the container */
}

.text-containerr{
    max-width: 80%;
    height: fit-content;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.text-containerr h3 {
    font-size: 1.6rem;
    margin-bottom: 1em;
    font-weight: 350;
    color: #707070;
}

.text-containerr h1 {
    font-size: 8rem;
    font-weight: 450;
    margin-bottom: 0.5em;
}

.text-containerr p {
    padding: 0 10em 0 10em;
    font-size: 1.9rem;
    font-weight: 350;
    
}

.text-containerr .orange {
    color: #FC5C03;
}

/* Container for centering the button */

.button-containerr {
    display: flex;
    justify-content: center;
    margin-top: 3em;
}

/* Creative Button Styles */
.creative-buttonn {
    font-family: 'Space Grotesk', sans-serif;
    padding: 1.5em 3.0em;
    font-size: 1.6em;
    color: white;
    background-color: #FC5C03;
    border: 0.2em solid transparent;
    border-radius: 5em;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
    text-decoration: none; /* Remove underline */
}

.creative-buttonn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: white;
    transition: all 0.4s ease;
    z-index: -1;
}

.creative-buttonn:hover {
    color: #FC5C03;
    border-color: #FC5C03;
}

.creative-button:hover::before {
    left: 0;
}

/* Additional animation */

.creative-buttonn:hover {
    transform: scale(1.05);
    text-decoration: none; /* Remove underline */
}

.creative-buttonn::after {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: white;
    transition: all 0.4s ease;
    z-index: -1;
    text-decoration: none; /* Remove underline */
}

.creative-buttonn:hover::after {
    right: 0;
}

/*--end---*/

@media (max-width: 576px) {
    .text-containerr p {
        padding: 0;
        font-size: 2.2rem;
        font-weight: 350;
        
    }

    .text-containerr h1 {
        font-size: 5rem;
    }


}

/*instrument copy end*/

/*-----image-slider--*/


.slider-container {
    font-family: 'Space Grotesk', sans-serif;
    top: 20px;
    left: 15px;
    padding-left: 10px;
    width: 100%; /* Adjust as needed */
    height: 85vh; /* Adjust as needed */
    
}
  
.slider {
    margin-top: 20px; /* Adjust as needed */
}

.slick-slide {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    
}

.slider .slider-image {
    margin-right: 30px;
    width: 570px; /* Adjust as needed */
    height: 500px; /* Adjust as needed */
    object-fit: cover;

}

.slider-text{
    margin-top: 15px;
}

.slider-text h1 {
    font-size: 25px;
    font-weight: 500;
}

.slider-text p {
    margin-top: 15px;
    font-size: 18px;
    margin-top: 15px;
}

.slider-text .highlight {
    padding: 8px;
    border-radius: 10px;
    background-color: rgb(230, 230, 230);
    margin-right: 10px;
}


 @media (max-width: 576px) {
    .slider-container{
        margin-top: 35px;
    }
    .slider .slider-image {
      width: 100%;
      height: auto;
      max-width: 100%;
      max-height: 80vh; /* Adjust as needed */
      object-fit: contain;
      margin-right: 0;
    }
    .slider .slider-banner {
        display: flex;
        flex-direction: column-reverse;
      }
      .slider-text {
        position: static;
        margin-top: 20px; /* Adjust as needed */
        padding: 20px;
      }
} 

/* @media only screen and (max-width: 600px) {
    .container-fluid {
        display: none; /* Hides the element 
    }
} */

@media only screen and (max-width: 992px) {
    .container-fluid {
        display: none; /* Hides the element */
    }
}

/*responsive mode for works*/
.ok {
    width: 100%;
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    justify-content: center;
    align-items: center;
    display: flex;    
}

.page-24 {
    margin-top: 15em;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    display: flex;
    align-items: center;
    color: #FC5C03;
}

.textt-container {
    width: 70%;
    height: fit-content;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 10em;
}

.textt-container h3 {
    font-size: 2rem;
    margin-bottom: 0.5em;
    font-weight: 300;
    color: gray;
}

.textt-container h1 {
    font-size: 8rem;
    font-weight: 500;
    margin-bottom: .5em;
}

.textt-container p {
    font-size: 1.5rem;
}

/*--work-container--*/

.workk-container {
    width: 100%;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    display: flex;
    margin-bottom: 8em;
    flex-wrap: wrap;
}

.imgg-container {
    width: 49%;
    border-radius: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding-bottom: 10px;    
}

.imgg-container img {
    border-radius: 1em;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.imgg-container video {
    border-radius: 1em;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.workk-container .hover-effect {
    margin-top: 2%;
    width: 15%;
    border-radius: .5em;
    padding: 1em 2.5em;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: background-color 0.5s ease;
    background-color: white;
    color: black;
}

.hover-effect:hover {
    background-color: rgb(181, 181, 181);
}

.workk-container button p {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: .1em;
    color: black;
}

/*--responsive works -- START*/
.sliderr-text {
    margin-top: 8px;
    padding-bottom: 10px;
}

.sliderr-text h1 {
    font-size: 25px;
    font-weight: 500;
    padding-top: 10px;
    color: black;
    text-decoration: none; 
}

.sliderr-text p {
    margin-top: 15px;
    font-size: 15px; 
    margin-bottom: 10px;
    text-decoration: none;   
}

.sliderr-text .highlight {
    padding: 8px;
    border-radius: 10px;
    background-color: rgb(230, 230, 230);
    color: rgb(0, 0, 0);
    margin-right: 10px;
}

/* Remove underline from h1 and p elements if they are links */
.textt-container h1,
.textt-container p {
    text-decoration: none; /* Remove underline */
}

/* If the h1 and p are inside an anchor tag, you can also do this */
.textt-container a {
    text-decoration: none; /* Remove underline from links */
}

/* If you want to ensure no underlines in the entire workk-container */
.workk-container a {
    text-decoration: none; /* Remove underline from all links in workk-container */
}

/*--BRAND IDENTITY-- END*/

/* Responsive styling for mobile devices */
@media only screen and (max-width: 600px) {
    .page-24 {
        margin-top: -9em;
    }
    .imgg-container {
        width: 95%; /* Full width for single column layout */
        margin-bottom: 1em; /* Add spacing between items if needed */
        justify-content: center;
        align-items: center;
    }
    .sliderr-text h1 {
        text-decoration: none;
    }
    .slider-text p {
        text-decoration: nones;
    }
}

/* Hide the .page-24 section on desktop */
@media only screen and (min-width: 992px) {
    .page-24 {
        display: none; /* Hides the element on desktop */
    }
}

/* Additional responsive adjustments for larger mobile devices */
@media only screen and (min-width: 601px) and (max-width: 992px) {
    .textt-container {
        width: 90%; /* Adjust width for larger mobile devices */
    }

    .textt-container h1 {
        font-size: 5rem; /* Adjust heading size for larger mobile devices */
    }

    .textt-container p {
        font-size: 1.2rem; /* Adjust paragraph size for larger mobile devices */
    }

    .workk-container {
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center align items */
    }

    .imgg-container {
        width: 80%; /* Adjust width for larger mobile devices */
    }
}


/*--end---*/





/*----What we do----------*/

.page-2 {
    font-family: 'Space Grotesk', sans-serif;
    width: 100%;
    height: 80vh;
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    justify-content: center;
    align-items: center;
    display: flex;
    margin-top: -60px;
    background-image: url('/images/patterns/home-about.svg'); /* Replace 'path_to_your_image.jpg' with your image file path */
    background-size: cover; /* Ensures the image covers the entire container */
    background-position: center; /* Centers the image within the container */
}

.text-container{
    max-width: 80%;
    height: fit-content;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.text-container h3 {
    font-size: 1.6rem;
    margin-bottom: 1em;
    font-weight: 350;
    color: #707070;
}

.text-container h1 {
    font-size: 8rem;
    font-weight: 450;
    margin-bottom: 0.5em;
}

.text-container p {
    padding: 0 10em 0 10em;
    font-size: 2.3rem;
    font-weight: 350;
    
}

.text-container .orange {
    color: #FC5C03;
}

/* Container for centering the button */

.button-container {
    display: flex;
    justify-content: center;
    margin-top: 3em;
}

/* Creative Button Styles */
.creative-button {
    font-family: 'Space Grotesk', sans-serif;
    padding: 1.5em 3.0em;
    font-size: 1.6em;
    color: white;
    background-color: #FC5C03;
    border: 0.2em solid transparent;
    border-radius: 5em;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
    text-decoration: none; /* Remove underline */
}

.creative-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: white;
    transition: all 0.4s ease;
    z-index: -1;
}

.creative-button:hover {
    color: #FC5C03;
    border-color: #FC5C03;
}

.creative-button:hover::before {
    left: 0;
}

/* Additional animation */

.creative-button:hover {
    transform: scale(1.05);
    text-decoration: none; /* Remove underline */
}

.creative-button::after {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: white;
    transition: all 0.4s ease;
    z-index: -1;
    text-decoration: none; /* Remove underline */
}

.creative-button:hover::after {
    right: 0;
}

/*--end---*/

@media (max-width: 576px) {
    .text-container p {
        padding: 0;
        font-size: 2.7rem;
        font-weight: 350;
        
    }
}




/*-------Show Reel-------*/

.images {
    
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.img-11 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-radius: 1em;
    margin-bottom: 10em;
    margin-top: -180px;
}

.img-11 video {
    width: 100%;
}

.img-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-radius: 1em;
    margin-bottom: 4em;
}

.img-1 video {
    width: 100%;
}


/*---screen-size----*/

@media only screen and (max-width: 700px) {
    .images {
        width: 100%;
        padding: 0;
    }
    .img-1 {
        padding: 1em 0;
        margin-top: -183px;
    }
    .head-container {
        width: 80%;
    }

    .img-11 {
        margin-bottom: 5em;
    }
}

/*----end------*/

/*--ux container--*/
.ux-container {
    font-family: 'Space Grotesk', sans-serif;
    margin-top: 10em;
    max-width: 95%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 100px;
}

.ux-text-container {
    width: 33%;
}

.ux-h1 {
    font-size: 6rem;
    margin-bottom: 1em;
    font-weight: 500;
}

.ux-p {
    font-size: 2.7rem;
    color: grey;
}

.button-containerrr {
    display: flex;
    justify-content: center;
    margin-top: 3em;
    margin-right: 190px;
}

/* Creative Button Styles */
.creative-buttonnn {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4em; /* Adjust as needed */
    color: white;
    background-color: #FC5C03;
    border: 0.2em solid transparent;
    border-radius: 5em;
    padding: 0.7em 2.5em; /* Adjust button size */
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
    text-decoration: none; /* Remove underline */
    display: inline-block;
    white-space: nowrap; /* Prevent text from breaking */
}


.creative-buttonnn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: white;
    transition: all 0.4s ease;
    z-index: -1;
}

.creative-buttonnn:hover {
    color: #FC5C03;
    border-color: #FC5C03;
    text-decoration: none;
}

.creative-buttonnn:hover::before {
    left: 0;
}

/* Additional animation */
.creative-buttonnn:hover {
    transform: scale(1.05);
}

.creative-buttonnn::after {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: white;
    transition: all 0.4s ease;
    z-index: -1;
}

.creative-buttonnn:hover::after {
    right: 0;
}

.ux-img {
    position: relative;
    width: 53%;
    
    border-radius: 2em;
    padding-bottom: 40.25%;
}

.ux-img .img-container-2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ux-img .img-container-2 .image {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 1.5em;
}

/* Responsive styling for mobile devices */
@media (max-width: 576px) {

    .ux-h1 {
        font-size: 5rem; /* Adjust heading size for mobile */
    }
    .ux-text-container p {
        padding: 0;
        font-size: 3.5rem;
        font-weight: 350;
    }
}

    .creative-buttonnn{
        padding-left: 65px;
        padding-right: 65px;
        font-size: 1.9em;
    }

/* Responsive styling for tablets and smaller devices */
/* Mobile-specific styles (up to 768px) */
@media (max-width: 768px) {
    .ux-container {
        flex-direction: column;
        align-items: center;
        padding: 0 10px; /* Slightly reduce padding */
        text-align: center; /* Center everything */
    }

    .ux-text-container {
        width: 90%; /* Ensure text container is well-sized */
    }

    .ux-h1 {
        font-size: 5rem; /* Adjust heading size */
        margin-bottom: 0.5em;
    }

    .ux-p {
        font-size: 2rem; /* Reduce font size for readability */
        line-height: 1.5em;
        padding: 0 5px;
    }

    .button-containerrr {
        display: flex;
        justify-content: center; /* Ensures button is centered */
        align-items: center;
        width: 100%;
        margin: 2em auto 0 auto; /* Centers the button */
    }
    .creative-buttonnn {
        padding: 1.1em 2.1em; /* Reduce button size */
        font-size: 2.5em;
        margin-bottom: 3em;
    }

    .ux-img {
        width: 95%; /* Ensure image container is within screen */
        padding-bottom: 60%; /* Maintain aspect ratio */
        border-radius: 1.5em;
        margin-top: 2em;
    }

    .ux-img .img-container-2 {
        width: 100%;
        height: 100%;
    }

    .ux-img .img-container-2 .image {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Ensures no distortion */
        border-radius: 1.5em;
    }
}


/* Additional media query for larger mobile devices */
@media (max-width: 992px) {
    .ux-h1 {
        font-size: 5rem; /* Adjust heading size for larger mobile devices */
    }

    .ux-p {
        font-size: 2.5rem; /* Adjust paragraph size for larger mobile devices */
    }
    
}

@media (min-width: 770px) and (max-width: 1198px) {
    .button-containerrr {
        display: none;
    }
}

/*--ux container end--*/

/* Section Styling */
.client-logos {
    text-align: center;
    padding: 50px 0;
    margin-top: 10em;
    margin-bottom: 10em;
}

.client-logos .title {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

/* Logos Container */
.logos-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    height: auto; /* Adjust to fit the logos' height */
    overflow: hidden;
    flex-wrap: wrap; /* Allow logos to wrap on smaller screens */
}

.logos-set {
    position: relative; /* Change to relative for better control */
    display: flex;
    justify-content: center;
    gap: 50px; /* Adjust gap for spacing */
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.logos-set.active {
    opacity: 1;
}

.logoo {
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
    color: #000;
    opacity: 0;
    transform: translateY(-50px);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.logoo.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive styling for tablet and mobile devices */
@media only screen and (max-width: 1024px) {
    .client-logos .title {
        font-size: 13px; /* Adjust title font size for tablets */
    }

    .logoo {
        font-size: 25px; /* Adjust logo font size for tablets */
    }

    .logos-container {
        gap: 30px; /* Reduce gap between logos on tablets */
    }

    .logos-set {
        gap: 30px; /* Reduce gap between logos in each set on tablets */
    }

    #v {
        display: none;
    }
}

@media only screen and (max-width: 768px) {
    .client-logos .title {
        font-size: 18px; /* Adjust title font size for mobile */
    }

    .logoo {
        font-size: 28px; /* Adjust logo font size for mobile */
    }

    .logos-container {
        gap: 20px; /* Reduce gap between logos on mobile */
    }

    .logos-set {
        gap: 20px; /* Reduce gap between logos in each set on mobile */
    }
}

@media only screen and (max-width: 600px) {
    .client-logos .title {
        font-size: 7px; /* Further adjust title font size for smaller mobile devices */
    }

    .logoo {
        font-size: 18px; /* Further adjust logo font size for smaller mobile devices */
    }
}
  
@media only screen and (max-width: 399px) {
    .client-logos .title {
        font-size: 6px;
    }

    .logoo {
        font-size: 15px;
    }
}

  
 
/*---------page-4---------*/

.page-4 {
    width: 100%;
    height: 100vh;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FC5C03;
    flex-direction: column;
    background-image: url('/images/patterns/About-hero.svg'); /* Replace 'path_to_your_image.jpg' with your image file path */
    background-size: cover; /* Ensures the image covers the entire container */
    background-position: center; /* Centers the image within the container */
}


.cta-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-one {
    margin-right: 1em;
}

.cta-two {
    margin-left: 1em;
}

.cta-2{
    background-color: white;
    color: #FC5C03;
    padding: 1.5em 3em;
    font-size: 2em;
}

.cta-2::before {
    background-color: #FC5C03;
}

.cta-2:hover{
    color: white;
    border-color: white;
}

.cta-2::after {
    background-color: #FC5C03;
}



.page-container {
    width: 60%;
    display: flex;
    margin-top: 5em;
    
}

.media-container-1 {
    width: 100%;
    display: flex;
}

.page4-text-container {
    width: 100%;
    justify-content: space-around;
    text-align: center;
}

.page4-text-container h2 {
    margin-bottom: 2em;
    text-decoration: none;
}


.page4-text-container a {
    position: relative;
    text-decoration: none;
    font-size: 3.5rem;
    font-weight: 200;
    letter-spacing: .2em;
    color: white;
    text-decoration: none;
}

.page4-text-container a:hover {
    text-decoration: none;
    color: white;
}

.page4-text-container  a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: white;
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
    text-decoration: none;
}
.page4-text-container a:hover::after {
    visibility: visible;
    transform: scaleX(1);
    animation: animate__fadeIn 0.3s;
    animation-fill-mode: forwards;
    text-decoration: none;
}


.footer {
    margin-top: 4em;
}

.footer p {
    font-size: 2em;
    color: white;
}

@media only screen and (max-width: 900px) {
    /*--last-page*/
    .page-4 .page-container {
        flex-direction: column;
    }
    .page-4 .media-container-1 {
        width: 100%;
        margin-bottom: 3em;
    }
    .page-4 .logo p {
        letter-spacing: .1em;
    }
    /*--screen-size--nav-bar--*/
}




/*--animating element movement---*/

.anim-slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s, transform 0.5s;
}

.anim-slide-up.active {
    opacity: 1;
    transform: translateY(0);
}


/*---------end------*/



/*--screen-size--nav-bar--*/

/*---below-600px---*/

@media only screen and (max-width: 900px) {
    .circle-container {
        flex-direction: column;
        justify-content: flex-start;
        
      }
      .circle-1, .circle-2, .circle-3 {
          margin-bottom: 5em;
      }
      .circle-1 .link p, .circle-2 .link p, .circle-3 .link p {
          letter-spacing: 1px;
      }
  
      /*--page--4---*/
      .container-head {
          flex-direction: column;
      }
      .work-container {
          width: 100%;
          margin-bottom: 5em;
      }
      /* .work-page {
          
      } */
      .work-page h1 {
          display: flex;
          justify-content: center;
          align-items: center;
          margin-bottom: 1em;
      }
      /*----Our-partneres----*/
      
      .brand-logo {
        max-width: 15em;
        height: auto;
      }

      /*--last-page*/
      .page-4 .page-container {
          flex-direction: column;
      }
      .page-4 .media-container-1 {
          width: 100%;
          margin-bottom: 3em;
      }
      .page-4 .logo p {
          letter-spacing: .1em;
      }
}

@media only screen and (max-width: 600px) {
    .web-coloum {
        height: 20vh;
    }
    .web-coloum p {
        font-size: 2rem;
    }
}

/*----end----*/



/*-----screen-size----**/
  
@media only screen and (min-width: 100px) and (max-width: 199px) {
    html {
        font-size: 2px;
    }
}

@media only screen and (min-width: 200px) and (max-width: 399px) {
    html {
        font-size: 3px;
    }
}

@media only screen and (min-width: 400px) and (max-width: 599px) {
    html {
        font-size: 5.5px;
    }
}

@media only screen and (min-width: 600px) and (max-width: 799px) {
    html {
        font-size: 7px;
    }
}

@media only screen and (min-width: 799px) and (max-width: 899px) {
    html {
        font-size: 8px;
    }
}

@media only screen and (min-width: 899px) and (max-width: 1100px) {
    html {
        font-size: 6px;
    }
}

@media only screen and (min-width: 1100px) and (max-width: 1399px) {
    html {
        font-size: 7px;
    }
}

@media only screen and (min-width: 1399px) and (max-width: 1599px) {
    html {
        font-size: 8px;
    }
}

