    /* ================= HERO SLIDER ================= */
    .hero-slider {
        position: relative;
        height: 70vh;
        min-height: 500px;
        overflow: hidden;
        background: #f5f5f5;
        border: solid 1px;
    }
    .hero-slider .slide {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        opacity: 0;
        transition: opacity 1s ease-in-out;
        background-size: 100% 100%;
        background-position: center;
        background-repeat: no-repeat;
    }
    .hero-slider .slide.active { opacity: 1; }

    @media (max-width: 768px) {
        .hero-slider { height: 40vh; min-height: 300px; }
        .hero-slider .slide { background-size: cover; }
    }
    @media (max-width: 480px) {
        .hero-slider { height: 30vh; min-height: 150px; }
        .hero-slider .arrow-nav { font-size: 1.2rem; padding: 6px 10px; }
    }

    /* Arrow Navigation */
    .hero-slider .arrow-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: #00FFFF;
        border: none;
        color: #333;
        font-size: 1.8rem;
        padding: 12px 16px;
        cursor: pointer;
        transition: all 0.3s ease;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        z-index: 10;
        display: none;
    }
    .hero-slider .arrow-nav:hover {
        background: rgba(255,255,255,0.95);
        transform: translateY(-50%) scale(1.05);
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }
    .hero-slider .prev { left: 20px; }
    .hero-slider .next { right: 20px; }

    @media (max-width: 768px) {
        .hero-slider .arrow-nav { font-size: 1.4rem; padding: 8px 12px; }
        .hero-slider .prev { left: 10px; }
        .hero-slider .next { right: 10px; }
    }

    /* Bullets */
    .hero-slider .slider-dots {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
        z-index: 20;
    }
    .hero-slider .slider-dots button {
        width: 10px;
        height: 3px;
        border: none;
        background: rgba(255,255,255,0.6);
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .hero-slider .slider-dots button.active {
        background: #333;
        transform: scale(1.2);
    }
    /* ================= HERO SLIDER END ================= */
    
    
    
    /* ================= About Us Section ================= */
.about-us {
  background: #fdfdfd;
  padding: 60px 20px;
  text-align: center;
}

.about-us h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #953330;
  position: relative;
  display: inline-block;
}

.about-us h2 span {
  color: #E46822;
}

.about-us p {
  max-width: 800px;
  margin: 0 auto 15px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

.about-us .container {
  max-width: 1000px;
  margin: auto;
}

@media (max-width: 768px) {
  .about-us h2 {
    font-size: 1.6rem;
  }
}


/* Optional underline styling for heading */
.about-us h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #E46822;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* ================= About Us Read More Button ================= */
.read-more-btn {
  background-color: #E46822;
  color: #fff;
  border: none;
  padding: 10px 20px;
  margin-top: 15px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.read-more-btn:hover {
  background-color: #953330;
}

/* ================= Services Section ================= */
.services {
  background: #f5f5f5;
  padding: 60px 20px;
}

.services-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.service-card {
  flex: 1 1 30%;
  background: #fff;
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #953330;
}

.service-card p {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

.service-card.highlight {
  background: #953330;
  color: #fff;
}

.service-card.highlight h3 {
  color: #fff;
}

.service-card.highlight p {
  color: #fff;
}

/* ================= Responsive ================= */
@media (max-width: 768px) {
  .services-container {
    flex-direction: column;
  }

  .service-card {
    flex: 1 1 100%;
  }
}


/* ================= Products Section (COMMON HEADING STYLE) ================= */
.products {
  background: #fff;
  padding: 60px 20px;
}

.products h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #953330;
  position: relative;
  display: block;   /* was inline-block */
  width: 100%;      /* ensure full width */
}


.products h2 span {
  color: #E46822;
}

.products h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #E46822;
  margin: 10px auto 0;
  border-radius: 2px;
}
/* ================= Products Section (COMMON HEADING STYLE) ================= */
.products {
  background: #fff;
  padding: 60px 20px;
  position: relative;
  text-align: center;
}

.products h1,
.products h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #953330;
  position: relative;
  display: block;
  width: 100%;
}

.products h1 span,
.products h2 span {
  color: #E46822;
}

.products h1::after,
.products h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #E46822;
  margin: 10px auto 0;
  border-radius: 2px;
}


/* ================= Products Section (COMMON HEADING STYLE) ================= */
.products {
  background: #fff;
  padding: 60px 20px;
  position: relative;
  text-align: center;
}

.products h1,
.products h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #953330;
  position: relative;
  display: block;
  width: 100%;
}

.products h1 span,
.products h2 span {
  color: #E46822;
}

.products h1::after,
.products h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #E46822;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* ================= Products Page (GRID LAYOUT) ================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
  
}

.products-grid .product-card {
  background: #fdfdfd;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 20px;
  transition: transform 0.3s ease;
  text-align: center;
  border: solid;
}

.products-grid .product-card:hover {
  transform: translateY(-5px);
}

.products-grid .product-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  margin-bottom: 15px;
}

.products-grid .product-card h3 {
  font-size: 1.2rem;
  color: #953330;
  margin-bottom: 10px;
}

.products-grid .product-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
}

.products-grid .product-btn {
  background-color: #E46822;
  color: #fff;
  border: none;
  padding: 8px 15px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 0.9rem;
  transition: background 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.products-grid .product-btn:hover {
  background-color: #953330;
}



/* Why Choose Us Section */
.why-choose-us {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.why-container {
  max-width: 1200px;
  margin: auto;
}

.why-choose-us h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #222;
}

.why-choose-us h2 span {
  color: #E46822;
}

.subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.why-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.why-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #953330;
}

.why-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}




/* Reviews Section */
.reviews {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.reviews-container {
  max-width: 1200px;
  margin: auto;
}

.reviews h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #222;
}

.reviews h2 span {
  color: #E46822;
}

.reviews .subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.review-card {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.review-text {
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.6;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 15px;
}

.reviewer img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid #E46822;
  object-fit: cover;
}

.reviewer h4 {
  font-size: 1rem;
  margin: 0;
  color: #953330;
}

.reviewer span {
  font-size: 0.85rem;
  color: #555;
}


@media (max-width: 768px) {
  .reviews h2 {
    font-size: 1.6rem;
  }
}