* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

:root {
  --primary-color: #4CAF50;
  --secondart-color: #8B5E3C;
  --backgroud-color: #F5F5DC;
  --text-color: #333333;
  --accent-color: #5DADE2;
  --footer-backgroud: #2E7D32;
  --nav-background: : #5DADE2;
}

.section-heading {
  color: var(--primary-color);
  font-size: 2.5em;
  font-family:  "Cormorant", serif;
  font-weight: 700;

}
/*navbar*===========================================================================*/

#navbar {

  display: flex;
  width: 100%;
  height: 90px;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  background-color: white;
  transition: background-color 0.3s;
  z-index: 20;

}

#navbar .logo {
  background-size: cover;
  border: none;
  height: 80px;
  width: 20%;
  overflow: hidden;
}

.logo img {
  height: 100%;
  width: 100%;
  overflow: hidden;
  background-size: cover;
  padding-left: 10px;
}

.nav-links {

  /* width: 70%; */
  text-decoration: none;

  display: flex;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;


}

.nav-links li {
  list-style: none;
  /* margin-right: 20px; */




}

.nav-links li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  font-size: 1.2rem;
}

.nav-links li a:hover {
  border-bottom: 2px solid var(--primary-color);
}

.call-button {

  padding: 10px 10px;
  font-family: inherit;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.05em;
  border-radius: 1.5em;
  cursor: pointer;
  border: none;
  background: var(--primary-color);
  color: ghostwhite;
  overflow: hidden;
}


/* hamburger */
.hamburger {
  display: none;
  cursor: pointer;
  border: none;
  background-color: white;
  font-size: 1.5rem;
  cursor: pointer;
  margin: 0 20px;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: black;
}

.hamburger:hover .bar {
  background-color: green;
}

nav a.active-link {
  color: white;
  background-color: var(--primary-color);
  border-radius: 10px;
  padding: 5px;

}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    /* Hide links by default */
    flex-direction: column;
    background-color: white;
    width: 100%;
    position: absolute;
    top: 90px;
    /* Adjust based on your navbar height */
    left: 0;
  }

  .nav-links.show {
    display: flex;
    /* Show links when toggled */
    padding-bottom: 15px;
  }

  .hamburger {
    display: block;
  }
}

#cuntainer {
  display: flex;
  width: 100%;
}


#cuntainer h2 {
  font-size: 3.5rem;
  color: #007bff;
  margin-top: 20px;
}

.containeer {
  width: 100%;
  margin-top: 85px;
  display: block;
  background-color: #fff;

  border-radius: 5px;

}

.container-text {
  display: block;
  margin-top: 20px;
}

form {
  display: block;
  margin-top: 30px;
  /* padding: 20px 20px; */
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

input,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
  box-sizing: border-box;
}

textarea {
  min-height: 100px;
}

button {
  background-color: #4CAF50;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

button:hover {
  background-color: #45a049;
}

.contact-inf0 {
  margin-top: 50px;
  width: 50%;
  display: block;
  padding: 20px 10px;
}

.social-media-icons {
  display: block;
}

.media-icons {
  display: flex;
}

.details {
  display: flex;
  margin-top: 40px;
}

.icons {
  width: 10%;
  height: 40px;
  margin: 10px;
}

.icons i {
  font-size: 30px;
  color: var(--primary-color);
}

.social-media-icons h1 {
  font-size: 20px;
  margin-top: 20px;
  color: #000;
}

.media-icons i {
  font-size: 40px;
  padding-top: 5px;
}

.contact-inf0 h3 {
  font-size: 1.8rem;
  color: #333;
  margin-top: 20px;
}

.contact-inf0 p {
  margin-top: 20px;
  font-size: 22px;
}

.contact-info a {
  color: #007bff;
  text-decoration: none;
}

.contact-info-details {
  margin-top: 20px;
}

.details h4 {
  font-size: 20px;

}

.details p {
  font-size: 18px;

}

.contact-info-text {
  display: block;
}

.face {
  width: 50px;
  height: 50px;
  margin: 20px;
  text-align: center;
  color: #007bff;
  border: 1px solid #007bff;
  border-radius: 2px;
}

.insta {
  width: 50px;
  height: 50px;
  margin: 20px;
  text-align: center;
  color: #7A0AA3;
  border: 1px solid #7A0AA3;
  border-radius: 2px;
}

.whats {
  width: 50px;
  height: 50px;
  margin: 20px;
  color: #308E0B;
  text-align: center;
  border: 1px solid #308E0B;
  border-radius: 2px;
}


/* footer*/

footer {
  background: linear-gradient(135deg, #d1dbd1, #292a2b);
  display: flex;
  color: #fff;
  /* justify-content: center; */
  flex-direction: column;
  align-items: center;
}

.footer-bottom {
  text-align: center;
  width: 90%;
  padding-bottom: 60px;
}

.footer-container {
  width: 90%;
  display: flex;
  gap: 20px;
  padding: 60px 0;
}


.footer-col {
  flex: 1 1 calc(25% - 20px);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-col img {
  /* background-size: cover; */
  /* border: none; */
  height: 100%;
  width: 100%;
  overflow: hidden;
  mix-blend-mode: color-burn;


}



.footer-col a {
  text-decoration: none;
  color: white;
}

.footer-col i {
  /* background-color: #333; Background color of the circle */
  color: white;
  /* Color of the icon */
  padding: 10px;
  border-radius: 50%;
  font-size: 18px;
  width: 36px;
  height: 36px;
  text-align: center;
  transition: background-color 0.3s ease;

}

.footer-col .fa-facebook-f {
  background-color: #0861F2;
}

.footer-col .fa-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.footer-col div {
  display: flex;
  flex-wrap: nowrap;
  gap: 5px;
}

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  font-size: 25px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.whatsapp-button i {
  color: white;
  vertical-align: middle;
}

.float-icon-container {
  display: flex;
  flex-direction: column;
  position: fixed;
  right: 0;
  top: 50%;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.fb-icon {
  background-color: blue;
  padding: 12px;
  color: white;

}

.ig-icon {
  padding: 12px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}

@media (max-width: 1024px) {
  .footer-container {
    flex-wrap: wrap;
  }

  .footer-col {
    flex: 0 0 100%;
  }

  .footer-img-wrapper {
    display: none;
  }
}

.front-section {
  background-image: url(images/rosario-janza-XoO3uLdwsms-unsplash.jpg);
  background-size: cover;
  overflow: hidden;
  height: 350px;
  width: 100%;
}

/*section2==============================================*/
.container2 {
  display: flex;
  justify-content: space-around;
  margin-top: 50px;
  margin-bottom: 50px;
}

.service {
  text-align: center;
  width: 300px;
  padding: 15px 15px;
  height: 300px;
  border-radius: 4px;
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1)
}

.service h3 {
  margin-top: 0;
  margin: 10px;
  color: #C16F0A;
  font-size: 1.2rem;
  text-align: center;
  font-family: "Gilda Display", serif;
}

.service p {
  font-size: 1rem;

  text-align: center;
  margin-bottom: 10px;
  margin: 10px;
  color: #000;
}

.service img {
  height: 100px;
  width: 100px;
  overflow: hidden;
  background-size: cover;

}


.container3 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40vh;
  background-color: transparent;
}

.card2 {
  background-color: #F5F5DC;
  ;
  padding: 30px;
  width: 90%;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.card2 h2 {
  margin-bottom: 20px;
  color: #333;
}

button {
  background-color: #333;
  color: #F5F5DC;
  ;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}




.containeer {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px;
  background-image: url(images/vasilina-sirotina-NYHWajYu-7Y-unsplash.jpg);
  background-size: cover;
  overflow: hidden;
}

.form-containeer {
  width: 40%;
  padding: 20px 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f2f2f2;
}

.form-containeer h2 {
  color: var(--primary-color);
  font-family: "Gilda Display", serif;
}

.form-grooup {
  margin-bottom: 15px;
}

label {
  display: block;
  margin-bottom: 5px;
}

input[type="text"],
input[type="date"],
input[type="time"] {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

button {
  background-color: #4CAF50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

button:hover {
  background-color: #45a049;
}

.container-text {
  text-align: start;
  color: #fff;
}

@media (max-width: 800px) {
  .containeer {
    display: block;
    /* text-align: center; */
  }

  .form-containeer {
    width: 100%;
    margin-top: 10px;
  }

  .container2 {
    display: block;
    text-align: center;
    width: 100%;
  }

  .service {
    width: 100%;
    text-align: center;
  }

  .service h3 {
    text-align: center;
  }

  .service p {
    text-align: center;
  }
}

.card2 button a {
  color: #fff;
  text-decoration: none;
}