/*=============== GOOGLE FONTS ===============*/
/* @import url("https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@400;500&display=swap"); */

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --white-color: hsl(0, 0%, 100%);
  --black-color: hsl(211, 100%, 50%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat Alternates", sans-serif;
  --h1-font-size: 1.5rem;
  --normal-font-size: .938rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
  :root {
    --normal-font-size: 1rem;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--white-color);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

/*=============== HEADER & NAV ===============*/
.nav-white{
  height: 3vh;
  background-color: white;
}
.logo-bg{
  height: 100%;
  background: white;
}
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: var(--black-color);
  z-index: var(--z-fixed);
}
.nav__logo img{
  height: 6vh;
  margin: 20px 0 10px 0;
}

.nav {
  position: relative;
  height: 8vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  color: var(--white-color);
  font-weight: var(--font-medium);
}

.nav__close, 
.nav__toggle {
  display: flex;
  color: var(--white-color);
  font-size: 1.5rem;
  cursor: pointer;
}
@keyframes appear{
  from{
    opacity: 0;
    transform: translateX(-100px);
  }
  to{
    opacity: 1;
    transform: translateX(0px);
  }
}
#block{
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 30%;
}
@keyframes appears{
  from{
    opacity: 0;
    transform: translateX(-100px);
  }
  to{
    opacity: 1;
    transform: translateX(0px);
  }
}
#blocks{
  animation: appears 1s linear;
  /* animation-timeline: view();
  animation-range: entry 0% ; */
}
/* Navigation for mobile devices */
@media screen and (max-width: 1150px) {
  .nav__menu {
    position: fixed;
    left: -100%;
    top: 0;
    background-color: var(--black-color);
    width: 100%;
    height: 100%;
    padding: 6rem 3.5rem 4.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: left .4s;
  }

  .nav__item {
    transform: translateX(-150px);
    visibility: hidden;
    transition: transform .4s ease-out, visibility .4s;
  }

  .nav__item:nth-child(1) {
    transition-delay: .1s;
  }
  .nav__item:nth-child(2) {
    transition-delay: .2s;
  }
  .nav__item:nth-child(3) {
    transition-delay: .3s;
  }
  .nav__item:nth-child(4) {
    transition-delay: .4s;
  }
  .nav__item:nth-child(5) {
    transition-delay: .5s;
  }
  .nav__logo img{
    height: 5.4vh;
    margin: 10px 0 15px 0;
  }
}

.nav__list, 
.nav__social {
  display: flex;
}

.nav__list {
  flex-direction: column;
  row-gap: 3rem;
}

.nav__link {
  position: relative;
  color: var(--white-color);
  font-size: var(--h1-font-size);
  font-weight: var(--font-medium);
  display: inline-flex;
  align-items: center;
  transition: opacity .4s;
}

.nav__link i {
  font-size: 2rem;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s, visibility .4s;
}

.nav__link span {
  position: relative;
  transition: margin .4s;
  font-size: 3vh;
}

.nav__link span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background-color: var(--white-color);
  transition: width .4s ease-out;
}

/* Animation link on hover */
.nav__link:hover span {
  margin-left: 2.5rem;
}

.nav__link:hover i {
  opacity: 1;
  visibility: visible;
}

.nav__link:hover span::after {
  width: 100%;
}

/* Sibling fade animation */
.nav__list:has(.nav__link:hover) .nav__link:not(:hover) {
  opacity: .4;
}

.nav__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.nav__social {
  column-gap: 1rem;
}

.nav__social-link {
  color: var(--white-color);
  font-size: 1.5rem;
  transition: transform .4s;
}

.nav__social-link:hover {
  transform: translateY(-.25rem);
}

/* Show menu */
.show-menu {
  left: 0;
}

/* Animation link when displaying menu */
.show-menu .nav__item {
  visibility: visible;
  transform: translateX(0);
}

/*=============== BREAKPOINTS ===============*/
/* For large devices */
@media screen and (min-width: 1150px) {
  .container {
    margin-inline: auto;
  }

  .nav {
    height: calc(var(--header-height) + 2rem);
  }

  .nav__toggle, 
  .nav__close {
    display: none;
  }

  .nav__link {
    font-size: var(--normal-font-size);
  }

  .nav__link i {
    font-size: 1.5rem;
  }

  .nav__list {
    flex-direction: row;
    column-gap: 3.5rem;
  }

  .nav__menu {
    display: flex;
    align-items: center;
    column-gap: 3.5rem;
  }
  
}
.landing-frist-div{
  height: 50%;
  width: 50%;
  margin-top: 150px;
}
.landing-frist-div h1{
  text-align: center;
  font-size: 7vh;
  margin-top: 30px;
  margin-bottom: 20px;
}
.landing-frist-div h3{
  text-align: center;
  font-size: 3.5vh;
  padding: 20px;
  
}
.landing-frist-div h3 span{
  color: hsl(211, 100%, 50%);
}
.landing-second-div{
  margin-top: 150px;
}
.landing-page{
  display: flex;
}
.slider{
  height: 20rem;
  width: 36rem;
  background-size: 100% 100%;
  box-shadow: 20px 20px 10px grey;
  animation: slider 10s linear infinite;
  margin-right: auto;
  margin-left: auto;
  border-radius: 30px;
}
@keyframes slider{
  0%{
    background-image: url(/assets/photos/img-1.jpeg);
  }
  30%{
    background-image: url(/assets/photos/img-2.jpeg);
  }
  60%{
    background-image: url(/assets/photos/img-1.jpeg);
  }
  80%{
    background-image: url(/assets/photos/img-2.jpeg);
  }
  100%{
    background-image: url(/assets/photos/img-1.jpeg);
  }
  
}
.contactus-container{
  display: flex;
  column-gap: 30px;
  width:50vh ;
  /* margin-right: auto;
  margin-left: auto; */
  /* background-color: aqua; */
  
}
.getintouch{
  width: 30vh;
  height: 7vh;
  font-size: 3vh;
  background-color: black;
  color: white;
  border-radius: 20px;
  cursor: pointer;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  margin-top: 10px;
}
.getintouch i{
  font-size: 4vh;
  border-radius: 100%;
  background-color:white;
  color: black;
}
.getintouch i:hover{
  background-color: black;
  color: white;
}
.getintouch:hover{
  background-color: white;
  border: 2px solid black;
  color: black;
  font-weight: bolder;
}
/* .socail-media-link{
  text-decoration: none;
}
.socail-media-link i{
  color: black;
  font-size: 3.5vh;
  column-gap: 20px;
  padding-top: auto;
  padding-bottom: auto;
} */
.main-container{
  padding: 110px 0 50px 0;
  text-align: center;
}
.main-container h1{
  font-size: 7vh;
}
.main-container p{
  margin-top: 30px;
  font-size: 3.5vh;
}
.main-container-section-1{
  width: 100%;
  padding: 10px;
  display: flex;
  text-align: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 50px;
  
}
.elements-section-1{
  margin-left: 10px;
  margin-right: 10px;
  padding-left: 4vh;

}
.circle{
  height: 130px;
  width: 130px;
  background-color:hsl(211, 100%, 50%);
  border-radius: 100%;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  font-size: 7vh;
  font-weight: bolder;
}
.elements-section-1 p{
  text-align: center;
  font-size: 3vh;
  padding-right: vh;
  font-weight: bolder;
  margin-top: 10px;
}
.section-21{
margin-top: 100px;

}
.section-2 h1{
  font-size: 7vh;
  text-align: center;
  margin-bottom: 15px;
}
.section-2 p{
  font-size: 3vh;
  text-align: center;
  margin-bottom: 50px;
}
.slider-container{
  width: 100%;
  height: 80vh;
  background: url(/assets/photos/archiement.png     );
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap:wrap ;
  margin-bottom: 3px;
}
.archiements{
  display: flex;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  cursor: pointer;
  padding: 20px 30px 0 30px;
 
}
.archiements:hover{
  border: 2px solid hsl(211, 100%, 50%);
  border-radius: 20px;
}
.archiements img{
  height: 18vh;
}
.detail{
  font-size: 3vh;
  font-weight: bold;
}
.detail span{
  font-size: 2.5vh;
  font-weight: bold;
}
.services-main-container{
  padding:0 20px 0 20px;
  margin-bottom: 20px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
}
.services-outter-container h1{
  font-size: 7vh;
  margin-top: 50px;
  text-align: center;
  margin-bottom: 40px;
}
.services-inner-container{
  width: 55vh;
  text-align: center;
  padding: 20px;
  border:1.5px solid hsl(211, 100%, 50%) ;
  cursor: pointer;
  transition: 0.4s ease-in-out;
}
.services-inner-container:hover{
  box-shadow: 0px 0px 30px 1px rgb(201, 189, 189);
}
.services-inner-container img{
  height: 25vh;
}
.services-inner-container h3{
  font-size: 4vh;
  margin:10px 0 10px 0;
}
.services-inner-container p{
  font-size: 2.7vh;
}
.section-4 h1{
  text-align: center;
  font-size: 7vh;
  margin-top: 50px;
  margin-bottom: 50px;
}
.USP-main-container{
  display: flex;
  margin: 0 20px 0 50px;
}

.USP-img img{
  height: 50vh;
  margin: 0 20px 0 20px;
  margin-top: 50px;
}
.USP-details li{
  font-size: 3vh;
  list-style: none;
  margin-bottom: 20px;

}
.USP-details li h4 img{
  height: 3vh;
  margin-right: 5px; 
}
.USP-details li p{
  font-size: 2.5vh;
  margin-top: 10px;
  margin-left: 25px;
}
.section-5{
  width: 100%;
  height: 80vh;
  position: relative;
  padding-top: 50px;
}
.section-5 h1{
  padding:  20px 0 0 0; 
   font-size: 7vh;
  text-align: center;
}
.slide-row{
  display: flex;
  width: 3200px;
  transition: 0.5s;
}
.slide-col{
  width: 800px;
  height: 400px;
  position: relative;
  
}
.user-img{
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}
.user-img img{
  height: 90%;
  border-radius: 10px;
}
.user-text{
  background-color: hsla(211, 100%, 50%, 0.778);
  width: 520px;
  height: 270px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 10px;
  color: white;
  padding: 45px;
  box-sizing: border-box;
  z-index: 2;
}
.user-text p{
  font-size: 18px;
  line-height: 24px;
}
.user-text h3{
  margin: 35px 0 5px;
  font-weight: bold;
  font-size: 3.5vh;
  
}
.testi-main-container{
  width: 800px;
  height: 400px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 50px;
}
.indicator{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -50px;
}
.btn{
  display: inline-block;
  height: 15px;
  width: 15px;
  margin: 4px;
  border-radius: 15px;
  background: #000;
  cursor: pointer;
  transition: 0.5s;
}
.actives{
  width: 45px;
}
.testi-inner-container{
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.footer-outer-container {
  text-align: center;
}
.footer-outer-container img{
  height: 10vh;
  margin-top: 10px;
  margin-bottom: 5px;
}
.footer-outer-container p{
  font-size: 3vh;
  padding: 0 20px 0 20px;
} 

footer{
  width: 100%;
  background-color:rgba(38, 31, 31, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: -10px 0 10px rgba(8, 8, 8, 0.771);
  padding: 20px 0;
  margin-top: 100px;
}
.footer-main{
  display: flex;
  justify-content: space-evenly;
  margin-top: 50px;
}
.followus .social-media img{
  height: 4.5vh;
  margin: 0 20px;
  margin-bottom: 5px;
}
.followus .social-media{
  font-size: 2.5vh;
  font-weight: 600;
  display: flex;

}
.followus .social-media a{
  margin-top: 4px;
  color: black;
}
.followus h1{
  font-size: 3.5vh;
  margin: 0 20px;
  margin-bottom: 10px;
}
.links h1{
  font-size: 3.5vh;
  
}
.links li{
  list-style: none;
  font-size: 2.5vh;
  font-weight: 600;
  margin: 15px 0;
}
.links li a{
  color: black;
}

/* ABOUT US PAGE CSS */
.aboutus-container{
  margin-top: 50px;
  background: url(/assets/photos/hero-img2.png);
  height: 40vh;
  padding: 50px;
  
}
.aboutus-icon{
  font-size: 15vh;
  text-align: center;
  color: white;
  margin-top: 20px;
  
}
.aboutus-container h1{
  text-align: center;
  font-size: 7vh;
  color: white;
}
.about-main-container h1{
  font-size :6vh;
  padding-left: 40px;
  padding-top: 20px;
  margin-bottom: 20px;
}
.about-inner-container{
  display: flex;
  padding: 10px 40px 10px 40px;
}
.about-frist-inner-container{
  padding-right: 40px;
  font-size: 3vh;
}
.about-second-inner-container img{
  height: 70vh;
  margin-bottom: 10px;
}
.about-second-inner-container span{
  font-size: 4vh;
}
.about-second-inner-container p{
  color:rgb(194, 0, 0);
  font-size: 3vh;
  margin-top: 5px;
}
.aboutus-section-B{
  margin: 20px 0 20px 0;
}
.section-B-main-container{
  display: flex;
  padding: 0 40px 0 40px;
}
.section-B-main-container img{
  height: 67.2vh;
}
.section-B-details{
  display: table-cell;
  vertical-align: middle;
  font-size: 3vh;
  padding-top: 20vh;
  margin-left: 15px;
  margin-right: 15px;
}
.section-B-details h1{
  margin-bottom: 20px;
  font-size: 5vh;
}
.section-B-details span{
  color: rgb(194, 0, 0);
}
.team-member{
  text-align: center;
}
.team-member img{
  height: 40vh;
}
.team-inner-container{
  display: flex;
  text-align: center;
  justify-content: center;
  gap: 50px;
  margin-top: 50px;
}
.aboutus-section-C h1 {
  text-align: center;
  margin-top: 10vh;
  font-size: 6vh;
}
