@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

header {
  z-index: 999;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 200px;
  border-radius: 40px;
  transition: 0.3s ease;
  position: fixed;
}

header .brand{
  color:white;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}
header .navigation {
  position: relative;
}
header .navigation .navigation-items a {
  position: relative;
  color:white;
  font-size: 1em;
  font-weight: 500;
  text-decoration: none;
  margin-left: 30px;
  transition: 0.3 ease;
}
header .navigation .navigation-items a::before {
  content:'';
  position: absolute;
  background: #000;
  width:0;
  height: 3px;
  bottom: 0;
  left: 0;
  transition: 0.3s ease;

}
header .navigation .navigation-items a:hover:before{
width: 100%;
}
section {
  padding: 100px 200px;
  background: #F5FCFF;
}
.Sect{
  padding: 0px 100px;
}
.home {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  background: #A2AADB;

}
.heading{
  position: relative;
  width: 100%;
  min-height: 50vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  background: url(Images/heading-picture.jpg) no-repeat;
  background-size: cover;
  color: #fff;
  margin-bottom:30px ;

}
.heading .content h1{
  display: flex;
  justify-content: center;
  font-size: 2.5em;
  text-transform: uppercase;
}
.home::before{
  z-index: 777;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;


}
.home video{
z-index: 000;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
video {
  filter: brightness(60%);
}
.home .content{
  z-index: 888;
  color: white;
  width: 70%;
  margin-top: 50px;
}
.home .content h1 {
  font-size: 4em;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 75px;
  margin-bottom: 40px;
}
.home .content h1 span{
  font-size: 1em;
  font-weight: 600;
}
.home .content p{
  margin-bottom: 65px;
}
.home .content a{
  background: #7AD7F0;
  padding: 15px 35px;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 12px;
  transition: 0.6s ease;
}
.home .content a:hover{
  background:burlywood;
  
}

.home .media-icons{
  z-index: 888;
  position: absolute;
  right: 30px;
  display: flex;
  flex-direction: column;
  transition: 0.3s ease;

}
.home .media-icons a {
  color: white;
  font-size: 20px;
  transition: 0.3s ease;

}
.home .media-icons a :not(:last-child){
  margin-bottom: 20px;
}
.home .media-icons a:hover{
  transform: scale(1.5);
}
.about-page{
  width: 100%;
  min-height: 65vh;
  background:#F5FCFF ;
}
.loader-box {
  background: #fff;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}

.loading-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.loading-wrapper .loader {
  height: 80px;
  width: 80px;
  border: 3px solid #e5e5e5;
  border-radius: 50%;
  -webkit-animation: pulse1572 1200ms ease-in-out;
  animation: pulse1572 1200ms ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.loader-hidden{
  opacity: 0;
  visibility: hidden;
}

.loading-wrapper .loader .loader-inner {
  display: block;
  height: 40px;
  width: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  background: linear-gradient(180deg, rgb(0, 140, 255) 0%, rgb(218, 67, 218) 100%);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  border-radius: 50%;
  -webkit-animation: innerPulse934 1200ms ease-in-out;
  animation: innerPulse934 1200ms ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-delay: 600ms;
  animation-delay: 600ms;
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
}

@keyframes pulse1572 {
  0% {
    border: 3px solid #fff;
  }

  50% {
    border: 40px solid #fff;
  }

  100% {
    border: 3px solid #fff;
  }
}

@keyframes innerPulse934 {
  0% {
    height: 30px;
    width: 30px;
  }

  50% {
    height: 53.33333px;
    width: 53.33333px;
  }

  100% {
    height: 30px;
    width: 30px;
  }
}

.about-page h2{
  position: relative;
  display: flex;
  justify-content: center;
  text-transform: uppercase;
  font-size: 3em;
  font-weight: 100;
  width: 100%;
  margin-bottom: 10px;

}
.about-page h2::before{
  content:'';
  position: absolute;
  background: #000;
  width:0;
  height: 3px;
  bottom: 0;
  transition: 0.3s ease;
}
.about-page h2:hover:before{
  width: 50%;
}
.about-page .container{
width: 80%;
display: block;
margin: auto;
}
.about-container h3{
  text-transform: capitalize;
  margin-top: 30px;
  font-weight: 100;
}
.about-button{
  margin-top: 30px;
}

.about-button a{
  padding: 12px 40px;
  background:#7AD7F0 ;
  text-decoration: none;
  border-radius: 15px;
  color: #000;
}
.about-button a:hover{
  background:  #4B8DA0;
  transition: 0.3s ease;
}
.content ul li{
  list-style-type: circle;
  color: #000;
  margin-bottom: 5px;
  margin-left: 50px;
}
.content h3{
  text-transform: capitalize;

}
.content-section{
  float: left;
  width: 50%;
}
.image-section{
  float: right;
  width: 45%;
}
.image-section img{
  width: 100%;
  height:500px;
  border-radius: 25px;
}
.aboutcontainer{
  width: 100%;
  margin: auto; 
  margin-bottom: 70px;
}
.aboutcontainer .content{
  float: left;
  width: 50%;
}
.aboutcontainer .content h3{
  font-size: 24px;
  font-weight: 200;
  text-transform: uppercase;
}
.aboutcontainer .content p{
  font-size: 16px;
}
.aboutcontainer .aboutusimg{
  float: right;
  width: 45%;
}
.aboutcontainer .aboutusimg img{
  width: 100%;
  height: auto;
  border-radius: 25px;
}
.aboutcontainer1 .content1 h3{
  font-size: 24px;
  font-weight: 200;
  text-transform: uppercase;
}
.aboutcontainer1{
  width: 100%;
}
.aboutcontainer1 .aboutusimg1{
width: 100%;
margin-bottom: 40px;
}
.aboutcontainer1 .aboutusimg1 img{
  width: 70%;
  height: auto;
  border-radius: 25px;
}
.theimg{
  width: 100vw;
  height: 100%;
}
.firstheading{
  background:#B7E9F7;
  padding: 10px 20px;
  text-align: center;
  border-radius: 15px;

}
.firstheading p ul li{
  text-transform: capitalize;
}

/* For the services section */
.service-page{
  min-height: 100vh;
  width: 100%;
  background-color:#F5FCFF;
}

.service-wrapper{
  padding: 5% 8%;
}
.service{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service h2 {
  position: relative;
  display: flex;
  justify-content: center;
  text-transform: uppercase;
  font-size: 3em;
  font-weight: 100;
}
.service-page h2::before{
  content:'';
  position: absolute;
  background: #000;
  width: 0;
  bottom: 0;
  height: 3px;
  transition: 0.3s ease;
}
.service-wrapper .service h2:hover::before{
  width: 100%;
}
.cards{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
  margin-top: 30px;
}
.card{
  height: 330px;
  width: 380px;
  background: #B7E9F7FA;
  padding: 3% 8%;
  border: 0.2px solid #92DFF3;
  transition: 0.6s ease;
  display: flex;
  align-items: center;
  flex-direction: column;
  border-radius: 20px;
}
.card h3{
  text-align: center;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 100;
}
/* .card::after{
  content: '';
  position: absolute;
  top: 150%;
  left: -200px;
  width: 120%;
  transform: rotate(50deg);
  background: #000;
  height: 18px;
  filter: blur(30px);
  opacity: 0.5;
  transition: 1s ease;
} */
 .card p{
  text-align: left;
  width: 100%;
  margin: 12px 0;
 }
 .card:hover{
  background: transparent;
  transform: translateY(-8px);
 }
.card i{
  color: #7AD7F0;
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 3em;
}
.card a {
  padding: 10px 40px;
  background:#7AD7F0 ;
  text-decoration: none;
  border-radius: 15px;
  color: #000;
}
.clients{
  background: #7AD7F0;
  border-radius: 30px;
  display: flex;
   
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding: 60px 0;
  background:#F5FCFF;
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  animation: 35s slide infinite linear;
}

.logos-slide img {
  height: 50px;
  margin: 0 40px;
  display: inline-flex;
}

.conta{
  margin:0px 10px 10px 0px;
  padding: 0px 20px 10px 0px;
}

.clients .client-head h2{
  position: relative;
  text-transform: uppercase;
  font-size: 3em;
  font-weight: 100;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}
.clients .client-head h2::before{
  content:'';
  position: absolute;
  background: #000;
  width: 0;
  bottom: 0;
  height: 3px;
  transition: 0.3s ease;
}
.clients .client-head h2:hover:before{
  width: 50%;
}
 .client-late{
  position: relative;
  text-transform: uppercase;
  font-size: 3em;
  font-weight: 100;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  background: #F5FCFF;

 }
 .client-late::before{
  content:'';
  position: absolute;
  background: #000;
  width: 0;
  bottom: 0;
  height: 3px;
  transition: 0.3s ease;
 }
 .client-late:hover:before{
  width: 50%;
 }
 .clients-late div img{
  width: 100px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
 }
/* This is for the carousel */
.carousel-head{
  min-height: 100vh;
  width: 100%;
  background-color:#F5FCFF; 
}
.gallery h2{
  position: relative;
  text-transform: uppercase;
  font-size: 3em;
  font-weight: 100;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  
}

.gallery h2::before{
  content:'';
  position: absolute;
  background: #000;
  width: 0;
  bottom: 0;
  height: 3px;
  transition: 0.3s ease;
}
.gallery h2:hover:before{
  width: 50%;
}
.carousel-item{
  border-radius: 35px;
}

.gallery{
  background: #F5FCFF;
}
.qhse-heading h3{
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 100;
 margin-bottom: 10px;
}
#qhse{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;

}
.qhse-d{
  margin-bottom: 30px;
}
.footer-edit svg{
  color:#B7E9F7;
  width: 40px;
  height: 40px;
}
.footer-edit p a {
  text-decoration: none;
  color: #000;

}
.footer-edit p a:hover{
  color: #A2AADB;
}
.footer-list li a{
  color: black;
}
:root {
  --footer-top-bg:#B7E9F7;
  --footer-top-text: #222;
  --footer-top-heading: #343a40;
  --footer-top-link-hover: #0056b3;

  --footer-bottom-bg: #7AD7F0;
  --footer-bottom-text:#fff;
  --footer-bottom-link-hover: #222;
}

/* FOOTER STYLES START HERE */

.footer-twotier {
  color: var(--footer-top-text);
}

/* === TOP TIER STYLES === */
.footer-twotier__top {
  background-color: var(--footer-top-bg);
  padding: 3rem 1.5rem;
}

.footer-twotier__top-container {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr; /* Mobile-first: single column */
  gap: 2rem;
}

.footer-twotier__brand p {
  margin: 1rem 0 0 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-twotier__brand .logo {
  width: 150px;
  fill: var(--footer-top-heading);
}

.footer-twotier__heading {
  font-size: 1.5rem;
  font-weight: 100;
  color: var(--footer-top-heading);
  margin-top: 0;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.footer-twotier__links ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
}

.footer-twotier__links li {
  margin-bottom: 0.75rem;
}

.footer-twotier__links a {
  color: var(--footer-top-text);
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.footer-twotier__links a:hover {
  color: var(--footer-top-link-hover);
  text-decoration: underline;
}

/* === BOTTOM TIER STYLES === */
.footer-twotier__bottom {
  background-color: var(--footer-bottom-bg);
  color: var(--footer-bottom-text);
  padding: 1.5rem;
}

.footer-twotier__bottom-container {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column; /* Mobile-first: stack */
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  text-align: center;
}

.footer-twotier__bottom a {
  color: var(--footer-bottom-text);
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.footer-twotier__bottom a:hover {
  color: var(--footer-bottom-link-hover);
  text-decoration: underline;
}

.footer-twotier__copyright {
  margin: 0;
}

.footer-twotier__social ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.footer-twotier__social a:hover {
  text-decoration: none; /* Icons don't need underline */
}

.footer-twotier__social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Media query for tablets and larger */
@media (min-width: 768px) {
  .footer-twotier__top-container {
      grid-template-columns: 1.5fr 1fr 1fr; /* 3 columns on larger screens */
      gap: 3rem;
  }
  .footer-twotier__bottom-container {
      flex-direction: row; /* Arrange horizontally */
      justify-content: space-between;
      text-align: left;
  }
}
.contactbtn{
  background:#92DFF3;
  padding: 10px 20px;
  margin-top: 30px;
  border-radius: 15px;
  cursor: pointer;

}
.contactbtn:hover{
  background:#7AD7F0;
}
input[type=text]{
  padding:10px 25px;
  box-sizing: border-box;
}
input[type=email]{
  padding: 10px 25px;
  box-sizing: border-box;
}
textarea{
  height: 300px;
  padding: 5px 5px;
}
@media (max-width: 1040px) {
  header{
    padding: 12px 20px;
  }
  /* section{
    padding: 100px 20px;
  } */
  .home .media-icons{
    right: 15px;
  }
  header .navigation{
    display: none;
  }
  .home .content h1 {
    font-size: 3.7em;
  }
  .home .content h1 span{
    font-size: 0.8em;
    font-weight: 600;
  }
  header .navigation.active{
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(1,1,1,0.5);
  }
  header .navigation .navigation-items a{
    position: relative;
    color: #222;
    font-size: 1.2em;
    margin: 20px;
    font-weight: 500;
    text-decoration: none;
    margin-left: 30px;
    transition: 0.3s ease;

  }
  header .navigation .navigation-items {
    background: #fff;
    width: 600px;
    max-width: 600px;
    margin: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 15px;
    box-shadow: 0 5px 85px;


  }
  .menu-btn{
    background:url(menu.png)no-repeat;
    background-size: 40px;
    background-position: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: 0.3s ease;

  }
  .menu-btn.active{
    z-index: 999;
    background: url(close.png)no-repeat;
    background-size: 25px;
    background-position: center;
    transition: 0.3s ease;
  }
  section{
    padding: 10px 30px;
  }
  .clients{
    padding: 20px 10px;
  }

  .about-page .container{
    width: 100%;
    display: block;
    }
    .about-page .container h2{
      font-size: 30px;
    }
    .about-container h3{
      text-transform: uppercase;
      margin: 0;
      font-weight: 100;
      font-size: 24px;
    }
    .client-late{
      font-weight: 100;
      font-size: 30px;
    }
  
    .about-button a{
      padding: 12px 40px;
      background:#7AD7F0 ;
      text-decoration: none;
      border-radius: 15px;
      color: #000;
    }
    .content-section{
      width:100%;
      display: block;
      margin-bottom: 40px;

    }
    .image-section{
      float: none;
      width: 100%;
      
    }
    .image-section img{ 
      display: flex;
      align-items: center
    }
    .aboutcontainer{
      width: 100%;
      display: block;
    }
    .aboutcontainer .content{
      float: none;
      width: 100%;
      margin-bottom: 20px;
    }
    .aboutcontainer .aboutusimg{
      float: none;
      width: 100%;
      margin-bottom: 20px;
    }
    .aboutcontainer .aboutusimg img{
      width: 100%;
      height: auto;
      border-radius: 25px;
    }
    .aboutcontainer1 .aboutusimg1 img{
      width: 100%;
      height: auto;
      border-radius: 25px;
    }
    .aboutcontainer1 .aboutusimg1{
      width: 100%;
    }

    .service h2{
      font-size: 30px;
    }
    .cards{
      grid-template-columns:repeat(1, 1fr);
    }
    .clients{
      margin-bottom: 30px;
    }
    .clients .client-head h2{
      font-size: 30px;
      margin-bottom: 30px;
    }
      .clients-late {
        display: flexbox;
        justify-content:center;
        padding: auto;
       }
       .gallery h2{
        font-size: 30px;
      }
      .carousel-item img{
        border-bottom-right-radius: 35px;
        border-top-left-radius: 35px;
      }
      .gallery {
        background: #F5FCFF;
        padding: 0;


      }
      .qhse-heading h3{
        font-size: 24px;
        margin-bottom: 20px;
      }
      .Sect{
        padding: 0px 30px;
      }
      .qhse-heading h3 p{
        margin-bottom: 20px;
      }
      
      .logos {
        padding: 10px 0;
      }
      
      .logos-slide {
        animation: 35s slide infinite linear;
        margin-bottom: 30px;
      }
      
      .logos-slide img {
        height: 50px;
        margin: 0 10px;
      }
    }