@import url("https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap");

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

body {
  margin: 0;
  font-family: "Titillium Web", sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

header {
  background-color: rgba(250, 248, 248, 0.6);
  backdrop-filter: blur(12px); /* Blur effect */
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #aaa;
  padding: 0.7rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.logo img {
  width: 75px;
  height: 45px;
}

.nav-center {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.nav-center a {
  font-family: "Titillium Web", sans-serif;
  text-decoration: none;
  color: #333;
  font-size: 20px;
  font-weight: bold;
}

.nav-center a:hover {
  color: #754e1a;
  border-bottom: 1px solid #754e1a;
}

.menu-icon {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #754e1a;
}

/* ABOUT SECTION STYLING */
/* ABOUT SECTION STYLING */
.about {
  padding: 20px 10px;
  background-color: #fff;
  border-bottom: 1px dashed #ccc;
  text-align: center;
}

.about h2,
.partners-text h2,
.services-header h2,
.contact-section h2,
.contact-details h2 {
  font-family: "Roboto Slab", serif;
  font-size: 45px;
  background: linear-gradient(to right, #704214, #dd6a0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.about-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  max-width: 85%;
  margin: 10px auto;
}

.about-text {
  font-size: 22px;
  color: #555;
  width: 750px;
  text-align: justify;
}

.about-text p {
  line-height: 1.6;
}

.more-btn {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #fff;
  color: #754e1a;
  text-decoration: none;
  font-weight: 500;
  border-radius: 12px;
  transition: border 1s ease;
}

.more-btn:hover {
  border: 1px solid #754e1a;
}

.about-image {
  width: 500px;
  height: 500px;
  overflow: hidden;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* PARTNERS SECTION STYLING */
/* PARTNERS SECTION STYLING */
.partners {
  padding: 20px 10px;
  background-color: #f1f1f1;
  border-bottom: 1px dashed #ccc;
  text-align: center;
}

.partners-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  max-width: 85%;
  margin: 25px auto;
}

.partners-text {
  font-size: 22px;
  color: #555;
  width: 900px;
  text-align: left;
}

.partners-text p {
  line-height: 1.6;
}

.partners-image {
  width: 500px;
  height: 500px;
  overflow: hidden;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.partners-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Grid for Partner Logos */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.partner {
  text-align: center;
}

.partner img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 7px;
}

.partner p {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  margin: 0;
}

/* OUR TEAM SECTION STYLING */
/* OUR TEAM SECTION STYLING */
#service4 {
  background: #fcdabf;
  border-bottom: 8px dashed #fff;
  padding: 10px;
}
.services {
  background: #fff;
  padding: 25px;
  text-align: center;
  border-bottom: 1px dashed #ddd;
}

.services-header p {
  color: #555;
  margin-bottom: 2rem;
  font-size: 22px;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 8px;
  justify-items: center;
  align-items: center;
  margin-bottom: 20px;
}

/* Service Card */
.service-card {
    background: #e9e7e7;
    border: 1px solid #754e1a;
    padding: 1rem;
    width: 100%;
    width: 400px;
    border-radius: 0px 0px 20px 0px;
    display: flex;
    flex-direction: column;
  }
  
  .service-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid #754e1a;
  }
  
  .service-card h3 {
    font-family: "Roboto Slab", serif;
    font-size: 25px;
    color: #754e1a;
  }
  
  .service-card p {
    font-family: "Roboto Slab", serif;
    font-size: 20px;
    color: #333;
  }

  .description li {
    font-size: 18px;
    color: #333;
    margin-bottom: 0.5rem;
  }
  
  /* Flexbox layout for larger screens */
  @media (min-width: 768px) {
    .service-card {
      flex-direction: row;
      max-width: 600px;
      text-align: left;
    }
  
    .personal {
      flex: 1;
      margin-right: 1rem;
    }
  
    .description {
      flex: 2;
    }
  
    .service-card-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
    }
  
    .service-card {
      flex: 1 1 calc(50% - 2rem);
      max-width: calc(50% - 2rem);
    }
  }
/* CONTACT SECTION STYLING */
/* CONTACT SECTION STYLING */
.contact-section {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f1f1;
  padding: 3rem 1rem;
  border-bottom: 2px solid #ddd;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 100%;
  align-items: center;
  gap: 40px;
}

.contact-image {
  width: 350px;
  height: 350px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-image img {
  max-width: 100%;
  height: auto;
}

.contact-details {
  flex: 1;
  text-align: left;
}

.contact-details p {
  margin-bottom: 1.5rem;
  font-size: 22px;
  color: #555;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-btn {
  font-family: "Roboto Slab", serif;
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 18px;
  border-radius: 10px;
  background: #fff;
  transition: background 0.9s ease;
}

.contact-btn span {
  font-size: 1.5rem;
  margin-right: 0.5rem;
}

.email-btn {
  border: 1px solid #ff725e;
  color: #ff725e;
}

.email-btn:hover {
  background: linear-gradient(135deg, #ff725e, #fdcbc4);
  color: #fff;
}

.phone-btn {
  border: 1px solid #2196f3;
  color: #2196f3;
}

.phone-btn:hover {
  background: linear-gradient(135deg, #2196f3, #91cdfd);
  color: #fff;
}

.whatsapp-btn {
  border: 1px solid #1da954;
  color: #1da954;
}

.whatsapp-btn:hover {
  background: #1da954;
  background: linear-gradient(135deg, #25d366, #9bfdbf);
  color: #fff;
}

/* FOOTER SECTION STYLE */
/* FOOTER SECTION STYLE */
.footer {
  background: #333;
  color: #aaa;
  padding: 25px 15px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo img {
  width: 230px;
  height: 130px;
}

.footer-logo p {
  color: #aaa;
  font-size: 17px;
  font-weight: 600;
  font-style: italic;
}

.footer-info h3,
.footer-social h3 {
  font-size: 20px;
  margin-bottom: 0.5rem;
  color: #aaa;
}

.footer-info p {
  margin: 0.3rem 0;
}

.social-icons a {
  color: #aaa;
  font-size: 16px;
  margin-right: 1rem;
  transition: color 0.7s ease-in-out;
  text-decoration: none;
}

.social-icons a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 10px;
  font-size: 18px;
}

.footer-bottom a {
  color: whitesmoke;
  text-decoration: none;
}

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

/* RESPONSIVE DESIGN */
/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .menu-icon {
    display: block;
  }

  header {
    padding: 0.4rem 0;
  }

  .nav-center {
    display: none;
    flex-direction: column;
    background-color: whitesmoke;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 10;
  }

  .nav-center.active {
    display: flex;
  }

  .nav-center a {
    padding: 10px;
    border-bottom: 1px dashed #754e1a;
    text-align: center;
    color: #754e1a;
  }

  .nav-center a:last-child {
    border-bottom: none;
  }

  .carousel-text {
    max-width: 80%;
    padding: 1rem;
  }

  .carousel-text h2 {
    font-size: 2rem;
  }

  .carousel-text p {
    font-size: 1rem;
  }

  .about-content,
  .partners-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-text,
  .partners-text {
    max-width: 100%;
  }

  .about-image,
  .partners-image {
    width: 320px;
    height: 300px;
  }

  .about h2,
  .partners-text h2,
  .services-header h2,
  .contact-section h2,
  .contact-details h2 {
    font-size: 32px;
  }

  .partner img {
    width: 100px;
    height: 100px;
    margin-bottom: 2px;
  }

  .service-card {
    width: 280px;
  }

  .contact-container {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .contact-details {
    text-align: center;
  }

  .contact-buttons {
    align-items: center;
  }

  .contact-btn {
    width: 80%;
  }

  .footer-bottom {
    font-size: 14px;
  }
}
