/********** Template CSS **********/
:root {
  --primary: #e53935;
  --light: #f5f5f5;
  --dark: #353535;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-black {
  font-weight: 900 !important;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  font-weight: 500;
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
  color: #ffffff;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/*** Navbar ***/
.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary);
}

@media (max-width: 991.98px) {
  .navbar-light .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar-light .navbar-nav {
    border-top: 1px solid #eeeeee;
  }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
  height: 75px;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--dark);
  font-weight: 500;
}

.navbar-light.sticky-top {
  top: -100px;
  transition: 0.5s;
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

/*** Header ***/
@media (max-width: 768px) {
  .header-carousel .owl-carousel-item {
    position: relative;
    min-height: 500px;
  }

  .header-carousel .owl-carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .header-carousel .owl-carousel-item h5,
  .header-carousel .owl-carousel-item p {
    font-size: 14px !important;
    font-weight: 400 !important;
  }

  .header-carousel .owl-carousel-item h1 {
    font-size: 30px;
    font-weight: 600;
  }
}

.header-carousel .owl-nav {
  position: absolute;
  width: 200px;
  height: 45px;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: transparent;
  border: 1px solid #ffffff;
  font-size: 22px;
  transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.header-carousel .owl-dots {
  position: absolute;
  height: 45px;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: transparent;
  border: 1px solid #ffffff;
  transition: 0.5s;
}

.header-carousel .owl-dot::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  top: 4px;
  left: 4px;
  background: transparent;
  border: 1px solid #ffffff;
}

.header-carousel .owl-dot.active {
  background: var(--primary);
  border-color: var(--primary);
}

.page-header {
  background: linear-gradient(rgba(53, 53, 53, 0.7), rgba(53, 53, 53, 0.7)),
    url(../my-img/banner.webp) center center no-repeat;
  background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}

/*** Section Title ***/
.section-title h1 {
  position: relative;
  display: inline-block;
  padding: 0 60px;
}

.section-title.text-start h1 {
  padding-left: 0;
}

.section-title h1::before,
.section-title h1::after {
  position: absolute;
  content: "";
  width: 45px;
  height: 5px;
  bottom: 0;
  background: var(--dark);
}

.section-title h1::before {
  left: 0;
}

.section-title h1::after {
  right: 0;
}

.section-title.text-start h1::before {
  display: none;
}

/*** About ***/
@media (min-width: 992px) {
  .container.about {
    max-width: 100% !important;
  }

  .about-text {
    padding-right: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .about-text {
    padding-right: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .about-text {
    padding-right: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

/*** Service ***/
.service-item img {
  transition: 0.5s;
}

.service-item:hover img {
  transform: scale(1.1);
}

/*** Feature ***/
@media (min-width: 992px) {
  .container.feature {
    max-width: 100% !important;
  }

  .feature-text {
    padding-left: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .feature-text {
    padding-left: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .feature-text {
    padding-left: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

/*** Project Portfolio ***/
#portfolio-flters li {
  display: inline-block;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  transition: 0.5s;
  border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
  color: var(--primary);
  border-color: var(--primary);
}

.portfolio-item img {
  transition: 0.5s;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-item .portfolio-overlay {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0;
  height: 0;
  bottom: 0;
  left: 50%;
  background: rgba(53, 53, 53, 0.7);
  transition: 0.5s;
}

.portfolio-item:hover .portfolio-overlay {
  width: 100%;
  height: 100%;
  left: 0;
}

.portfolio-item .portfolio-overlay .btn {
  opacity: 0;
}

.portfolio-item:hover .portfolio-overlay .btn {
  opacity: 1;
}

/*** Quote ***/
@media (min-width: 992px) {
  .container.quote {
    max-width: 100% !important;
  }

  .quote-text {
    padding-right: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .quote-text {
    padding-right: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .quote-text {
    padding-right: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

/*** Team ***/
.team-item img {
  transition: 0.5s;
}

.team-item:hover img {
  transform: scale(1.1);
}

.team-item .team-social {
  position: absolute;
  width: 38px;
  top: 50%;
  left: -38px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  background: #ffffff;
  transition: 0.5s;
}

.team-item .team-social .btn {
  color: var(--primary);
  background: #ffffff;
}

.team-item .team-social .btn:hover {
  color: #ffffff;
  background: var(--primary);
}

.team-item:hover .team-social {
  left: 0;
}

/*** Testimonial ***/
.testimonial-carousel::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

.testimonial-carousel::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

@media (min-width: 768px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 200px;
  }
}

@media (min-width: 992px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 300px;
  }
}

.testimonial-carousel .owl-item .testimonial-text {
  border: 5px solid var(--light);
  transform: scale(0.8);
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
  transform: scale(1);
}

.testimonial-carousel .owl-nav {
  position: absolute;
  width: 350px;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transition: 0.5s;
  z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
  width: 300px;
  opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  position: relative;
  color: var(--primary);
  font-size: 45px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: var(--dark);
}

/*** Contact ***/
@media (min-width: 992px) {
  .container.contact {
    max-width: 100% !important;
  }

  .contact-text {
    padding-left: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .contact-text {
    padding-left: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .contact-text {
    padding-left: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

/*** Footer ***/
.footer {
    background: linear-gradient(
        to bottom right,
        rgba(15, 15, 15, 0.92),
        rgba(30, 30, 30, 0.85)
    ),
    url(../img/footer.jpg) center center no-repeat;
    background-size: cover;
    padding: 70px 0;
    color: #fff;
}

.footer .btn.btn-social {
  margin-right: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  border: 1px solid #ffffff;
  transition: 0.3s;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #ffffff;
  font-size: 15px;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--primary);
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .copyright a:hover {
  color: var(--primary);
}

.why-title h1::after {
  display: none !important;
}

.footer .copyright {
  padding: 20px 0;
  font-size: 15px;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #fff;
  color: #222;
  line-height: 1.6;
}

.footer a {
  color: #ffffff !important;
  text-decoration: none;
}

.footer a:hover {
  color: #ffffff !important; /* SAME COLOR ON HOVER */
  text-decoration: underline; /* optional, remove if not needed */
}

/* Logo default */
.footer .copyright img {
  height: 34px;
  vertical-align: middle;
  margin: 0 6px;
  transition: transform 0.3s ease;
}

.footer .copyright img:hover {
  transform: scale(1.1);
}

/* ✅ Small device responsive fix */
@media (max-width: 768px) {
  .footer .copyright {
    font-size: 14px;
    padding: 15px 10px;
  }

  /* Stack elements neatly */
  .footer .copyright .col-md-12 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .footer .copyright img {
    display: block;
    margin: 4px auto;
    height: 30px;
  }

  .footer .copyright a {
    display: inline-block;
    margin: 4px 0;
    text-align: center;
  }

  .footer .copyright p,
  .footer .copyright span {
    display: block;
    text-align: center;
  }
}

.custom-services-section {
  padding: 60px 0;
  background: #fff;
}

.custom-services-title {
  text-align: center;
  margin-bottom: 30px;
}

.custom-services-label {
  color: #888;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 22px;
  margin-bottom: 10px;
}

.custom-services-heading {
  color: #e53935;
  font-size: 40px;
  font-weight: 700;
  margin: 0 0 20px 0;
}

.custom-services-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.custom-service-card {
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  padding: 30px 25px;
  flex: 0 1 340px;
  min-width: 290px;
  max-width: 370px;
  box-shadow: 0 2px 8px rgba(70, 130, 180, 0.04);
  text-align: center;
  transition: box-shadow 0.2s;
}

.custom-service-card:hover {
  box-shadow: 0 6px 24px rgba(43, 163, 179, 0.05);
}

.custom-service-num {
  font-size: 48px;
  color: #6d6d6d;
  font-weight: 400;
  margin-bottom: 12px;
}

.custom-service-title {
  color: green;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
}

.custom-service-desc {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
}

.custom-services-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 230px; /* Make button width similar to card width */
}

.custom-btn {
  padding: 12px 32px;
  color: #e53935;
  border: 2px solid #e53935;
  background: transparent;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.custom-btn:hover {
  background: #e53935;
  color: #fff;
}
.testimonial-carousel .owl-nav {
  display: none !important;
}

/* Background & spacing */
.testimonial-section {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 120px 0;
  color: white;
}

.bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* Titles */
.theme-color-heading {
  color: #f5c669;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.heading-white {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
}

.testimonial-section {
  position: relative;
  padding: 160px 0;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.testimonial-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.heading-top {
  color: red;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.heading-main {
  color: red;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 50px;
}

.testimonial-box {
  max-width: 650px;
  margin: auto;
  text-align: center;
}

.testimonial-text {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.testimonial-name {
  font-size: 22px;
  font-weight: 600;
}

.testimonial-company {
  display: block;
  margin-top: 5px;
  color: #f4d161;
  font-size: 16px;
}

/* Pagination */
.swiper-pagination-bullet {
  background: #ffffff;
  opacity: 0.4;
}

.swiper-pagination-bullet-active {
  background: #f4d161;
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .heading-main {
    font-size: 28px;
  }
  .testimonial-text {
    font-size: 17px;
    padding: 0 20px;
  }
}
.testimonial-section {
  position: relative;
  padding: 120px 0;
  color: #fff;
  text-align: center;
}

.testimonial-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.swiper {
  position: relative;
  z-index: 2;
}

.testimonial-box {
  max-width: 750px;
  margin: 0 auto;
  padding: 30px;
}

.testimonial-text {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial-name {
  font-size: 24px;
  font-weight: bold;
  margin-top: 10px;
}

.testimonial-company {
  font-size: 18px;
  color: #ffc107;
}

/* IMPORTANT: Hide inactive slides */
.swiper-slide {
  opacity: 0 !important;
}

.swiper-slide-active,
.swiper-slide-duplicate-active {
  opacity: 1 !important;
}
/* ===============================
   TESTIMONIAL SECTION
================================ */
.testimonial-section {
  padding: 150px 0 100px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.testimonial-overlay {
  background: rgba(0, 0, 0, 0.35);
  position: absolute;
  inset: 0;
}

/* ===============================
   TESTIMONIAL CARD
================================ */
.testimonial-box {
  background: #fff;
  max-width: 650px;
  margin: 125px auto 0; /* FINAL PERFECT POSITION */
  padding: 80px 50px 50px;
  border-radius: 25px;
  text-align: center;
  position: relative;
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.18);
}

/* ===============================
   PROFILE IMAGE (Perfectly Centered & Touching Card)
================================ */
.testimonial-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  position: absolute;
  top: -65px; /* FINAL PERFECT VALUE */
  left: 50%;
  transform: translateX(-50%);
}

/* ===============================
   TEXT
================================ */
.testimonial-text {
  margin-top: 30px;
  font-size: 18px;
  color: #444;
  line-height: 1.6;
}

.testimonial-name {
  margin-top: 25px;
  font-size: 22px;
  font-weight: 700;
  color: #333;
}

.testimonial-company {
  font-size: 16px;
  font-weight: 500;
  color: #e53935;
  margin-top: 5px;
  display: block;
}

/* ===============================
   SWIPER
================================ */
.swiper-slide {
  display: flex;
  justify-content: center;
}

.swiper-pagination-bullet {
  background: #e53935 !important;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #e53935 !important;
  transform: scale(1.3);
}
/* Force each swiper slide to take full width of container */
.swiper-slide {
  width: 100% !important;
  display: flex;
  justify-content: center;
}

/* Hide inactive slides completely */
.swiper-slide:not(.swiper-slide-active) {
  opacity: 0 !important;
  pointer-events: none;
}
.service-card {
  background: #ffffff;
  padding: 40px 25px;
  border-radius: 18px;
  text-align: center;
  transition: all 0.35s ease;
  border: 1px solid #e5e5e5;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border-color: #e53935;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: #f8f5f0;
  margin: 0 auto 20px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
}

.service-card:hover .service-icon {
  background: #e53935;
  color: #fff;
}

.service-icon svg {
  width: 40px;
  height: 40px;
}

.service-card h4 {
  font-weight: 700;
  margin-top: 15px;
}

.service-card p {
  color: #6c757d;
  margin-top: 10px;
  font-size: 15px;
}
/* --- MAIN GRID --- */
.custom-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: stretch;
}

/* --- SERVICE CARD --- */
.custom-service-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 18px;
  text-align: center;
  transition: 0.35s ease;
  border: 1px solid #eee;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.custom-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  border-color: #e53935;
}

/* --- ICON WRAPPER --- */
.custom-service-icon {
  width: 90px;
  height: 90px;
  background: #faf5e9;
  color: #e53935;
  margin: 0 auto 20px;
  border-radius: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-service-icon svg {
  width: 40px;
  height: 40px;
}

/* --- TITLES & TEXT --- */
.custom-service-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.custom-service-desc {
  font-size: 15px;
  color: #666;
  margin-bottom: 20px;
}

/* --- READ MORE BUTTON --- */
.custom-read-btn {
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 25px;
  background: #e53935;
  color: #fff;
  text-decoration: none;
  transition: 0.25s ease;
  display: inline-flex;
  align-items: center;
}

.custom-read-btn:hover {
  background: #a98525;
}

/* --- FLOATING BUTTON --- */
.custom-services-btn .custom-btn {
  width: 55px;
  height: 55px;
  background: #e53935;
  color: #fff;
  border-radius: 50%;
  display: flex;
  font-size: 22px;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
}

.custom-services-btn .custom-btn:hover {
  transform: translateX(5px);
  background: #a17b22;
}

/* Responsive spacing */
@media (max-width: 768px) {
  .custom-services-btn {
    justify-content: center;
  }
}
/* -------- MAIN SECTION -------- */
.about-modern-section {
  background: #fafafa;
}

/* -------- IMAGE BOX -------- */
.about-modern-image img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: 0.4s ease;
}

.about-modern-image img:hover {
  transform: scale(1.03);
}

/* -------- TEXT CONTENT -------- */
.about-modern-title {
  font-size: 40px;
  font-weight: 800;
  color: #222;
  margin-bottom: 20px;
}

.about-modern-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* -------- FEATURES -------- */
.about-modern-features {
  display: grid;
  gap: 25px;
}

.about-feature-box {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.about-feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/* -------- ICON STYLE -------- */
.about-feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: #e53935;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 26px;
}

/* -------- TITLES -------- */
.about-feature-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #222;
}

.about-feature-text {
  font-size: 15px;
  color: #555;
}

/* -------- RESPONSIVE -------- */
@media (max-width: 768px) {
  .about-modern-title {
    font-size: 32px;
    text-align: center;
  }
  .about-modern-desc {
    text-align: center;
  }
  .about-modern-features {
    padding: 0 10px;
  }
}
.best-products-wrapper {
  padding: 80px 0;
}

.bp-slider-container {
  position: relative;
  overflow: hidden;
}

.bp-slider {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 15px;
}

.bp-slider::-webkit-scrollbar {
  height: 8px;
}
.bp-slider::-webkit-scrollbar-thumb {
  background: #e53935;
  border-radius: 50px;
}

.bp-card {
  min-width: 300px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

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

.bp-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.bp-content {
  padding: 20px;
}

.bp-sub {
  font-size: 14px;
  color: #777;
}

.bp-title {
  font-size: 20px;
  font-weight: 600;
  margin: 8px 0 10px;
}

.bp-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

/* Slider Buttons */
.bp-nav-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  z-index: 10;
}

.bp-prev {
  left: -20px;
}
.bp-next {
  right: -20px;
}

.bp-nav-btn i {
  font-size: 22px;
  color: #333;
}
.best-sec {
  padding: 70px 0;
}

.bp-heading h1 {
  font-size: 42px;
  font-weight: 800;
}

.bp-carousel-wrapper {
  position: relative;
  margin-top: 40px;
}

.bp-carousel {
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
}

.bp-item {
  min-width: 300px;
  max-width: 300px;
  background: #fff;
  margin: 0 12px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.bp-item:hover {
  transform: translateY(-6px);
}

.bp-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.bp-info {
  padding: 18px;
}

.bp-sub {
  font-size: 13px;
  color: #888;
}

.bp-title {
  font-size: 18px;
  font-weight: 600;
  margin: 8px 0;
}

.bp-desc {
  font-size: 14px;
  color: #555;
}

.bp-btn {
  display: inline-block;
  margin-top: 8px;
  background: #e53935;
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  text-decoration: none;
}

.bp-btn i {
  margin-left: 5px;
}

/* Navigation arrows */
.bp-arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  z-index: 20;
}

.bp-left {
  left: -20px;
}
.bp-right {
  right: -20px;
}

.bp-arrow i {
  font-size: 20px;
}
.product-card {
  display: block;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: #000;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transition: 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-info {
  padding: 18px;
}

.product-sub {
  font-size: 13px;
  color: #777;
}

.product-title {
  font-size: 18px;
  font-weight: 700;
  margin: 8px 0;
}

.product-desc {
  font-size: 14px;
  color: #555;
}

/* Navigation Buttons */
.custom-next,
.custom-prev {
  color: #000 !important;
  background: #fff;
  width: 45px !important;
  height: 45px !important;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.custom-next::after,
.custom-prev::after {
  font-size: 18px !important;
}
.myProductSlider {
  padding-bottom: 60px;
}

.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transition: 0.3s;
  text-decoration: none;
  color: #000;
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-info {
  padding: 18px;
}

.product-sub {
  font-size: 13px;
  color: #777;
}

.product-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.product-desc {
  font-size: 14px;
  color: #555;
}

/* Navigation Buttons */
.pnav {
  background: #fff;
  width: 42px !important;
  height: 42px !important;
  border-radius: 50%;
  color: black !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.pnav::after {
  font-size: 18px !important;
}
.product-card {
  display: block;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-info {
  padding: 20px;
}

.swiper {
  padding-bottom: 50px;
}

.swiper-button-next,
.swiper-button-prev {
  background: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
  color: #b6862c;
  font-weight: 700;
}

.swiper-pagination-bullet-active {
  background: #b6862c !important;
}
/* ===========================
   New Product Section
=========================== */

.new-product {
  padding: 80px 0;
}

.new-product .section-title__title {
  font-size: 40px;
  font-weight: 700;
  color: #222;
  margin-bottom: 50px;
}

/* PRODUCT CARD */
.new-product__single {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.35s ease-in-out;
  cursor: pointer;
  position: relative;
}

.new-product__single:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

/* IMAGE BOX */
.new-product__img-box {
  width: 100%;
  height: 230px;
  overflow: hidden;
  border-bottom: 1px solid #f0f0f0;
}

.new-product__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.new-product__single:hover .new-product__img img {
  transform: scale(1.1);
}

/* CONTENT BOX */
.new-product__content {
  padding: 20px;
  text-align: center;
}

.new-product__title {
  font-size: 20px;
  font-weight: 600;
  color: #111;
  margin: 0;
}

.new-product__title a {
  color: #111;
  text-decoration: none;
  transition: color 0.3s;
}

.new-product__title a:hover {
  color: #c59f20; /* Gold highlight color */
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .new-product__img-box {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .new-product .section-title__title {
    font-size: 32px;
  }
  .new-product__img-box {
    height: 180px;
  }
}

@media (max-width: 576px) {
  .new-product {
    padding: 50px 0;
  }
}
/* Remove dots */
.header-carousel .owl-dots {
    display: none !important;
}

/* Remove navigation arrows */
.header-carousel .owl-nav {
    display: none !important;
}
.custom-green {
    color: #28a745; /* Bootstrap green shade */
    font-weight: 600;
}
