.hero-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 60px;
}

.hero-text {
  max-width: 760px;
  color: #fff;
}

.hero-subtitle {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #f4c16d;
  margin-bottom: 18px;
}

.hero-text h1 {
  margin: 0 0 22px;
  font-size: 64px;
  line-height: 1.1;
  font-weight: 700;
}

.hero-text p {
  margin: 0 0 30px;
  max-width: 650px;
  font-size: 18px;
  line-height: 1.8;
  color: #f1f1f1;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.primary-btn {
  background: #ff6a00;
  color: #fff;
}

.primary-btn:hover {
  background: #e45d00;
}

.secondary-btn {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.secondary-btn:hover {
  background: #fff;
  color: #000;
}

@media (max-width: 991px) {
  .hero-banner {
    min-height: 620px;
    height: 90vh;
  }

  .hero-inner {
    padding: 0 20px;
  }

  .hero-text h1 {
    font-size: 42px;
  }

  .hero-text p {
    font-size: 16px;
    line-height: 1.7;
  }

  .hero-buttons {
    gap: 12px;
  }

  .hero-btn {
    padding: 12px 22px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .hero-banner {
    min-height: 560px;
  }

  .hero-text h1 {
    font-size: 34px;
  }

  .hero-subtitle {
    font-size: 13px;
  }

  .hero-text p {
    font-size: 15px;
  }
}
.about-short {
  padding: 90px 0;
  background: #f8f5ef;
}

.about-short-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.about-short-content {
  flex: 1;
  max-width: 650px;
}

.section-tag {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: #c7862f;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.about-short-content h2 {
  margin: 0 0 18px;
  font-size: 42px;
  line-height: 1.2;
  color: #111;
}

.about-short-content p {
  margin: 0 0 28px;
  font-size: 17px;
  line-height: 1.9;
  color: #555;
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.highlight-item {
  background: #fff;
  border: 1px solid #e5ddd0;
  padding: 12px 18px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  color: #222;
}

.about-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #ff6a00;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s ease;
}

.about-btn:hover {
  background: #e45d00;
}

.about-short-image {
  flex: 1;
  max-width: 500px;
}

.about-short-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

/* MOBILE */
@media (max-width: 991px) {
  .about-short {
    padding: 70px 0;
  }

  .about-short-container {
    flex-direction: column;
    padding: 0 20px;
    gap: 35px;
  }

  .about-short-content h2 {
    font-size: 32px;
  }

  .about-short-content p {
    font-size: 16px;
  }

  .about-short-image {
    max-width: 100%;
  }

  .about-short-image img {
    height: 300px;
  }
}

/* OUR CATEGORIES SECTION START */
.categories-section {
  padding: 90px 0;
  background: #fff;
}

.categories-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 60px;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.section-heading h2 {
  margin: 0 0 16px;
  font-size: 42px;
  color: #111;
  line-height: 1.2;
}

.section-heading p {
  margin: 0;
  font-size: 17px;
  line-height: 1.8;
  color: #666;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.category-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  overflow: hidden;
  transition: 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

.category-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.category-content {
  padding: 24px;
}

.category-content h3 {
  margin: 0 0 10px;
  font-size: 24px;
  color: #111;
}

.category-content p {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  min-height: 50px;
}

.category-btn {
  display: inline-block;
  padding: 12px 22px;
  background: #ff6a00;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s ease;
}

.category-btn:hover {
  background: #e45d00;
}

@media (max-width: 991px) {
  .categories-section {
    padding: 70px 0;
  }

  .categories-container {
    padding: 0 20px;
  }

  .section-heading h2 {
    font-size: 32px;
  }

  .section-heading p {
    font-size: 16px;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .category-image img {
    height: 220px;
  }
}

@media (max-width: 576px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }

  .category-content h3 {
    font-size: 22px;
  }

  .category-image img {
    height: 240px;
  }
}
/* OUR CATEGORIES SECTION END */


/* FEATURED PRODUCTS SECTION START */
.featured-products {
  padding: 90px 0;
  background: #f8f5ef;
}

.featured-products-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 60px;
}

.featured-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #eee;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

.product-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.product-content {
  padding: 22px;
  text-align: center;
}

.product-content h3 {
  margin: 0 0 10px;
  font-size: 22px;
  color: #111;
}

.product-size {
  margin: 0 0 18px;
  font-size: 15px;
  color: #666;
}

.product-btn {
  display: inline-block;
  padding: 12px 22px;
  background: #ff6a00;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s ease;
}

.product-btn:hover {
  background: #e45d00;
}

@media (max-width: 991px) {
  .featured-products {
    padding: 70px 0;
  }

  .featured-products-container {
    padding: 0 20px;
  }

  .featured-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .product-image img {
    height: 240px;
  }
}

@media (max-width: 576px) {
  .featured-products-grid {
    grid-template-columns: 1fr;
  }

  .product-image img {
    height: 260px;
  }

  .product-content h3 {
    font-size: 20px;
  }
}
/* FEATURED PRODUCTS SECTION END */


/* OUR SERVICES SECTION START */
.services-section {
  padding: 90px 0;
  background: #fff;
}

.services-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: #f8f5ef;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 30px 26px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
  margin: 0 0 14px;
  font-size: 24px;
  color: #111;
}

.service-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #666;
}

@media (max-width: 991px) {
  .services-section {
    padding: 70px 0;
  }

  .services-container {
    padding: 0 20px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 24px 20px;
  }

  .service-card h3 {
    font-size: 22px;
  }
}
/* OUR SERVICES SECTION END */


/* GALLERY SECTION START */
.gallery-section {
  padding: 90px 0;
  background: #f8f5ef;
}

.gallery-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 60px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 14px;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

@media (max-width: 991px) {
  .gallery-section {
    padding: 70px 0;
  }

  .gallery-container {
    padding: 0 20px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .gallery-item img {
    height: 240px;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: 260px;
  }
}
/* GALLERY SECTION END */



/* WHY CHOOSE US SECTION START */
.why-choose-section {
  padding: 90px 0;
  background: #fff;
}

.why-choose-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 60px;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  background: #f8f5ef;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 30px 26px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.why-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #ff6a00;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.why-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  color: #111;
}

.why-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #666;
}

@media (max-width: 991px) {
  .why-choose-section {
    padding: 70px 0;
  }

  .why-choose-container {
    padding: 0 20px;
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    padding: 24px 20px;
  }

  .why-card h3 {
    font-size: 20px;
  }
}
/* WHY CHOOSE US SECTION END */


/* OUR PROCESS SECTION START */
.process-section {
  padding: 90px 0;
  background: #f8f5ef;
}

.process-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 60px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.process-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: 0.3s ease;
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.process-number {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #ff6a00;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
}

.process-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  color: #111;
}

.process-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #666;
}

@media (max-width: 1199px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .process-section {
    padding: 70px 0;
  }

  .process-container {
    padding: 0 20px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-card {
    padding: 24px 20px;
  }
}
/* OUR PROCESS SECTION END */

/* CUSTOMER TESTIMONIALS SECTION START */
.testimonials-section {
  padding: 90px 0;
  background: #fff;
  overflow: hidden;
}

.testimonials-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 60px;
}

.testimonial-slider {
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: testimonialScroll 55s linear infinite;
}

.testimonial-card {
  width: 320px;
  min-width: 320px;
  background: #f8f5ef;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 26px 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.testimonial-stars {
  color: #f4b400;
  font-size: 18px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-card p {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

.testimonial-card h4 {
  margin: 0 0 4px;
  font-size: 18px;
  color: #111;
}

.testimonial-card span {
  font-size: 14px;
  color: #888;
}

.testimonial-slider:hover .testimonial-track {
  animation-play-state: paused;
}

@keyframes testimonialScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 991px) {
  .testimonials-section {
    padding: 70px 0;
  }

  .testimonials-container {
    padding: 0 20px;
  }

  .testimonial-card {
    width: 280px;
    min-width: 280px;
  }

  .testimonial-track {
    gap: 18px;
  }
}

@media (max-width: 576px) {
  .testimonial-card {
    width: 250px;
    min-width: 250px;
    padding: 22px 18px;
  }

  .testimonial-card p {
    font-size: 14px;
  }

  .testimonial-card h4 {
    font-size: 17px;
  }
}
/* CUSTOMER TESTIMONIALS SECTION END */

/* LOCATION & CONTACT SECTION START */
.location-contact-section {
  padding: 90px 0;
  background: #f8f5ef;
}

.location-contact-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 60px;
}

.location-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  align-items: stretch;
}

.contact-info-box,
.map-box {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #eee;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.contact-info-box {
  padding: 32px 28px;
}

.contact-info-box h3 {
  margin: 0 0 22px;
  font-size: 28px;
  color: #111;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-info-item i {
  color: #ff6a00;
  font-size: 18px;
  margin-top: 4px;
  min-width: 18px;
}

.contact-info-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

.contact-info-item a {
  color: #555;
  text-decoration: none;
}

.contact-info-item a:hover {
  color: #ff6a00;
}

.contact-action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.call-btn,
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s ease;
}

.call-btn {
  background: #ff6a00;
}

.call-btn:hover {
  background: #e45d00;
  color: #fff;
}

.whatsapp-btn {
  background: #25d366;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
  color: #fff;
}

.map-box {
  min-height: 420px;
}

.map-box iframe {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 991px) {
  .location-contact-section {
    padding: 70px 0;
  }

  .location-contact-container {
    padding: 0 20px;
  }

  .location-contact-grid {
    grid-template-columns: 1fr;
  }

  .map-box {
    min-height: 320px;
  }

  .contact-info-box h3 {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .contact-info-box {
    padding: 24px 20px;
  }

  .contact-info-box h3 {
    font-size: 22px;
  }

  .contact-action-buttons {
    flex-direction: column;
  }
}
/* LOCATION & CONTACT SECTION END */

/* CTA SECTION START */
.cta-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #111 0%, #2b2b2b 100%);
}

.cta-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 60px;
}

.cta-content {
  text-align: center;
  color: #fff;
  max-width: 900px;
  margin: 0 auto;
}

.cta-content h2 {
  margin: 0 0 18px;
  font-size: 48px;
  line-height: 1.2;
  color: #fff;
}

.cta-content p {
  margin: 0 auto 28px;
  max-width: 700px;
  font-size: 18px;
  line-height: 1.8;
  color: #e5e5e5;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s ease;
}

.primary-cta {
  background: #ff6a00;
  color: #fff;
}

.primary-cta:hover {
  background: #e45d00;
  color: #fff;
}

.secondary-cta {
  background: #25d366;
  color: #fff;
}

.secondary-cta:hover {
  background: #1ebe5d;
  color: #fff;
}

@media (max-width: 991px) {
  .cta-section {
    padding: 70px 0;
  }

  .cta-container {
    padding: 0 20px;
  }

  .cta-content h2 {
    font-size: 36px;
  }

  .cta-content p {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .cta-content h2 {
    font-size: 30px;
  }

  .cta-btn {
    width: 100%;
    max-width: 280px;
  }
}
/* CTA SECTION END */

/* LATEST UPDATES / BLOG SECTION START */
.blog-section {
  padding: 90px 0;
  background: #fff;
}

.blog-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 60px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

.blog-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.blog-content {
  padding: 24px;
}

.blog-content h3 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.4;
  color: #111;
}

.blog-content p {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.8;
  color: #666;
}

.blog-btn {
  display: inline-block;
  padding: 12px 22px;
  background: #ff6a00;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s ease;
}

.blog-btn:hover {
  background: #e45d00;
}

@media (max-width: 991px) {
  .blog-section {
    padding: 70px 0;
  }

  .blog-container {
    padding: 0 20px;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .blog-image img {
    height: 220px;
  }

  .blog-content h3 {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-image img {
    height: 230px;
  }

  .blog-content h3 {
    font-size: 20px;
  }
}
/* LATEST UPDATES / BLOG SECTION END */

@media (max-width: 768px) {
  .testimonials-container,
  .location-contact-container,
  .blog-container,
  .services-container,
  .why-choose-container,
  .process-container,
  .categories-container,
  .featured-products-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .location-contact-grid {
    grid-template-columns: 1fr;
  }

  .map-box {
    min-height: 320px;
  }
}

@media (max-width: 480px) {
  .testimonial-track {
    gap: 14px;
  }

  .testimonial-card {
    width: min(78vw, 250px);
    min-width: min(78vw, 250px);
    padding: 20px 16px;
  }

  .testimonials-container,
  .location-contact-container,
  .blog-container,
  .services-container,
  .why-choose-container,
  .process-container,
  .categories-container,
  .featured-products-container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .contact-info-box,
  .blog-card,
  .service-card,
  .why-card,
  .process-card,
  .category-card,
  .product-card {
    padding-left: 16px;
    padding-right: 16px;
  }
}

