
@font-face {
font-family: 'Texta Regular';
font-style: normal;
font-weight: normal;
src: local('Texta Regular'), url('TextaRegular.woff') format('woff');
}


@font-face {
font-family: 'Texta Italic';
font-style: normal;
font-weight: normal;
src: local('Texta Italic'), url('TextaIt.woff') format('woff');
}


@font-face {
font-family: 'Texta Thin';
font-style: normal;
font-weight: normal;
src: local('Texta Thin'), url('TextaThin.woff') format('woff');
}


@font-face {
font-family: 'Texta Thin Italic';
font-style: normal;
font-weight: normal;
src: local('Texta Thin Italic'), url('TextaThintIt.woff') format('woff');
}


@font-face {
font-family: 'Texta Light';
font-style: normal;
font-weight: normal;
src: local('Texta Light'), url('TextaLight.woff') format('woff');
}


@font-face {
font-family: 'Texta Light Italic';
font-style: normal;
font-weight: normal;
src: local('Texta Light Italic'), url('TextaLightIt.woff') format('woff');
}


@font-face {
font-family: 'Texta Book';
font-style: normal;
font-weight: normal;
src: local('Texta Book'), url('TextaBook.woff') format('woff');
}


@font-face {
font-family: 'Texta Book Italic';
font-style: normal;
font-weight: normal;
src: local('Texta Book Italic'), url('TextaBookIt.woff') format('woff');
}


@font-face {
font-family: 'Texta Medium';
font-style: normal;
font-weight: normal;
src: local('Texta Medium'), url('TextaMedium.woff') format('woff');
}


@font-face {
font-family: 'Texta Medium Italic';
font-style: normal;
font-weight: normal;
src: local('Texta Medium Italic'), url('TextaMediumIt.woff') format('woff');
}


@font-face {
font-family: 'Texta Bold';
font-style: normal;
font-weight: normal;
src: local('Texta Bold'), url('TextaBold.woff') format('woff');
}


@font-face {
font-family: 'Texta Bold Italic';
font-style: normal;
font-weight: normal;
src: local('Texta Bold Italic'), url('TextaBoldIt.woff') format('woff');
}


@font-face {
font-family: 'Texta Heavy';
font-style: normal;
font-weight: normal;
src: local('Texta Heavy'), url('TextaHeavy.woff') format('woff');
}


@font-face {
font-family: 'Texta Heavy Italic';
font-style: normal;
font-weight: normal;
src: local('Texta Heavy Italic'), url('TextaHeavyIt.woff') format('woff');
}


@font-face {
font-family: 'Texta Black';
font-style: normal;
font-weight: normal;
src: local('Texta Black'), url('TextaBlack.woff') format('woff');
}


@font-face {
font-family: 'Texta Black Italic';
font-style: normal;
font-weight: normal;
src: local('Texta Black Italic'), url('TextaBlackIt.woff') format('woff');
}


*{
    margin: 0;
    padding: 0;
    font-family: 'Texta Regular', sans-serif;
}

html, body {
  overflow-x: hidden; /* Apply to both html and body */
}

header{
  width: 100%;
    display: flex;
    justify-content: center;
    padding: 15px 0;
    position: absolute;
    top: 0;
    z-index: 100000;
    background-color: rgba(255, 255, 255, 0.618);
}

/* mobile nav */

.mobilenav {
  position: fixed;
  top: 0;
  right: -100%; /* Start off-screen */
  width: 75%;
  height: 100%;
  background: #ffffff;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
  transition: right 0.3s ease-in-out;
  z-index: 999;
  padding: 20px;
}

.mobilenav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobilenav ul li {
  margin: 15px 0;
  font-size: 18px;
}

.mobilenav ul li img {
  margin-left: 10px;
}

.hamburger {
  cursor: pointer;
}

.mobilenav.show {
  right: 0; /* Slide in */
}

.close-btn {
  position: absolute;
  width: 50px;
  height: 50px;
  padding: 0;
  top: 10px;
  right: 15px;
  font-size: 24px;
  background: #05ACA1;
  border: none;
  color: white;
  cursor: pointer;
}

.hamburger{
  margin-left: 30px;
  display: none;
}

.hamburger img{
  width: 35px;

}

.container{
    width: 90%;
}

.header-flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img{
    width: 177px;

}

.greenfont{
  color: #05ACA1;
}

nav{
    display: flex;
    width: 50%;
    justify-content: space-between;
    font-weight: 500;
}

nav ul{
    display: flex;
    gap: 40px;
    list-style: none;
}

nav li{
    display: flex;
    gap: 5px;
    align-items: center;
}

nav .active{
  color: #05ACA1;
  font-weight: 600;
}

.language{
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Banner */

.banner{
  position: relative;
}
  
.slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.slide {
  display: none;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 24px;
  height: 100vh;
  background: #ddd;
}

.slide.active {
  display: flex;
}

.slider-dots {
  text-align: center;
  margin-top: 10px;
}

.slider-dots .dot {
  display: inline-block;
  width: 40px;
  height: 5px;
  margin: 0 5px;
  background-color: #ccc;
  border-radius: 5px;
  cursor: pointer;
}

.slider-dots .dot.active {
  background-color: teal;
}

.slider-nav {
  text-align: center;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

button {
  padding: 15px 20px;
  background-color: #05ACA1;
  color: white;
  border: none;
  cursor: pointer;
  margin: 0 10px;
  
}

button:hover {
  background-color: darkcyan;
}

.slider-navigations{
  position: absolute;
  bottom: 0;
  padding-bottom: 10px;
  padding-top: 50px;
  display: flex;
  justify-content: center;
  align-items: end;
  width: 100%;
  height: 100px;
  /* background-color: #05ACA1; */
  background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%,rgba(255, 255, 255, 1) 50%,rgba(255, 255, 255, .7) 75%,rgba(255, 255, 255, .4) 85%, rgba(255, 255, 255, 0) 100%);
}

.slider-flex{
  display: flex;
  justify-content: space-between;
}

.counter{
  font-size: 18px;
  
}

.current-page{
  color: #C2C5C5;
}

.counter-number{
  color: #9fa49f;
}

.slide1{
  background: url(/assets/img/white-gray-space-data-center.png);
  background-size: cover;
}
.slide2{
  background: url(/assets/img/3.jpeg);
  background-size: cover;
}
.slide3{
  background: url(/assets/img/white-gray-space-data-center.png);
  background-size: cover;
}
.slide4{
  background: url(/assets/img/3.jpeg);
  background-size: cover;
}

.banner-text{
  background: url(/assets/img/back.png);
  padding: 100px;
  background-size: cover;
}


.banner-light{
  color: #1A1B1F;
  letter-spacing: 8px;
  font-weight: 200;
  font-size: 55px;
  margin-bottom: 20px;
}

.banner-strong{
  color: #1A1B1F;
  font-weight: 700;
  letter-spacing: 8px;
  font-size: 65px;
  margin-bottom: 20px;
}


.banner-text p{
  font-size: 15px;
  margin-bottom: 20px;
  color: #2E2F33;
}

.nav-btn{
  cursor: pointer;
}

/* Solutions */

.solution{
  display: flex;
  justify-content: end;
  margin-top: 100px;
}

.solutions-flex{
  display: flex;
  width: 95%;
  gap: 100px;
}

.how-we-help{
  width: 65%;
  overflow: hidden;
  transform: translateX(-50%);
}

.how-we-help {
  transition: opacity 250ms ease-in, transform 700ms ease-in;
  opacity: 0;
  }

.how-we-help.appear{
    transform: translateX(0);
    opacity: 1;
    }

.how-we-help span{
  font-weight: 100;
  color: #1A1B1F;
  letter-spacing: 5px;
}

.how-we-help h2{
  font-size: 50px;
}

.how-we-help-img{
  width: 35%;
  overflow: hidden;
  transform: translateX(50%);
}

.how-we-help-img {
  transition: opacity 250ms ease-in, transform 700ms ease-in;
  opacity: 0;
  }

  .how-we-help-img.appear{
    transform: translateX(0);
    opacity: 1;
    }
    

  
.help-img img{
  width: 100%;
}

.how-we-help-grid{
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 80px;
}

.oursolution{
  display: flex;
  flex-direction: column;
  gap: 20px;
}


.oursolution h3{
  font-size: 25px;
  color: #1A1B1F;
  line-height: 150%;
}

.oursolution p{
  font-size: 16px;
  color: #46484D;
  line-height: 200%;
}

.oursolution img{
  width: 35px;
}

.oursolution a{
  color: #05ACA1;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  gap: 10px;
  font-size: 14px;
}

.oursolution a img{
  width: 10px;
}

.how-we-help-img{
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.how-we-help-img a{
  color: #05ACA1;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  gap: 10px;
}

.how-we-help-img a img{
  width: 10px;
}

/* Expertise */

.expertise-heading{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.expertise-heading h2{
  font-size: 50px;
  color: #1C1D20;
  line-height: 150%;
  letter-spacing: .8rem;
}

.expertise-heading p{
  display: flex;
  justify-content: end;
  width: 40%;
}

.expertise {
  padding: 100px;
  box-sizing: border-box;
  max-width: 90%;
  margin: 60px auto;
  border:1px solid #DCE8E5;
  background: linear-gradient(to top, #F2FCFB 0%, rgba(255, 255, 255, 0) 100%);
}

.highlight {
  font-weight: 200;
}

.description {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.stats {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 80px;
  width: 100%;
  transform: translateY(20%);

}

.stats {
    transition: opacity 250ms ease-in, transform 900ms ease-in;
    opacity: 0;
  }

.stats.appear
{
  transform: translateY(0);
  opacity: 1;
}



.stat h2 {
  font-size: 80px;
  color: #2ac7ab;
  margin-bottom: 10px;
}

.stat p {
  font-size: 1rem;
  color: #555;
}

/* Brand that trust us */


.brands-section {
  margin: 50px auto;
  background: linear-gradient(to top, #F2FCFB 0%, rgba(255, 255, 255, 0) 100%);
  padding: 50px 0;
  border-top: 1px solid #DCE8E5;
  border-bottom: 1px solid #DCE8E5;
}


.brand-heading{
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}



.brands-section  h2{
  font-size: 50px;
  color: #1C1D20;
  line-height: 150%;
  letter-spacing: .8rem;
}

.highlight {
  font-weight: 200;
}


.brands-section h3 {
  font-size: 24px;
  font-weight: lighter;
  margin-bottom: 30px;
}

.brands-carousel .brand-item img {
  width: 200px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.brands-carousel .owl-nav {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}


.owl-nav .owl-prev,
.owl-nav .owl-next {
  background: #fff; /* White background */
  border: 1px solid #D0D1D5; /* Light border */
  border-radius: 50%; /* Circular shape */
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s, border 0.3s;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.owl-nav .owl-prev:hover,
.owl-nav .owl-next:hover {
  background: #f0f0f0; /* Slight hover effect */
  border-color: #000; /* Darker border on hover */
}

.owl-nav .custom-nav-btn {
  font-size: 18px;
  font-weight: bold;
  color: #000; /* Black arrow color */
}

/* Case study */

.casestudy{
  display: flex;
  justify-content: center;
  position: relative;
}

.eclipse {
  width: 700px;
  height: 700px;
  position: absolute;
  z-index: -1;
  left: -250px;
  animation: moveAround 6s infinite ease-in-out;
}

@keyframes moveAround {
  0% {
    transform: translate(0px, 0px);
  }
  25% {
    transform: translate(100px, -50px);
  }
  50% {
    transform: translate(0px, -100px);
  }
  75% {
    transform: translate(-100px, -50px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}


.casestudy-heading{
  display: flex;
}

.casestudy-head{
  text-align: right;
  width: 60%;
}
.casestudy-head h2{
  font-size: 40px;
  color: #1C1D20;
  line-height: 150%;
  letter-spacing: .6rem;
}

.casestudy-description p{
  font-size: 16px;
  color: #46484D;
  line-height: 200%;

}

.casestudy-description img{
  width: 15px;
}

.casestudy-description a{
  color: #05ACA1;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  gap: 10px;
  font-size: 14px;
  margin-top: 20px;
}

.casestudy-head .highlight {
  font-weight: 200;
}

.casestudy-description{
  width: 40%;
}


.case-study-grid{
  margin-top: 50px;
  display: grid;
  gap: 150px;
  grid-template-columns: repeat(2,1fr);
}

.case-study{
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 20px;
  transform: translateY(-20%);

}

.case-study {
    transition: opacity 250ms ease-in, transform 900ms ease-in;
    opacity: 0;
  }

.case-study.appear
{
  transform: translateY(0);
  opacity: 1;
}

.casestudy-shorthead::before{
    display: inline-block;
    content: "";
    border-left: .2rem solid #05ACA1;
    width: 10px;
    height: 100%;
    
    
}

.case-study-img{
  width: 100%;
}

.casestufy-container{
  width: 70%;
}

.case-study h3{
  
  font-size: 25px;
}

.case-study p{
  font-size: 16px;
  color: #46484D;
  line-height: 200%;

}

.case-study a img{
  width: 15px;
}

.case-study a{
  color: #05ACA1;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  gap: 10px;
  font-size: 14px;
  margin-top: 20px;
}

/* ALLIANCES */

.clients {
  width: 100%;
  overflow: hidden; /* Hide overflowing content */
  position: relative;
  margin-top: 100px;
}

/* Style for the image container */
.clients-list {
  display: flex;
  align-items: center;
  animation: scroll-left 15s linear infinite; /* Continuous scrolling animation */
}

/* Style for the images */
.clients-list img {
  width: auto; /* Ensure the images resize proportionally */
  height: 100px; /* Adjust this height based on your design */
  margin-right: 20px; /* Add some spacing between the images */
}

/* Keyframes for the scrolling effect */
@keyframes scroll-left {
  0% {
    transform: translateX(0); /* Start from the initial position */
  }
  100% {
    transform: translateX(-100%); /* Move the entire container to the left */
  }
}

/* Duplicate images for seamless looping */
.clients-list::after {
  content: '';
  display: inline-block;
}

.clienthead{
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}

.client-heading{
  display: flex;
}

.client-head{
  width: 60%;
}
.client-head h2{
  font-size: 40px;
  color: #1C1D20;
  line-height: 150%;
  letter-spacing: .6rem;
}

.client-description p{
  font-size: 16px;
  color: #46484D;
  line-height: 200%;

}

.client-description img{
  width: 15px;
}

.client-description a{
  color: #05ACA1;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  gap: 10px;
  font-size: 14px;
  margin-top: 20px;
}

.client-head .highlight {
  font-weight: 200;
}

.client-description{
  width: 40%;
}

/* Testimonials */

.unique-testimonials{
  padding: 50px 0;
  background: linear-gradient(to top, #DCE8E5 0%, rgba(255, 255, 255, 0) 100%);
}

.unique-title {
  margin-top: 100px;
  text-align: center;
  font-size: 24px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: .6rem;
  letter-spacing: 2px;
  color: #5a5a5a;
  margin-bottom: 10px;
}

.unique-subtitle {
  text-align: center;
  font-size: 36px;
  line-height: 150%;
  letter-spacing: .6rem;
  font-weight: 700;
  color: #222222;
  margin-bottom: 30px;
}

.unique-container {
  max-width: 80%;
  margin: 0 auto;
  padding: 20px;
}

/* Carousel Styling */


.unique-test-wrapper{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #ffffff;
  border-radius: 10px;
  padding: 20px;
  padding-top: 50px;
  margin-top: 50px;
}

.u-profile-pic{
  height: 80px;
  width: 80px;
  top: 0;
  position: absolute;
  border-radius: 50%;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.unique-carousel .unique-profile-pic {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.unique-carousel h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 5px;
}

.unique-carousel .unique-position {
  font-size: 14px;
  color: #999;
  margin-bottom: 10px;
}

.unique-carousel .unique-quote {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
}

/* Owl Navigation Styling */
.unique-carousel .owl-nav {
  position: absolute;
  top: 40%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.unique-carousel .owl-prev,
.unique-carousel .owl-next {
  background: #fff;
  border: none;
  font-size: 20px;
  color: #333;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.unique-carousel .owl-prev:hover,
.unique-carousel .owl-next:hover {
  background-color: #f0f0f0;
}

.unique-carousel .owl-prev {
  position: absolute;
  left: -70px; /* Adjust left position for spacing */
}

.unique-carousel .owl-next {
  position: absolute;
  right: -70px; /* Adjust right position for spacing */
}

/* Events */

.blog-head{
  display: flex;
  justify-content: center;
}

.events{
  display: flex;
  justify-content: center;
  margin: 100px 0;
  position: relative;
}

.blog-text-float{
  position: absolute;
  right: 0;
  top: 0;
}

.blog-carousel{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}

.events h1{
  font-size: 50px;
  color: #1C1D20;
  line-height: 150%;
  letter-spacing: .6rem;
  margin-bottom: 30px;
}

.event-heading{
  display: flex;
  margin-bottom: 50px;
}

.event-head{
  width: 60%;
}
.event-head h2{
  font-size: 40px;
  color: #1C1D20;
  line-height: 150%;
  letter-spacing: .6rem;
}

.event-head p{
  font-size: 20px;
  color: #4A5568;
}

.event-description p{
  font-size: 16px;
  color: #46484D;
  line-height: 200%;

}

.event-description img{
  width: 15px;
}

.event-description a{
  color: #05ACA1;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  gap: 10px;
  font-size: 14px;
  margin-top: 20px;
}

.event-head .highlight {
  font-weight: 200;
}

.event-description{
  width: 40%;
}

.events-grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 50px;
}

.event-card {
  text-align: left;
  position: relative;
  height: 600px;
}
.event-card img {
  width: 100%;
  height: auto;
  display: block;
}
.card-content {
  padding: 20px;
  background-color: #ffffff;
  width: 80%;
  z-index: 100;
  position: absolute;
  top: 40%;
}
.card-title {
  font-size: 22px;
  line-height: 150%;
  font-weight: bold;
  margin: 0 0 10px;
  color: #222;
}
.card-meta {
  font-size: 14px;
  color: #888;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
}


.card-meta:before{
  content: "";
  position: absolute;
  width: 20%;
  height: 1px;
  bottom: 0;
  left: 0;
  border-bottom: 4px solid #05ACA1;
}

.card-text {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}
.card-read-more {
  font-size: 14px;
  color: #00a8ff;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
}
.card-read-more::after {
  content: "›";
  margin-left: 5px;
  font-size: 16px;
}

.event-card a img{
  width: 15px;
}

.event-card a{
  color: #05ACA1;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  gap: 10px;
  font-size: 14px;
  margin-top: 20px;
}

/* Contact */

.contact{
  display: flex;
  justify-content: center;
  background-color: #E2F2F1;
  padding: 80px 0;
}

.contact-flex{
  display: flex;
}

.contact-head {
 width: 60%; 
}

.contact-head h2{
  font-size: 44px;
  margin-bottom: 10px;
}

.contact-head h3{
  font-size: 44px;
  color: #05ACA1;
}

.contact-description{
  width: 40%;
}

.contact-description button{
  padding: 20px;
}

.contact-description p{
  font-size: 18px;
  margin-bottom: 30px;
}

.contact-button{
  display: flex;
  gap: 5px;
}

.downloadbrochure{
  background-color: #1A1B1F;
}

/* Footer */

footer{
  background: #1A1B1F;
  display: flex;
  justify-content: center;
  padding: 40px 0;
}

footer ul{
  
  width: 100%;
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin-bottom: 40px;
}

footer ul a{
  text-decoration: none;
  color:  #C4C5C8;
  font-size: 18px;
}

footer li{
  display: flex;
  align-items: center;
}

footer ul a::before{
  display: inline-block;
  content: "";
  border-left: 1rem solid #05ACA1;
  width: 10px;
  height: 3px;
  margin: 5px;
}

.footerlogo img{
  width: 200px;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

.lowerfooter{
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
}

.footer-terms{
  display: flex;
  align-items: center;
  gap: 50px;
}

.footer-terms a{
  text-decoration: none;
  color: #C4C5C8;
}

.social-icons{
  display: flex;
  gap: 40px;
}

.social-icons img{
  width: 30px;
}

.lowerfooter{
  color: #C4C5C8;
}

@media screen and (min-width: 321px) and (max-width: 800px){

  body {
    overflow-x: hidden;
  }

  .logo img{
    width: 100px;

}

.language{
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
}

  nav{
    justify-content: end;
  }
  nav ul{
    display: none;
  }

  .hamburger{
    display: block;
  }

  .solutions-flex{
    flex-direction: column;
  }

  .how-we-help{
    width: 100%;
  }

  .how-we-help-grid{
    grid-template-columns: repeat(1,1fr);
    width: 90%;
  }

  .owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot{
    background: white;
  }

  .how-we-help-img{
    width: 100%;
  }

  .expertise{
    padding: 30px;
  }

  .expertise-heading h2{
    font-size: 30px;
  }

  .expertise-heading{
    flex-direction: column;
  }

  .expertise-heading p{
    width: 100%;
  }

  .stats{
    flex-direction: column;
    gap: 50px;
  }

  .stat{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .casestudy-heading{
    flex-direction: column-reverse;
  }

  .casestudy-description{
    width: 100%;
  }

  .case-study-grid{
    grid-template-columns: repeat(1,1fr);
    gap: 50px;
  }

  .client-heading{
    flex-direction: column;
  }

  .client-description{
    width: 100%;
  }

  .event-heading{
    flex-direction: column;
  }

  .event-description{
    width: 100%;
  }

  .contact-flex{
    flex-direction: column;
    gap: 20px;
  }

  .contact-head{
    width: 100%;
  }

  .brands-section h2{
    font-size: 40px;
  }

  .unique-subtitle{
    font-size: 30px;
  }

  .lowerfooter{
    flex-direction: column;
    gap: 50px;
  }

  .footer-terms{
    gap: 15px;
  }

  .unique-carousel .owl-nav {
    position: absolute;
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Center both vertically and horizontally */
    width: auto; /* Adjust width if needed */
    display: flex;
    justify-content: space-between;
    gap: 20px; /* Optional: space between the nav buttons */
    width: 80%;
    z-index: 1000000;
    
}

.owl-prev .owl-next{
  background-color: white;
}

  .contact-description{
    width: 100%;
  }

  footer ul{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
  }
}

@media screen and (min-width: 801px) and (max-width: 900px){
  body {
    overflow-x: hidden;
  }

  nav{
    justify-content: end;
  }
  nav ul{
    display: none;
  }

  .hamburger{
    display: block;
  }

  .solutions-flex{
    flex-direction: column;
  }

  .how-we-help{
    width: 100%;
  }

  .how-we-help-grid{
    grid-template-columns: repeat(2,1fr);
    width: 90%;
  }

  .owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot{
    background: white;
  }

  .how-we-help-img{
    width: 100%;
  }

  .expertise{
    padding: 30px;
  }

  .expertise-heading h2{
    font-size: 30px;
  }

  .expertise-heading{
    flex-direction: column;
  }

  .expertise-heading p{
    width: 100%;
  }

  .stats{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 100px;
  }

  .stat{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .casestudy-heading{
    flex-direction: column-reverse;
  }

  .casestudy-description{
    width: 100%;
  }

  .case-study-grid{
    grid-template-columns: repeat(2,1fr);
    gap: 50px;
  }

  .casestufy-container{
    width: 90%;
  }

  .casestudy-head{
    text-align: left;
    width: 100%;
  }

  .client-heading{
    flex-direction: column;
  }

  .client-description{
    width: 100%;
  }

  .event-heading{
    flex-direction: column;
  }

  .event-description{
    width: 100%;
  }

  .contact-flex{
    flex-direction: column;
    gap: 20px;
  }

  .contact-head{
    width: 100%;
  }

  .brands-section h2{
    font-size: 40px;
  }

  .unique-subtitle{
    font-size: 30px;
  }

  .lowerfooter{
    flex-direction: column;
    gap: 50px;
  }

  .footer-terms{
    gap: 15px;
  }

  .unique-carousel .owl-nav {
    position: absolute;
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Center both vertically and horizontally */
    width: auto; /* Adjust width if needed */
    display: flex;
    justify-content: space-between;
    gap: 20px; /* Optional: space between the nav buttons */
    width: 80%;
    z-index: 1000000;
    
}

.owl-prev .owl-next{
  background-color: white;
}

  .contact-description{
    width: 100%;
  }

  footer ul{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
  }

}

@media screen and (min-width: 901px) and (max-width: 1100px){

  body {
    overflow-x: hidden;
  }

  nav{
    justify-content: end;
  }
  nav ul{
    display: none;
    white-space: nowrap;
  }

  .hamburger{
    display: block;
  }

  .expertise{
    max-width: 90%;
    padding: 40px;
  }

  .expertise-heading h2{
    font-size: 40px;
  }

  .description{
    font-size: 14px;
  }

  .stats{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 100px;
  }

  .stat{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .case-study-grid{
    gap: 50px;
  }

  .casestufy-container{
    width: 90%;
  }

}

@media screen and (min-width: 1101px) and (max-width: 1200px){

  nav{
    width: auto;
  }

  nav ul{
    white-space: nowrap;
    margin-right: 50px;
  }

}

@media screen and (min-width: 1200px) and (max-width: 1349px){
  .container{
    width: 1200px;
  }

  nav{
    width: auto;
  }

  nav ul{
    white-space: nowrap;
    margin-right: 50px;
  }
}


@media screen and (min-width: 1350px){
  .container{
    width: 1350px;
  }

  nav{
    width: auto;
  }

  nav ul{
    white-space: nowrap;
    margin-right: 50px;
  }
}
