
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");


:root {
  --font-primary: "DM Sans", sans-serif;
  --primary-green: #008c5f;
  --primary-red: #e11d2e;
  --primary-black: #111111;
  --primary-white: #ffffff;
  --dark-green: #006b49;
  --light-green: #00a572;
  --light-red: #ff4d5a;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --bg-dark: #0f0f0f;
  --text-dark: #111111;
  --text-light: #666666;
  --text-white: #ffffff;
  --border-color: #e5e5e5;
  --green-gradient: linear-gradient(135deg, #008c5f 0%, #00a572 100%);
  --red-gradient: linear-gradient(135deg, #e11d2e 0%, #ff4d5a 100%);
  --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.12);
  --radius-sm: 8px;
  --radius-md: 15px;
  --transition: all 0.4s ease;
  --container-width: 1320px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  background: var(--bg-white);
  color: var(--text-dark);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.container {
  max-width: var(--container-width);
  width: 100%;
  margin: auto;
  padding: 0 15px;
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.fadeIn {
  animation-name: fadeIn;
}

.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.hero-banner-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--primary-black);
}

.hero-slide {
  height: 630px;
  position: relative;
  overflow: hidden;
  background: var(--primary-black);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transform: scale(1.16) rotate(1deg);
  filter: blur(5px);
}

.hero-slider .owl-item.active .hero-slide img {
  animation: heroImageReveal 5s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@keyframes heroImageReveal {
  0% {
    opacity: 0;
    transform: scale(1.16) rotate(1deg);
    filter: blur(5px);
  }

  20% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: scale(1.03) rotate(0deg);
    filter: blur(0);
  }
}

.hero-slider .owl-item.active .hero-slide {
  animation: heroSlideDepth 1.1s ease forwards;
}

@keyframes heroSlideDepth {
  0% {
    transform: translateX(45px) scale(1.03);
  }

  100% {
    transform: translateX(0) scale(1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.28),
    rgba(0, 0, 0, 0.04),
    rgba(0, 0, 0, 0.15)
  );
  z-index: 2;
  pointer-events: none;
}

.hero-light {
  position: absolute;
  top: 0;
  left: -130%;
  width: 42%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.22),
    rgba(255, 255, 255, 0)
  );
  transform: skewX(-24deg);
  z-index: 3;
  pointer-events: none;
}

.hero-slider .owl-item.active .hero-light {
  animation: heroLightSweep 2.6s ease forwards;
}

@keyframes heroLightSweep {
  0% {
    left: -130%;
  }

  100% {
    left: 150%;
  }
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary-black);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.hero-prev {
  left: 25px;
}

.hero-next {
  right: 25px;
}

.hero-arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--green-gradient);
  transform: scale(0);
  transition: var(--transition);
  z-index: -1;
}

.hero-arrow:hover::before {
  transform: scale(1);
}

.hero-arrow:hover {
  color: var(--primary-white);
  transform: translateY(-50%) scale(1.12) rotate(6deg);
}

.hero-slider .owl-dots {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 10;
}

.hero-slider .owl-dot span {
  width: 12px !important;
  height: 12px !important;
  background: rgba(255, 255, 255, 0.75) !important;
  transition: var(--transition);
}

.hero-slider .owl-dot.active span,
.hero-slider .owl-dot:hover span {
  width: 34px !important;
  background: var(--primary-red) !important;
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.fadeIn {
  animation-name: fadeIn;
}

.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
.about-section {
  position: relative;
  background:
    radial-gradient(
      circle at top left,
      rgba(0, 140, 95, 0.08),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(225, 29, 46, 0.07),
      transparent 32%
    ),
    var(--bg-white);
  overflow: hidden;
}

.section-padding {
  padding: 40px 0;
}

.section-title {
  margin-bottom: 65px;
}

.sub-title {
  display: inline-block;
  padding: 10px 22px;
  background: rgba(0, 140, 95, 0.08);
  color: var(--primary-green);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.section-title .two {
  font-size: 46px;
  line-height: 1.1;
  font-weight: 900;
  color: var(--primary-red);
  margin-bottom: 20px;
}

.title-line {
  width: 130px;
  height: 5px;
  background: var(--primary-red);
  margin: auto;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
}

.title-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 40%;
  height: 100%;
  background: var(--primary-green);
  animation: lineMove 2s linear infinite;
}

@keyframes lineMove {
  100% {
    left: 120%;
  }
}

.about-wrapper {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 70px;
}

.about-image {
  position: relative;
}

.about-img-main {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 140, 95, 0.18),
    rgba(225, 29, 46, 0.12)
  );
  z-index: 1;
}

.about-img-main img {
  width: 100%;
  height: 520px;
  object-fit: contain;
  display: block;
  transition: 0.8s ease;
}

.about-image:hover .about-img-main img {
  transform: scale(1.08);
}

.experience-box {
  position: absolute;
  right: -25px;
  bottom: 35px;
  min-width: 185px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.5);
  animation: floatAbout 3s ease-in-out infinite;
}

@keyframes floatAbout {
  50% {
    transform: translateY(-10px);
  }
}

.experience-box .three {
  font-size: 50px;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--primary-red);
  font-weight: 900;
}

.experience-box span {
  font-size: 15px;
  color: var(--primary-black);
  font-weight: 700;
}

.about-content {
  position: relative;
}

.about-content h3 {
  font-size: 40px;
  line-height: 1.18;
  color: var(--primary-black);
  font-weight: 900;
  margin-bottom: 22px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 16px;
}

.about-feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 28px 0 34px;
}

.about-feature-list div {
  background: var(--primary-white);
  padding: 14px 16px;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-black);
  transition: var(--transition);
}

.about-feature-list div i {
  color: var(--primary-green);
  margin-right: 8px;
}

.about-feature-list div:hover {
  background: var(--primary-green);
  color: var(--primary-white);
  transform: translateY(-5px);
}

.about-feature-list div:hover i {
  color: var(--primary-white);
}

.about-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 52px;
  border-radius: 50px;
  background: var(--primary-black);
  color: var(--primary-white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  overflow: hidden;
  z-index: 1;
}

.about-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 0;
  background: var(--green-gradient);
  transition: 0.5s ease;
  z-index: -1;
}

.about-btn:hover::before {
  width: 100%;
}

.about-btn:hover {
  color: var(--primary-white);
  transform: translateY(-3px);
}

.about-section .about-brand {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 80px;
}

.about-section .about-brand .brand-card:nth-child(3) {
  grid-column: span 1;
}

.brand-excellence-section {
  padding: 60px 0;
  background:
    radial-gradient(
      circle at top left,
      rgba(0, 140, 95, 0.08),
      transparent 32%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(225, 29, 46, 0.08),
      transparent 30%
    ),
    var(--bg-white);
  overflow: hidden;
}

.brand-excellence-wrapper {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.brand-tag {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 50px;
  background: rgba(0, 140, 95, 0.1);
  color: var(--primary-green);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.brand-excellence-left h3 {
  font-size: 44px;
  line-height: 1.08;
  font-weight: 900;
  color: var(--primary-red);
  margin-bottom: 24px;
}
.brand-excellence-left .tree {
  font-size: 44px;
  line-height: 1.08;
  font-weight: 900;
  color: var(--primary-red);
  margin-bottom: 24px;
}
.title-line-brand {
  margin: 0;
}

.brand-excellence-left p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 30px;
  margin-top: 10px;
}

.brand-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.brand-points div {
  background: var(--primary-white);
  padding: 22px 15px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.brand-points div:hover {
  background: var(--primary-green);
  transform: translateY(-8px);
}

.brand-points i {
  font-size: 28px;
  color: var(--primary-red);
  margin-bottom: 10px;
  transition: var(--transition);
}

.brand-points span {
  display: block;
  font-weight: 900;
  color: var(--primary-black);
  transition: var(--transition);
}

.brand-points div:hover i,
.brand-points div:hover span {
  color: var(--primary-white);
}

.brand-excellence-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.brand-card {
  position: relative;
  padding: 20px;
  border-radius: 28px;
  background: var(--primary-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  overflow: hidden;
}

.brand-card:nth-child(3) {
  grid-column: span 2;
}

.brand-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--green-gradient);
  opacity: 0;
  transition: var(--transition);
}

.brand-card:hover::before {
  opacity: 1;
}

.brand-card > * {
  position: relative;
  z-index: 2;
}

.brand-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: rgba(0, 140, 95, 0.08);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 22px;
  transition: var(--transition);
}

.brand-card .three {
  font-size: 24px;
  font-weight: 900;
  color: var(--primary-black);
  margin-bottom: 14px;
  transition: var(--transition);
}

.brand-card p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-light);
  text-align: justify;
  margin: 0;
  transition: var(--transition);
}

.brand-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.brand-card:hover .brand-icon {
  background: rgba(255, 255, 255, 0.18);
  color: var(--primary-white);
  transform: rotateY(180deg);
}

.brand-card:hover h3,
.brand-card:hover p {
  color: var(--primary-white);
}

/* =========================
   OUR PRODUCT SECTION
========================= */
.our-product-section {
  position: relative;
  padding: 70px 0;
  background: url("../assets/product-bg.jpeg") center/cover no-repeat;
  overflow: hidden;
}

.our-product-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.88);
  z-index: 0;
}

.our-product-section .container {
  position: relative;
  z-index: 2;
}
.product-carousel {
  position: relative;
}

.product-carousel .owl-stage {
  display: flex;
}

.product-carousel .owl-item {
  display: flex;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.product-card {
  position: relative;
  background: var(--primary-white);
  border-radius: 22px;
  padding: 15px;
  overflow: hidden;
  transition: 0.5s ease;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
}

.product-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--primary-red);
  color: var(--primary-white);
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  z-index: 2;
}

.product-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  overflow: hidden;
}

.product-img img {
  max-height: 200px;
  transition: 0.6s ease;
  filter: drop-shadow(0 15px 18px rgba(0, 0, 0, 0.18));
  object-fit: contain;
}

.product-card:hover .product-img img {
  transform: scale(1.05) translateY(-6px) rotate(-2deg);
}

.product-content .three {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.product-content h4 {
  font-size: 20px;
  color: #6d6e71;
  font-weight: 800;
  margin-bottom: 15px;
}

.product-content p {
  font-size: 15px;
  line-height: 1.4;
  color: var(--text-light);
  margin-bottom: 14px;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;

  overflow: hidden;
  text-overflow: ellipsis;
}

.product-note {
  background: #ececec;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.5;
  color: #6d6e71;
  border-left: 4px solid var(--primary-green);
  margin-bottom: 18px;
  border-radius: 6px;
}

.pack-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}

.product-btns {
  display: flex;
  align-items: center;
  gap: 10px;
}

.details-btn {
  flex: 1;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2f2f2;
  border-radius: 12px;
  color: var(--primary-black);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
}

.details-btn:hover {
  background: var(--primary-green);
  color: var(--primary-white);
}

.quote-btn-product {
  flex: 1.2;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
  color: var(--primary-white);
  border-radius: 12px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.quote-btn-product::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 0;
  background: var(--green-gradient);
  transition: 0.5s ease;
  z-index: -1;
}

.quote-btn-product:hover::before {
  width: 100%;
}
.product-carousel-wrap {
  position: relative;
}

.product-arrow {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: var(--primary-white);
  color: var(--primary-black);
  box-shadow: var(--shadow-md);
  z-index: 5;
  transition: var(--transition);
}

.product-arrow:hover {
  background: var(--primary-green);
  color: var(--primary-white);
}

.product-prev {
  left: -24px;
}

.product-next {
  right: -24px;
}

.product-detail-banner {
  position: relative;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.product-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.78),
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.25)
  );
}



.section-title h2{
      font-size: 36px;
    color: #00563f;
    font-weight: 800;
    margin-bottom: 15px;
}
.section-title .two{
      font-size: 36px;
    color: #00563f;
    font-weight: 800;
    margin-bottom: 15px;
}

.product-detail-banner .container {
  position: relative;
  z-index: 2;
}

.product-banner-content span {
  display: inline-block;
  color: var(--primary-green);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.product-banner-content h1 {
  font-size: 62px;
  line-height: 1;
  color: var(--primary-white);
  font-weight: 900;
  text-transform: uppercase;
  margin: 0;
  position: relative;
}

.product-banner-content h1::after {
  content: "";
  width: 90px;
  height: 5px;
  background: var(--primary-red);
  display: block;
  margin-top: 18px;
  border-radius: 50px;
}

.product-detail-page {
  padding: 60px 0;
  background: rgb(243, 243, 243);
  overflow: hidden;
}

.product-detail-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
  overflow: hidden;
}

.product-detail-left,
.product-detail-right {
  position: relative;
  z-index: 2;
}

.product-image-box {
  position: relative;
  min-height: 520px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(0, 140, 95, 0.08), rgba(225, 29, 46, 0.05)),
    var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image-box::before {
  content: "";
  position: absolute;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  background: var(--primary-white);
  box-shadow: inset 0 0 0 25px rgba(0, 140, 95, 0.06);
}

.product-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--primary-red);
  color: var(--primary-white);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  z-index: 2;
}

.product-image-box img {
  position: relative;
  z-index: 2;
  max-height: 430px;
  width: auto;
  filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.18));
  transition: 0.7s ease;
}

.product-detail-card:hover .product-image-box img {
  transform: translateY(-14px) scale(1.06);
}

.pd-category {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(0, 140, 95, 0.1);
  color: var(--primary-green);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 18px;
}

.product-detail-left .one {
  font-size: 46px;
  line-height: 1.05;
  font-weight: 900;
  color: var(--primary-black);
  margin-bottom: 20px;
}

.product-detail-left .one::after {
  content: "";
  width: 110px;
  height: 5px;
  display: block;
  background: var(--primary-red);
  border-radius: 50px;
  margin-top: 10px;
}

.product-detail-left p {
  max-width: 700px;
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-light);
  margin-bottom: 24px;
}

.pd-feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.pd-feature-list div {
  background: var(--bg-light);
  color: var(--text-light);
  padding: 10px 15px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}

.pd-feature-list div i {
  color: var(--primary-green);
  margin-right: 6px;
}

.pd-feature-list div:hover {
  background: var(--primary-green);
  color: var(--primary-white);
  transform: translateY(-4px);
}

.pd-feature-list div:hover i {
  color: var(--primary-white);
}

.pd-pack-box .four {
  font-size: 20px;
  color: var(--primary-black);
  font-weight: 900;
  margin-bottom: 12px;
}

.extra-info-grid .three{
  font-size: 26px;
  font-weight: 900;
    color: var(--primary-black);
}

.extra-info-grid .four {
    font-size: 22px ;
    font-weight: 900;
    color: var(--primary-green);
}
.pd-pack-list {
  display: flex;
  gap: 9px;
}

.pd-pack-list span {
  min-width: 82px;
  text-align: center;
  padding: 10px 4px;
  background: var(--bg-light);
  border: 1px solid var(--bg-dark);
  color: var(--text-black);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.pd-pack-list span.packActive {
  background: var(--primary-black);
  color: var(--primary-white);
  border: 1px solid transparent;
}
.pd-pack-list span:hover {
  transform: translateY(-3px);
  background: var(--primary-black);
  color: var(--primary-white);
  border: 1px solid transparent;
}

.pd-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.pd-by-btn {
  background: var(--primary-green);
  color: var(--text-white);
  transition: var(--transition);
}
.pd-by-btn:hover {
  background: var(--dark-green);
}

.pd-by-btn,
.pd-quote-btn,
.pd-whatsapp-btn {
  min-width: 165px;
  height: 50px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
}

.pd-quote-btn {
  position: relative;
  overflow: hidden;
  background: var(--primary-black);
  color: var(--primary-white);
  z-index: 1;
}

.pd-quote-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 0;
  background: var(--green-gradient);
  transition: 0.5s ease;
  z-index: -1;
}

.pd-quote-btn:hover::before {
  width: 100%;
}

.pd-whatsapp-btn {
  background: #25d366;
  color: var(--primary-white);
}

.pd-whatsapp-btn:hover {
  color: var(--primary-white);
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(37, 211, 102, 0.35);
}

.extra-info-grid {
  margin-top: 20px;
}

.extra-info-card {
  position: relative;
  overflow: hidden;
  transition: 0.5s ease;
  margin-bottom: 10px;
}

.extra-info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 140, 95, 0.03),
    rgba(225, 29, 46, 0.03)
  );
  opacity: 0;
  transition: 0.5s ease;
}

.extra-info-card:hover {
  transform: translateY(-10px);
}

.extra-info-title {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.extra-info-title i {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--green-gradient);
  color: var(--primary-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.extra-info-title h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 900;
  color: var(--primary-black);
}

.extra-info-card p {
  position: relative;
  z-index: 2;
  font-size: 15px;
  line-height: 1.95;
  color: var(--text-light);
}

.spec-list {
  position: relative;
  z-index: 2;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

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

.spec-item span {
  font-size: 15px;
  color: var(--text-light);
}

.spec-item strong {
  font-size: 15px;
  color: var(--primary-black);
}

.review-box {
  position: relative;
  z-index: 2;
}

.review-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.review-top h4 {
  margin: 0;
  font-size: 48px;
  font-weight: 900;
  color: var(--primary-green);
}

.review-stars {
  color: #ffb400;
  font-size: 18px;
}

.review-box span {
  display: inline-block;
  margin-top: 15px;
  color: var(--primary-red);
  font-size: 14px;
  font-weight: 700;
}

.related-product-section {
  position: relative;
  padding: 70px 0;
  background: url("../assets/product-bg.jpeg") center/cover no-repeat;
  overflow: hidden;
}
.related-product-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.88);
  z-index: 0;
}

.related-product-section .container {
  position: relative;
  z-index: 2;
}

.related-carousel-wrap {
  position: relative;
}

.related-product-carousel .owl-stage {
  display: flex;
}

.related-product-carousel .owl-item {
  display: flex;
}

.related-product-carousel .product-card {
  width: 100%;
  height: 100%;
}

.related-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: var(--primary-white);
  color: var(--primary-black);
  box-shadow: var(--shadow-md);
  z-index: 5;
  transition: var(--transition);
}

.related-arrow:hover {
  background: var(--primary-green);
  color: var(--primary-white);
}

.related-prev {
  left: -23px;
}

.related-next {
  right: -23px;
}

/* why choose us section styling */
.why-premium-section {
  position: relative;
  padding: 60px 0;
  background:
    radial-gradient(
      circle at top left,
      rgba(0, 140, 95, 0.08),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(225, 29, 46, 0.07),
      transparent 30%
    ),
    var(--bg-white);
  overflow: hidden;
}

.why-premium-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 26px;
}

.why-main-card,
.why-card {
  position: relative;
  border-radius: 28px;
  background: var(--primary-white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: 0.5s ease;
}

.why-main-card {
  grid-row: span 2;
  padding: 30px;
  background: linear-gradient(
    135deg,
    rgba(0, 140, 95, 0.92),
    rgba(0, 107, 73, 0.96)
  );
  color: var(--primary-white);
}

.why-main-card::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -100px;
  bottom: -100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.why-label {
  display: inline-block;
  background: var(--primary-white);
  color: var(--primary-green);
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 25px;
}

.why-main-card .three {
  font-size: 36px;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 14px;
}

.why-main-card p {
  font-size: 16px;
  line-height: 1.9;
  opacity: 0.92;
}

.why-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 35px;
}

.why-stats div {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 16px;
  backdrop-filter: blur(8px);
}

.why-stats strong {
  display: block;
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
}

.why-stats span {
  font-size: 14px;
  opacity: 0.9;
}

.why-card {
  padding: 25px;
}

.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--green-gradient);
  opacity: 0;
  transition: 0.5s ease;
}

.why-card:hover::before {
  opacity: 1;
}

.why-card > * {
  position: relative;
  z-index: 2;
}

.why-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: rgba(0, 140, 95, 0.08);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
  transition: var(--transition);
}

.why-card .four {
  font-size: 23px;
  font-weight: 900;
  color: var(--primary-black);
  margin-bottom: 14px;
  transition: var(--transition);
}

.why-card p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-light);
  margin: 0;
  transition: var(--transition);
}

.why-main-card:hover,
.why-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.why-card:hover .why-icon {
  background: rgba(255, 255, 255, 0.18);
  color: var(--primary-white);
  transform: rotateY(180deg);
}

.why-card:hover h4,
.why-card:hover p {
  color: var(--primary-white);
}

.why-values-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 28px;
}

.why-value-box {
  background: var(--primary-white);
  padding: 26px;
  border-radius: 22px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.why-value-box:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  background: var(--primary-black);
}

.why-value-box .four {
  font-size: 22px;
  font-weight: 900;
  color: var(--primary-green);
  margin-bottom: 10px;
  transition: var(--transition);
}

.why-value-box p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-light);
  margin: 0;
  transition: var(--transition);
}

.why-value-box:hover h4 {
  color: var(--primary-white);
}

.why-value-box:hover p {
  color: var(--primary-white);
}

/* =========================
   MEDIA SHOWCASE SECTION
========================= */

.lubrion-media-section {
  position: relative;
  background: #f6f6f6;
  overflow: hidden;
}

.media-top-desc {
  max-width: 760px;
  margin: 18px auto 0;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
}

.media-showcase-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: stretch;
}

.media-video-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  height: 750px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

.media-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1s ease;
}

.media-video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.15));
  z-index: 1;
}

.media-video-card:hover video {
  transform: scale(1.08);
}

.media-overlay {
  position: absolute;
  left: 40px;
  bottom: 40px;
  z-index: 2;
  color: #fff;
}

.media-overlay span {
  display: inline-block;
  background: var(--primary-red);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

.media-overlay .three {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
}

.media-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.media-img-card {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  height: 360px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.media-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.9s ease;
}

.media-img-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.1));
  opacity: 0.9;
  z-index: 1;
}

.media-img-card:hover img {
  transform: scale(1.12) rotate(2deg);
}

.media-content {
  position: absolute;
  left: 25px;
  bottom: 25px;
  z-index: 2;
  color: #fff;
  transform: translateY(20px);
  opacity: 0;
  transition: 0.5s ease;
}

.media-img-card:hover .media-content {
  transform: translateY(0);
  opacity: 1;
}

.media-content .four {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.media-content p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.full-width {
  grid-column: span 2;
  min-height: 300px;
}

.lub-faq-section {
  padding: 100px 0;
  background: var(--bg-white);
  overflow: hidden;
}

.lub-faq-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: center;
}

.lub-faq-image {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.lub-faq-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 140, 95, 0.18),
    rgba(225, 29, 46, 0.14)
  );
  z-index: 1;
}

.lub-faq-image img {
  width: 100%;
  height: 560px;
  object-fit: contain;
  transition: 0.7s ease;
}

.lub-faq-image:hover img {
  transform: scale(1.08);
}
.title-line-2 {
  margin: 0;
}

.lub-faq-content h2 {
  font-size: 40px !important;
  margin-bottom: 14px !important;
}
.section-title-faq {
  margin-bottom: 30px !important;
}

.lub-faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lub-faq-item {
  background: var(--primary-white);
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}

.lub-faq-item:hover,
.lub-faq-item.active {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.lub-faq-question {
  width: 100%;
  border: none;
  background: transparent;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-black);
  cursor: pointer;
  text-align: left;
}

.lub-faq-icon {
  min-width: 34px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-dark);
  position: relative;
  transition: var(--transition);
}

.lub-faq-icon::before,
.lub-faq-icon::after {
  content: "";
  position: absolute;
  background: var(--primary-white);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 2px;
}

.lub-faq-icon::before {
  width: 14px;
  height: 2px;
}

.lub-faq-icon::after {
  width: 2px;
  height: 14px;
  transition: var(--transition);
}

.lub-faq-item.active .lub-faq-icon {
  background: var(--primary-red);
  transform: rotate(180deg);
}

.lub-faq-item.active .lub-faq-icon::after {
  opacity: 0;
}

.lub-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}

.lub-faq-answer p {
  padding: 0 24px 22px;
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-light);
}

.lub-faq-item.active .lub-faq-answer {
  max-height: 180px;
}

/* contact section styling */
.contact-section {
  position: relative;
  padding: 60px 0;
  background: url("../assets/contact-bg.png") center/cover no-repeat;
  overflow: hidden;
}

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

.contact-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.contact-subtitle {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--primary-white);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 20px;
}

.contact-info .two {
  font-size: 56px;
  line-height: 1.1;
  color: var(--primary-white);
  font-weight: 900;
  margin-bottom: 22px;
}

.contact-info p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 28px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-info-list div {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-info-list i {
  min-width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary-green);
  color: var(--primary-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-list a,
.contact-info-list p {
  color: var(--primary-white);
  text-decoration: none;
  margin: 0;
  font-size: 18px;
}

.contact-form-box {
  padding: 20px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.contact-form-box .three {
  font-size: 30px;
  font-weight: 800;
  color: var(--primary-black);
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.78);
  border-radius: 14px;
  padding: 12px 18px;
  font-size: 15px;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 4px rgba(0, 140, 95, 0.12);
}

.contact-submit-btn {
  width: 100%;
  height: 54px;
  border: none;
  border-radius: 14px;
  background: var(--primary-black);
  color: var(--primary-white);
  font-size: 16px;
  font-weight: 900;
  transition: var(--transition);
}

.contact-submit-btn:hover {
  background: var(--primary-green);
  transform: translateY(-3px);
}

/* Contact Section */
.lub-contact-section {
  padding: 60px 0;
  background: #f5f7fb;
  position: relative;
  overflow: hidden;
}

.contact-heading {
  margin-bottom: 45px;
}

.contact-heading h2 {
  font-size: 40px;
  font-weight: 900;
  color: var(--primary-red);
  margin-bottom: 10px;
}

.contact-heading p {
  font-size: 17px;
  color: var(--text-light);
  margin-top: 10px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
}

.contact-form-box {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
  border-radius: 30px;
  padding: 30px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.contact-form-box::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  background: rgba(255, 0, 0, 0.05);
  border-radius: 50%;
  top: -120px;
  right: -100px;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-red);
  color: var(--primary-white);
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  box-shadow: 0 12px 25px rgba(255, 0, 0, 0.2);
}

.contact-form-box .three {
  font-size: 30px;
  font-weight: 900;
  color: var(--primary-black);
  margin-bottom: 10px;
}

.contact-form-box p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 25px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 6px !important;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid #d9dee7;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  padding: 14px 18px;
  font-size: 15px;
  outline: none;
  transition: 0.4s ease;
}

.form-group textarea {
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-red);
  box-shadow: 0 0 0 4px rgba(255, 0, 0, 0.08);
}

.contact-btn {
  width: 100%;
  height: 60px;
  border: none;
  border-radius: 60px;
  background: var(--primary-red);
  color: var(--primary-white);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.45s ease;
  margin-top: 0px;
}

.contact-btn i {
  margin-left: 8px;
}

.contact-btn:hover {
  background: var(--primary-black);
  transform: translateY(-5px);
}

.contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card,
.contact-social-card {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
  border-radius: 28px;
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
  transition: 0.45s ease;
}

.contact-info-card:hover,
.contact-social-card:hover {
  transform: translateY(-8px);
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}

.info-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(255, 0, 0, 0.1);
  color: var(--primary-red);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-content .four,
.contact-social-card .four {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-black);
  margin-bottom: 12px;
}

.info-content p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-light);
  margin: 0;
}

.info-content a {
  display: block;
  color: var(--primary-black);
  text-decoration: none;
  margin-bottom: 10px;
  transition: 0.3s ease;
  font-size: 16px;
}

.info-content a:hover {
  color: var(--primary-red);
}

.contact-social-card {
  text-align: center;
}

.contact-social-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 25px;
}

.contact-social-links a {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #eef2f7;
  color: var(--primary-black);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.4s ease;
}

.contact-social-links a:hover {
  background: var(--primary-red);
  color: var(--primary-white);
  transform: translateY(-6px) rotate(360deg);
}

/* =========================
   WHY LUBRION SECTION
========================= */

.lubrion-strength-section {
  position: relative;
  padding: 60px 0;
  background: #f8f8f8;
  overflow: hidden;
}

.lubrion-strength-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.lubrion-subtitle {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 50px;
  background: rgba(220, 0, 0, 0.08);
  color: var(--primary-red);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
}

.lubrion-strength-content .two {
  font-size: 40px;
  line-height: 1.15;
  font-weight: 800;
  color: var(--primary-red);
  margin-bottom: 15px;
}

.lubrion-strength-content p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 30px;
  margin-top: 16px;
}

.lubrion-strength-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lubrion-strength-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
  transition: 0.4s ease;
}

.lubrion-strength-item:hover {
  transform: translateY(-8px);
}

.strength-icon {
  min-width: 60px;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary-red), #ff4343);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: 0.5s ease;
}

.lubrion-strength-item:hover .strength-icon {
  transform: rotateY(180deg);
}

.lubrion-strength-item .four {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary-black);
}

.lubrion-strength-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
}

.lubrion-strength-image {
  position: relative;
  text-align: center;
}

.strength-image-box {
  position: relative;
  border-radius: 40px;
  padding: 60px;
  background: linear-gradient(135deg, #f2f2f2, #ffffff);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.strength-image-box::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(220, 0, 0, 0.08);
  border-radius: 50%;
  top: -100px;
  right: -100px;
}

.strength-image-box img {
  max-width: 100%;
  max-height: 520px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  transition: 0.8s ease;
  filter: drop-shadow(0 18px 25px rgba(0, 0, 0, 0.18));
}

.lubrion-strength-image:hover img {
  transform: translateY(-15px) scale(1.05);
}

/* FLOATING CARDS */
.floating-card {
  position: absolute;
  background: #fff;
  border-radius: 20px;
  padding: 20px 28px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  animation: floatMove 3s ease-in-out infinite;
}

.floating-card .four {
  font-size: 34px;
  font-weight: 900;
  color: var(--primary-red);
  margin-bottom: 4px;
}

.floating-card span {
  font-size: 15px;
  color: var(--text-light);
  font-weight: 600;
}

.card-one {
  left: -20px;
  top: 70px;
}

.card-two {
  right: -10px;
  bottom: 80px;
}

@keyframes floatMove {
  50% {
    transform: translateY(-10px);
  }
}

/* BLOG SECTION */
.lubrion-blog-section {
  position: relative;
  background: #f8f9fc;
  overflow: hidden;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog-card {
  position: relative;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  transition: 0.5s ease;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.blog-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.blog-image {
  position: relative;
  height: 250px;
  background: linear-gradient(135deg, #f3f3f3, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.blog-image img {
  width: 50%;
  transition: 0.6s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.08) rotate(-2deg);
}

.blog-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--primary-red);
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.blog-content {
  padding: 20px;
}

.blog-content a {
  text-decoration: none;
}

.blog-meta {
  margin-bottom: 14px;
}

.blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #777;
  font-weight: 600;
}

.blog-meta i {
  color: var(--primary-red);
}

.blog-content .three {
  font-size: 20px;
  line-height: 1.35;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--primary-black);
  transition: 0.4s ease;
}

.blog-card:hover .blog-content .three {
  color: var(--primary-red);
}

.blog-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 24px;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Button */
.blog-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-red);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.4s ease;
}

.blog-btn i {
  transition: 0.4s ease;
}

.blog-btn:hover {
  gap: 14px;
  color: var(--primary-black);
}

.blog-btn:hover i {
  transform: rotate(-45deg);
}

/*===============================
 BLOG DETAILS SECTION
================================*/
.lub-blog-details {
  padding: 60px 0;
  background: #f8f9fc;
  position: relative;
  overflow: hidden;
}

.lub-blog-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Main Blog */
.lub-blog-main {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
  transition: 0.4s ease;
}

.lub-blog-main:hover {
  transform: translateY(-8px);
}

.lub-blog-image {
  overflow: hidden;
  position: relative;
}

.lub-blog-image img {
  width: 100%;
  height: 400px;
  object-fit: contain;
  transition: 0.8s ease;
}

.lub-blog-main:hover .lub-blog-image img {
  transform: scale(1.08);
}

.lub-blog-content {
  padding: 30px;
}

.lub-blog-tag {
  display: inline-block;
  padding: 10px 20px;
  background: rgba(214, 0, 0, 0.08);
  color: #d60000;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}

.lub-blog-content h2 {
  font-size: 25px;
  line-height: 1.2;
  font-weight: 800;
  color: #111;
  margin-bottom: 20px;
}

.lub-blog-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #666;
  margin-bottom: 20px;
}

/* Features */
.lub-blog-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.lub-feature-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 20px;
  display: flex;
  gap: 18px;
  transition: 0.4s ease;
}

.lub-feature-card:hover {
  transform: translateY(-8px);
  background: #111;
}

.lub-feature-card:hover h4,
.lub-feature-card:hover p,
.lub-feature-card:hover i {
  color: #fff;
}

.lub-feature-card i {
  width: 60px;
  height: 60px;
  background: #d60000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  transition: 0.4s ease;
}

.lub-feature-card h4 {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 700;
  color: #111;
  transition: 0.4s ease;
}

.lub-feature-card p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  transition: 0.4s ease;
}

/* Quote Box */
.lub-blog-quote {
  margin-top: 20px;
  background: linear-gradient(135deg, #111, #1f1f1f);
  border-radius: 25px;
  padding: 26px;
  position: relative;
  overflow: hidden;
}

.lub-blog-quote i {
  font-size: 40px;
  color: #d60000;
  margin-bottom: 15px;
}

.lub-blog-quote p {
  color: #fff;
  font-size: 20px;
  line-height: 1.8;
  margin: 0;
}

/* Sidebar */
.lub-blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.lub-sidebar-box {
  background: #fff;
  padding: 30px;
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.lub-sidebar-title {
  margin-bottom: 30px;
}

.lub-sidebar-title h3 {
  font-size: 28px;
  font-weight: 800;
  position: relative;
  padding-left: 18px;
}

.lub-sidebar-title h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 5px;
  height: 30px;
  background: #d60000;
  border-radius: 20px;
}

/* Recent Post */
.lub-recent-post {
  display: flex;
  gap: 15px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
  transition: 0.4s ease;
}

.lub-recent-post:hover {
  transform: translateX(8px);
}

.lub-recent-img {
  width: 95px;
  height: 90px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}

.lub-recent-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.lub-recent-post:hover img {
  transform: scale(1.1);
}

.lub-recent-content span {
  font-size: 13px;
  color: #d60000;
  font-weight: 700;
}

.lub-recent-content h4 {
  font-size: 17px;
  line-height: 1.5;
  margin-top: 6px;
  color: #111;
  font-weight: 700;
}

/* CTA BOX */
.lub-contact-box {
  background: linear-gradient(135deg, #d60000, #111);
  padding: 20px;
  border-radius: 25px;
  text-align: center;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.lub-contact-box h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
}

.lub-contact-box p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
  opacity: 0.9;
}

.lub-contact-box a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  background: #fff;
  color: #111;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.4s ease;
}

.lub-contact-box a:hover {
  background: #111;
  color: #fff;
  transform: translateY(-5px);
}

.lub-links-section {
  padding: 60px 0;
  background: #f7f7f7;
  position: relative;
  overflow: hidden;
}

.lub-sec-heading {
  margin-bottom: 35px;
  position: relative;
  z-index: 2;
}

.lub-sec-heading .two {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary-black);
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  letter-spacing: 1px;
}

.lub-sec-heading .two::after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: -12px;
  width: 65px;
  height: 4px;
  border-radius: 50px;
  background: var(--green-gradient);
}

.lub-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.lub-link-card {
    background: var(--bg-white);
    border-radius: 22px;
    padding: 26px 20px;
    text-align: center;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    position: relative;
    color: #000;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    font-size: 20px;
    font-weight: 700;
}



.lub-link-icon,
.lub-link-card .four {
  position: relative;
  z-index: 2;
}

.lub-link-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green-gradient);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto auto 18px;
  font-size: 28px;
  transition: var(--transition);
}

.lub-link-card .four {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-black);
  line-height: 1.5;
  transition: var(--transition);
}

.lub-link-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  color: white;
  background-color: var(--light-green);
}

.lub-link-card:hover .lub-link-icon {
  background: rgba(255, 255, 255, 0.12);
  color: var(--primary-white);
  transform: rotateY(180deg);
}

.lub-link-card:hover h4 {
  color: var(--primary-white);
}

.lub-product-category {
  background: var(--bg-white);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 35px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.lub-product-category:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.lub-category-title {
  background: var(--green-gradient);
  color: var(--text-white);
  padding: 20px 30px;
  font-size: 24px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.5px;
}

.lub-category-title i {
  color: var(--primary-white);
}

.lub-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 30px;
}

.lub-product-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 22px;
  background: #f7faf9;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-decoration: none;
  color: var(--primary-black);
  font-weight: 600;
  transition: var(--transition);
  overflow: hidden;
}

.lub-product-item span {
  position: relative;
  z-index: 2;
}

.lub-product-item:hover::after {
  transform: translateX(0);
}

.lub-product-item:hover {
  transform: translateX(6px);
  background: var(--green-gradient);
  color: var(--bg-white);
  transition: var(--transition);
}

.lub-presence-section {
  padding: 60px 0;
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.lub-presence-heading {
  text-align: center;
  margin-bottom: 40px;
}
.lub-presence-heading h2 {
  font-weight: 800;
}
.lub-presence-heading .two{
   font-weight: 800;
   font-size: 2rem;
   line-height: 1.2;
    color: var(--bs-heading-color);
    margin-bottom: 15px;
}

.lub-country-name {
  margin-bottom: 35px;
}

.lub-country-name h3 {
  font-size: 38px;
  font-weight: 800;
  color: var(--primary-black);
  display: inline-block;
  position: relative;
  padding-bottom: 6px;
}

.lub-country-name h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  height: 4px;
  border-radius: 50px;
  background: var(--red-gradient);
}

.lub-country-name .tree {
  font-size: 38px;
  font-weight: 800;
  color: var(--primary-black);
  display: inline-block;
  position: relative;
  padding-bottom: 6px;
}

.lub-country-name .tree::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  height: 4px;
  border-radius: 50px;
  background: var(--red-gradient);
}

.lub-state-block {
  background: var(--bg-white);
  border-radius: 28px;
  padding: 25px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}
.lub-state-block:last-child {
  margin-bottom: 0;
}

.lub-state-block:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.lub-state-title {
  margin-bottom: 28px;
}

.lub-state-title h4 {
  background: var(--green-gradient);
  color: var(--primary-white);
  padding: 14px 28px;
  border-radius: 16px;
  font-size: 20px;
  font-weight: 700;
  display: inline-block;
  margin: 0;
  box-shadow: 0 10px 25px rgba(0, 140, 95, 0.2);
}

.lub-state-title .four {
  background: var(--green-gradient);
  color: var(--primary-white);
  padding: 14px 28px;
  border-radius: 16px;
  font-size: 20px;
  font-weight: 700;
  display: inline-block;
  margin: 0;
  box-shadow: 0 10px 25px rgba(0, 140, 95, 0.2);
}

.lub-city-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.lub-city-box {
  background: #f8fbf9;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 12px 15px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-black);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.lub-city-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--green-gradient);
  transform: scaleX(0);
  transform-origin: bottom;
  transition: 0.5s ease;
  z-index: -1;
}

.lub-city-box:hover::before {
  transform: scaleX(1);
}

.lub-city-box:hover {
  transform: translateY(-8px);
  color: var(--text-white) !important;
}

.lub-city-box {
  position: relative;
  z-index: 2;
}

/* footer section styling */
.footer-section {
  position: relative;
  padding: 80px 0 0;
  background: var(--primary-white);
  overflow: hidden;
}

/* .footer-bg-shape {
  position: absolute;
  right: -180px;
  bottom: -220px;
  width: 650px;
  height: 650px;
  background: var(--green-gradient);
  border-radius: 50%;
  opacity: 0.12;
} */

.footer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.85fr 0.95fr 1.4fr;
  gap: 35px;
}

.footer-logo img {
  width: 135px;
  margin-bottom: 20px;
}

.footer-about p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.footer-qr-box {
  max-width: 280px;
  padding: 14px;
  border: 1px dashed var(--primary-red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-light);
}

.footer-qr-box img {
  width: 95px;
}

.footer-qr-box span {
  font-size: 13px;
  color: var(--text-dark);
}

.footer-links .four,
.footer-contact .four {
  position: relative;
  font-size: 20px;
  font-weight: 900;
  color: var(--primary-black);
  text-transform: uppercase;
  margin-bottom: 28px;
  padding-left: 18px;
}

.footer-links .four::before,
.footer-contact .four::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 4px;
  height: 22px;
  background: var(--primary-red);
}

.footer-links ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 15px;
}

.footer-links ul li a {
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}

.footer-links ul li a i {
  color: var(--primary-black);
  margin-right: 5px;
  font-size: 12px;
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--primary-red);
  padding-left: 6px;
}

.footer-links ul li a:hover i {
  color: var(--primary-red);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-item i {
  min-width: 18px;
  color: var(--primary-red);
  font-size: 18px;
  margin-top: 4px;
}

.contact-item p,
.contact-item a {
  margin: 0;
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.8;
  text-decoration: none;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary-black);
  color: var(--primary-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--primary-red);
  transform: translateY(-5px);
}

.footer-bottom {
  position: relative;
  z-index: 2;
  margin-top: 60px;
  padding: 18px 15px;
  text-align: center;
  background: var(--primary-black);
}

.footer-bottom p {
  margin: 0;
  color: var(--primary-white);
  font-size: 15px;
}

.footer-bottom p a {
  color: var(--primary-red);
  text-decoration: none;
}

/* get a quote modal styling */
.quote-modal .modal-dialog {
  max-width: 300px;
  margin: auto;
}
.modal-dialog-centered {
  min-height: 75vh !important;
}
.quote-modal-content {
  border: none;
  border-radius: 0;
  overflow: hidden;
  background: var(--primary-white);
}

.modal-content {
  border: none !important;
  border-radius: 0px !important;
}

.quote-modal-header {
  position: relative;
  background: var(--bg-dark);
  color: var(--primary-white);
  padding: 12px 40px;
  text-align: center;
}

.quote-modal-header .five {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.quote-close {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  color: var(--primary-white);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.quote-modal-body {
  padding: 16px;
  text-align: center;
}

.quote-modal-body p {
  font-size: 16px;
  line-height: 1.35;
  color: var(--text-dark);
  margin: 0 0 18px;
}

.quote-modal-body p a {
  font-weight: 800;
  text-decoration: none;
    color: var(--text-dark);
}

.quote-modal-body input,
.quote-modal-body textarea {
  width: 100%;
  border: 1px solid var(--border-color);
  outline: none;
  padding: 6px 12px;
  margin-bottom: 12px;
  font-size: 16px;
  color: var(--text-dark);
  background: var(--bg-white);
  border-radius: 0;
  transition: var(--transition);
}

.quote-modal-body textarea {
  resize: vertical;
  min-height: 100px;
}

.quote-modal-body input:focus,
.quote-modal-body textarea:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(0, 140, 95, 0.12);
}

.quote-submit {
  width: 100%;
  border: none;
  background: var(--primary-black);
  color: var(--primary-white);
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
}

.quote-submit:hover {
  background: var(--primary-green);
}

.floating-buttons {
  position: fixed;
  bottom: 5%;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.floating-buttons a {
  text-decoration: none;
}

.btn-text {
  display: none;
}

.same-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  color: var(--primary-white);
  transition: var(--transition);
}

.phone {
  background: var(--light-red);
  animation: floatPhone 1.5s ease-in-out infinite;
}

@keyframes floatPhone {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0);
  }
}

.whatsapp {
  background: var(--light-green);
  position: relative;
  z-index: 1;
}

.whatsapp::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--light-green);
  border-radius: 50%;
  z-index: -1;
  animation: whatsappPulse 1.5s infinite;
  opacity: 0.6;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  70% {
    transform: scale(1.6);
    opacity: 0;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.enquiry {
  width: auto;
  padding: 0 15px;
  border-radius: 25px;
  background: var(--primary-black);
  font-size: 20px;
  position: relative;
  overflow: hidden;
}

.enquiry::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: var(--transition);
}

.enquiry:hover::before {
  left: 100%;
}

.enquiry::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 25px;
  opacity: 0;
  transition: var(--transition);
}

.enquiry:hover::after {
  opacity: 1;
}

.phone:hover,
.whatsapp:hover,
.enquiry:hover {
  transform: translateY(-4px) scale(1.1) !important;
  box-shadow: var(--shadow-md);
  color: var(--primary-white) !important;
}

.enquiry i {
  transition: var(--transition);
}

.enquiry:hover i {
  transform: rotate(12deg) scale(1.2);
}

.same-btn:hover {
  opacity: 1 !important;
  color: var(--primary-white) !important;
}
.modal {
  z-index: 9999 !important;
}
/* Modal Overlay Top */
.modal {
  z-index: 999999 !important;
}

.modal-backdrop {
  z-index: 999998 !important;
  background: rgba(0, 0, 0, 0.75);
}

/* Header */
.site-header,
.header-bottom,
.header-top {
  z-index: 999 !important;
  position: relative;
}


.founder-legacy-section {
  padding: 60px 0;
  background: #f6f7f8;
}

.top-wrapper{
    display:grid;
    grid-template-columns:42% 58%;
    align-items:center;
    gap:50px;
}


.founder-image-box{
    position:relative;
    overflow: hidden;
    border-radius: 30px;
}

.founder-image-box img{
    width:100%;
    display:block;
}


.message-card{
    padding:20px 10px;
}

.sub-title{
    color:#006B4F;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.message-card h1{
    font-size:40px;
    line-height:1.1;
    color:#00563f;
    font-weight:800;
    margin:5px 0;
}
.message-card .one{
  font-size:40px;
    line-height:1.1;
    color:#00563f;
    font-weight:800;
    margin:5px 0;
}

.red-line{
    width:120px;
    height:4px;
    background:#e53935;
    margin-bottom:35px;
    border-radius: 20px;
}

.message-item{
    display:flex;
    gap:25px;
    padding:10px 0;
    border-bottom:1px solid #e5e5e5;
}

.message-item:last-child{
    border-bottom:none !important;
}

.icon-box{
    min-width:50px;
    width:50px;
    height:50px;
    border-radius:50%;
    background:#006B4F;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

.message-item p{
    margin:0;
    font-size:18px;
    line-height:1.8;
    color:#333;
}

.message-item strong{
    color:#111;
    font-weight:700;
}

.quote-box{
    margin-top:20px;
    padding:20px;
    border:1px solid #ddd;
    border-left:8px solid #006B4F;
    border-radius:20px;
    font-size:18px;
    line-height:1.8;
    font-style:italic;
    color:#333;
    background:#fff;
}

.quote-box span{
    font-size:55px;
    color:#006B4F;
    margin-right:15px;
}

.legacy-zigzag {
  background: #fff;
  padding: 60px 30px;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.section-title {
  text-align: center;
  margin-bottom: 40px !important;
}
.leagacy-high{
    margin-bottom: 100px !important;
}

.section-title .two {
  font-size: 36px;
  color: #00563f;
  font-weight: 800;
}

.timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #00563f, #0f7a5d);
}

.step {
  width: 18%;
  text-align: center;
  position: relative;
  z-index: 2;
}

.step.top {
  transform: translateY(-80px);
}

.step.bottom {
  transform: translateY(80px);
}

.content-box {
  background: #fff;
  padding: 25px 15px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.content-box i {
  font-size: 34px;
  color: #006B4F;
  margin-bottom: 15px;
}



.content-box .four {
    color: #000;
    margin-bottom: 10px;
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 500;
}

.about-content .one{
          font-size: 2.5rem;
          margin-bottom: .5rem;
    font-weight: 900;
    line-height: 1.2;
    color: var(--bs-heading-color);
}
.about-content h1{
          font-size: 2.5rem;
          margin-bottom: .5rem;
    font-weight: 900;
    line-height: 1.2;
    color: var(--bs-heading-color);
}
.content-box p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.circle {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid #006B4F;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 25px auto;
  font-size: 28px;
  font-weight: 700;
  color: #00563f;
}

.step:hover {
  transform: translateY(-90px);
  transition: 0.4s;
}

.step.bottom:hover {
  transform: translateY(70px);
}



.extra-info-grid h3 {
    font-size: 26px !important;
}

.extra-info-grid h4 {
    font-size: 22px !important;
}

.extra-info-grid ul li {
    font-size: 16px !important;
}

