@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);
  -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;
}

/* CAROUSEL SECTION STYLING */
/* CAROUSEL SECTION STYLING */
.carousel-images {
  display: flex;
  height: 100%;
}

.carousel-image {
  position: relative;
  flex: 0 0 100%;
  height: 100%;
}

.carousel-image img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
}

.carousel-text {
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
  padding: 1.5rem;
  border-radius: 8px;
  max-width: 40%;
  color: #d6d6d6;
  text-align: left;
}

.carousel-text h2 {
  font-size: 35px;
  margin-bottom: 0.5rem;
}

.carousel-text p {
  font-size: 20px;
}

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

.about h2,
.intro-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;
}

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

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

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

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

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

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

/* SERVICES SECTION STYLING */
/* SERVICES SECTION STYLING */
#service2,
#service4 {
  background-color: #f2f2f2;
}

.services {
  background: #fff;
  padding: 20px;
  text-align: center;
  border-bottom: 2px 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: 10px;
  justify-items: center;
  align-items: start;
  margin-bottom: 20px;
}

/* Service Card */
.service-card {
  background: #fff;
  padding: 0.5rem;
  border-radius: 0px 15px 0px 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 300px;
  border: 1px solid #754e1a;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  border-radius: 15px;
}

.service-card img {
  width: 280px;
  height: 250px;
  object-fit: cover;
}

.service-card h3 {
  font-size: 25px;
  margin-bottom: 0.5rem;
  color: #444;
}

.service-card p {
  font-family: "Roboto Slab", serif;
  font-size: 1rem;
  color: #754e1a;
  line-height: 1.5;
  text-align: center;
}

/* CONTACT SECTION STYLING */
/* CONTACT SECTION STYLING */
.contact-section {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  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-family: 'Playfair Display', serif; */
  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: 15px;
}

.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: whitesmoke;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    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: 70%;
    padding: 1rem;
  }

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

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

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

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

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

  .about h2,
  .intro 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-btn {
    width: 80%;
  }

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