/* ========================================
   HERO VIDEO SLIDER
======================================== */

.hero-slider-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Each Carousel Slide */
.hero-slider-section .carousel-item {
  position: relative;
  width: 100%;
  height: 650px;
  overflow: hidden;
}

/* ========================================
   VIDEO BACKGROUND
======================================== */

.hero-slider-section .carousel-item video {
  width: 100%;
  height: 650px;
  object-fit: cover;
  display: block;
}

/* Optional: Support image if you use image
   in any other slider */
.hero-slider-section .carousel-item img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  display: block;
}

/* ========================================
   DARK OVERLAY
======================================== */

.hero-slider-section .carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.5) 45%,
    rgba(0, 0, 0, 0.15) 70%,
    rgba(0, 0, 0, 0.05) 100%
  );

  z-index: 1;
  pointer-events: none;
}

/* ========================================
   BANNER TEXT BOX
======================================== */

.hero-slider-section .text-box {
  position: absolute;
  top: 50%;
  left: 10%;

  transform: translateY(-50%);

  width: 90%;
  max-width: 650px;

  color: #ffffff;
  z-index: 2;
}

/* ========================================
   SUBTITLE
======================================== */

.hero-slider-section .banner-subtitle {
  display: inline-block;

  font-size: 14px;
  font-weight: 600;

  letter-spacing: 3px;

  margin-bottom: 15px;

  color: #d9b057;

  text-transform: uppercase;
}

/* ========================================
   MAIN HEADING
======================================== */

.hero-slider-section .text-box h1,
.hero-slider-section .text-box h2 {
  font-size: 55px;
  font-weight: 700;

  line-height: 1.15;

  margin-bottom: 20px;

  color: #ffffff;
}

/* ========================================
   DESCRIPTION
======================================== */

.hero-slider-section .text-box p {
  font-size: 18px;

  line-height: 1.8;

  margin-bottom: 30px;

  color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   BUTTON
======================================== */

.hero-slider-section .banner-btn {
  display: inline-block;

  padding: 14px 32px;

  background: #d9b057;
  color: #ffffff;

  font-size: 15px;
  font-weight: 600;

  text-decoration: none;

  border-radius: 4px;

  transition: all 0.3s ease;
}

.hero-slider-section .banner-btn:hover {
  background: #ffffff;
  color: #222222;

  text-decoration: none;

  transform: translateY(-3px);
}

/* ========================================
   CAROUSEL CONTROLS
======================================== */

.hero-slider-section .carousel-control-prev,
.hero-slider-section .carousel-control-next {
  width: 8%;
  z-index: 5;
}

.hero-slider-section .carousel-control-prev-icon,
.hero-slider-section .carousel-control-next-icon {
  width: 45px;
  height: 45px;
}

/* ========================================
   CAROUSEL INDICATORS
======================================== */

.hero-slider-section .carousel-indicators {
  z-index: 5;
}

.hero-slider-section .carousel-indicators li {
  width: 10px;
  height: 10px;

  border-radius: 50%;

  margin: 0 6px;

  cursor: pointer;
}

/* ========================================
   LARGE DESKTOP
======================================== */

@media (min-width: 1600px) {
  .hero-slider-section .text-box {
    left: 12%;
    max-width: 750px;
  }

  .hero-slider-section .text-box h1,
  .hero-slider-section .text-box h2 {
    font-size: 65px;
  }
}

/* ========================================
   TABLET
======================================== */

@media (max-width: 991px) {
  .hero-slider-section .carousel-item,
  .hero-slider-section .carousel-item video,
  .hero-slider-section .carousel-item img {
    height: 550px;
  }

  .hero-slider-section .text-box {
    left: 8%;
    max-width: 600px;
  }

  .hero-slider-section .text-box h1,
  .hero-slider-section .text-box h2 {
    font-size: 45px;
  }

  .hero-slider-section .text-box p {
    font-size: 16px;
  }
}

/* ========================================
   MOBILE
======================================== */

@media (max-width: 768px) {
  .hero-slider-section .carousel-item,
  .hero-slider-section .carousel-item video,
  .hero-slider-section .carousel-item img {
    height: 500px;
  }

  .hero-slider-section .text-box {
    left: 7%;
    right: 7%;

    width: auto;
    max-width: none;
  }

  .hero-slider-section .text-box h1,
  .hero-slider-section .text-box h2 {
    font-size: 34px;
    line-height: 1.2;

    margin-bottom: 15px;
  }

  .hero-slider-section .text-box p {
    font-size: 15px;
    line-height: 1.6;

    margin-bottom: 25px;
  }

  .hero-slider-section .banner-subtitle {
    font-size: 10px;
    letter-spacing: 2px;

    margin-bottom: 12px;
  }

  .hero-slider-section .banner-btn {
    padding: 12px 25px;
    font-size: 14px;
  }

  .hero-slider-section .carousel-control-prev,
  .hero-slider-section .carousel-control-next {
    display: none;
  }
}

/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 480px) {
  .hero-slider-section .carousel-item,
  .hero-slider-section .carousel-item video,
  .hero-slider-section .carousel-item img {
    height: 450px;
  }

  .hero-slider-section .text-box h1,
  .hero-slider-section .text-box h2 {
    font-size: 28px;
  }

  .hero-slider-section .text-box p {
    font-size: 14px;
  }

  .hero-slider-section .banner-subtitle {
    font-size: 9px;
    letter-spacing: 1.5px;
  }
}

/* FIX: Hide extra video area during carousel slide transition */

.hero-slider-section,
.hero-slider-section .carousel,
.hero-slider-section .carousel-inner {
  width: 100%;
  height: 650px;
  overflow: hidden !important;
}

.hero-slider-section .carousel-item {
  width: 100%;
  height: 650px;
  overflow: hidden !important;
}

.hero-slider-section .carousel-item video {
  width: 100%;
  height: 650px;
  min-height: 650px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Bootstrap carousel transition fix */
.hero-slider-section .carousel-item-next,
.hero-slider-section .carousel-item-prev,
.hero-slider-section .carousel-item.active {
  display: block;
  overflow: hidden !important;
}

@media (max-width: 768px) {
  .hero-slider-section,
  .hero-slider-section .carousel,
  .hero-slider-section .carousel-inner,
  .hero-slider-section .carousel-item {
    height: 500px;
    overflow: hidden !important;
  }

  .hero-slider-section .carousel-item video {
    height: 500px;
    min-height: 500px;
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .hero-slider-section,
  .hero-slider-section .carousel,
  .hero-slider-section .carousel-inner,
  .hero-slider-section .carousel-item {
    height: 450px;
  }

  .hero-slider-section .carousel-item video {
    height: 450px;
    min-height: 450px;
  }
}

/* ====================  ABOUT SECTION ======================== */

/* =========================================
   WELCOME / ABOUT SECTION
========================================= */

.welcome-section {
  position: relative;
  background: #ffffff;
  overflow: hidden;
}

/* =========================================
   IMAGE
========================================= */

.welcome-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.welcome-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  transition: transform 0.5s ease;
}

.welcome-image:hover img {
  transform: scale(1.03);
}

/* =========================================
   CONTENT
========================================= */

.welcome-section .text-content {
  padding-left: 35px;
}

.section-subtitle {
  display: inline-block;

  font-size: 13px;
  font-weight: 600;

  letter-spacing: 2px;
  text-transform: uppercase;

  color: #e2a606;

  margin-bottom: 10px;
}

/* =========================================
   HEADING
========================================= */

.welcome-section .text-content h2 {
  margin: 0;

  font-size: 38px;
  line-height: 1.25;

  font-weight: 700;

  color: #222;
}

.welcome-section .text-content h2 span {
  color: #e2a606;
}

/* =========================================
   HEADING LINE
========================================= */

.heading-line {
  width: 65px;
  height: 3px;

  background: #e2a606;

  margin: 18px 0 25px;

  position: relative;
}

.heading-line::after {
  content: "";

  position: absolute;

  left: 75px;
  top: 0;

  width: 25px;
  height: 3px;

  background: #222;
}

/* =========================================
   PARAGRAPH
========================================= */

.welcome-section .text-content p {
  font-size: 15px;

  line-height: 1.8;

  color: #666;

  margin-bottom: 16px;
}

.welcome-section .text-content strong {
  color: #333;
}

/* =========================================
   READ MORE BUTTON
========================================= */

.welcome-btn {
  display: inline-flex;

  align-items: center;
  gap: 10px;

  margin-top: 10px;

  padding: 12px 24px;

  background: #e2a606;

  color: #ffffff;

  font-size: 14px;
  font-weight: 600;

  text-decoration: none;

  border-radius: 4px;

  transition: all 0.3s ease;
}

.welcome-btn span {
  font-size: 18px;

  line-height: 1;

  transition: transform 0.3s ease;
}

.welcome-btn:hover {
  background: #222;

  color: #ffffff;

  text-decoration: none;
}

.welcome-btn:hover span {
  transform: translateX(5px);
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {
  .welcome-section .text-content {
    padding-left: 0;
    padding-top: 25px;
  }

  .welcome-section .text-content h2 {
    font-size: 34px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {
  .welcome-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .welcome-image {
    margin-bottom: 10px;
  }

  .welcome-section .text-content {
    padding-left: 0;
  }

  .welcome-section .text-content h2 {
    font-size: 30px;
  }

  .welcome-section .text-content p {
    font-size: 14px;
    line-height: 1.7;
  }

  .section-subtitle {
    font-size: 11px;
    letter-spacing: 1.5px;
  }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {
  .welcome-section .text-content h2 {
    font-size: 27px;
  }

  .welcome-btn {
    padding: 11px 20px;
    font-size: 13px;
  }
}

/* ===================== product ============================= */
/* ========================================= PRODUCTS SECTION ========================================= */
.products-section {
  position: relative;
  background: #f8f8f8;
  overflow: hidden;
} /* ========================================= SECTION HEADING ========================================= */
.products-subtitle {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e2a606;
  margin-bottom: 8px;
}
.heading-box h2 {
  font-size: 40px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}
.heading-box h2 span {
  color: #e2a606;
}
.heading-box p {
  max-width: 850px;
  margin: 0 auto;
  color: #666;
  font-size: 15px;
  line-height: 1.8;
} /* ========================================= PRODUCT TABS ========================================= */
.product-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.product-tab {
  border: 1px solid #ddd;
  background: #ffffff;
  color: #333;
  padding: 11px 22px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.product-tab:hover {
  background: #e2a606;
  border-color: #e2a606;
  color: #ffffff;
}
.product-tab.active {
  background: #e2a606;
  border-color: #e2a606;
  color: #ffffff;
} /* ========================================= PRODUCT CARD ========================================= */
.product-item {
  transition: all 0.4s ease;
}
.product-card {
  height: 100%;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s ease;
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: #e2a606;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
} /* ========================================= PRODUCT IMAGE ========================================= */
.product-image {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: #f5f5f5;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.product-card:hover .product-image img {
  transform: scale(1.06);
} /* ========================================= CATEGORY BADGE ========================================= */
.product-category {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 12px;
  background: #e2a606;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
} /* ========================================= PRODUCT CONTENT ========================================= */
.product-content {
  padding: 22px 22px 25px;
  text-align: left;
}
.product-content h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
}
.product-content h3 a {
  color: #222;
  text-decoration: none;
  transition: color 0.3s ease;
}
.product-content h3 a:hover {
  color: #e2a606;
}
.product-content p {
  min-height: 70px;
  margin-bottom: 18px;
  color: #666;
  font-size: 14px;
  line-height: 1.7;
} /* ========================================= PRODUCT BUTTON ========================================= */
.product-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e2a606;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.product-btn span {
  transition: transform 0.3s ease;
}
.product-btn:hover {
  color: #222;
  text-decoration: none;
}
.product-btn:hover span {
  transform: translateX(5px);
} /* ========================================= VIEW ALL PRODUCTS ========================================= */
.products-bottom-btn {
  margin-top: 20px;
}
.all-products-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background: #222;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.all-products-btn span {
  transition: transform 0.3s ease;
}
.all-products-btn:hover {
  background: #e2a606;
  color: #ffffff;
  text-decoration: none;
}
.all-products-btn:hover span {
  transform: translateX(5px);
} /* ========================================= MOBILE ========================================= */
@media (max-width: 767px) {
  .heading-box h2 {
    font-size: 32px;
  }
  .heading-box p {
    font-size: 14px;
  }
  .product-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 10px;
    scrollbar-width: thin;
  }
  .product-tab {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 10px 16px;
    font-size: 13px;
  }
  .product-image {
    height: 220px;
  }
  .product-content {
    padding: 18px;
  }
  .product-content h3 {
    font-size: 18px;
  }
  .product-content p {
    min-height: auto;
  }
} /* ========================================= SMALL MOBILE ========================================= */
@media (max-width: 480px) {
  .product-image {
    height: 200px;
  }
  .product-tab {
    padding: 9px 14px;
    font-size: 12px;
  }
}
