* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background-color: #f8f9fa;
            overflow-x: hidden;
        }


        /* Header section */
        .header {
            background: linear-gradient(135deg, #f9f3e7, #e0dcd5);
            color: white;
            padding: 16px 32px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
          display: flex;
          align-items: center;
          font-size: 28px;
          font-weight: bold;
          color: #000;
          text-decoration: none;
          letter-spacing: -0.5px;
        }

        .logo-img {
            height: 40px;
            width: auto;
            margin-right: 8px;
        }

        .nav {
            display: flex;
            gap: 32px;
            list-style: none;
        }

        .nav a {
            color: #555;
            text-decoration: none;
            font-size: 18px;
            font-weight: 400;
            transition: color 0.2s ease;
            padding: 8px 0;
        }

        .nav a:hover {
            color: #333;
        }

        .nav a.active {
            color: #333;
            font-weight: 500;
        }

        /* Content section */
.tab-container {
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.tab-navigation {
    display: flex;
    justify-content: flex-start;
    gap: 40px;
    padding-left: 40px;
    margin-bottom: 30px;
    border-bottom: 2px solid #e5e7eb;
    position: relative;
}

.tab-panel {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: none;
}

.tab-panel.active {
  opacity: 1;
  display: block;
}

.tab-item {
    padding: 12px 0;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s ease;
    position: relative;
    text-decoration: none;
    color: #374151;
}

.tab-item.active {
    color: #dc2626;
}

.tab-item.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #dc2626;
    border-radius: 1px;
}

.tab-item:hover:not(.active) {
    color: #6b7280;
}

/* Home Gallery */
.home-gallery {
    padding: 0px;
    background: #f9f9f9;
}

.gallery-slider {
  text-align: center;
  padding: 0;
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0;
}

/* Slider container */
.slider-container {
  margin: auto;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.slide {
  display: none;
}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

.caption {
  padding: 15px;
  background: #fff;
  font-size: 1.2rem;
  color: #444;
  border-radius: 0 0 12px 12px;
}

/* Arrows */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 12px;
  margin-top: -20px;
  color: white;
  font-weight: bold;
  font-size: 28px;
  border-radius: 50%;
  background: rgba(0,0,0,0.4);
  user-select: none;
  transition: 0.3s;
}

.prev:hover, .next:hover {
  background: rgba(0,0,0,0.7);
}

.prev {
  left: 15px;
}

.next {
  right: 15px;
}

/* About Us */
.about-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: #fff;
}

.about-card {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-logo {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-logo img {
  width: 200px;
  height: auto;
  object-fit: contain;
}

.about-box {
  flex: 1;
  background: linear-gradient(135deg, #f9f3e7, #e0dcd5);
  padding: 20px;
  text-align: left;
  justify-content: right;
}

.about-box h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #333;
}

.about-box p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

.btn-read {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 0.95rem;
  text-decoration: none;
  transition: 0.3s ease;
}

/* services */
.why-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f9f3e7, #e0dcd5);
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #333;
}

.why-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

.why-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  width: 250px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.why-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.why-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #111;
}

.why-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Certificates section */
.certificates-section {
  padding: 60px 20px;
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 15px;
  text-align: center;
}

.certificates-description {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.certificates-list {
  list-style-type: disc;
  padding-left: 20px;
  font-size: 1rem;
  line-height: 1.6;
}

/* Hide hamburger by default */
.hamburger {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
}

/* Responsive styles */
@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: linear-gradient(135deg, #f9f3e7, #e0dcd5);
        padding: 10px 0;
        position: absolute;
        top: 70px;
        left: 0;
        text-align: center;
        z-index: 100;
    }

    .nav.active {
        display: flex;
    }

    .nav li {
        margin: 10px 0;
    }

    .hamburger {
        display: block;
    }
}

@media (max-width: 768px) {
    .gallery-slider {
        width: 100%;
        overflow: hidden;
    }

    .slide img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .prev, .next {
        font-size: 20px;
        padding: 8px;
    }
}

@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        padding: 40px 20px;
        text-align: center;
    }

    .about-card {
        flex-direction: column;
        gap: 20px;
    }

    .about-logo img {
        width: 150px;
        margin: 0 auto;
    }

    .about-box {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .why-cards {
        flex-direction: column;
        gap: 20px;
    }

    .why-card {
        width: 90%;
        margin: 0 auto;
    }

    .why-card img {
        height: auto;
    }
}


/* About Us Section */
/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 50vh;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background-position: center;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-text {
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 5rem;
    margin-bottom: 10px;
}

.about-hero {
    background-image: url('images/gw1.jpg');
}

.gallery-hero {
    background-image: url('images/gallery.png');
}

.contact-hero {
    background-image: url('images/contact2.jfif');
}

/* Mission Section */
.mission {
  background: linear-gradient(135deg, #f9f3e7, #e0dcd5);
  padding: 80px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mission-container {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1200px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Image Wrapper */
.mission-image-wrapper {
  position: relative;
  flex: 1;
  max-width: 500px;
  display: flex;
  justify-content: center;
  height: 300px;
}

/* Overlay image (back) */
.overlay-img {
  width: 70%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  position: absolute;
  z-index: 1;
  transform: translateX(-50px) translateY(50px);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.overlay-img:hover {
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}

/* Main image (front) */
.main-img {
  width: 60%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid #fff;
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
  position: relative;
  z-index: 2;
  transform: translateX(40px) translateY(-40px);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.main-img:hover {
  transform: scale(1.08) rotate(2deg);
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Mission Content */
.mission-content {
  flex: 1;
  max-width: 600px;
  animation: fadeInUp 1.5s ease forwards;
  text-align: center;
}

/* Title */
.mission-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
  text-align: center;
}

.mission-title::after {
  content: '';
  width: 60px;
  height: 4px;
  background: #d9a066;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Description */
.mission-description {
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Features */
.mission-features {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: nowrap;
}

.feature-box {
  flex: 1 1 200px;
  max-width: 400px;
  background: #f4f4f4;
  padding: 20px 10px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-box i {
  font-size: 2.5rem;
  color: #82864a;
  margin-bottom: 8px;
}

.feature-box h3 {
  font-size: 1.2rem;
  color: #333;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* Fade-in animation */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 992px) {
  .mission-container {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }

  .mission-image-wrapper {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
  }

  .main-img, .overlay-img {
    height: 100%;
  }

  .overlay-img {
    margin: 0 auto;
  }

  .mission-content {
    max-width: 95%;
    margin: auto;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .main-img, .overlay-img {
    width: 100%;
    max-width: 150px;
  }

  .overlay-img {
    transform: translateY(20px);
  }

  .feature-box {
    width: 100%;
  }
}

/* Review Section */
.review-section {
    text-align: center;
    padding: 50px 20px;
}

.review-heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
    letter-spacing: 1.5px;
}

.review-heading::after {
    content: '';
    width: 60px;
    height: 4px;
    background: #d9a066;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

.review-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 1000px;
    margin: auto;
}

.review-slider {
    display: flex;
    overflow: hidden;
    gap: 20px;
}

.review-card {
    min-width: 300px;
    max-width: 350px;
    background: linear-gradient(135deg, #f9f3e7, #e0dcd5);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease-in-out;
}

.review-card:hover {
    transform: translateY(-10px);
}

.review-content p {
    font-size: 1rem;
    color: #555;
    font-style: italic;
    margin-bottom: 15px;
}

.review-content h4 {
    margin: 0;
    font-size: 1.2rem;
    color: #222;
}

.review-content span {
    display: block;
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 10px;
}

.stars {
    font-size: 1.2rem;
    color: #f39c12;
}

.prev-btn, .next-btn {
    background: #333;
    color: #fff;
    border: none;
    padding: 12px 18px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: 0.3s;
}

.prev-btn:hover, .next-btn:hover {
    background: linear-gradient(135deg, #414344, #e9ecef);
}


/* Gallery Section */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  background: linear-gradient(135deg, #f9f3e7, #e0dcd5);
  padding: 30px 30px 30px;
  margin: 40px auto;
  max-width: 1200px;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
}

.gallery-header {
      text-align: center;
      margin: 40px 20px 20px;
    }

.filter-buttons {
  text-align: center;
  margin-bottom: 25px;
}

.filter-buttons button {
  background: #fff;
  color: #000;
  border: 2px solid #000;
  padding: 12px 22px;
  margin: 0 12px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-buttons button:hover {
  background: #000;
  color: #fff;
  transform: translateY(-2px);
}

.filter-buttons button.active {
  background: #000;
  color: #fff;
  border-color: #000;
}

    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
    }

    .gallery-item img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.08);
    }

    .caption {
      position: absolute;
      bottom: 0;
      width: 100%;
      background: rgba(0,0,0,0.6);
      color: #fff;
      text-align: center;
      padding: 10px;
      font-size: 14px;
    }


/* Contact Us Section */
.contact-section {
    max-width: 1000px;
    margin: 50px auto;
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    gap: 40px;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.contact-page .hero {
    background: url("images/contact.webp") center/cover no-repeat;
    height: 60vh;
}

/* Left side info */
.contact-info {
    flex: 1;
    min-width: 280px;
    padding-right: 30px;
    border-right: 2px solid #ccc;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.contact-info p {
    color: #6e6b6b;
    margin-bottom: 50px;
    line-height: 1.6;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.info-item i {
    font-size: 24px;
    width: 40px;
    color: #858651;
}

.info-item div {
    display: flex;
    flex-direction: column;
}

.info-item div span:first-child {
    font-weight: bold;
    margin-bottom: 3px;
}

.info-item div span:last-child {
    color: #6e6b6b;
}

/* Right side form */
.contact-form {
    flex: 1;
    min-width: 280px;
    padding-left: 30px;
}

.contact-form h3 {
    margin-bottom: 20px;
    font-size: 24px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 25px;
    border: none;
    border-bottom: 2px solid #6e6b6b;
    font-size: 16px;
    resize: none;
    background: transparent;
    color: #333;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-bottom: 2px solid #333;
}

.contact-form button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    background: #333;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-form button:hover {
    background: linear-gradient(135deg, #414344, #e9ecef);
}

/* Stack layout on mobile */
@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
    }
    .contact-info {
        border-right: none;
        padding-right: 0;
        border-bottom: 2px solid #ccc;
        padding-bottom: 20px;
    }
    .contact-form {
        padding-left: 0;
        margin-top: 20px;
    }
}


/* Footer section */
.footer {
    position: relative;
    background: url('images/footer.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
    overflow: hidden;
  }

  .footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

.footer-container {
    display: flex;
    flex-direction: row;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 20px;
}

.footer-container,
.footer hr,
.footer-bottom {
    position: relative;
    z-index: 1;
}

.footer-section {
    flex: 1 1 250px;
    margin: 10px;
    text-align: left;
}

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #f4f4f4;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a i {
    margin-right: 8px;
}

.footer-section ul li a:hover {
    color: #f3cf86;
}

.footer-section p {
    margin: 8px 0;
    line-height: 1.6;
}

.footer-section p i {
    margin-right: 8px;
    color: #f3cf86;
}

/* Social Icons */
.social-icons a {
    display: inline-block;
    margin: 0 8px;
    font-size: 1.4rem;
    color: #f3cf86;
    transition: color 0.3s, transform 0.2s;
}

.social-icons a:hover {
    color: #eca10b;
    transform: scale(1.1);
}

.footer hr {
    border: 0.5px solid #555;
    margin: 20px 0 10px;
}

.footer-bottom {
    font-size: 0.9rem;
    color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-section {
        text-align: center;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .header {
        padding: 12px 20px;
    }

    .nav {
        gap: 20px;
    }

    .nav a {
        font-size: 14px;
    }

    .logo {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .nav {
        gap: 16px;
    }
}


/*  Vision Section  */

/* White background, same as review section */
.vision-section {
    background: #ffffff;
}

/* Cream-toned feature cards for vision */
.vision-feature-box {
    background: linear-gradient(135deg, #f9f3e7, #e0dcd5) !important;
}

/* About Us Section */
.about-us-section {
    background: linear-gradient(135deg, #f9f3e7, #e0dcd5);
    padding: 80px 40px;
    text-align: center;
}

.about-us-eyebrow {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #82864a;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.about-us-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
}

.about-us-divider {
    width: 60px;
    height: 4px;
    background: #d9a066;
    border-radius: 2px;
    margin: 0 auto 30px;
}

.about-us-text {
    max-width: 720px;
    margin: 0 auto 20px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

.about-us-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #111;
    margin: 0;
}

.stat-label {
    font-size: 0.9rem;
    color: #777;
    margin: 4px 0 0;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: #ccc;
}

@media (max-width: 576px) {
    .stat-divider { display: none; }
    .about-us-stats { gap: 24px; }
}