/* Google Fonts */

@import url('https://fonts.googleapis.com/css2?family=Montez&family=Poiret+One&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Marcellus&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Poiret+One&display=swap');

/* Google Fonts */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "poppins" , sans-serif;
    box-sizing: border-box;
    scroll-behavior: smooth;
}



a{
    text-decoration: none;
    color: black;
    white-space: nowrap;
}

li {
    list-style: none;
}

.header{
    min-height: 100vh;
    width: 100%;
    position: relative;
    width: 100%;
    overflow-x: hidden;
}

nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0% 20%;
    background-color: rgb(255, 255, 255);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
    position: fixed;
    width: 100%;
    z-index: 2000;
}

nav ul li {
    display: inline-block;
    margin-left: 50px;
}

nav ul li a {
    font-weight: 400;
    color: rgb(0, 0, 0);
    font-size: 1.1rem;
    transition: .3s ease-in;
}

nav ul li a:hover{
    color: #00ffea;
}

nav ul li a::after{
    content: '';
    display: block;
    height: 2px;
    width: 0%;
    background-color: #000000;
    margin: auto;
    transition: .5s;
    position: relative;
}

nav ul li:hover a::after{
    width: 100%;
    background-color: #00ffdd;
}

.loGo {
    display: flex;
    justify-content: center;
    align-items: center;
}



@keyframes logo {
    0%{
        transform: scale(1) rotate(-1deg);
    }
    50%{
        transform: scale(.6);
    }
    100%{
        transform: scale(1) rotate(-3deg);
    }
}

.logo img{
    width: 110px;
}

nav .book {
    background: none;
    border: none;
    font-weight: 300;
    background-color: #00ffdd;
    color: #000000;
    border-radius: 25px;
    padding: 12px 18px;
    font-size: 1.3rem;
    animation: Book 3s ease-in-out infinite;
    cursor: pointer;
    font-family: 'Marcellus';
}

@keyframes Book {
    0% {
        transform: scale(0.6);
        background-color: #00e6ee; /* Initial color */
        box-shadow: 0 0 0 0 rgba(97, 97, 97, 0.7);
      }
      50% {
        transform: scale(.9);
        background-color: aqua; /* Mid animation color */
        box-shadow: 0 0 20px 10px rgba(208, 255, 0, 0);
      }
      100% {
        transform: scale(.6);
        background-color: rgb(0, 255, 255); /* Final color */
        box-shadow: 0 0 0 0 rgba(189, 189, 189, 0.7);
      }
}






.toGgle{
    display: none;
}

@media (min-width: 0px) and (max-width: 479px) {

  .header {
    min-height: 95vh;
  }
    
    .logo img{
        width: 90px;
    }

    nav{
        padding: 10px 10%;
    }

    .nav-links ul {
        padding: 100px -50px;
      }
    
  

    .nav-links ul li {
        display: block;
        margin-top: 20px;
    }

    .nav-links ul li a {
        padding: 0 10px;
    }

    

    .nav-links {
        position: absolute;
        height: 50vh;
        width: 200px;
        top: 9px;
        right: -200px;
        background-color: #e9e9e9;
        transition: .5s;
        z-index: 300;
       
      }
    
      nav .book{
        font-size: 16px;
        font-weight: 400;
      }

      .toGgle{
        display: block;
        color: #000000;
        margin: 10px;
        font-size: 32px;
      }

      .bar {
        font-size: 52px;
      }

}


@media (min-width: 480px) and (max-width: 767px) {


  .header {
    min-height: 99vh;
  }
    
    .logo img{
        width: 90px;
    }

    nav{
        padding: 10px 10%;
    }

    .nav-links ul {
        padding: 100px -50px;
      }
    
  

    .nav-links ul li {
        display: block;
        margin-top: 20px;
    }

    .nav-links ul li a {
        padding: 0 10px;
    }

    

    .nav-links {
        position: absolute;
        height: 50vh;
        width: 200px;
        top: 95px;
        right: -200px;
        background-color: #e9e9e9;
        transition: .5s;
      }
    
      nav .book{
        font-size: 22px;
        font-weight: 400;
      }

      .toGgle{
        display: block;
        color: #000000;
        margin: 10px;
        font-size: 42px;
      }

      .bar {
        font-size: 52px;
      }

    }


@media (min-width: 768px) and (max-width: 1023px) {

  .header {
    min-height: 100vh;
  }
    
    .logo img{
        width: 90px;
    }

    nav{
        padding: 10px 5%;
    }


      .nav-links ul li {
        margin-left: 40px;
      }
      
      .nav-links ul li a {
        font-size: 14px;
      }
    
      nav .book{
        font-size: 16px;
        font-weight: 400;
      }

      .toGgle{
        display: none;
      }


}


@media (min-width: 1024px) and (max-width: 1279px) {
    
    .logo img{
        width: 90px;
    }

    nav{
        padding: 10px 5%;
    }

      .nav-links ul li {
        margin-left: 50px;
      }
      
      .nav-links ul li a {
        font-size: 16px;
      }
    
      nav .book{
        font-size: 22px;
        font-weight: 400;
      }

      .toGgle{
        display: none;
      }


}


@media (min-width: 1280px) and (max-width: 1439px) {
    
    .logo img{
        width: 90px;
    }

    nav{
        padding: 10px 7%;
    }


      .nav-links ul li {
        margin-left: 50px;
      }
      
      .nav-links ul li a {
        font-size: 18px;
      }
    
      nav .book{
        font-size: 22px;
        font-weight: 400;
      }

      .toGgle{
        display: none;
      }


}



.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background-color: #f0f0f0; /* Optional: Add background color */
    padding: 10px 0; /* Optional: Add padding */
    position: relative;
    top: 120px;
    z-index: -1000;
}

.marquee p {
    display: inline-block;
    padding-left: 100%; /* Start off-screen */
    animation: marquee 15s ease-out infinite;
}

@keyframes marquee {
    0%   { transform: translateX(1%); }
    100% { transform: translateX(-100%); }
}


/* headear-content */

.header-content {
  position: relative;
  top: 150px;
  text-align: center;
  /* min-height: 1200vh; */
}

.image-row{
  display: flex;
  justify-content: center;
  gap: 40px;
  /* margin: 200px 0px;  */
}

.image-row img{
   width: 270px;
   animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
      transform: translateY(0) rotate(2deg);
  }
  50% {
      transform: translateY(-10px); /* Adjust the floating height */
  }
}

.header-mainbox {
  display: flex;
  justify-content: center;
  position: relative;
  flex-direction: column;
}

.main-heading {
  margin-bottom: 50px;
}





.header-mainbox h1 {
  font-size: 42px;
  /* font-weight: 00; */
  font-family: 'Marcellus';
}

.header-mainbox p {
  font-size: 22px;
}

.head-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.header-btn {
  background: black;
  color: #fff;
  padding: 10px 10px;
  border-radius: 25px;
  font-size: 16px;
  font-family: Poiret One;
  font-weight: 700;
  text-align: center;
}

.head-btn .head-icon {
  margin-left: 5px;
  background-color: white;
  border-radius: 25px;
  padding: 5px;
  color: black;
  font-size: 18px;
}














@media (min-width: 0px) and (max-width: 479px) {
  .image-row img{
    width: 100px;
  }

  .header-mainbox h1 {
    line-height: 1.5;
  }
 
  
  .header-mainbox {
    flex-direction: column;
  }

  .header-mainbox p{
    font-size: 22px;
    margin-top: 10px;
  }

  .head-btn {
    flex-direction: column;
    margin: auto;
    gap: 20px;
    
  }

  .header-btn {
    font-size: 22px;
  }


  

}

@media (min-width: 480px) and (max-width: 767px) {
  .image-row img{
    width: 145px;
  }

  .header-mainbox h1 {
    line-height: 1.7;
  }
 
  

  .header-mainbox {
    flex-direction: column;
  }

  .header-mainbox p {
    font-size: 22px;
  }

  .head-btn {
    flex-direction: column;
    margin: auto;
    gap: 20px;
  }

  .header-btn {
    font-size: 25px;
  }


  
  

}

@media (min-width: 768px) and (max-width: 1023px) {
  .image-row img{
    width: 200px;
  }

  .header-mainbox h1 {
    line-height: 1.7;
  }
 

  .header-mainbox {
    flex-direction: column;
  }


  
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .image-row img{
    width: 250px;
  }

  .header-mainbox h1 {
    line-height: 1.7;
  }
 
  .header-mainbox h1 span {
    font-size: 54px;
    padding: 5px;
  }

  .header-mainbox {
    flex-direction: column;
  }

  .header-mainbox p {
    font-size: 32px;
  }

}


/* Services */

.services {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  position: relative;
}

.services .heading {
  position: absolute;
  top: 50px;
  z-index: 222;
}



.services .heading h1 {
  font-size: 32px;
  font-weight: 500;
  background-color: #000000d5;
  box-shadow: 0 25px 30px #a8a8a8d5;
  padding: 12px 24px;
  border-radius: 85px 45px;
  font-family: 'Marcellus';
  color: #fff;
}

.services .heading-1 h1{
  background-color: #fbff2cd5;
  box-shadow: 0 25px 30px #fdff88d5;
}



.card-wraper {
  max-width: 1140px;
  margin: 10px 40px 45px;
  padding: 20px 0px;
  overflow: hidden;
}



.card-list .card-item .card-link {
  user-select: none;
  background-color: #000000;
  color: #fff;
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 10px 10px rgb(0, 0, 0), 0.05;
  border: 2px solid transparent;
  /* margin-bottom: 50px; */
  margin-left: 10px;
}



.card-list .card-link .image-card {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
}

.card-list .card-link .badge {
  color: rgb(0, 255, 213);
  margin: 16px 0 18px;
  padding: 8px 16px;
  background-color: #505050;
  font-size: 1rem;
  font-weight: 700;
  width: fit-content;
  border-radius: 50px;
  font-family: 'Marcellus';
}

.card-list .card-link .badge-2 {
  color: rgb(255, 238, 0);
}

.card-list .card-link .card-title {
  font-size: .9rem;
}

.card-list .card-link .rote {
  height: 35px;
  width: 35px;
  border-radius: 50%;
  margin: 30px  5px;  
  cursor: pointer;
  transform: rotate(-45deg);
}

.card-list .card-link .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  font-family: 'Marcellus';
}

.card-list .card-link .btn .what {
  padding: 12px;
  border-radius: 25px;
  background-color: #00ffb3;
  box-shadow: 0 10px 25px rgb(2, 255, 192);
}

.card-list .card-link .btn .wh-2{
  background-color: rgb(255, 238, 0);
  box-shadow: 0 10px 25px rgb(255, 240, 156);
  font-family: 'Marcellus';
}


/* contact  */

.Contact {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: hsl(0, 0%, 0%);
  
}

.contact-cont {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5em ;
  color: #ffffff;
}

.address {
  max-width: 600px;
  margin-bottom: 50px;
}

.address h1 {
  font-size: 3.3em;
  margin-bottom: 50px;
  font-family: 'Marcellus';
}
.address h2 {
  font-size: 1em;
  margin-bottom: 25px;
  font-family: 'Marcellus';
}

.address .ri-phone-line,
.address .ri-earth-line,
.address .ri-map-pin-2-line,
.address .ri-road-map-line,
.ri-mail-add-line
{
  margin-right: 5px;
  font-size: 45px;
  color: #00e1ff;
}

.contact-cont #copyBtn{
  background-color: #ffee00;
  border: none;
  padding: 25px 25px;
  border-radius: 20px;
  font-size: 20px;
  font-weight: 700;
  margin-left: 25%;
  white-space: nowrap;
}

iframe{
  border-radius: 45px;
  box-shadow: 0 15px 25px rgb(223, 250, 253);
  margin-bottom: 50px;
}

@media (min-width: 0px) and (max-width: 479px) {
  .contact-cont{
    flex-direction: column;
    margin-top: 50px;
  }

  iframe{
    border-radius: 45px;
    box-shadow: 0 15px 25px rgb(223, 250, 253);
    max-width: 350px;
  }

  .address h1 {
    font-size: 2.7em;
    margin-bottom: 50px;
    text-align: center;
  }

  .address h2 {
    font-size: .8em;
    margin-bottom: 27px;
  }

  .address .ri-phone-line,
.address .ri-earth-line,
.address .ri-map-pin-2-line,
.address .ri-road-map-line,
.ri-mail-add-line
{
  margin-right: 5px;
  font-size: 35px;
  color: #00e1ff;
}
}

@media (min-width: 480px) and (max-width: 767px) {
  .contact-cont{
    flex-direction: column;
    margin-top: 50px;
  }

  iframe{
    border-radius: 45px;
    box-shadow: 0 15px 25px rgb(223, 250, 253);
    max-width: 430px;
  }

  .address h1 {
    font-size: 3.7em;
    margin-bottom: 50px;
  }

  .address h2 {
    font-size: 1em;
    margin-bottom: 27px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .contact-cont{
    flex-direction: column;
    margin-top: 50px;
  }

  iframe{
    border-radius: 45px;
    box-shadow: 0 15px 25px rgb(223, 250, 253);
    max-width: 650px;
  }

  .address h1 {
    font-size: 3.7em;
    margin-bottom: 50px;
  }

  .address h2 {
    font-size: 1em;
    margin-bottom: 27px;
  }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .contact-cont{
    flex-direction: column;
    margin-top: 50px;
    margin-bottom: 50px;
  }

  iframe{
    border-radius: 45px;
    box-shadow: 0 15px 25px rgb(223, 250, 253);
    max-width: 950px;
  }

  .address h1 {
    font-size: 3.7em;
    margin-bottom: 50px;
  }

  .address h2 {
    font-size: 1em;
    margin-bottom: 27px;
  }
}








/* About Us Section */
.about-us {
  background-color: #333333;
  padding: 50px 0;
  text-align: center;
}

.about-us h1 {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 300;
  font-family: 'Marcellus';
}


.about-us h2 {
  font-size: 2rem;
  color: #00ffff;
  margin-bottom: 15px;
  font-family: 'Marcellus';
}

.about-us p {
  font-size: 0.9rem;
  color: #ffffff;
  margin-bottom: 20px;
  text-align: justify;
  line-height: 1.8;
}

.about-us .btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #00ffea;
  color: #000000;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
  transition: background-color 0.3s ease;
  font-family: 'Marcellus';
}

.about-us .btn:hover {
  background-color: #00eeff;
}

.about-us p {
  text-align: center;
  margin-top: 50px;
}



/* testi  */

.testi-container {
  max-width: 1170px;
  margin: auto;
  padding: 0 15px;
}

.testimonial {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 30px;
}

.section-header .title {
  font-size: 35px;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 1.2;
  font-family: 'Marcellus';
  background-color: #000000;
  color: #fff;
}

.testi-item {
  background-color: #e8fffc;
  padding: 30px;
  border-radius: 30px;
  margin-bottom: 30px;
}

.testi-item .name {
  font-size: 24px;
  font-weight: 300;
}

.testi-item p {
  margin-top: 20px;
  color: gray;
}

.testi-item .info {
  display: flex;
  align-items: center;
}

.testi-item img {
  max-width: 80px;
  border-radius: 50%;
  margin-right: 20px;
  vertical-align: middle;
}

.testi-item .rating {
  margin-top: 15px;
  font-size: 14px;
  color: gold;
}

.testi-item .rating  .ri-star-fill {
  margin-left: 5px;
}




