


body {
  margin: 0;
  font-family: "Cormorant", serif;
  background-color:#f0ffff;
  color:  #004b63;
  line-height: 1.6;
   height: 100vh; 
   font-size: 1.5rem;
    
}

h1, h2, h3 {
  font-family: "Cormorant", serif;
  color: #004b63;

}


.header img{
   display: flex;
  max-width: 200px;
  margin-left: 5px;
  height: clamp(40px, 4vw, 48px);

}


main{
   
    margin-left: 5%;
    margin-right: 5%;
  
}

.header{  
      padding: min(5px, 7%);
      box-shadow: 4px 2px 15px  #94b6b6;
      max-width: 100%;
      height: auto;
      flex-wrap: wrap;

}

.logo-link:hover {
  background: none;
  padding: 0;
  border: none;

}
span {
    display: block; 
    font-size: larger;
    position: relative;   
    color:  black

}

.logo-link img{ 
  display: block;
  transition: transform 0.3s ease;
}

.logo-link:hover img {
   transform: scale(1.5); /* zoom when hover */
}

.header h1{
  margin-left: 10px;
}

nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 50px;
  list-style: none;
  padding: 5px;
  margin: 0;
  width: 100%;


}


nav a{
    text-decoration: none;
    color: azure;

}

nav li{
    list-style:none;
    background-color:  #004b63;
    padding: 5px;

}

.push-right {
  margin-left: auto;
}

a:hover{
    padding: 10px;
    background-color: #56add6 ;
    border-radius: 20px;
     transform: scaleX(1.5);
    transition: 0.5s;

}

.text{
  display: inline-block;
}

.text img{
  float: right;
  margin-top: 20px;
  width: 700px;
  height: auto;
  box-shadow: 0px 4px 15px rgb(93, 87, 87);
  margin-left: 5px;
}

.second-text{
  display: inline-block;
  padding: 20px;

}

.second-img{
  display: flex;
  float: left;
  margin-top: 20px;
  width: 700px;
  height: auto;
  box-shadow: 0px 4px 15px rgb(93, 87, 87);
}


.contact {
  justify-content: center;
  align-items: center; /* optional – for vertical centering */
  padding: 2rem 0; /* optional – spacing */
}

.contact form {
  display: grid;
  gap: 1rem;
  width: 50%;
  max-width: 600px;
  text-align: center;
  margin: 0 auto; /* centers horizontally */
}


.contact form {
  display: grid;
  gap: 1rem;
  max-width: 80%;
  text-align: center;
  margin: auto;

  
}
.contact input,
.contact textarea {
  padding: 0.8rem;
  border: 1px solid #004b63;
  border-radius: 8px;
  font-size: 1rem;
}


input:hover{
   background-color: #004b63;
    padding: 5px;

}

button{
 background-color: #202323 ;
  border: none;
  padding: 0.8rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
  
}
button:hover {
  background-color: #007a99;
}


.contact button:hover{
      background-color: #56add6 ;
     transform: scale(1.05);
    padding: 5px;
 
    
}


.contact button {
  background-color: #004b63;
  color: white;
  border: none;
  padding: 0.8rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
  
}

  /*About us-----------------------------------*/

.why-us{
  text-align: center;

}

    .about-us{
        padding: 20px;
        margin-left: 10%;
        margin-right: 10%;
      
    }

.why-us li{
   display: flex;
  box-shadow: 0px 4px 15px rgb(161, 168, 164);
  border: 1px solid rgb(47, 161, 174);
  border-radius: 25px;
   border-radius: 25px;
    padding: 5px;
    margin-left: 15%;
    margin-right: 15%;
      padding: 20px;
      font-size: 1.2rem;

}

    .about-us img{
    float: right;
    box-shadow: 0px 4px 15px rgb(93, 87, 87);
    margin-left: 5px;

    }


    /*** Pricing and Services-------------*/
    
.container{

    display: grid;
    padding: 20px;
    width: 60%;
    left: 20%;
    gap: 30px;
    margin: 0 auto;
   
}


.box1{
  
    padding: 20px;
     border-radius: 25px;
     box-shadow: 4px 2px 15px  #99abab;;
    border: 1px solid rgb(43, 170, 170);

}

.box2{

      padding: 20px;
     border-radius: 25px;
     box-shadow: 4px 2px 15px  #99abab;;
     border: 1px solid rgb(43, 170, 170);

}

.box3{ 

    padding: 20px;
     border-radius: 25px;
     box-shadow: 4px 2px 15px  #99abab;;
     border: 1px solid rgb(43, 170, 170);

}

.box4{ 

    padding: 20px;
     border-radius: 25px;
     box-shadow: 4px 2px 15px  #99abab;;
     border: 1px solid rgb(43, 170, 170);

}

.container li{
  display: flex;
  border: none;
  box-shadow: 0px 4px 15px rgb(161, 168, 164);
  border: 1px solid rgb(47, 161, 174);
    border-radius: 25px;
    padding: 5px;
    margin-left: 5px;
}

/*Footer*/

footer {
  text-align: center;
  background-color: #004b63;
  color: white;
  padding: 20px 10px;
  font-size: .8rem;
}

footer a {
  color: #64d692;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}


/* HAMBURGER MENU */
.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}

/* Mobile Navbar */
    
@media (max-width: 768px) {
    body{
      flex-direction: column;
      gap: 20px;
      display: block;
      margin-left: auto;
    }
    
    nav{
    flex-wrap: wrap;
    }
    
.header img{
  width: 100px;
}

.container{
  width: 90%;
  left: auto;
  margin: 0 auto;


}


 img {
      max-width: 100%;
      height: auto;
      aspect-ratio: 1/1;
      object-fit: cover;
}
}

.hamburger {
  display: none;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
    margin-left: auto;

     
  }

  nav ul {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  
  }

  nav li.push-right {
    margin-left: 0; /* resets so it aligns nicely in mobile mode */
  }
}


@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    background: azure;
    padding: 1rem;
    position: absolute;
    top: 70px;
    right: 10px;
    border-radius: 10px;
    z-index: 1000;
 
  }
nav li{
    background-color:  #004b63;
     box-shadow: 0px 4px 15px #94b6b6;
     width: 100%
}

a:hover{
    padding: 10px;
    background-color: #56add6 ;
    border-radius: 20px;

}

  nav.active {
    display: flex;
  
  }

  .menu-toggle {
    display: block;

  }

  .contact form {
    width: 80%;
    font-size: 1em;
    margin: 0 auto; /* keep it centered */
  }


}


/* Desktop */
@media (min-width: 992px) {
  nav {
    display: flex !important;
    position: static;
    background: none;
  }
  .menu-toggle {
    display: none;
  }


  .contact input,
  .contact textarea,
  .contact select {
    width: 100%;
  }

}


