/********** Template CSS **********/
:root {
  --primary: #2b7a78;
  --secondary: #def2f1;
  --light: #f8f8f9;
  --dark: #17252a;

  --bs-primary: var(--primary);
  --bs-secondary: var(--secondary);
  --bs-light: var(--light);
  --bs-dark: var(--dark);
}

.floating-btn-group {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 99;
}

.floating-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: 0.3s transform ease;
}

.floating-btn:hover {
  transform: scale(1.1);
}

.whatsapp-btn {
  background-color: #25d366 !important;
  border: none;
}

.call-btn {
  background-color: var(--primary) !important;
  border: none;
}

/*** 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;
}

/* Global Theme Overrides */
.btn.btn-primary,
.carousel-caption .btn-primary,
#header-carousel .btn-primary {
  color: #ffffff !important;
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}

.btn.btn-primary:hover,
.carousel-caption .btn-primary:hover,
#header-carousel .btn-primary:hover,
.causes-item .btn-primary:hover {
  color: #ffffff !important;
  background-color: var(--primary) !important;
  border: 1px solid var(--primary) !important;
}

.btn.btn-outline-primary,
.causes-item .btn-outline-primary {
  color: var(--primary) !important;
  border-color: var(--primary) !important;
}

.btn.btn-outline-primary:hover,
.causes-item .btn-outline-primary:hover {
  color: #ffffff !important;
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}

/* Specific Badge Overrides */
.rounded-pill.bg-secondary.text-primary,
.bg-secondary.text-primary {
  background-color: var(--secondary) !important;
  color: var(--primary) !important;
}

.bg-primary.text-white {
  background-color: var(--primary) !important;
  color: #ffffff !important;
}

/* Theme Utility Overrides */
.bg-primary {
  background-color: var(--primary) !important;
}

.bg-secondary {
  background-color: var(--secondary) !important;
}

.text-primary {
  color: var(--primary) !important;
}

.border-primary {
  border-color: var(--primary) !important;
}

.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 ***/
.fixed-top {
  transition: 0.5s;
}

.top-bar {
  min-height: 45px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

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

.navbar .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: #17252a;
  font-weight: 500;
  outline: none;
}

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

@media (max-width: 991.98px) {
  .navbar .navbar-nav {
    margin-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    background: #ffffff;
  }

  .navbar .navbar-nav .nav-link {
    padding: 10px 0;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    transition: 0.5s;
    opacity: 0;
  }

  .navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

.dropdown-item:hover {
  color: var(--primary);
  background-color: transparent;
}

/*** Header ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(23, 37, 42, 0.6);
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--dark);
  border: 12px solid var(--dark);
  border-radius: 3rem;
}

@media (min-width: 992px) {
  #header-carousel .carousel-item {
    height: 100vh;
  }

  #header-carousel .carousel-item img {
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 991.98px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 700px;
  }

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

  #header-carousel .display-4 {
    font-size: 2.3rem !important;
  }

  #header-carousel .row.justify-content-center {
    margin-top: 150px !important;
  }
 
}

.page-header {
  padding-top: 12rem;
  padding-bottom: 6rem;
  background:
    linear-gradient(rgba(23, 37, 42, 0.8), rgba(23, 37, 42, 0.8)),
    url("../img/about.jpg") center center no-repeat;
  background-size: cover;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: #999999;
}

/*** Why Choose Us ***/
.why-choose-us {
  background:
    linear-gradient(rgba(23, 37, 42, 0.85), rgba(23, 37, 42, 0.85)),
    url(../image/why-choose-us-bg.png) center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.why-choose-us .feature-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 3rem 2rem;
  transition: 0.5s;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.why-choose-us .feature-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-10px);
}

.why-choose-us .feature-icon {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #ffffff;
  border-radius: 50%;
  margin: 0 auto 1.5rem auto;
  font-size: 1.5rem;
}

/*** Causes ***/
.causes-item {
  transition: 0.5s;
}

.causes-item .position-relative {
  /* Lock a consistent media box so all product images match */
  height: 300px;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
  border-bottom: 5px solid var(--primary);
  overflow: hidden;
}

.causes-item .position-relative img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.causes-item .progress {
  height: 5px;
  border-radius: 0;
  overflow: visible;
}

.causes-item .progress .progress-bar {
  position: relative;
  overflow: visible;
  width: 0px;
  border-radius: 0;
  transition: 5s;
}

.causes-item .progress .progress-bar span {
  position: absolute;
  top: -7px;
  right: 0;
  width: 40px;
  height: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  background: var(--primary);
  color: #ffffff;
}

.causes-item .causes-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(23, 37, 42, 0.5);
  overflow: hidden;
  opacity: 0;
  transition: 0.5s;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.causes-item:hover .causes-overlay {
  height: 100%;
  opacity: 1;
}

/*** Service ***/
.service-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.06);
}

/*** Donate ***/
.donate {
  background: rgba(23, 37, 42, 0.8);
}

.btn-group .btn-light:hover,
.btn-group input[type="radio"]:checked + label {
  color: var(--primary);
  border-color: var(--primary);
}

/*** Team ***/
.team-item img {
  position: relative;
  top: 0;
  transition: 0.5s;
}

.team-item:hover img {
  top: -30px;
}

.team-item .team-text {
  position: relative;
  height: 100px;
  transition: 0.5s;
}

.team-item:hover .team-text {
  margin-top: -60px;
  height: 160px;
}

.team-item .team-text .team-social {
  opacity: 0;
  transition: 0.5s;
}

.team-item:hover .team-text .team-social {
  opacity: 1;
}

.team-item .team-social .btn {
  display: inline-flex;
  color: var(--primary);
  background: #ffffff;
  border-radius: 40px;
}

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

/*** 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 {
  background: var(--light);
  transform: scale(0.8);
  transition: 0.5s;
}

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

.testimonial-carousel .owl-item .testimonial-text *,
.testimonial-carousel .owl-item .testimonial-item img {
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
  color: var(--light) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item img {
  background: var(--primary) !important;
}

.testimonial-carousel .owl-nav {
  position: absolute;
  width: 350px;
  top: 15px;
  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);
}

/*** New Arrivals ***/
.new-arrivals-carousel {
  padding: 0 40px; /* Leave room for arrows */
}

.new-arrivals-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  left: 0;
  z-index: 1;
}

.new-arrivals-carousel .owl-nav .owl-prev,
.new-arrivals-carousel .owl-nav .owl-next {
  width: 45px;
  height: 45px;
  background: var(--primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.new-arrivals-carousel .owl-nav .owl-prev {
  margin-left: -20px;
}

.new-arrivals-carousel .owl-nav .owl-next {
  margin-right: -20px;
}

.new-arrivals-carousel .owl-nav .owl-prev:hover,
.new-arrivals-carousel .owl-nav .owl-next:hover {
  background: var(--dark);
}

.new-arrivals-item {
  transition: 0.5s;
  border-radius: 10px;
}

.new-arrivals-item .position-relative {
  height: 250px; /* slightly smaller than causes */
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  overflow: hidden;
  border-bottom: 2px solid var(--secondary); /* subtle border instead of thick green */
}

.new-arrivals-item .position-relative img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Make sure product is fully visible */
  display: block;
  padding: 20px;
}

.new-arrivals-item .new-arrivals-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8); /* Lighter overlay */
  overflow: hidden;
  opacity: 0;
  transition: 0.5s;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.new-arrivals-item:hover .new-arrivals-overlay {
  height: 100%;
  opacity: 1;
}

/*** Footer ***/

.footer .btn.btn-link {
  display: flex;
  margin-bottom: 12px;
  padding: 0;
  text-align: left;
  color: rgba(255, 255, 255, 0.5);
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
  white-space: normal;
  line-height: 1.5;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: rgba(255, 255, 255, 0.5);
  margin-right: 10px;
  margin-top: 3px;
}

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

.footer .btn.btn-square {
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.footer .btn.btn-square:hover {
  color: var(--secondary);
  border-color: var(--light);
}

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

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

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




.testimonial-item {
    position: relative;
    overflow: hidden;
}

.testimonial-text::after,
.testimonial-text::before {
    display: none !important;
    content: none !important;
}




.testimonial-box {
    background: #2c7979;
    color: #fff;
    padding: 50px 40px;
    border-radius: 15px;
    max-width: 850px;
}

.testimonial-box p {
    font-size: 18px;
    line-height: 1.8;
}

.testimonial-box h4 {
    color: #fff;
    font-weight: 700;
}

.testimonial-box span {
    color: #e2e2e2;
    font-style: italic;
}

#customTestimonialCarousel .carousel-control-prev,
#customTestimonialCarousel .carousel-control-next {
    width: 5%;
}

.custom-arrow {
    background-color: #2c7979;
    border-radius: 50%;
    padding: 20px;
}

#customTestimonialCarousel .carousel-indicators button {
    background-color: #2c7979;
}





.process-item {
    transition: 0.4s;
    border-bottom: 4px solid transparent;
}

.process-item:hover {
    transform: translateY(-8px);
    border-color: #198754;
    box-shadow: 0 0 30px rgba(0,0,0,0.08);
}

.process-icon {
    width: 90px;
    height: 90px;
    background: rgba(25, 135, 84, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

/* Product Detail Page */
.product-detail-hero {
  padding: 160px 0 90px;
  background:
    linear-gradient(rgba(23, 37, 42, 0.82), rgba(23, 37, 42, 0.82)),
    url("../img/product1-heo.jpg") center/cover no-repeat;
}

.product-detail-card {
  background: #fff;
  border-radius: 24px;
  padding: 35px;
  box-shadow: 0 20px 55px rgba(23, 37, 42, 0.08);
  border: 1px solid rgba(43, 122, 120, 0.12);
}

.product-detail-img {
  border-radius: 22px;
  overflow: hidden;
  background: var(--light);
  border-bottom: 5px solid var(--primary);
}

.product-detail-img img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  transition: 0.5s;
}

.product-detail-img:hover img {
  transform: scale(1.04);
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-meta span {
  background: var(--secondary);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 14px;
}

.product-info-box {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  height: 100%;
  box-shadow: 0 12px 35px rgba(23, 37, 42, 0.06);
  transition: 0.4s;
  border: 1px solid rgba(43, 122, 120, 0.1);
}

.product-info-box:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
}

.product-info-icon {
  width: 58px;
  height: 58px;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 24px;
}

.spec-table {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(23, 37, 42, 0.06);
}

.spec-table table {
  margin: 0;
}

.spec-table th {
  width: 35%;
  color: var(--dark);
  background: var(--secondary);
}

.product-note {
  background: linear-gradient(135deg, var(--primary), #205f5d);
  border-radius: 22px;
  padding: 35px;
  color: #fff;
}

@media (max-width: 767px) {
  .product-detail-hero {
    padding: 130px 0 60px;
  }

  .product-detail-card {
    padding: 22px;
  }

  .product-detail-img img {
    height: 280px;
  }

  .spec-table th {
    width: 45%;
  }
}


/* Product Page Header */
.product-page-header {
  background:
    linear-gradient(
      rgba(23, 37, 42, 0.82),
      rgba(23, 37, 42, 0.82)
    ),
    url("../img/product1-heo.jpg") center center no-repeat;

  background-size: cover;
  position: relative;
}

.product-page-header::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at top right,
      rgba(43, 122, 120, 0.18),
      transparent 40%
    );

  pointer-events: none;
}

.product-page-header .container {
  position: relative;
  z-index: 2;
}

.product-header-text {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.9;
  opacity: 0.9;
}

.product-page-header .breadcrumb-item a {
  transition: 0.3s;
}

.product-page-header .breadcrumb-item a:hover {
  color: var(--secondary) !important;
}

.product-page-header .breadcrumb-item.active {
  color: rgba(255,255,255,0.65) !important;
  font-weight: 400;
}

/* Mobile */
@media (max-width: 991px) {

  .product-page-header {
    padding-top: 8rem;
    padding-bottom: 4rem;
  }

  .product-page-header h1 {
    font-size: 2.4rem !important;
  }

  .product-header-text {
    font-size: 15px;
    line-height: 1.8;
  }

}

/* Individual Product Header Images */
.vitamin-page-header {
  background:
    linear-gradient(
      rgba(23, 37, 42, 0.82),
      rgba(23, 37, 42, 0.82)
    ),
    url("../img/product2-hero.jpg") center center no-repeat;
  background-size: cover;
}

.omega-page-header {
  background:
    linear-gradient(
      rgba(23, 37, 42, 0.82),
      rgba(23, 37, 42, 0.82)
    ),
    url("../img/product3-hero.jpg") center center no-repeat;
  background-size: cover;
}

/* About Page Hero */
.about-page-header {
  position: relative;

  background:
    linear-gradient(
      rgba(23, 37, 42, 0.82),
      rgba(23, 37, 42, 0.82)
    ),
    url("/img/about.jpg") center center no-repeat;

  background-size: cover;

  padding-top: 12rem;
  padding-bottom: 6rem;

  overflow: hidden;
}

/* Premium Overlay Effects */
.about-page-header::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at top left,
      rgba(43, 122, 120, 0.18),
      transparent 35%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(222, 242, 241, 0.08),
      transparent 30%
    );

  pointer-events: none;
}

.about-page-header::after {
  content: "";

  position: absolute;
  inset: 0;

  backdrop-filter: blur(1.5px);

  pointer-events: none;
}

/* Keep Content Above Overlay */
.about-page-header .container {
  position: relative;
  z-index: 2;
}

/* Heading */
.about-page-header h1 {
  font-weight: 700;
  letter-spacing: -1px;
}

/* Breadcrumb */
.about-page-header .breadcrumb-item a {
  color: rgba(255,255,255,0.92) !important;
  transition: 0.3s;
}

.about-page-header .breadcrumb-item a:hover {
  color: var(--secondary) !important;
}

.about-page-header .breadcrumb-item.active {
  color: rgba(255,255,255,0.65) !important;
}

/* Mobile */
@media (max-width: 991px) {

  .about-page-header {
    padding-top: 8rem;
    padding-bottom: 4rem;
  }

  .about-page-header h1 {
    font-size: 2.5rem !important;
  }

}
/* Common Product CTA Section */
.product-note {
  position: relative;

  background:
    linear-gradient(
      rgba(23, 37, 42, 0.88),
      rgba(23, 37, 42, 0.9)
    ),
    url("../img/cta.jpg") center center no-repeat;

  background-size: cover;

  border-radius: 24px;

  padding: 70px 40px;

  overflow: hidden;

  box-shadow: 0 20px 50px rgba(23, 37, 42, 0.12);
}

/* Premium Overlay Glow */
.product-note::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at top left,
      rgba(43, 122, 120, 0.28),
      transparent 35%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(222, 242, 241, 0.08),
      transparent 30%
    );

  pointer-events: none;
}

/* Content Above Overlay */
.product-note > * {
  position: relative;
  z-index: 2;
}

/* Heading */
.product-note h3 {
  font-size: 2rem;
  font-weight: 700;
}

/* Paragraph */
.product-note p {
  color: rgba(255,255,255,0.82);
  max-width: 720px;
  margin: auto;
  line-height: 1.9;
}

/* Button */
.product-note .btn-light {
  padding: 14px 34px;
  font-weight: 600;
  border-radius: 50px;
  transition: 0.4s;
}

.product-note .btn-light:hover {
  transform: translateY(-4px);
}

/* Mobile */
@media (max-width: 991px) {

  .product-note {
    padding: 50px 25px;
  }

  .product-note h3 {
    font-size: 1.7rem;
  }

}

/* ================================
   PRODUCT DETAIL PAGE - MOBILE FIRST
================================ */

/* Base: Mobile */
.product-page-header {
  padding: 110px 15px 55px;
  margin-bottom: 30px !important;
  background-position: center;
}

.product-page-header h1 {
  font-size: 1.9rem !important;
  line-height: 1.2;
  margin-bottom: 16px !important;
}

.product-header-text {
  max-width: 100%;
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.9;
}

.product-page-header .breadcrumb {
  font-size: 13px;
  row-gap: 6px;
}

.product-page-header .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.65) !important;
}


/* Product Detail Card */
.product-detail-card {
  padding: 18px;
  border-radius: 18px;
  margin: 0;
  box-shadow: 0 12px 35px rgba(23, 37, 42, 0.08);
}

.product-detail-img {
  border-radius: 16px;
}

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

.product-detail-card h2 {
  font-size: 1.55rem !important;
  line-height: 1.3;
  margin-bottom: 18px !important;
}

.product-detail-card p {
  font-size: 14px;
  line-height: 1.8;
}

.product-meta {
  gap: 8px;
}

.product-meta span {
  font-size: 12px;
  padding: 7px 12px;
}

.product-detail-card .btn {
  width: 100%;
  justify-content: center;
}


/* Section spacing */
.container-xxl.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.container-xxl .display-6 {
  font-size: 1.65rem !important;
  line-height: 1.3;
}


/* Benefit Cards */
.product-info-box {
  padding: 22px;
  text-align: center;
  border-radius: 16px;
}

.product-info-icon {
  width: 56px;
  height: 56px;
  margin-left: auto;
  margin-right: auto;
}

.product-info-box h5 {
  font-size: 1.05rem;
}

.product-info-box p {
  font-size: 14px;
  line-height: 1.7;
}


/* Specification Table */
.spec-table {

  border-radius: 16px;
}

/* Premium Minimal Mobile Specification Table */
@media (max-width: 575px) {

  .spec-table {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;

    box-shadow:
      0 10px 30px rgba(23, 37, 42, 0.05);

    border:
      1px solid rgba(43, 122, 120, 0.08);
  }

  .spec-table table,
  .spec-table tbody,
  .spec-table tr,
  .spec-table th,
  .spec-table td {
    display: block;
    width: 100%;
  }

  .spec-table tr {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

  .spec-table tr:last-child {
    border-bottom: none;
  }

  .spec-table th {
    background: transparent !important;
    border: none !important;

    color: var(--primary);

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;

    padding: 0;
    margin-bottom: 8px;

    opacity: 0.9;
  }

  .spec-table td {
    border: none !important;
    padding: 0;

    font-size: 15.5px;
    line-height: 1.8;

    color: #4a4a4a;
  }

}

.spec-table th,
.spec-table td {
  font-size: 14px;
  padding: 14px;
}


/* CTA */
.product-note {
  padding: 42px 20px;
  border-radius: 18px;
}

.product-note h3 {
  font-size: 1.45rem;
  line-height: 1.3;
}

.product-note p {
  font-size: 14px;
  line-height: 1.8;
}

.product-note .btn-light {
  padding: 11px 28px;
}


/* Small phones */
@media (max-width: 380px) {
  .product-page-header h1 {
    font-size: 1.65rem !important;
  }

  .product-detail-img img {
    height: 210px;
  }

  .container-xxl .display-6 {
    font-size: 1.45rem !important;
  }
}


/* Tablet */
@media (min-width: 768px) {
  .product-page-header {
    padding: 140px 20px 80px;
  }

  .product-page-header h1 {
    font-size: 2.8rem !important;
  }

  .product-header-text {
    max-width: 720px;
    font-size: 17px;
  }

  .product-detail-card {
    padding: 28px;
  }

  .product-detail-img img {
    height: 340px;
  }

  .product-detail-card .btn {
    width: auto;
  }

  .container-xxl .display-6 {
    font-size: 2.1rem !important;
  }
}


/* Desktop */
@media (min-width: 992px) {
  .product-page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
  }

  .product-page-header h1 {
    font-size: 3.5rem !important;
  }

  .product-detail-card {
    padding: 35px;
  }

  .product-detail-img img {
    height: 430px;
  }

  .product-detail-card h2 {
    font-size: 2.3rem !important;
  }

  .product-note {
    padding: 70px 40px;
  }
}

/* Hero paragraph + breadcrumb size upgrade */
.product-page-header .product-header-text {
  font-size: 20px;
  line-height: 1.9;
  max-width: 820px;
}

.product-page-header .breadcrumb {
  font-size: 17px;
  font-weight: 500;
}

.product-page-header .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.55);
}

.product-page-header .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.95) !important;
}

.product-page-header .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.68) !important;
}

/* Tablet */
@media (max-width: 991px) {
  .product-page-header .product-header-text {
    font-size: 17px;
    line-height: 1.8;
    max-width: 92%;
  }

  .product-page-header .breadcrumb {
    font-size: 16px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .product-page-header .product-header-text {
    font-size: 15.5px;
    line-height: 1.75;
    max-width: 100%;
    margin-bottom: 18px !important;
  }

  .product-page-header .breadcrumb {
    font-size: 14px;
    line-height: 1.6;
  }

  .product-page-header .breadcrumb-item {
    margin-bottom: 4px;
  }
}

/* Global font size upgrade */
.product-detail-card p,
.product-info-box p,
.spec-table td,
.spec-table th,
.product-note p,
.product-header-text,
.product-page-header .breadcrumb,
.product-meta span {
  font-size: 16px !important;
}

/* Maintain readability on mobile */
@media (max-width: 575px) {

  .product-detail-card p,
  .product-info-box p,
  .spec-table td,
  .spec-table th,
  .product-note p,
  .product-header-text {
    font-size: 15.5px !important;
    line-height: 1.8;
  }

  .product-page-header .breadcrumb,
  .product-meta span {
    font-size: 14px !important;
  }

}

/* Minimal Breadcrumb Hover Effect */
.product-page-header .breadcrumb-item a {
  position: relative;

  color: rgba(255,255,255,0.9) !important;

  transition:
    color 0.3s ease,
    opacity 0.3s ease;
}

.product-page-header .breadcrumb-item a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -3px;

  width: 0%;
  height: 1px;

  background: rgba(255,255,255,0.7);

  transition: width 0.35s ease;
}

.product-page-header .breadcrumb-item a:hover {
  color: #ffffff !important;
}

.product-page-header .breadcrumb-item a:hover::after {
  width: 100%;
}
/* Hide Topbar Completely on Mobile & Tablet */
@media (max-width: 991px) {
  .top-bar {
    display: none !important;
  }
}/* ===============================
   HOME PAGE RESPONSIVE FIX
================================ */
/* Desktop Hero Paragraph Size */
@media (min-width: 992px) {

  #header-carousel p {
    font-size: 20px !important;
    line-height: 1.9;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

}
/* Mobile first */
@media (max-width: 575px) {
  body {
    overflow-x: hidden;
  }


  /* Hero Carousel */
  #header-carousel .carousel-item {
    min-height: 620px;
  }

  #header-carousel .carousel-item img {
    height: 620px;
    object-fit: cover;
  }

  #header-carousel .carousel-caption {
    padding: 0 18px;
  }

  #header-carousel .row.justify-content-center {
    margin-top: 90px !important;
  }

  #header-carousel .col-lg-7 {
    padding-top: 0 !important;
  }

  #header-carousel .display-4 {
    font-size: 2rem !important;
    line-height: 1.2;
  }

  #header-carousel p {
    font-size: 15.5px !important;
    line-height: 1.8;
    margin-bottom: 28px !important;
  }

 /* Show carousel buttons on mobile */
@media (max-width: 575px) {
  #header-carousel .carousel-control-prev,
  #header-carousel .carousel-control-next {
    display: flex !important;
    width: 14%;
    opacity: 1;
    z-index: 5;
  }

  #header-carousel .carousel-control-prev-icon,
  #header-carousel .carousel-control-next-icon {
    width: 2.2rem;
    height: 2.2rem;
    border-width: 8px;
  }
}

  /* Section spacing */
  .container-xxl.py-5,
  .container-fluid.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .container.py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .display-6 {
    font-size: 1.7rem !important;
    line-height: 1.3;
  }

  /* About */
  .position-relative[style*="min-height: 400px"] {
    min-height: 280px !important;
  }

  .position-relative[style*="min-height: 400px"] img {
    padding: 0 !important;
    border-radius: 18px;
  }

  .bg-light.border-bottom {
    padding: 22px !important;
  }

  .bg-light.border-bottom p,
  .col-lg-6 p {
    font-size: 15.5px;
    line-height: 1.8;
  }

  .col-lg-6 .btn {
    width: 100%;
    justify-content: center;
    margin-right: 0 !important;
    margin-bottom: 12px !important;
  }

  /* Products */
  .container-xxl.bg-light.my-5 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .row.g-5 {
    --bs-gutter-y: 1.6rem;
  }

  .causes-item .position-relative {
    height: 250px;
  }

  .causes-item .position-relative img {
    object-fit: cover;
  }

  .causes-item .text-center.p-4 {
    padding: 22px !important;
  }

  .causes-item h5 {
    font-size: 1.05rem;
  }

  /* Why Choose */
  .why-choose-us {
    background-attachment: scroll;
  }

  .why-choose-us .feature-item {
    padding: 30px 22px;
    border-radius: 16px;
  }

  .why-choose-us .feature-item p {
    font-size: 15.5px;
    line-height: 1.75;
  }

  /* Process */
  .process-item {
    padding: 28px 22px !important;
  }

  .process-icon {
    width: 72px;
    height: 72px;
  }

  .process-item p {
    font-size: 15.5px;
    line-height: 1.75;
  }

  /* Testimonials */
  .testimonial-box {
    padding: 34px 22px;
    border-radius: 18px;
  }

  .testimonial-box p {
    font-size: 15.5px;
    line-height: 1.8;
  }

  .testimonial-box h4 {
    font-size: 1.15rem;
  }

  #customTestimonialCarousel .carousel-control-prev,
  #customTestimonialCarousel .carousel-control-next {
    display: none;
  }

  #customTestimonialCarousel .carousel-indicators {
    bottom: -45px;
  }
}

/* Large phones / small tablets */
@media (min-width: 576px) and (max-width: 767px) {
  #header-carousel .carousel-item {
    min-height: 650px;
  }

  #header-carousel .carousel-item img {
    height: 650px;
    object-fit: cover;
  }

  #header-carousel .row.justify-content-center {
    margin-top: 100px !important;
  }

  #header-carousel .display-4 {
    font-size: 2.4rem !important;
  }

  #header-carousel p {
    font-size: 16px !important;
    line-height: 1.8;
  }

  .display-6 {
    font-size: 2rem !important;
  }

  .position-relative[style*="min-height: 400px"] {
    min-height: 330px !important;
  }

  .causes-item .position-relative {
    height: 280px;
  }

  .testimonial-box {
    padding: 40px 28px;
  }
}

/* Tablets */
@media (min-width: 768px) and (max-width: 991px) {
  #header-carousel .carousel-item {
    min-height: 700px;
  }

  #header-carousel .carousel-item img {
    height: 700px;
    object-fit: cover;
  }

  #header-carousel .row.justify-content-center {
    margin-top: 120px !important;
  }

  #header-carousel .display-4 {
    font-size: 3rem !important;
  }

  #header-carousel p {
    font-size: 17px !important;
    line-height: 1.8;
  }

  .display-6 {
    font-size: 2.3rem !important;
  }

  .position-relative[style*="min-height: 400px"] {
    min-height: 380px !important;
  }

  .causes-item .position-relative {
    height: 300px;
  }

  .why-choose-us {
    background-attachment: scroll;
  }

  .testimonial-box {
    max-width: 680px;
    padding: 45px 34px;
  }

  #customTestimonialCarousel .carousel-control-prev,
  #customTestimonialCarousel .carousel-control-next {
    width: 8%;
  }
}

/* ==========================================
  CONTACT PAGE RESPONSIVE FIX
   
========================================== */

html,
body {
  max-width: 100% !important;
  overflow-x: hidden !important;
}

/* Contact page wrapper spacing */
body .container-xxl.py-5 {
  padding-top: 45px !important;
  padding-bottom: 45px !important;
}

body .container-xxl.py-5 > .container {
  max-width: 1140px !important;
}

/* Mobile + tablet */
@media only screen and (max-width: 991px) {

  /* Page banner */
  body .page-header {
    margin-top: 78px !important;
    margin-bottom: 30px !important;
    padding: 95px 15px 45px !important;
    background-position: center center !important;
  }

  body .page-header h1,
  body .page-header .display-4 {
    font-size: 38px !important;
    line-height: 1.15 !important;
    margin-bottom: 16px !important;
  }

  body .page-header .breadcrumb {
    font-size: 14px !important;
    flex-wrap: wrap !important;
    row-gap: 6px !important;
  }

  /* Main contact section */
  body .container-xxl.py-5 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }

  body .container-xxl.py-5 .row.g-5 {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
    --bs-gutter-x: 0 !important;
    --bs-gutter-y: 0 !important;
  }

  body .container-xxl.py-5 .col-lg-6 {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }

  body .container-xxl.py-5 .display-6 {
    font-size: 30px !important;
    line-height: 1.25 !important;
    margin-bottom: 22px !important;
  }

  body .container-xxl.py-5 p {
    font-size: 16px !important;
    line-height: 1.8 !important;
  }

  /* Form */
  body form .row.g-3 {
    --bs-gutter-x: 0 !important;
    --bs-gutter-y: 16px !important;
  }

  body form .col-md-6,
  body form .col-12 {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }

  body .form-floating > .form-control,
  body .form-floating > .form-select {
    width: 100% !important;
    height: 56px !important;
    font-size: 15px !important;
    border-radius: 10px !important;
  }

  body .form-floating > textarea.form-control {
    height: 135px !important;
    min-height: 135px !important;
  }

  body form button.btn {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 12px 18px !important;
  }

  /* Contact details card */
  body .col-lg-6[style*="min-height"] {
    min-height: auto !important;
  }

  body .col-lg-6[style*="min-height"] > .position-relative {
    height: auto !important;
    min-height: auto !important;
    padding: 32px 26px !important;
    border-radius: 18px !important;
  }

  body .col-lg-6[style*="min-height"] h4 {
    font-size: 24px !important;
    margin-bottom: 24px !important;
  }

    body .col-lg-6[style*="min-height"] .d-flex {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    margin-bottom: 22px !important;
  }

  body .col-lg-6[style*="min-height"] .bg-primary {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    flex: 0 0 48px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    margin: 0 !important;
    border-radius: 12px !important;
  } 
    body .col-lg-6[style*="min-height"] .bg-primary i {
    font-size: 18px !important;
    line-height: 1 !important;
    display: block !important;
  }

 body .col-lg-6[style*="min-height"] .ms-3 {
    margin-left: 0 !important;
    flex: 1 !important;
  }

   body .col-lg-6[style*="min-height"] h6 {
    margin: 0 0 5px !important;
    line-height: 1.3 !important;
  }

    body .col-lg-6[style*="min-height"] span {
    display: block !important;
    line-height: 1.55 !important;
  }

  /* Map */
  body .container-fluid.p-0.mb-5 {
    margin-bottom: 25px !important;
  }

  body iframe.w-100 {
    height: 330px !important;
    margin-bottom: 0 !important;
    display: block !important;
  }

  /* Floating buttons */
  body .floating-btn-group {
    right: 18px !important;
    bottom: 18px !important;
    gap: 10px !important;
    z-index: 9999 !important;
  }

  body .floating-btn {
    width: 48px !important;
    height: 48px !important;
    font-size: 20px !important;
  }
}

/* Small mobile */
@media only screen and (max-width: 575px) {

  body .container,
  body .container-xxl {
    width: 100% !important;
    max-width: 100% !important;
  }
  body .col-lg-6[style*="min-height"] .d-flex {
    gap: 12px !important;
    align-items: center !important;
  }

  body .col-lg-6[style*="min-height"] .bg-primary {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    flex: 0 0 44px !important;
  }

  body .col-lg-6[style*="min-height"] .bg-primary i {
    font-size: 16px !important;
  }
  body .page-header {
    margin-top: 72px !important;
    padding: 82px 15px 38px !important;
  }

  body .page-header h1,
  body .page-header .display-4 {
    font-size: 31px !important;
  }

  body .container-xxl.py-5 {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }

  body .rounded-pill {
    font-size: 13px !important;
    padding: 6px 14px !important;
  }

  body .container-xxl.py-5 .display-6 {
    font-size: 25px !important;
    line-height: 1.28 !important;
    margin-bottom: 18px !important;
  }

  body .container-xxl.py-5 p {
    font-size: 15px !important;
  }

  body .form-floating > .form-control {
    height: 54px !important;
  }

  body .form-floating > textarea.form-control {
    height: 125px !important;
    min-height: 125px !important;
  }

  body .col-lg-6[style*="min-height"] > .position-relative {
    padding: 26px 20px !important;
  }

  body .col-lg-6[style*="min-height"] h4 {
    font-size: 21px !important;
  }

  body .col-lg-6[style*="min-height"] .bg-primary {
    width: 43px !important;
    height: 43px !important;
    min-width: 43px !important;
  }

  body .col-lg-6[style*="min-height"] .ms-3 {
    margin-left: 13px !important;
  }

  body .col-lg-6[style*="min-height"] h6 {
    font-size: 15px !important;
  }

  body .col-lg-6[style*="min-height"] span {
    font-size: 14px !important;
  }

  body iframe.w-100 {
    height: 270px !important;
  }
}

/* Very small phones */
@media only screen and (max-width: 380px) {

  body .page-header h1,
  body .page-header .display-4 {
    font-size: 28px !important;
  }

  body .container-xxl.py-5 .display-6 {
    font-size: 22px !important;
  }

  body .col-lg-6[style*="min-height"] > .position-relative {
    padding: 24px 16px !important;
  }
}
@media only screen and (max-width: 575px) {
  .contact-map {
    height: 270px !important;
    margin-bottom: 0 !important;
  }
}

/* =================================
   FORCE BIGGER HERO SECTION
================================= */

body .page-header {
  min-height: 520px !important;

  padding-top: 180px !important;
  padding-bottom: 120px !important;

  display: flex !important;
  align-items: center !important;

}

body .page-header .container {
  width: 100% !important;
}

body .page-header h1,
body .page-header .display-4 {
  font-size: 4rem !important;
  line-height: 1.15 !important;
}

/* Tablet */
@media only screen and (max-width: 991px) {

  body .page-header {
    min-height: 440px !important;

    padding-top: 140px !important;
    padding-bottom: 90px !important;

    margin-top: 0 !important;
  }

  body .page-header h1,
  body .page-header .display-4 {
    font-size: 3rem !important;
  }
}

/* Mobile */
@media only screen and (max-width: 575px) {

  body .page-header {
    min-height: 360px !important;

    padding-top: 120px !important;
    padding-bottom: 70px !important;
  }

  body .page-header h1,
  body .page-header .display-4 {
    font-size: 2.3rem !important;
  }
}
/* =================================
   PERFECT VISUAL HERO CENTERING
================================= */

body .page-header {
  min-height: 520px !important;

  display: flex !important;
  align-items: center !important;

  padding-top: 220px !important;
  padding-bottom: 120px !important;
}

body .page-header .container {
  display: flex !important;
  flex-direction: column !important;

  justify-content: center !important;
  align-items: center !important;

  text-align: center !important;

  margin-top: 40px !important;
}


/* ==========================================
   FINAL PRODUCT PAGES MOBILE SPACING 
=========== */

/* Mobile: reduce product page section gaps strongly */
@media only screen and (max-width: 575px) {

  /* Product page sections only */
  body:has(.product-detail-card) .container-xxl.py-5 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }

  body:has(.product-detail-card) .container-xxl.bg-light.py-5 {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }

  body:has(.product-detail-card) .container-xxl.pb-5 {
    padding-bottom: 28px !important;
  }


  /* Reduce large heading gaps */
  body:has(.product-detail-card) .text-center.mx-auto.mb-5 {
    margin-bottom: 24px !important;
  }

  body:has(.product-detail-card) .display-6 {
    margin-bottom: 14px !important;
  }

  /* Product detail card tighter */
  body:has(.product-detail-card) .product-detail-card {
    padding: 14px !important;
    border-radius: 16px !important;
  }

  body:has(.product-detail-card) .product-detail-card .row,
  body:has(.product-detail-card) .row.g-5 {
    --bs-gutter-y: 18px !important;
    --bs-gutter-x: 0 !important;
  }

  body:has(.product-detail-card) .product-detail-img img {
    height: 220px !important;
  }

  body:has(.product-detail-card) .product-detail-card h2 {
    margin-bottom: 12px !important;
  }

  body:has(.product-detail-card) .product-detail-card p {
    margin-bottom: 14px !important;
  }

  body:has(.product-detail-card) .product-meta {
    margin-bottom: 16px !important;
  }

  /* Benefits cards tighter */
  body:has(.product-detail-card) .product-info-box {
    padding: 18px !important;
  }

  body:has(.product-detail-card) .product-info-icon {
    margin-bottom: 12px !important;
  }

  body:has(.product-detail-card) .product-info-box h5 {
    margin-bottom: 8px !important;
  }

  body:has(.product-detail-card) .product-info-box p {
    margin-bottom: 0 !important;
  }

  /* Specification section tighter */
  body:has(.product-detail-card) .spec-table tr {
    padding: 14px 16px !important;
  }

  body:has(.product-detail-card) .spec-table th {
    margin-bottom: 5px !important;
  }

  body:has(.product-detail-card) .spec-table td {
    line-height: 1.65 !important;
  }

  /* CTA tighter */
  body:has(.product-detail-card) .product-note {
    padding: 32px 16px !important;
    border-radius: 16px !important;
  }

  body:has(.product-detail-card) .product-note h3 {
    margin-bottom: 10px !important;
  }

  body:has(.product-detail-card) .product-note p {
    margin-bottom: 18px !important;
  }
}

/* Fallback for browsers where :has may not apply */
@media only screen and (max-width: 575px) {

  .product-detail-card {
    padding: 14px !important;
  }

  .product-detail-card,
  .product-info-box,
  .product-note {
    margin-top: 0 !important;
  }

  .product-detail-card + *,
  .product-info-box + *,
  .spec-table + *,
  .product-note + * {
    margin-top: 0 !important;
  }

  .product-detail-card .row,
  .row:has(.product-info-box),
  .row:has(.product-detail-card) {
    --bs-gutter-y: 18px !important;
  }

  .product-detail-img img {
    height: 220px !important;
  }

  .product-info-box {
    padding: 18px !important;
  }

  .product-note {
    padding: 32px 16px !important;
  }
}

  /* Smaller Product Page Buttons */
@media (max-width: 575px) {

  .product-detail-card .btn,
  .product-note .btn,
  .product-note .btn-light {
    padding: 9px 20px !important;
    font-size: 14px !important;
    border-radius: 40px !important;
  }

  .product-detail-card .btn .btn-sm-square,
  .product-note .btn .btn-sm-square {
    width: 24px !important;
    height: 24px !important;
    font-size: 11px !important;
    margin-left: 8px !important;
  }

}
/* HERO: move whole carousel content + arrows down */
#header-carousel .carousel-item:first-child .carousel-caption ,
#header-carousel .carousel-control-prev,
#header-carousel .carousel-control-next {
  transform: translateY(35px);
}

/* Reduce heading by 0.5px */
#header-carousel .display-4 {
  font-size: calc(3.1rem) !important;
}

/* Mobile */
@media (max-width: 575px) {
  #header-carousel .carousel-caption,
  #header-carousel .carousel-control-prev,
  #header-carousel .carousel-control-next {
    transform: translateY(25px);
  }

  #header-carousel .display-4 {
    font-size: calc(2.5rem - 0.5px) !important;
  }
}

/* Tablet */
@media (min-width: 576px) and (max-width: 991px) {
  #header-carousel .carousel-caption,
  #header-carousel .carousel-control-prev,
  #header-carousel .carousel-control-next {
    transform: translateY(30px);
  }

  #header-carousel .display-4 {
    font-size: calc(2.5rem) !important;
  }
}

/* Second slide: move whole content down */
#header-carousel .carousel-item:nth-child(2) .carousel-caption {
  transform: translateY(25px);
}

/* Second slide: move only button slightly upward */
#header-carousel .carousel-item:nth-child(2) .carousel-caption .btn {
  transform: translateY(-20px) !important;
}

/* =================================
   CAREER PAGE
================================= */

.career-page-header {
  position: relative;
  background:
    linear-gradient(rgba(23, 37, 42, 0.82), rgba(23, 37, 42, 0.82)),
    url("../img/career-hero.jpg") center center no-repeat;
  background-size: cover;
  overflow: hidden;
}

.career-page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(43, 122, 120, 0.18), transparent 40%),
    radial-gradient(circle at bottom left, rgba(222, 242, 241, 0.08), transparent 35%);
  pointer-events: none;
}

.career-page-header .container {
  position: relative;
  z-index: 2;
}

.career-hero-text {
  max-width: 780px;
  font-size: 20px;
  line-height: 1.9;
  opacity: 0.9;
}

.career-page-header .breadcrumb {
  font-size: 17px;
  font-weight: 500;
}

.career-page-header .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.68) !important;
}

.career-page-header .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.55);
}

.career-img-box {
  border-radius: 24px;
  overflow: hidden;
  border-bottom: 5px solid var(--primary);
  box-shadow: 0 20px 55px rgba(23, 37, 42, 0.08);
}

.career-img-box img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  transition: 0.5s;
}

.career-img-box:hover img {
  transform: scale(1.04);
}

.career-feature-box {
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px;
  height: 100%;
  box-shadow: 0 12px 35px rgba(23, 37, 42, 0.06);
  border: 1px solid rgba(43, 122, 120, 0.1);
  transition: 0.4s;
}

.career-feature-box:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
}

.career-feature-icon {
  width: 58px;
  height: 58px;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 24px;
}

.career-feature-box p {
  margin-bottom: 0;
  line-height: 1.8;
}

.career-form-info {
background-image: url("../img/apply.jpg");
  background-size: cover;
  border-radius: 24px;
  padding: 45px 36px;
  color: #fff;
  position: relative;
  overflow: hidden;
}



.career-form-info > * {
  position: relative;
  z-index: 2;
}

.career-form-info p {
  color: rgba(255,255,255,0.82);
  line-height: 1.9;
}

.career-contact-point {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  color: rgba(255,255,255,0.9);
}

.career-contact-point i {
  width: 42px;
  height: 42px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.career-form {
  background: #fff;
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 20px 55px rgba(23, 37, 42, 0.08);
  border: 1px solid rgba(43, 122, 120, 0.12);
}

.career-form .form-control {
  border-radius: 12px;
  border: 1px solid rgba(23, 37, 42, 0.12);
}

.career-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.18rem rgba(43, 122, 120, 0.15);
}

.career-file-label {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.career-file-input {
  padding: 14px;
}

/* Mobile */
@media (max-width: 575px) {
  .career-page-header {
    padding-top: 120px !important;
    padding-bottom: 70px !important;
    min-height: 360px !important;
  }

  .career-page-header h1 {
    font-size: 2.3rem !important;
  }

  .career-hero-text {
    font-size: 15.5px;
    line-height: 1.75;
  }

  .career-page-header .breadcrumb {
    font-size: 14px;
  }

  .career-img-box img {
    height: 250px;
  }

  .career-feature-box {
    padding: 22px;
    text-align: center;
  }

  .career-feature-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .career-form-info,
  .career-form {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .career-contact-point {
    align-items: flex-start;
  }

  .career-form button {
    width: 100%;
    justify-content: center;
  }
}

/* Tablet */
@media (min-width: 576px) and (max-width: 991px) {
  .career-img-box img {
    height: 340px;
  }

  .career-form-info,
  .career-form {
    padding: 32px 26px;
  }
}
.career-form-info {
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(145deg, rgba(23, 37, 42, 0.98), rgba(31, 63, 66, 0.96)),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.035) 0px,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px,
      transparent 12px
    );

  border-radius: 28px;
  padding: 48px 38px;
  color: #ffffff;

  border: 1px solid rgba(222, 242, 241, 0.16);
  box-shadow:
    0 28px 70px rgba(23, 37, 42, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.career-form-info::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -90px;
  top: -90px;

  background: radial-gradient(circle, rgba(43, 122, 120, 0.55), transparent 68%);
  filter: blur(4px);
}

.career-form-info::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  left: -70px;
  bottom: -70px;

  border-radius: 50%;
  background: radial-gradient(circle, rgba(222, 242, 241, 0.14), transparent 65%);
}

.career-form-info > * {
  position: relative;
  z-index: 2;
}

.career-form-info h1,
.career-form-info h2,
.career-form-info h3 {
  color: #ffffff;
}

.career-form-info p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.9;
}

.career-form-info .rounded-pill {
  background: rgba(222, 242, 241, 0.13) !important;
  color: #DEF2F1 !important;
  border: 1px solid rgba(222, 242, 241, 0.18);
}

.career-contact-point {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.9);
}

.career-contact-point i {
  width: 44px;
  height: 44px;

  background: rgba(222, 242, 241, 0.12);
  color: #DEF2F1;

  border: 1px solid rgba(222, 242, 241, 0.22);
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

/********** Template CSS **********/
:root {
  --primary: #2b7a78;
  --secondary: #def2f1;
  --light: #f8f8f9;
  --dark: #17252a;

  --bs-primary: var(--primary);
  --bs-secondary: var(--secondary);
  --bs-light: var(--light);
  --bs-dark: var(--dark);
}

.floating-btn-group {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 99;
}

.floating-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: 0.3s transform ease;
}

.floating-btn:hover {
  transform: scale(1.1);
}

.whatsapp-btn {
  background-color: #25d366 !important;
  border: none;
}

.call-btn {
  background-color: var(--primary) !important;
  border: none;
}

/*** 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;
}

/* Global Theme Overrides */
.btn.btn-primary,
.carousel-caption .btn-primary,
#header-carousel .btn-primary {
  color: #ffffff !important;
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}

.btn.btn-primary:hover,
.carousel-caption .btn-primary:hover,
#header-carousel .btn-primary:hover,
.causes-item .btn-primary:hover {
  color: #ffffff !important;
  background-color: var(--primary) !important;
  border: 1px solid var(--primary) !important;
}

.btn.btn-outline-primary,
.causes-item .btn-outline-primary {
  color: var(--primary) !important;
  border-color: var(--primary) !important;
}

.btn.btn-outline-primary:hover,
.causes-item .btn-outline-primary:hover {
  color: #ffffff !important;
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}

/* Specific Badge Overrides */
.rounded-pill.bg-secondary.text-primary,
.bg-secondary.text-primary {
  background-color: var(--secondary) !important;
  color: var(--primary) !important;
}

.bg-primary.text-white {
  background-color: var(--primary) !important;
  color: #ffffff !important;
}

/* Theme Utility Overrides */
.bg-primary {
  background-color: var(--primary) !important;
}

.bg-secondary {
  background-color: var(--secondary) !important;
}

.text-primary {
  color: var(--primary) !important;
}

.border-primary {
  border-color: var(--primary) !important;
}

.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 ***/
.fixed-top {
  transition: 0.5s;
}

.top-bar {
  min-height: 45px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

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

.navbar .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: #17252a;
  font-weight: 500;
  outline: none;
}

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

@media (max-width: 991.98px) {
  .navbar .navbar-nav {
    margin-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    background: #ffffff;
  }

  .navbar .navbar-nav .nav-link {
    padding: 10px 0;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    transition: 0.5s;
    opacity: 0;
  }

  .navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

.dropdown-item:hover {
  color: var(--primary);
  background-color: transparent;
}

/*** Header ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(23, 37, 42, 0.6);
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--dark);
  border: 12px solid var(--dark);
  border-radius: 3rem;
}

@media (min-width: 992px) {
  #header-carousel .carousel-item {
    height: 100vh;
  }

  #header-carousel .carousel-item img {
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 991.98px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 700px;
  }

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

  #header-carousel .display-4 {
    font-size: 2.3rem !important;
  }

  #header-carousel .row.justify-content-center {
    margin-top: 150px !important;
  }
 
}

.page-header {
  padding-top: 12rem;
  padding-bottom: 6rem;
  background:
    linear-gradient(rgba(23, 37, 42, 0.8), rgba(23, 37, 42, 0.8)),
    url("../img/about.jpg") center center no-repeat;
  background-size: cover;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: #999999;
}

/*** Why Choose Us ***/
.why-choose-us {
  background:
    linear-gradient(rgba(23, 37, 42, 0.85), rgba(23, 37, 42, 0.85)),
    url(../image/why-choose-us-bg.png) center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.why-choose-us .feature-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 3rem 2rem;
  transition: 0.5s;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.why-choose-us .feature-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-10px);
}

.why-choose-us .feature-icon {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #ffffff;
  border-radius: 50%;
  margin: 0 auto 1.5rem auto;
  font-size: 1.5rem;
}

/*** Causes ***/
.causes-item {
  transition: 0.5s;
}

.causes-item .position-relative {
  /* Lock a consistent media box so all product images match */
  height: 300px;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
  border-bottom: 5px solid var(--primary);
  overflow: hidden;
}

.causes-item .position-relative img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.causes-item .progress {
  height: 5px;
  border-radius: 0;
  overflow: visible;
}

.causes-item .progress .progress-bar {
  position: relative;
  overflow: visible;
  width: 0px;
  border-radius: 0;
  transition: 5s;
}

.causes-item .progress .progress-bar span {
  position: absolute;
  top: -7px;
  right: 0;
  width: 40px;
  height: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  background: var(--primary);
  color: #ffffff;
}

.causes-item .causes-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(23, 37, 42, 0.5);
  overflow: hidden;
  opacity: 0;
  transition: 0.5s;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.causes-item:hover .causes-overlay {
  height: 100%;
  opacity: 1;
}

/*** Service ***/
.service-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.06);
}

/*** Donate ***/
.donate {
  background: rgba(23, 37, 42, 0.8);
}

.btn-group .btn-light:hover,
.btn-group input[type="radio"]:checked + label {
  color: var(--primary);
  border-color: var(--primary);
}

/*** Team ***/
.team-item img {
  position: relative;
  top: 0;
  transition: 0.5s;
}

.team-item:hover img {
  top: -30px;
}

.team-item .team-text {
  position: relative;
  height: 100px;
  transition: 0.5s;
}

.team-item:hover .team-text {
  margin-top: -60px;
  height: 160px;
}

.team-item .team-text .team-social {
  opacity: 0;
  transition: 0.5s;
}

.team-item:hover .team-text .team-social {
  opacity: 1;
}

.team-item .team-social .btn {
  display: inline-flex;
  color: var(--primary);
  background: #ffffff;
  border-radius: 40px;
}

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

/*** 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 {
  background: var(--light);
  transform: scale(0.8);
  transition: 0.5s;
}

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

.testimonial-carousel .owl-item .testimonial-text *,
.testimonial-carousel .owl-item .testimonial-item img {
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
  color: var(--light) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item img {
  background: var(--primary) !important;
}

.testimonial-carousel .owl-nav {
  position: absolute;
  width: 350px;
  top: 15px;
  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);
}

/*** New Arrivals ***/
.new-arrivals-carousel {
  padding: 0 40px; /* Leave room for arrows */
}

.new-arrivals-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  left: 0;
  z-index: 1;
}

.new-arrivals-carousel .owl-nav .owl-prev,
.new-arrivals-carousel .owl-nav .owl-next {
  width: 45px;
  height: 45px;
  background: var(--primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.new-arrivals-carousel .owl-nav .owl-prev {
  margin-left: -20px;
}

.new-arrivals-carousel .owl-nav .owl-next {
  margin-right: -20px;
}

.new-arrivals-carousel .owl-nav .owl-prev:hover,
.new-arrivals-carousel .owl-nav .owl-next:hover {
  background: var(--dark);
}

.new-arrivals-item {
  transition: 0.5s;
  border-radius: 10px;
}

.new-arrivals-item .position-relative {
  height: 250px; /* slightly smaller than causes */
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  overflow: hidden;
  border-bottom: 2px solid var(--secondary); /* subtle border instead of thick green */
}

.new-arrivals-item .position-relative img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Make sure product is fully visible */
  display: block;
  padding: 20px;
}

.new-arrivals-item .new-arrivals-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8); /* Lighter overlay */
  overflow: hidden;
  opacity: 0;
  transition: 0.5s;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.new-arrivals-item:hover .new-arrivals-overlay {
  height: 100%;
  opacity: 1;
}

/*** Footer ***/

.footer .btn.btn-link {
  display: flex;
  margin-bottom: 12px;
  padding: 0;
  text-align: left;
  color: rgba(255, 255, 255, 0.5);
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
  white-space: normal;
  line-height: 1.5;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: rgba(255, 255, 255, 0.5);
  margin-right: 10px;
  margin-top: 3px;
}

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

.footer .btn.btn-square {
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.footer .btn.btn-square:hover {
  color: var(--secondary);
  border-color: var(--light);
}

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

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

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




.testimonial-item {
    position: relative;
    overflow: hidden;
}

.testimonial-text::after,
.testimonial-text::before {
    display: none !important;
    content: none !important;
}




.testimonial-box {
    background: #2c7979;
    color: #fff;
    padding: 50px 40px;
    border-radius: 15px;
    max-width: 850px;
}

.testimonial-box p {
    font-size: 18px;
    line-height: 1.8;
}

.testimonial-box h4 {
    color: #fff;
    font-weight: 700;
}

.testimonial-box span {
    color: #e2e2e2;
    font-style: italic;
}

#customTestimonialCarousel .carousel-control-prev,
#customTestimonialCarousel .carousel-control-next {
    width: 5%;
}

.custom-arrow {
    background-color: #2c7979;
    border-radius: 50%;
    padding: 20px;
}

#customTestimonialCarousel .carousel-indicators button {
    background-color: #2c7979;
}





.process-item {
    transition: 0.4s;
    border-bottom: 4px solid transparent;
}

.process-item:hover {
    transform: translateY(-8px);
    border-color: #198754;
    box-shadow: 0 0 30px rgba(0,0,0,0.08);
}

.process-icon {
    width: 90px;
    height: 90px;
    background: rgba(25, 135, 84, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

/* Product Detail Page */
.product-detail-hero {
  padding: 160px 0 90px;
  background:
    linear-gradient(rgba(23, 37, 42, 0.82), rgba(23, 37, 42, 0.82)),
    url("../img/product1-heo.jpg") center/cover no-repeat;
}

.product-detail-card {
  background: #fff;
  border-radius: 24px;
  padding: 35px;
  box-shadow: 0 20px 55px rgba(23, 37, 42, 0.08);
  border: 1px solid rgba(43, 122, 120, 0.12);
}

.product-detail-img {
  border-radius: 22px;
  overflow: hidden;
  background: var(--light);
  border-bottom: 5px solid var(--primary);
}

.product-detail-img img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  transition: 0.5s;
}

.product-detail-img:hover img {
  transform: scale(1.04);
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-meta span {
  background: var(--secondary);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 14px;
}

.product-info-box {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  height: 100%;
  box-shadow: 0 12px 35px rgba(23, 37, 42, 0.06);
  transition: 0.4s;
  border: 1px solid rgba(43, 122, 120, 0.1);
}

.product-info-box:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
}

.product-info-icon {
  width: 58px;
  height: 58px;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 24px;
}

.spec-table {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(23, 37, 42, 0.06);
}

.spec-table table {
  margin: 0;
}

.spec-table th {
  width: 35%;
  color: var(--dark);
  background: var(--secondary);
}

.product-note {
  background: linear-gradient(135deg, var(--primary), #205f5d);
  border-radius: 22px;
  padding: 35px;
  color: #fff;
}

@media (max-width: 767px) {
  .product-detail-hero {
    padding: 130px 0 60px;
  }

  .product-detail-card {
    padding: 22px;
  }

  .product-detail-img img {
    height: 280px;
  }

  .spec-table th {
    width: 45%;
  }
}


/* Product Page Header */
.product-page-header {
  background:
    linear-gradient(
      rgba(23, 37, 42, 0.82),
      rgba(23, 37, 42, 0.82)
    ),
    url("../img/product1-heo.jpg") center center no-repeat;

  background-size: cover;
  position: relative;
}

.product-page-header::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at top right,
      rgba(43, 122, 120, 0.18),
      transparent 40%
    );

  pointer-events: none;
}

.product-page-header .container {
  position: relative;
  z-index: 2;
}

.product-header-text {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.9;
  opacity: 0.9;
}

.product-page-header .breadcrumb-item a {
  transition: 0.3s;
}

.product-page-header .breadcrumb-item a:hover {
  color: var(--secondary) !important;
}

.product-page-header .breadcrumb-item.active {
  color: rgba(255,255,255,0.65) !important;
  font-weight: 400;
}

/* Mobile */
@media (max-width: 991px) {

  .product-page-header {
    padding-top: 8rem;
    padding-bottom: 4rem;
  }

  .product-page-header h1 {
    font-size: 2.4rem !important;
  }

  .product-header-text {
    font-size: 15px;
    line-height: 1.8;
  }

}

/* Individual Product Header Images */
.vitamin-page-header {
  background:
    linear-gradient(
      rgba(23, 37, 42, 0.82),
      rgba(23, 37, 42, 0.82)
    ),
    url("../img/product2-hero.jpg") center center no-repeat;
  background-size: cover;
}

.omega-page-header {
  background:
    linear-gradient(
      rgba(23, 37, 42, 0.82),
      rgba(23, 37, 42, 0.82)
    ),
    url("../img/product3-hero.jpg") center center no-repeat;
  background-size: cover;
}

/* About Page Hero */
.about-page-header {
  position: relative;

  background:
    linear-gradient(
      rgba(23, 37, 42, 0.82),
      rgba(23, 37, 42, 0.82)
    ),
    url("/img/about.jpg") center center no-repeat;

  background-size: cover;

  padding-top: 12rem;
  padding-bottom: 6rem;

  overflow: hidden;
}

/* Premium Overlay Effects */
.about-page-header::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at top left,
      rgba(43, 122, 120, 0.18),
      transparent 35%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(222, 242, 241, 0.08),
      transparent 30%
    );

  pointer-events: none;
}

.about-page-header::after {
  content: "";

  position: absolute;
  inset: 0;

  backdrop-filter: blur(1.5px);

  pointer-events: none;
}

/* Keep Content Above Overlay */
.about-page-header .container {
  position: relative;
  z-index: 2;
}

/* Heading */
.about-page-header h1 {
  font-weight: 700;
  letter-spacing: -1px;
}

/* Breadcrumb */
.about-page-header .breadcrumb-item a {
  color: rgba(255,255,255,0.92) !important;
  transition: 0.3s;
}

.about-page-header .breadcrumb-item a:hover {
  color: var(--secondary) !important;
}

.about-page-header .breadcrumb-item.active {
  color: rgba(255,255,255,0.65) !important;
}

/* Mobile */
@media (max-width: 991px) {

  .about-page-header {
    padding-top: 8rem;
    padding-bottom: 4rem;
  }

  .about-page-header h1 {
    font-size: 2.5rem !important;
  }

}
/* Common Product CTA Section */
.product-note {
  position: relative;

  background:
    linear-gradient(
      rgba(23, 37, 42, 0.88),
      rgba(23, 37, 42, 0.9)
    ),
    url("../img/cta.jpg") center center no-repeat;

  background-size: cover;

  border-radius: 24px;

  padding: 70px 40px;

  overflow: hidden;

  box-shadow: 0 20px 50px rgba(23, 37, 42, 0.12);
}

/* Premium Overlay Glow */
.product-note::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at top left,
      rgba(43, 122, 120, 0.28),
      transparent 35%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(222, 242, 241, 0.08),
      transparent 30%
    );

  pointer-events: none;
}

/* Content Above Overlay */
.product-note > * {
  position: relative;
  z-index: 2;
}

/* Heading */
.product-note h3 {
  font-size: 2rem;
  font-weight: 700;
}

/* Paragraph */
.product-note p {
  color: rgba(255,255,255,0.82);
  max-width: 720px;
  margin: auto;
  line-height: 1.9;
}

/* Button */
.product-note .btn-light {
  padding: 14px 34px;
  font-weight: 600;
  border-radius: 50px;
  transition: 0.4s;
}

.product-note .btn-light:hover {
  transform: translateY(-4px);
}

/* Mobile */
@media (max-width: 991px) {

  .product-note {
    padding: 50px 25px;
  }

  .product-note h3 {
    font-size: 1.7rem;
  }

}

/* ================================
   PRODUCT DETAIL PAGE - MOBILE FIRST
================================ */

/* Base: Mobile */
.product-page-header {
  padding: 110px 15px 55px;
  margin-bottom: 30px !important;
  background-position: center;
}

.product-page-header h1 {
  font-size: 1.9rem !important;
  line-height: 1.2;
  margin-bottom: 16px !important;
}

.product-header-text {
  max-width: 100%;
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.9;
}

.product-page-header .breadcrumb {
  font-size: 13px;
  row-gap: 6px;
}

.product-page-header .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.65) !important;
}


/* Product Detail Card */
.product-detail-card {
  padding: 18px;
  border-radius: 18px;
  margin: 0;
  box-shadow: 0 12px 35px rgba(23, 37, 42, 0.08);
}

.product-detail-img {
  border-radius: 16px;
}

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

.product-detail-card h2 {
  font-size: 1.55rem !important;
  line-height: 1.3;
  margin-bottom: 18px !important;
}

.product-detail-card p {
  font-size: 14px;
  line-height: 1.8;
}

.product-meta {
  gap: 8px;
}

.product-meta span {
  font-size: 12px;
  padding: 7px 12px;
}

.product-detail-card .btn {
  width: 100%;
  justify-content: center;
}


/* Section spacing */
.container-xxl.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.container-xxl .display-6 {
  font-size: 1.65rem !important;
  line-height: 1.3;
}


/* Benefit Cards */
.product-info-box {
  padding: 22px;
  text-align: center;
  border-radius: 16px;
}

.product-info-icon {
  width: 56px;
  height: 56px;
  margin-left: auto;
  margin-right: auto;
}

.product-info-box h5 {
  font-size: 1.05rem;
}

.product-info-box p {
  font-size: 14px;
  line-height: 1.7;
}


/* Specification Table */
.spec-table {

  border-radius: 16px;
}

/* Premium Minimal Mobile Specification Table */
@media (max-width: 575px) {

  .spec-table {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;

    box-shadow:
      0 10px 30px rgba(23, 37, 42, 0.05);

    border:
      1px solid rgba(43, 122, 120, 0.08);
  }

  .spec-table table,
  .spec-table tbody,
  .spec-table tr,
  .spec-table th,
  .spec-table td {
    display: block;
    width: 100%;
  }

  .spec-table tr {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

  .spec-table tr:last-child {
    border-bottom: none;
  }

  .spec-table th {
    background: transparent !important;
    border: none !important;

    color: var(--primary);

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;

    padding: 0;
    margin-bottom: 8px;

    opacity: 0.9;
  }

  .spec-table td {
    border: none !important;
    padding: 0;

    font-size: 15.5px;
    line-height: 1.8;

    color: #4a4a4a;
  }

}

.spec-table th,
.spec-table td {
  font-size: 14px;
  padding: 14px;
}


/* CTA */
.product-note {
  padding: 42px 20px;
  border-radius: 18px;
}

.product-note h3 {
  font-size: 1.45rem;
  line-height: 1.3;
}

.product-note p {
  font-size: 14px;
  line-height: 1.8;
}

.product-note .btn-light {
  padding: 11px 28px;
}


/* Small phones */
@media (max-width: 380px) {
  .product-page-header h1 {
    font-size: 1.65rem !important;
  }

  .product-detail-img img {
    height: 210px;
  }

  .container-xxl .display-6 {
    font-size: 1.45rem !important;
  }
}


/* Tablet */
@media (min-width: 768px) {
  .product-page-header {
    padding: 140px 20px 80px;
  }

  .product-page-header h1 {
    font-size: 2.8rem !important;
  }

  .product-header-text {
    max-width: 720px;
    font-size: 17px;
  }

  .product-detail-card {
    padding: 28px;
  }

  .product-detail-img img {
    height: 340px;
  }

  .product-detail-card .btn {
    width: auto;
  }

  .container-xxl .display-6 {
    font-size: 2.1rem !important;
  }
}


/* Desktop */
@media (min-width: 992px) {
  .product-page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
  }

  .product-page-header h1 {
    font-size: 3.5rem !important;
  }

  .product-detail-card {
    padding: 35px;
  }

  .product-detail-img img {
    height: 430px;
  }

  .product-detail-card h2 {
    font-size: 2.3rem !important;
  }

  .product-note {
    padding: 70px 40px;
  }
}

/* Hero paragraph + breadcrumb size upgrade */
.product-page-header .product-header-text {
  font-size: 20px;
  line-height: 1.9;
  max-width: 820px;
}

.product-page-header .breadcrumb {
  font-size: 17px;
  font-weight: 500;
}

.product-page-header .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.55);
}

.product-page-header .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.95) !important;
}

.product-page-header .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.68) !important;
}

/* Tablet */
@media (max-width: 991px) {
  .product-page-header .product-header-text {
    font-size: 17px;
    line-height: 1.8;
    max-width: 92%;
  }

  .product-page-header .breadcrumb {
    font-size: 16px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .product-page-header .product-header-text {
    font-size: 15.5px;
    line-height: 1.75;
    max-width: 100%;
    margin-bottom: 18px !important;
  }

  .product-page-header .breadcrumb {
    font-size: 14px;
    line-height: 1.6;
  }

  .product-page-header .breadcrumb-item {
    margin-bottom: 4px;
  }
}

/* Global font size upgrade */
.product-detail-card p,
.product-info-box p,
.spec-table td,
.spec-table th,
.product-note p,
.product-header-text,
.product-page-header .breadcrumb,
.product-meta span {
  font-size: 16px !important;
}

/* Maintain readability on mobile */
@media (max-width: 575px) {

  .product-detail-card p,
  .product-info-box p,
  .spec-table td,
  .spec-table th,
  .product-note p,
  .product-header-text {
    font-size: 15.5px !important;
    line-height: 1.8;
  }

  .product-page-header .breadcrumb,
  .product-meta span {
    font-size: 14px !important;
  }

}

/* Minimal Breadcrumb Hover Effect */
.product-page-header .breadcrumb-item a {
  position: relative;

  color: rgba(255,255,255,0.9) !important;

  transition:
    color 0.3s ease,
    opacity 0.3s ease;
}

.product-page-header .breadcrumb-item a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -3px;

  width: 0%;
  height: 1px;

  background: rgba(255,255,255,0.7);

  transition: width 0.35s ease;
}

.product-page-header .breadcrumb-item a:hover {
  color: #ffffff !important;
}

.product-page-header .breadcrumb-item a:hover::after {
  width: 100%;
}
/* Hide Topbar Completely on Mobile & Tablet */
@media (max-width: 991px) {
  .top-bar {
    display: none !important;
  }
}/* ===============================
   HOME PAGE RESPONSIVE FIX
================================ */
/* Desktop Hero Paragraph Size */
@media (min-width: 992px) {

  #header-carousel p {
    font-size: 20px !important;
    line-height: 1.9;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

}
/* Mobile first */
@media (max-width: 575px) {
  body {
    overflow-x: hidden;
  }


  /* Hero Carousel */
  #header-carousel .carousel-item {
    min-height: 620px;
  }

  #header-carousel .carousel-item img {
    height: 620px;
    object-fit: cover;
  }

  #header-carousel .carousel-caption {
    padding: 0 18px;
  }

  #header-carousel .row.justify-content-center {
    margin-top: 90px !important;
  }

  #header-carousel .col-lg-7 {
    padding-top: 0 !important;
  }

  #header-carousel .display-4 {
    font-size: 2rem !important;
    line-height: 1.2;
  }

  #header-carousel p {
    font-size: 15.5px !important;
    line-height: 1.8;
    margin-bottom: 28px !important;
  }

 /* Show carousel buttons on mobile */
@media (max-width: 575px) {
  #header-carousel .carousel-control-prev,
  #header-carousel .carousel-control-next {
    display: flex !important;
    width: 14%;
    opacity: 1;
    z-index: 5;
  }

  #header-carousel .carousel-control-prev-icon,
  #header-carousel .carousel-control-next-icon {
    width: 2.2rem;
    height: 2.2rem;
    border-width: 8px;
  }
}

  /* Section spacing */
  .container-xxl.py-5,
  .container-fluid.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .container.py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .display-6 {
    font-size: 1.7rem !important;
    line-height: 1.3;
  }

  /* About */
  .position-relative[style*="min-height: 400px"] {
    min-height: 280px !important;
  }

  .position-relative[style*="min-height: 400px"] img {
    padding: 0 !important;
    border-radius: 18px;
  }

  .bg-light.border-bottom {
    padding: 22px !important;
  }

  .bg-light.border-bottom p,
  .col-lg-6 p {
    font-size: 15.5px;
    line-height: 1.8;
  }

  .col-lg-6 .btn {
    width: 100%;
    justify-content: center;
    margin-right: 0 !important;
    margin-bottom: 12px !important;
  }

  /* Products */
  .container-xxl.bg-light.my-5 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .row.g-5 {
    --bs-gutter-y: 1.6rem;
  }

  .causes-item .position-relative {
    height: 250px;
  }

  .causes-item .position-relative img {
    object-fit: cover;
  }

  .causes-item .text-center.p-4 {
    padding: 22px !important;
  }

  .causes-item h5 {
    font-size: 1.05rem;
  }

  /* Why Choose */
  .why-choose-us {
    background-attachment: scroll;
  }

  .why-choose-us .feature-item {
    padding: 30px 22px;
    border-radius: 16px;
  }

  .why-choose-us .feature-item p {
    font-size: 15.5px;
    line-height: 1.75;
  }

  /* Process */
  .process-item {
    padding: 28px 22px !important;
  }

  .process-icon {
    width: 72px;
    height: 72px;
  }

  .process-item p {
    font-size: 15.5px;
    line-height: 1.75;
  }

  /* Testimonials */
  .testimonial-box {
    padding: 34px 22px;
    border-radius: 18px;
  }

  .testimonial-box p {
    font-size: 15.5px;
    line-height: 1.8;
  }

  .testimonial-box h4 {
    font-size: 1.15rem;
  }

  #customTestimonialCarousel .carousel-control-prev,
  #customTestimonialCarousel .carousel-control-next {
    display: none;
  }

  #customTestimonialCarousel .carousel-indicators {
    bottom: -45px;
  }
}

/* Large phones / small tablets */
@media (min-width: 576px) and (max-width: 767px) {
  #header-carousel .carousel-item {
    min-height: 650px;
  }

  #header-carousel .carousel-item img {
    height: 650px;
    object-fit: cover;
  }

  #header-carousel .row.justify-content-center {
    margin-top: 100px !important;
  }

  #header-carousel .display-4 {
    font-size: 2.4rem !important;
  }

  #header-carousel p {
    font-size: 16px !important;
    line-height: 1.8;
  }

  .display-6 {
    font-size: 2rem !important;
  }

  .position-relative[style*="min-height: 400px"] {
    min-height: 330px !important;
  }

  .causes-item .position-relative {
    height: 280px;
  }

  .testimonial-box {
    padding: 40px 28px;
  }
}

/* Tablets */
@media (min-width: 768px) and (max-width: 991px) {
  #header-carousel .carousel-item {
    min-height: 700px;
  }

  #header-carousel .carousel-item img {
    height: 700px;
    object-fit: cover;
  }

  #header-carousel .row.justify-content-center {
    margin-top: 120px !important;
  }

  #header-carousel .display-4 {
    font-size: 3rem !important;
  }

  #header-carousel p {
    font-size: 17px !important;
    line-height: 1.8;
  }

  .display-6 {
    font-size: 2.3rem !important;
  }

  .position-relative[style*="min-height: 400px"] {
    min-height: 380px !important;
  }

  .causes-item .position-relative {
    height: 300px;
  }

  .why-choose-us {
    background-attachment: scroll;
  }

  .testimonial-box {
    max-width: 680px;
    padding: 45px 34px;
  }

  #customTestimonialCarousel .carousel-control-prev,
  #customTestimonialCarousel .carousel-control-next {
    width: 8%;
  }
}

/* ==========================================
  CONTACT PAGE RESPONSIVE FIX
   
========================================== */

html,
body {
  max-width: 100% !important;
  overflow-x: hidden !important;
}

/* Contact page wrapper spacing */
body .container-xxl.py-5 {
  padding-top: 45px !important;
  padding-bottom: 45px !important;
}

body .container-xxl.py-5 > .container {
  max-width: 1140px !important;
}

/* Mobile + tablet */
@media only screen and (max-width: 991px) {

  /* Page banner */
  body .page-header {
    margin-top: 78px !important;
    margin-bottom: 30px !important;
    padding: 95px 15px 45px !important;
    background-position: center center !important;
  }

  body .page-header h1,
  body .page-header .display-4 {
    font-size: 38px !important;
    line-height: 1.15 !important;
    margin-bottom: 16px !important;
  }

  body .page-header .breadcrumb {
    font-size: 14px !important;
    flex-wrap: wrap !important;
    row-gap: 6px !important;
  }

  /* Main contact section */
  body .container-xxl.py-5 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }

  body .container-xxl.py-5 .row.g-5 {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
    --bs-gutter-x: 0 !important;
    --bs-gutter-y: 0 !important;
  }

  body .container-xxl.py-5 .col-lg-6 {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }

  body .container-xxl.py-5 .display-6 {
    font-size: 30px !important;
    line-height: 1.25 !important;
    margin-bottom: 22px !important;
  }

  body .container-xxl.py-5 p {
    font-size: 16px !important;
    line-height: 1.8 !important;
  }

  /* Form */
  body form .row.g-3 {
    --bs-gutter-x: 0 !important;
    --bs-gutter-y: 16px !important;
  }

  body form .col-md-6,
  body form .col-12 {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }

  body .form-floating > .form-control,
  body .form-floating > .form-select {
    width: 100% !important;
    height: 56px !important;
    font-size: 15px !important;
    border-radius: 10px !important;
  }

  body .form-floating > textarea.form-control {
    height: 135px !important;
    min-height: 135px !important;
  }

  body form button.btn {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 12px 18px !important;
  }

  /* Contact details card */
  body .col-lg-6[style*="min-height"] {
    min-height: auto !important;
  }

  body .col-lg-6[style*="min-height"] > .position-relative {
    height: auto !important;
    min-height: auto !important;
    padding: 32px 26px !important;
    border-radius: 18px !important;
  }

  body .col-lg-6[style*="min-height"] h4 {
    font-size: 24px !important;
    margin-bottom: 24px !important;
  }

    body .col-lg-6[style*="min-height"] .d-flex {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    margin-bottom: 22px !important;
  }

  body .col-lg-6[style*="min-height"] .bg-primary {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    flex: 0 0 48px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    margin: 0 !important;
    border-radius: 12px !important;
  } 
    body .col-lg-6[style*="min-height"] .bg-primary i {
    font-size: 18px !important;
    line-height: 1 !important;
    display: block !important;
  }

 body .col-lg-6[style*="min-height"] .ms-3 {
    margin-left: 0 !important;
    flex: 1 !important;
  }

   body .col-lg-6[style*="min-height"] h6 {
    margin: 0 0 5px !important;
    line-height: 1.3 !important;
  }

    body .col-lg-6[style*="min-height"] span {
    display: block !important;
    line-height: 1.55 !important;
  }

  /* Map */
  body .container-fluid.p-0.mb-5 {
    margin-bottom: 25px !important;
  }

  body iframe.w-100 {
    height: 330px !important;
    margin-bottom: 0 !important;
    display: block !important;
  }

  /* Floating buttons */
  body .floating-btn-group {
    right: 18px !important;
    bottom: 18px !important;
    gap: 10px !important;
    z-index: 9999 !important;
  }

  body .floating-btn {
    width: 48px !important;
    height: 48px !important;
    font-size: 20px !important;
  }
}

/* Small mobile */
@media only screen and (max-width: 575px) {

  body .container,
  body .container-xxl {
    width: 100% !important;
    max-width: 100% !important;
  }
  body .col-lg-6[style*="min-height"] .d-flex {
    gap: 12px !important;
    align-items: center !important;
  }

  body .col-lg-6[style*="min-height"] .bg-primary {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    flex: 0 0 44px !important;
  }

  body .col-lg-6[style*="min-height"] .bg-primary i {
    font-size: 16px !important;
  }
  body .page-header {
    margin-top: 72px !important;
    padding: 82px 15px 38px !important;
  }

  body .page-header h1,
  body .page-header .display-4 {
    font-size: 31px !important;
  }

  body .container-xxl.py-5 {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }

  body .rounded-pill {
    font-size: 13px !important;
    padding: 6px 14px !important;
  }

  body .container-xxl.py-5 .display-6 {
    font-size: 25px !important;
    line-height: 1.28 !important;
    margin-bottom: 18px !important;
  }

  body .container-xxl.py-5 p {
    font-size: 15px !important;
  }

  body .form-floating > .form-control {
    height: 54px !important;
  }

  body .form-floating > textarea.form-control {
    height: 125px !important;
    min-height: 125px !important;
  }

  body .col-lg-6[style*="min-height"] > .position-relative {
    padding: 26px 20px !important;
  }

  body .col-lg-6[style*="min-height"] h4 {
    font-size: 21px !important;
  }

  body .col-lg-6[style*="min-height"] .bg-primary {
    width: 43px !important;
    height: 43px !important;
    min-width: 43px !important;
  }

  body .col-lg-6[style*="min-height"] .ms-3 {
    margin-left: 13px !important;
  }

  body .col-lg-6[style*="min-height"] h6 {
    font-size: 15px !important;
  }

  body .col-lg-6[style*="min-height"] span {
    font-size: 14px !important;
  }

  body iframe.w-100 {
    height: 270px !important;
  }
}

/* Very small phones */
@media only screen and (max-width: 380px) {

  body .page-header h1,
  body .page-header .display-4 {
    font-size: 28px !important;
  }

  body .container-xxl.py-5 .display-6 {
    font-size: 22px !important;
  }

  body .col-lg-6[style*="min-height"] > .position-relative {
    padding: 24px 16px !important;
  }
}
@media only screen and (max-width: 575px) {
  .contact-map {
    height: 270px !important;
    margin-bottom: 0 !important;
  }
}

/* =================================
   FORCE BIGGER HERO SECTION
================================= */

body .page-header {
  min-height: 520px !important;

  padding-top: 180px !important;
  padding-bottom: 120px !important;

  display: flex !important;
  align-items: center !important;

}

body .page-header .container {
  width: 100% !important;
}

body .page-header h1,
body .page-header .display-4 {
  font-size: 4rem !important;
  line-height: 1.15 !important;
}

/* Tablet */
@media only screen and (max-width: 991px) {

  body .page-header {
    min-height: 440px !important;

    padding-top: 140px !important;
    padding-bottom: 90px !important;

    margin-top: 0 !important;
  }

  body .page-header h1,
  body .page-header .display-4 {
    font-size: 3rem !important;
  }
}

/* Mobile */
@media only screen and (max-width: 575px) {

  body .page-header {
    min-height: 360px !important;

    padding-top: 120px !important;
    padding-bottom: 70px !important;
  }

  body .page-header h1,
  body .page-header .display-4 {
    font-size: 2.3rem !important;
  }
}
/* =================================
   PERFECT VISUAL HERO CENTERING
================================= */

body .page-header {
  min-height: 520px !important;

  display: flex !important;
  align-items: center !important;

  padding-top: 220px !important;
  padding-bottom: 120px !important;
}

body .page-header .container {
  display: flex !important;
  flex-direction: column !important;

  justify-content: center !important;
  align-items: center !important;

  text-align: center !important;

  margin-top: 40px !important;
}


/* ==========================================
   FINAL PRODUCT PAGES MOBILE SPACING 
=========== */

/* Mobile: reduce product page section gaps strongly */
@media only screen and (max-width: 575px) {

  /* Product page sections only */
  body:has(.product-detail-card) .container-xxl.py-5 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }

  body:has(.product-detail-card) .container-xxl.bg-light.py-5 {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }

  body:has(.product-detail-card) .container-xxl.pb-5 {
    padding-bottom: 28px !important;
  }


  /* Reduce large heading gaps */
  body:has(.product-detail-card) .text-center.mx-auto.mb-5 {
    margin-bottom: 24px !important;
  }

  body:has(.product-detail-card) .display-6 {
    margin-bottom: 14px !important;
  }

  /* Product detail card tighter */
  body:has(.product-detail-card) .product-detail-card {
    padding: 14px !important;
    border-radius: 16px !important;
  }

  body:has(.product-detail-card) .product-detail-card .row,
  body:has(.product-detail-card) .row.g-5 {
    --bs-gutter-y: 18px !important;
    --bs-gutter-x: 0 !important;
  }

  body:has(.product-detail-card) .product-detail-img img {
    height: 220px !important;
  }

  body:has(.product-detail-card) .product-detail-card h2 {
    margin-bottom: 12px !important;
  }

  body:has(.product-detail-card) .product-detail-card p {
    margin-bottom: 14px !important;
  }

  body:has(.product-detail-card) .product-meta {
    margin-bottom: 16px !important;
  }

  /* Benefits cards tighter */
  body:has(.product-detail-card) .product-info-box {
    padding: 18px !important;
  }

  body:has(.product-detail-card) .product-info-icon {
    margin-bottom: 12px !important;
  }

  body:has(.product-detail-card) .product-info-box h5 {
    margin-bottom: 8px !important;
  }

  body:has(.product-detail-card) .product-info-box p {
    margin-bottom: 0 !important;
  }

  /* Specification section tighter */
  body:has(.product-detail-card) .spec-table tr {
    padding: 14px 16px !important;
  }

  body:has(.product-detail-card) .spec-table th {
    margin-bottom: 5px !important;
  }

  body:has(.product-detail-card) .spec-table td {
    line-height: 1.65 !important;
  }

  /* CTA tighter */
  body:has(.product-detail-card) .product-note {
    padding: 32px 16px !important;
    border-radius: 16px !important;
  }

  body:has(.product-detail-card) .product-note h3 {
    margin-bottom: 10px !important;
  }

  body:has(.product-detail-card) .product-note p {
    margin-bottom: 18px !important;
  }
}

/* Fallback for browsers where :has may not apply */
@media only screen and (max-width: 575px) {

  .product-detail-card {
    padding: 14px !important;
  }

  .product-detail-card,
  .product-info-box,
  .product-note {
    margin-top: 0 !important;
  }

  .product-detail-card + *,
  .product-info-box + *,
  .spec-table + *,
  .product-note + * {
    margin-top: 0 !important;
  }

  .product-detail-card .row,
  .row:has(.product-info-box),
  .row:has(.product-detail-card) {
    --bs-gutter-y: 18px !important;
  }

  .product-detail-img img {
    height: 220px !important;
  }

  .product-info-box {
    padding: 18px !important;
  }

  .product-note {
    padding: 32px 16px !important;
  }
}

  /* Smaller Product Page Buttons */
@media (max-width: 575px) {

  .product-detail-card .btn,
  .product-note .btn,
  .product-note .btn-light {
    padding: 9px 20px !important;
    font-size: 14px !important;
    border-radius: 40px !important;
  }

  .product-detail-card .btn .btn-sm-square,
  .product-note .btn .btn-sm-square {
    width: 24px !important;
    height: 24px !important;
    font-size: 11px !important;
    margin-left: 8px !important;
  }

}
/* HERO: move whole carousel content + arrows down */
#header-carousel .carousel-item:first-child .carousel-caption ,
#header-carousel .carousel-control-prev,
#header-carousel .carousel-control-next {
  transform: translateY(35px);
}

/* Reduce heading by 0.5px */
#header-carousel .display-4 {
  font-size: calc(3.1rem) !important;
}

/* Mobile */
@media (max-width: 575px) {
  #header-carousel .carousel-caption,
  #header-carousel .carousel-control-prev,
  #header-carousel .carousel-control-next {
    transform: translateY(25px);
  }

  #header-carousel .display-4 {
    font-size: calc(2.5rem - 0.5px) !important;
  }
}

/* Tablet */
@media (min-width: 576px) and (max-width: 991px) {
  #header-carousel .carousel-caption,
  #header-carousel .carousel-control-prev,
  #header-carousel .carousel-control-next {
    transform: translateY(30px);
  }

  #header-carousel .display-4 {
    font-size: calc(2.5rem) !important;
  }
}

/* Second slide: move whole content down */
#header-carousel .carousel-item:nth-child(2) .carousel-caption {
  transform: translateY(25px);
}

/* Second slide: move only button slightly upward */
#header-carousel .carousel-item:nth-child(2) .carousel-caption .btn {
  transform: translateY(-20px) !important;
}

/* =================================
   CAREER PAGE
================================= */

.career-page-header {
  position: relative;
  background:
    linear-gradient(rgba(23, 37, 42, 0.82), rgba(23, 37, 42, 0.82)),
    url("../img/career-hero.jpg") center center no-repeat;
  background-size: cover;
  overflow: hidden;
}

.career-page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(43, 122, 120, 0.18), transparent 40%),
    radial-gradient(circle at bottom left, rgba(222, 242, 241, 0.08), transparent 35%);
  pointer-events: none;
}

.career-page-header .container {
  position: relative;
  z-index: 2;
}

.career-hero-text {
  max-width: 780px;
  font-size: 20px;
  line-height: 1.9;
  opacity: 0.9;
}

.career-page-header .breadcrumb {
  font-size: 17px;
  font-weight: 500;
}

.career-page-header .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.68) !important;
}

.career-page-header .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.55);
}

.career-img-box {
  border-radius: 24px;
  overflow: hidden;
  border-bottom: 5px solid var(--primary);
  box-shadow: 0 20px 55px rgba(23, 37, 42, 0.08);
}

.career-img-box img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  transition: 0.5s;
}

.career-img-box:hover img {
  transform: scale(1.04);
}

.career-feature-box {
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px;
  height: 100%;
  box-shadow: 0 12px 35px rgba(23, 37, 42, 0.06);
  border: 1px solid rgba(43, 122, 120, 0.1);
  transition: 0.4s;
}

.career-feature-box:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
}

.career-feature-icon {
  width: 58px;
  height: 58px;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 24px;
}

.career-feature-box p {
  margin-bottom: 0;
  line-height: 1.8;
}

.career-form-info {
background-image: url("../img/apply.jpg");
  background-size: cover;
  border-radius: 24px;
  padding: 45px 36px;
  color: #fff;
  position: relative;
  overflow: hidden;
}



.career-form-info > * {
  position: relative;
  z-index: 2;
}

.career-form-info p {
  color: rgba(255,255,255,0.82);
  line-height: 1.9;
}

.career-contact-point {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  color: rgba(255,255,255,0.9);
}

.career-contact-point i {
  width: 42px;
  height: 42px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.career-form {
  background: #fff;
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 20px 55px rgba(23, 37, 42, 0.08);
  border: 1px solid rgba(43, 122, 120, 0.12);
}

.career-form .form-control {
  border-radius: 12px;
  border: 1px solid rgba(23, 37, 42, 0.12);
}

.career-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.18rem rgba(43, 122, 120, 0.15);
}

.career-file-label {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.career-file-input {
  padding: 14px;
}

/* Mobile */
@media (max-width: 575px) {
  .career-page-header {
    padding-top: 120px !important;
    padding-bottom: 70px !important;
    min-height: 360px !important;
  }

  .career-page-header h1 {
    font-size: 2.3rem !important;
  }

  .career-hero-text {
    font-size: 15.5px;
    line-height: 1.75;
  }

  .career-page-header .breadcrumb {
    font-size: 14px;
  }

  .career-img-box img {
    height: 250px;
  }

  .career-feature-box {
    padding: 22px;
    text-align: center;
  }

  .career-feature-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .career-form-info,
  .career-form {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .career-contact-point {
    align-items: flex-start;
  }

  .career-form button {
    width: 100%;
    justify-content: center;
  }
}

/* Tablet */
@media (min-width: 576px) and (max-width: 991px) {
  .career-img-box img {
    height: 340px;
  }

  .career-form-info,
  .career-form {
    padding: 32px 26px;
  }
}
.career-form-info {
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(145deg, rgba(23, 37, 42, 0.98), rgba(31, 63, 66, 0.96)),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.035) 0px,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px,
      transparent 12px
    );

  border-radius: 28px;
  padding: 48px 38px;
  color: #ffffff;

  border: 1px solid rgba(222, 242, 241, 0.16);
  box-shadow:
    0 28px 70px rgba(23, 37, 42, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.career-form-info::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -90px;
  top: -90px;

  background: radial-gradient(circle, rgba(43, 122, 120, 0.55), transparent 68%);
  filter: blur(4px);
}

.career-form-info::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  left: -70px;
  bottom: -70px;

  border-radius: 50%;
  background: radial-gradient(circle, rgba(222, 242, 241, 0.14), transparent 65%);
}

.career-form-info > * {
  position: relative;
  z-index: 2;
}

.career-form-info h1,
.career-form-info h2,
.career-form-info h3 {
  color: #ffffff;
}

.career-form-info p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.9;
}

.career-form-info .rounded-pill {
  background: rgba(222, 242, 241, 0.13) !important;
  color: #DEF2F1 !important;
  border: 1px solid rgba(222, 242, 241, 0.18);
}

.career-contact-point {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.9);
}

.career-contact-point i {
  width: 44px;
  height: 44px;

  background: rgba(222, 242, 241, 0.12);
  color: #DEF2F1;

  border: 1px solid rgba(222, 242, 241, 0.22);
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
  /* ==============================
   FINAL FOOTER CSS
============================== */

.footer-custom {
  margin-top: 0 !important;
}

.footer-custom .container.py-5 {
  padding: 60px 24px 45px !important;
}

/* Equal desktop columns */
.footer-custom .row.g-5 {
  display: grid !important;
  grid-template-columns: 1.15fr 1.35fr 1fr 1fr !important;
  gap: 42px !important;
  align-items: flex-start !important;
}

/* Remove Bootstrap column behavior */
.footer-custom .row.g-5 > [class*="col-"] {
  width: auto !important;
  max-width: none !important;
  flex: unset !important;
  padding: 0 !important;
}

/* Headings */
.footer-custom h5 {
  font-size: 20px !important;
  font-weight: 700 !important;
  margin-bottom: 20px !important;
  color: #ffffff !important;
}

/* Same font size except headings */
.footer-custom p,
.footer-custom a,
.footer-custom .btn.btn-link,
.footer-custom .copyright {
  font-size: 16px !important;
  line-height: 1.75 !important;
}

/* Paragraph */
.footer-custom p {
  margin-bottom: 12px !important;
}



/* Footer links */
.footer-custom .btn.btn-link {
  display: flex !important;
  align-items: flex-start !important;
  width: fit-content !important;
  max-width: 100% !important;
  margin-bottom: 10px !important;
  padding: 0 !important;
  text-align: left !important;
  white-space: normal !important;
}

.footer-custom .btn.btn-link::before {
  margin-right: 9px !important;
  margin-top: 2px !important;
  flex: 0 0 auto !important;
}

/* Social icons */
.footer-custom .d-flex.pt-2 {
  display: flex !important;
  gap: 9px !important;
  flex-wrap: wrap !important;
  margin-top: 20px !important;
  padding-top: 0 !important;
}

.footer-custom .btn.btn-square {
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Copyright */
.footer-custom .copyright {
  padding: 22px 0 !important;
}

.footer-custom .copyright .row {
  align-items: center !important;
}

.footer-custom .copyright .col-md-6 {
  width: 100% !important;
  text-align: center !important;
}

/* Tablet */
@media (max-width: 991px) {
  .footer-custom .container.py-5 {
    padding: 48px 24px 38px !important;
  }

  .footer-custom .row.g-5 {
    grid-template-columns: 1fr 1fr !important;
    gap: 38px 45px !important;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .footer-custom .container.py-5 {
    padding: 40px 22px 32px !important;
  }

  .footer-custom .row.g-5 {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .footer-custom {
    text-align: center !important;
  }

  .footer-custom h5 {
    font-size: 19px !important;
    margin-bottom: 14px !important;
  }

  .footer-custom p,
  .footer-custom a,
  .footer-custom .btn.btn-link,
  .footer-custom .copyright {
    font-size: 15.5px !important;
  }

  .footer-custom .btn.btn-link {
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .footer-custom .d-flex.pt-2 {
    justify-content: center !important;
  }
}

.footer-contact-item{
  display: flex;
  justify-content: start;
  align-items: top;
  gap:15px
}
.footer-contact-item i{
  line-height: 30px;
}














.facility-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
}

.facility-carousel .owl-nav {
    text-align: center;
    margin-top: 30px;
}

.facility-carousel .owl-nav button.owl-prev,
.facility-carousel .owl-nav button.owl-next {
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    background: #198754 !important;
    color: #fff !important;
    margin: 0 6px;
    font-size: 22px !important;
    transition: 0.3s;
}

.facility-carousel .owl-nav button.owl-prev:hover,
.facility-carousel .owl-nav button.owl-next:hover {
    background: #146c43 !important;
}