*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    scroll-behavior: smooth;
    font-family: -apple-system, sans-serif;


}

:root{
    --bg-color:#fff;
    --snd-bg-color:#d5fdf9;
    --text-color:#000;
    --main-color:#007f73;
}

html{
    font-size: 100.5%;
    overflow-x: hidden;
}

 body{
    background: var(--bg-color);
    color: var(--text-color);
 }

 section{
    min-height: 100vh;
    padding: 10rem 9% 2rem;
 }

 .header{
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 5%;
    background-color: var(--main-color);
    backdrop-filter:blur(10px);
    transition: all 0.5s ease;
 }

 .logo{
    font-size: 2rem;
    color: var(--bg-color);
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
 }

 .logo:hover{
    transform: scale(1.05);
 }

 .navbar a {
    font-size: 1.2rem;
    color: var(--bg-color);
    margin-left: 4rem;
    font-weight: 700;
    transition: 0.3s ease;
 }

 .navbar a:hover,
.navbar a.active {
    color: var(--text-color);
    }

 #menu-icon{
    font-size: 3.6rem;
    color: var(--bg-color);
    cursor: pointer;
    display: none;
 }


/* Home code */

 .home{
   display: flex;
   justify-content: center;
   align-items: center;
 }

 

.home-img img{
   width: 100%;
   max-width: 1000px;
   aspect-ratio: 1/1;
   object-fit: cover;
   border-radius: 50%;
   box-shadow: 0 0 25px var(--main-color);
   cursor: pointer;
   animation: floatImage 4s ease-in-out infinite;
   transition: 0.4s ease;
}

 .home-img img:hover{
   box-shadow: 0 0 25px var(--main-color),
               0 0 35px var(--main-color),
               0 0 45px var(--main-color);
 }

 @keyframes floatImage{
   0%{
      transform: translateY(0);
   }
   50%{
      transform: translateY(-2.4rem);
   }
   100%{
      transform: translateY(0);
   }
 }

 .home-content{
   margin-left: 5rem;
 }

 .home-content h3{
   font-size: 2.8rem;
   font-weight: 500;
 }

  .home-content h3:nth-of-type(2) {
   margin-bottom: 2rem;
  }

  span { 
   color:var(--main-color);
  }

  .home-content h1 {
   font-size: 4rem;
   font-weight: 700;
   line-height: 1.3;
  }

   .home-content p{
   font-size: 0.90rem;
 }

.social-media a{
display: inline-flex;
justify-content: center;
align-items: center;
width: 40px;
height: 40px;
background: transparent;
border: 0.1rem solid var(--main-color);
border-radius: 50%;
font-size: 2rem;
color: var(--main-color);
margin: 3rem 1.5rem 3rem 0;
transition: 0.3s ease;
}

.social-media a:hover{
   transform: scale(1.2) translateY(-10px);
   background-color: var(--main-color);
   color: var(--bg-color);
   box-shadow: 0 0 25px var(--main-color);
}

.btn {
   display: inline-block;
   padding: 1rem 2rem;
   background: var(--main-color);
   border-radius: 4rem;
   box-shadow: none;
   font-size: 1rem;
   color: var(--bg-color);
   letter-spacing: 0.1rem;
   font-weight: 550;
   transition: 0.3s ease;
}

.btn:hover {
   box-shadow: 0 0 1.6rem var(--main-color);
}

.about {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 2rem;
   background: var(--snd-bg-color);
}

.about-img img{
   width: 25vw;
   height: 50vh;
   border: 2px solid var(--main-color);
   border-radius: 50%;
   box-shadow: 0 0 25px var(--main-color);
   cursor: pointer;
   transition: 0.4s ease;
}

.about-img img:hover{
   box-shadow: 0 0 25px var(--main-color),
               0 0 35px var(--main-color),
               0 0 45px var(--main-color);
}

.heading{
   font-size: 5rem;
   text-align: center;
}

.about-content{
   padding: 0 3rem;
}

.about-content h2{
   text-align: left;
   line-height: 1.2;
}

.about-content h3{
   font-size: 2rem;
}

.about-content p{
   font-size: 1rem;
   margin: 2rem 0 3rem;
}
/*=====================================================================*/
.services h2{
   text-align: center;
   margin-bottom: 1.7rem;
}

.services-container{
   display: flex;
   justify-content: center;
   align-items: stretch;
   flex-wrap: wrap;
   gap: 1rem;
}

.services-container .services-box{
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   flex: 1 1 20rem;
   background: var(--snd-bg-color);
   padding: 2rem 2rem 3rem;
   border-radius: 2rem;
   text-align: center;
   border: 0.2rem solid var(--bg-color);
   transition: 0.3s ease;
}

.services-container .services-box:hover{
   border-color:var(--main-color);
   transform: scale(1.02);
}

.services-box i{
   font-size: 3rem;
   color:var(--main-color);
}

.services-box h3{
   font-size: 2rem;
}

.services-box p{
   font-size: 1rem;
   font-weight: 300;
   margin: 1rem 0 1.5rem;
}

/* feedback code */

.feedback{
   background: var(--snd-bg-color);
   padding: 7rem 7% 3rem;
}

.feedback-box{
   background-size: cover;
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
}

.feedback .heading {
   margin-bottom: 2rem;
}

.feedback-box img{
   width: 12rem;
   border-radius: 50%;
   border: 2px solid var(--main-color);
   box-shadow: 0 0 20px var(--main-color);
}

.wrapper{
   display: grid;
   grid-template-columns: repeat(3,1fr);
   gap: 2rem
}
.feedback-item{
   min-height: 200px;
   max-width: 450px;
   overflow: auto;
   background: var(--bg-color);
   border: 0.1rem solid var(--bg-color);
   border-radius: 2rem;
   padding: 30px 20px;
   cursor: pointer;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   gap: 1.5rem;
   color: var(--text-color);
   transition: 0.3s ease;
}

.feedback-item:hover{
   border-color: var(--main-color);
transform: scale(1.02);
}

.feedback-item h2{
   font-size: 2rem;
}

.feedback-item p{
   font-size: 1rem;
   text-align: center;
}

#star{
   color: gold;
   font-size: 1.5rem;
}

/* Contact code */


.contact{
   background: var(--bg-color);
   padding: 7rem 9% 2rem;
}

.contact .heading{
   text-align: center;
}

.contact h2{
   margin-bottom: 1rem;
   color: var(--main-color);
}

.contact form{
   max-width: 80rem;
   margin: 1rem auto;
   text-align: center;
   margin-bottom: 1rem;
}

.contact form .input-box{
   display: flex;
   justify-content: center;
   gap: 1.4rem;
}

.contact form .input-box input, 
.contact form textarea{
   width: 80%;
   padding: 1.2rem;
   margin: 0.7rem;
   font-size: 1.6rem;
   color: var(--text-color);
   background: var(--bg-color);
   border-radius: 0.8rem;
   border: 3px solid var(--main-color);
   resize: none;
}

.contact form textarea{
   height: 200px;
}

.contact form .input-box input{
   width: 38%;
   height: 55px;
   padding: 1rem;
   margin: 0.7rem 0.35rem;
}
 
.contact form .btn {
   margin-top: 1rem;
}

.footer{
   position: relative;
   bottom: 0;
   width: 100%;
   padding: 40px 0;
   background-color: var(--snd-bg-color);
}

.footer .social{
   text-align: center;
   padding-bottom: 25px;
   color: var(--main-color);
}

.footer .social a{
   font-size: 25px;
   color: var(--main-color);
   border: 2px solid var(--main-color);
   width: 42px;
   height: 42px;
   line-height: 42px;
   display: inline-block;
   text-align: center;
   border-radius: 50%;
   margin: 0 10px;
   transition: 0.3s ease;
}

.footer .social a:hover{
   transform: scale(1.2) translateY(-10px);
   background-color: var(--main-color);
   color: var(--bg-color);
   box-shadow: 0 0 25px var(--main-color);
}
.footer .copyright{
   margin-top: 20px;
   font-weight: 500;
   text-align: center;
   font-size: 15px;
   color: var(--text-color);
}


/* Tablet */
@media (max-width: 992px){

   html{
      font-size: 90%;
   }

   .home{
      flex-direction: column;
      text-align: center;
   }

   .home-content{
      margin-left: 0;
      margin-top: 3rem;
   }

   .about{
      flex-direction: column;
      text-align: center;
   }

   .about-content h2{
      text-align: center;
   }

   .about-img img{
      width: 40vw;
      height: auto;
   }

   .services-container{
      flex-direction: column;
      align-items: center;
   }

   .wrapper{
      grid-template-columns: repeat(2,1fr);
   }
}

/* Mobile */
@media (max-width: 768px){

   #menu-icon{
      display: block;
   }

   .navbar{
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background: var(--main-color);
      flex-direction: column;
      text-align: center;
      display: none;
   }

   .navbar a{
      display: block;
      margin: 1rem 0;
   }

   .home-img img{
      width: 60vw;
      height: auto;
   }

   .about-img img{
      width: 60vw;
      height: auto;
   }

   .wrapper{
      grid-template-columns: 1fr;
   }

   .contact form .input-box{
      flex-direction: column;
      align-items: center;
   }

   .contact form .input-box input{
      width: 100%;
   }

   .contact form textarea{
      width: 100%;
   }

   section{
      min-height: auto;
      padding: 8rem 5% 2rem;
   }
}

/* Small Mobile */
@media (max-width: 480px){

   html{
      font-size: 85%;
   }

   .heading{
      font-size: 3rem;
   }

   .home-content h1{
      font-size: 2.8rem;
   }

   .home-content h3{
      font-size: 1.8rem;
   }
}