/********** Template CSS **********/
:root {
    --primary: #fbad4f;
    --secondary: #999999;
    --light: #F2F8FE;
    --dark: #111111;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 60px;
    z-index: 99;
}

.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 14px;
    font-weight: 500;
}

.alert-success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.alert-danger {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.alert-info {
    background: #e0f2fe;
    color: #075985;
    border: 1px solid #bae6fd;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
    font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** NAVBAR – NO BLINK FIX ***/
.navbar {
    height: 75px;               /* FIXED HEIGHT */
}

.navbar .navbar-brand {
    height: 75px;
    display: flex;
    align-items: center;
}

.navbar .navbar-nav {
    align-items: center;
}

/* NAV LINKS – FIXED SIZE */
.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 0;                 /* IMPORTANT */
    height: 75px;               /* SAME AS NAVBAR */
    display: flex;
    align-items: center;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.2s ease; /* ONLY COLOR CHANGE */
}

/* HOVER & ACTIVE – NO SIZE CHANGE */
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

/* REMOVE ALL INDICATORS */
.navbar .navbar-nav .nav-link::before,
.navbar .navbar-nav .nav-link::after,
.navbar .navbar-nav .active::before,
.navbar .navbar-nav .active::after {
    display: none !important;
    content: none !important;
}

/* DROPDOWN FIX (DESKTOP) */
@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        margin-top: 0;
        border: none;
        top: 100%;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.25s ease;
    }

    .navbar .nav-item:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
    }
}

/* MOBILE */
@media (max-width: 991.98px) {
    .navbar {
        height: auto;
    }

    .navbar .navbar-nav .nav-link {
        height: auto;
        padding: 10px 0;
        margin-right: 0;
    }
}


/*** Header ***/
.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--secondary);
}


/*** Service ***/
.service-item {
    position: relative;
    overflow: hidden;
}

.service-item::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: -80px;
    right: -80px;
    border: 80px solid;
    transform: rotate(45deg);
    opacity: 1;
    transition: .5s;
}

.service-item.bg-white::after {
    border-color: transparent transparent var(--light) transparent;
}

.service-item.bg-light::after {
    border-color: transparent transparent #FFFFFF transparent;
}

.service-item:hover::after {
    opacity: 0;
}


/*** Roadmap ***/
.roadmap-carousel {
    position: relative;
}

.roadmap-carousel::before {
    position: absolute;
    content: "";
    height: 0;
    width: 100%;
    top: 20px;
    left: 0;
    border-top: 2px dashed var(--secondary);
}

.roadmap-carousel .roadmap-item .roadmap-point {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 6px;
    left: 50%;
    margin-left: -15px;
    background: #FFFFFF;
    border: 2px solid var(--primary);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.roadmap-carousel .roadmap-item .roadmap-point span {
    display: block;
    width: 18px;
    height: 18px;
    background: var(--primary);
}

.roadmap-carousel .roadmap-item {
    position: relative;
    padding-top: 150px;
    text-align: center;
}

.roadmap-carousel .roadmap-item::before {
    position: absolute;
    content: "";
    width: 0;
    height: 115px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-right: 2px dashed var(--secondary);
}

.roadmap-carousel .roadmap-item::after {
    position: absolute;
    content: "";
    width: 14px;
    height: 14px;
    top: 111px;
    left: 50%;
    margin-left: -7px;
    transform: rotate(45deg);
    background: var(--primary);
}

.roadmap-carousel .owl-nav {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.roadmap-carousel .owl-nav .owl-prev,
.roadmap-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 22px;
    color: var(--light);
    background: var(--primary);
    transition: .5s;
}

.roadmap-carousel .owl-nav .owl-prev:hover,
.roadmap-carousel .owl-nav .owl-next:hover {
    color: var(--primary);
    background: var(--dark);
}



/* =========================
   FOOTER
========================= */

.odour-footer {
    background: linear-gradient(360deg, #000, #070c16);
    padding: 90px 0 30px;
    color: #cfcfcf;
}

/* BRAND COLUMN */
.footer-brand {
    padding-right: 30px;
}

/* LOGO */
.footer-logo-img {
    max-width: 240px;
    margin-bottom: 12px;
    display: block;
}

/* TAGLINE */
.footer-tagline {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 18px;
    text-transform: uppercase;

    background: linear-gradient(135deg, #f5a000, #ffd27d);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* TEXT */
.footer-text {
    font-size: 15px;
    line-height: 1.7;
    color: #bdbdbd;
}

/* TITLES */
.footer-title {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 18px;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bdbdbd;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f5a000;
}

/* CONTACT */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
}

.footer-contact i {
    color: #f5a000;
    min-width: 18px;
}

/* SOCIAL */
.footer-social a {
    width: 38px;
    height: 38px;
    background: #0e1627;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 8px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #f5a000;
    color: #070c16;
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 45px;
    padding-top: 22px;
    text-align: center;
    font-size: 14px;
    color: #9c9c9c;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
    .odour-footer {
        text-align: center;
        padding: 60px 0 30px;
    }

    .footer-logo-img {
        margin-left: auto;
        margin-right: auto;
        max-width: 180px;
    }

    .footer-brand {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-social {
        margin-top: 10px;
    }
    
    .footer-title {
        margin-top: 20px;
    }
}
/* FOOTER CONTACT LINKS – FORCE WHITE */
.footer-contact a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* HOVER PE BHI WHITE HI RAHE */
.footer-contact a:hover,
.footer-contact a:focus {
    color: #f5a000 !important;
}


.logo-img {
  border-radius: 12px;   /* adjust value as needed */
}
.btn-black {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}

.btn-black:hover {
  background-color: #1c1f23 !important;
  border-color: #1c1f23 !important;
  color: #ffffff !important;
}
.btn-black {
  transition: all 0.3s ease;
}

.btn-black:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}
.btn-black {
  border: 2px solid #F2B24C !important;
}
.brand-intro-section {
    position: relative;
    z-index: 1;

    /* 🔥 HERO SE PROPER GAP */
    margin-top: 0px;

    padding: 90px 0;
    color: #ffffff;

    background:
        radial-gradient(
            circle at 40% 20%,
            rgba(196, 122, 44, 0.25),
            transparent 55%
        ),
        linear-gradient(
            rgba(5, 8, 15, 0.85),
            rgba(5, 8, 15, 0.9)
        ),
        url("img/e65df634-9a58-4e82-bddf-f330cd365736.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ===============================
   IMAGE STYLING (UNCHANGED)
================================ */

.brand-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

.brand-image-wrap img {
  width: 100%;
  transition: transform 0.6s ease;
}

.brand-image-wrap:hover img {
  transform: scale(1.05);
}

/* ===============================
   CONTENT STYLING
================================ */

.brand-heading {
  font-size: 37px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.brand-heading span {
  color: #F2B24C;
}

.brand-text {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.7;
}

/* ===============================
   HIGHLIGHTS
================================ */

.brand-highlights {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.brand-highlights span {
  display: inline-block;
  font-weight: 600;
  font-size: 15px;
  padding-left: 14px;
  border-left: 4px solid #C47A2C;
  color: #ffffff;
}

/* ===============================
   SMALL NOTE
================================ */

.small-note {
  font-size: 15px;
  opacity: 0.85;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 991px) {
  .brand-heading {
    font-size: 28px;
  }

  .brand-intro-section {
    margin-top: 0;
    padding: 60px 15px;
  }
}


/* 🔬 Science Line Animation */
.science-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
  font-weight: 600;
  color: #F2B24C;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background: #C47A2C;
  border-radius: 50%;
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(111,174,217,0.7); }
  70% { box-shadow: 0 0 0 12px rgba(111,174,217,0); }
  100% { box-shadow: 0 0 0 0 rgba(111,174,217,0); }
}

/* 🧪 Icon Highlights */
.brand-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 25px;
}

.icon-box {
  background: rgba(255,255,255,0.05);
  border-radius: 14px;
  padding: 18px 10px;
  text-align: center;
  transition: 0.3s ease;
}

.icon-box i {
  font-size: 22px;
  color: #F2B24C;
  margin-bottom: 8px;
}

.icon-box span {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.icon-box:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.1);
}

/* 🛒 CTA Buttons */
.brand-cta {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.btn-black {
  background: #000;
  color: #fff;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
}

.btn-black:hover {
  background: #1c1f23;
}

.btn-outline-light {
  border-radius: 30px;
  padding: 12px 26px;
}

/* 🔥 Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .brand-icons {
    grid-template-columns: 1fr;
  }
  .brand-cta {
    flex-direction: column;
  }
}
.molecule-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.molecule-bg span {
  position: absolute;
  width: 14px;
  height: 14px;
  background: rgba(111, 174, 217, 0.25);
  border-radius: 50%;
  animation: float 18s linear infinite;
}

.molecule-bg span:nth-child(1) { left: 10%; animation-duration: 22s; }
.molecule-bg span:nth-child(2) { left: 30%; animation-duration: 26s; }
.molecule-bg span:nth-child(3) { left: 50%; animation-duration: 20s; }
.molecule-bg span:nth-child(4) { left: 70%; animation-duration: 24s; }
.molecule-bg span:nth-child(5) { left: 90%; animation-duration: 28s; }

@keyframes float {
  0% { transform: translateY(100vh) scale(0.8); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: translateY(-120vh) scale(1.2); opacity: 0; }
}

/* Ensure content stays above background */
.brand-intro-section {
  position: relative;
}

.brand-intro-section .container {
  position: relative;
  z-index: 2;
}
.sticky-buy-btn {
  position: fixed;
  right: 25px;
  bottom: 25px;
  background: #000;
  color: #fff;
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 600;
  z-index: 999;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
}

.sticky-buy-btn:hover {
  background: #1c1f23;
  transform: translateY(-3px);
}
.mobile-cta {
  display: none;
}

@media (max-width: 768px) {
  .sticky-buy-btn {
    right: 15px;
    bottom: 80px; /* Leave space for mobile-cta if present */
    padding: 10px 18px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .mobile-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #111;
    z-index: 1000;
  }

  .mobile-cta a {
    flex: 1;
    text-align: center;
    padding: 14px;
    font-weight: 600;
  }

  .mobile-buy {
    background: #000;
    color: #fff;
  }

  .mobile-enquire {
    background: #F2B24C;
    color: #111;
  }
}
.how-it-works-section {
  padding: 100px 0;
  background: #ffffff;
}
/* HOW IT WORKS CARD */
.hw-card {
    position: relative;
    padding: 35px 30px 90px; /* bottom space for illustration */
    background: #fffaf2;
    border-radius: 20px;
    height: 100%;
}

/* REMOVE OLD TOP ALIGNMENT EFFECT */
.hw-top {
    position: static;
}

/* STEP LABEL */
.hw-step {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #f59e0b;
    display: inline-block;
    margin-bottom: 10px;
}

/* ICON → RIGHT BOTTOM CORNER */
.hw-icon {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 70px;
    height: 70px;
    opacity: 0.9;
}

/* ICON IMAGE */
.hw-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* TEXT */
.hw-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.hw-card p {
    color: #666;
    line-height: 1.6;
}


/* Heading */
.how-heading {
  font-size: 42px;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}

.how-subtext {
  font-size: 17px;
  color: #555;
}

/* Steps */
.how-steps {
  text-align: center;
}

.step-box {
  padding: 35px 25px;
  border-radius: 20px;
  background: #f7f9fc;
  transition: all 0.3s ease;
}

.step-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* soft copper glow – RIGHT CORNER ONLY */
.why-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 220px;
  height: 220px;
  background: radial-gradient(
    circle,
    rgba(184,115,51,0.35),
    transparent 70%
  );
  opacity: 0.6;
  pointer-events: none;
}


.step-box h4 {
  font-weight: 700;
  margin-bottom: 10px;
}

.step-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

/* Before After */
.before-after h4 {
  font-weight: 700;
  margin-bottom: 15px;
}

.before-box,
.after-box {
  padding: 30px;
  border-radius: 18px;
}

.before-box {
  background: #fff4f4;
}

.after-box {
  background: #eaf7f0;
}

.before-box ul,
.after-box ul {
  list-style: none;
  padding: 0;
}

.before-box li,
.after-box li {
  font-size: 15px;
  margin-bottom: 10px;
}

/* Problem → Solution */
.problem-solution {
  font-size: 20px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.problem {
  color: #dc3545;
}

.solution {
  color: #198754;
}

.arrow {
  font-size: 28px;
}

/* Responsive */
@media (max-width: 768px) {
  .how-heading {
    font-size: 32px;
  }

  .problem-solution {
    flex-direction: column;
  }

  .arrow {
    transform: rotate(90deg);
  }
}
/* ==============================
   BENEFITS SECTION – PREMIUM GLASS
================================ */
.benefits-section {
  padding: 120px 0;
  background:
    radial-gradient(circle at 40% 20%, rgba(196,122,44,0.25), transparent 55%),
    linear-gradient(rgba(5,8,15,0.85), rgba(5,8,15,0.95)),
    url("img/e65df634-9a58-4e82-bddf-f330cd365736.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
}

/* HEADER */
.section-title h2 {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
}

.section-title p {
  margin-top: 12px;
  font-size: 16px;
  color: #cbd5e1;
}

/* GRID */
.benefits-grid {
  margin-top: 70px;
}

/* ==============================
   CARD – GLASSY KEY FEATURES STYLE
================================ */
.benefit-box {
  height: 100%;
  padding: 42px 28px;
  border-radius: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.14),
      rgba(255,255,255,0.04)
    );

  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  border: 1px solid rgba(255,255,255,0.22);

  box-shadow:
    0 30px 70px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.3);

  transition: all 0.45s ease;
}

/* GLASS SHINE */
.benefit-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,193,7,0.28),
    transparent 70%
  );
  opacity: 0.5;
  pointer-events: none;
}

/* HOVER */
.benefit-box:hover {
  transform: translateY(-12px);
  box-shadow:
    0 0 0 1px rgba(255,193,7,0.55),
    0 50px 120px rgba(0,0,0,0.75);
}

/* ==============================
   IMAGE ICON – GLASS CIRCLE
================================ */
.image-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  border-radius: 50%;
  position: relative;
  z-index: 2;

  background:
    radial-gradient(
      circle at top left,
      rgba(255,193,7,0.35),
      rgba(255,255,255,0.08)
    );

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(255,193,7,0.35);

  box-shadow:
    0 0 0 1px rgba(255,193,7,0.25),
    0 0 28px rgba(255,183,3,0.45);
}

/* IMAGE FIT */
.image-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* SOFT GLOW */
.image-icon::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255,183,3,0.45),
    transparent 70%
  );
  filter: blur(14px);
  z-index: -1;
}

/* TEXT */
.benefit-box h4 {
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

.benefit-box p {
  font-size: 14px;
  line-height: 1.6;
  color: #d1d5db;
}


/* ================================
   HOW ODOUR-AID WORKS – TRUE GLASS
================================ */

.how-works-new {
  padding: 100px 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(184,115,51,0.35), transparent 55%),
    linear-gradient(180deg, #fff6ec 0%, #f3e9dd 100%);
}

/* HEADER */
.hw-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 14px;
}

@media (max-width: 768px) {
  .hw-header h2 {
    font-size: 26px;
  }
  .hw-header p {
    font-size: 14px;
    padding: 0 15px;
  }
}

.hw-header p {
  max-width: 720px;
  margin: auto;
  font-size: 16px;
  color: #555;
}

/* ================================
   GLASS CARD (REAL)
================================ */
.hw-card {
  position: relative;
  padding: 40px 34px 105px;
  margin-top: 45px;
  height: 100%;

  border-radius: 28px;

  /* REAL GLASS */
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.65),
      rgba(255,255,255,0.18)
    );

  backdrop-filter: blur(28px) saturate(140%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);

  border: 1px solid rgba(255,255,255,0.55);

  box-shadow:
    0 30px 90px rgba(0,0,0,0.15),
    inset 0 1px 0 rgba(255,255,255,0.75);

  overflow: hidden;
  transition: all 0.45s ease;
}

/* GLASS EDGE SHINE */
.hw-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(
      120deg,
      transparent 35%,
      rgba(255,255,255,0.9),
      transparent 65%
    );
  opacity: 0.25;
  pointer-events: none;
}

/* COPPER AURA */
.hw-card::after {
  content: "";
  position: absolute;
  inset: -40px;
  background:
    radial-gradient(
      circle at bottom right,
      rgba(184,115,51,0.35),
      transparent 65%
    );
  filter: blur(30px);
  opacity: 0;
  transition: opacity 0.45s ease;
  z-index: 0;
}

/* ================================
   HOVER INTERACTION (FOCUS)
================================ */
.hw-steps:hover .hw-card {
  opacity: 0.55;
  transform: scale(0.97);
}

.hw-steps:hover .hw-card:hover {
  opacity: 1;
  transform: translateY(-16px) scale(1.03);
}

.hw-card:hover::after {
  opacity: 1;
}

.hw-card:hover {
  box-shadow:
    0 0 0 1px rgba(184,115,51,0.7),
    0 60px 140px rgba(184,115,51,0.45),
    inset 0 1px 0 rgba(255,255,255,0.85);
}

/* ================================
   STEP LABEL
================================ */
.hw-step {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #b87333;
  margin-bottom: 14px;
  display: inline-block;
}

/* ================================
   TEXT
================================ */
.hw-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.hw-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* ================================
   ICON – GLASS + EXPAND
================================ */
.hw-icon {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 76px;
  height: 76px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle at top left,
      rgba(255,193,7,0.95),
      rgba(184,115,51,0.9)
    );

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  box-shadow:
    0 0 0 1px rgba(184,115,51,0.55),
    0 0 35px rgba(184,115,51,0.7);

  display: flex;
  align-items: center;
  justify-content: center;

  transition: transform 0.45s ease, box-shadow 0.45s ease;
  z-index: 2;
}

.hw-icon img {
  width: 42px;
  transition: transform 0.45s ease;
}

/* ICON EXPAND */
.hw-card:hover .hw-icon {
  transform: scale(1.3);
  box-shadow:
    0 0 0 1px rgba(184,115,51,0.8),
    0 0 60px rgba(184,115,51,0.9);
}

.hw-card:hover .hw-icon img {
  transform: scale(1.2);
}

/* ================================
   FOOTER
================================ */
.hw-footer {
  margin-top: 70px;
}

.hw-footer p {
  font-size: 16px;
  color: #b45309;
}

.hw-footer span {
  margin: 0 10px;
}


/* ==============================
   KEY FEATURES – SAME AS BENEFITS
================================ */

.key-features-glass {
  padding: 120px 0;
  background:
    radial-gradient(circle at 40% 20%, rgba(196,122,44,0.25), transparent 55%),
    linear-gradient(rgba(5,8,15,0.85), rgba(5,8,15,0.95)),
    url("img/e65df634-9a58-4e82-bddf-f330cd365736.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
}

/* HEADER */
.kf-head h2 {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
}

@media (max-width: 768px) {
  .kf-head h2 {
    font-size: 26px;
  }
}

.kf-head p {
  margin-top: 12px;
  font-size: 16px;
  color: #cbd5e1;
}

/* ROW */
.kf-row-flex {
  display: flex;
  gap: 26px;
  margin-top: 70px;
  flex-wrap: nowrap;
}

/* ==============================
   CARD – SAME GLASS AS BENEFITS
================================ */
.kf-item-glass {
  width: 20%;
  height: 100%;
  padding: 42px 28px;
  border-radius: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.14),
      rgba(255,255,255,0.04)
    );

  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  border: 1px solid rgba(255,255,255,0.22);

  box-shadow:
    0 30px 70px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.3);

  transition: all 0.45s ease;
}

/* GLASS SHINE */
.kf-item-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,193,7,0.28),
    transparent 70%
  );
  opacity: 0.5;
  pointer-events: none;
}

/* ICON – SAME GOLD GLOW */
.kf-item-glass i {
  font-size: 30px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #ffb703, #c26b2e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 12px rgba(255,183,3,0.45));
}

/* TEXT */
.kf-item-glass h4 {
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

.kf-item-glass p {
  font-size: 14px;
  line-height: 1.6;
  color: #d1d5db;
}

/* HOVER – SAME AS BENEFITS */
.kf-item-glass:hover {
  transform: translateY(-12px);
  box-shadow:
    0 0 0 1px rgba(255,193,7,0.55),
    0 50px 120px rgba(0,0,0,0.75);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .kf-row-flex {
    flex-wrap: wrap;
  }
  .kf-item-glass {
    width: 48%;
  }
}

@media (max-width: 575px) {
  .kf-item-glass {
    width: 100%;
  }
}


/* ===============================
   MODERN RESULT SECTION
================================ */

.result-modern {
  padding: 140px 8%;
  background:
    radial-gradient(circle at top left,
      rgba(255,180,80,0.25),
      transparent 60%),
    radial-gradient(circle at bottom right,
      rgba(255,220,160,0.35),
      transparent 55%),
    #ffffff;
}

.result-wrap {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* LEFT SIDE */

.result-tag {
  font-size: 20px;
  letter-spacing: 3px;
  color: #f59e0b;
  font-weight: 00;
}

.result-left h2 {
  font-size: 52px;
  line-height: 1.15;
  margin: 20px 0;
  color: #0f172a;
}
@media(max-width:991.98px){
    .result-wrap{
        grid-template-columns: 1fr;
        text-align: center;
    }
    .result-left{
        width: 100%;
        margin-bottom: 40px;
    }
    .result-glass{
        width: 100%;
        padding: 30px;
    }
}
.result-left h2 span {
  color: #f59e0b;
}

.result-left p {
  font-size: 18px;
  color: #475569;
  max-width: 460px;
}
/* MAIN HEADING */
.result-left h2 {
  color: #F2B24C;            /* warm gold / brand highlight */
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* SUB-HEADING */
.result-left p:first-of-type {
  color: #111111;            /* strong dark for contrast */
  font-size: 28px;
  font-weight: 700;
  margin-top: 10px;
}

/* OPTIONAL: paragraph text (body) */
.result-left p:last-of-type {
  color: #444444;
}


/* STAT PILLS */

.result-stats {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.stat {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 30px rgba(15,23,42,0.12);
  font-size: 14px;
  font-weight: 600;
}

/* RIGHT GLASS CARD */

.result-glass {
  position: relative;
  padding: 60px;
  border-radius: 40px;
  background:
    linear-gradient(
      to bottom right,
      rgba(255,255,255,0.85),
      rgba(255,255,255,0.55)
    );
  backdrop-filter: blur(26px);
  box-shadow:
    0 60px 120px rgba(15,23,42,0.18);
  transition: transform .7s cubic-bezier(.16,1,.3,1);
}

.result-glass:hover {
  transform: translateY(-16px) scale(1.02);
}

/* glow */
.result-glass::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 42px;
  background: linear-gradient(
    120deg,
    rgba(255,180,80,0.6),
    rgba(255,230,180,0.6)
  );
  z-index: -1;
  filter: blur(18px);
  opacity: 0.8;
}

/* LIST */

.result-glass ul {
  list-style: none;
  padding: 0;
}

.result-glass li {
  font-size: 18px;
  padding: 16px 0;
  color: #1f2937;
  font-weight: 500;
}
/* SOFT RADIAL GLOW BEHIND LEFT TEXT */
.result-left {
  position: relative;
  z-index: 1;
}

.result-left::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: -120px;
  top: -140px;
  background: radial-gradient(
    circle,
    rgba(255,180,80,0.35),
    rgba(255,200,120,0.18),
    transparent 65%
  );
  z-index: -1;
  filter: blur(40px);
}
.result-left h2 {
  text-shadow:
    0 8px 30px rgba(255,180,80,0.18);
}



/* Brand Signature Final Section */
.brand-signature-section {
    background: #f7f8fa;
    padding: 100px 0;
}

.signature-card {
    background: #ffffff;
    max-width: 760px;
    margin: 0 auto;
    padding: 70px 60px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* Label */
.signature-label {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #f5a000;
    display: inline-block;
    margin-bottom: 16px;
}

/* Heading */
.signature-card h2 {
    font-size: 40px;
    color: #0b1220;
    line-height: 1.3;
    margin-bottom: 26px;
}

.signature-card h2 span {
    color: #f5a000;
}

/* Middle lines */
.signature-lines p {
    font-size: 18px;
    color: #555;
    margin-bottom: 10px;
}

/* Punch line */
.signature-punch {
    margin-top: 30px;
    font-size: 22px;
    color: #0b1220;
}

.signature-punch strong {
    color: #f5a000;
}

/* Mobile */
@media (max-width: 768px) {
    .signature-card {
        padding: 50px 25px;
    }

    .signature-card h2 {
        font-size: 32px;
    }
}

/* ================================
   CONTACT HEADER (TOP BLACK AREA)
================================ */
.simple-contact-header {
    background: #000;
    padding: 80px 0 50px;
}

.contact-heading {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .contact-heading {
        font-size: 30px;
    }
}

.contact-subtext {
    font-size: 18px;
    color: #d1d5db;
    line-height: 1.6;
}

.contact-subtext span {
    color: #f59e0b;
    font-weight: 600;
}

@media (max-width: 768px) {
    .contact-heading {
        font-size: 36px;
    }
}


/* ================================
   CONTACT SECTION BACKGROUND
================================ */
.contact-boxed {
    padding: 90px 0;
    background: radial-gradient(
        circle at top left,
        #fff3dc 0%,
        #fffaf2 35%,
        #ffffff 65%
    );
}


/* ================================
   CONTACT BOXES (LEFT + RIGHT)
================================ */
.contact-box {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
    border-radius: 14px;
    padding: 35px;
    height: 100%;
    border: 1px solid rgba(245, 158, 11, 0.15);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.06);
}


/* Left Info Box – warm gradient */
.contact-info-box {
    background: linear-gradient(
        135deg,
        #fff7e6 0%,
        #ffffff 55%
    );
}


/* ================================
   BOX TITLES
================================ */
.box-title {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
    border-left: 4px solid #f59e0b;
    padding-left: 12px;
}


/* ================================
   INFO ITEMS
================================ */
.contact-info-box .info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 14px;
    border-radius: 10px;
    transition: 0.3s;
    cursor: pointer;
}

.contact-info-box .info-item:not(:last-child) {
    margin-bottom: 10px;
}

.contact-info-box i {
    font-size: 20px;
    color: #f59e0b;
    margin-top: 4px;
    transition: 0.3s;
}

.box-label {
    font-size: 13px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.box-value {
    font-size: 17px;
    font-weight: 600;
    color: #000;
}


/* Hover Glow */
.contact-info-box .info-item:hover {
    background: linear-gradient(
        135deg,
        #fde68a,
        #fff7ed
    );
}

.contact-info-box .info-item:hover i {
    color: #000;
}

.contact-info-box .info-item:hover .box-value {
    color: #f59e0b;
}


/* ================================
   FORM INPUTS
================================ */
.contact-input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    font-size: 15px;
    background: #fff;
    transition: 0.3s;
}

.contact-input:focus {
    border-color: #f59e0b;
    outline: none;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}


/* ================================
   SUBMIT BUTTON
================================ */
.contact-submit {
    background: #000;
    color: #f59e0b;
    padding: 14px 36px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.35);
}

.contact-submit:hover {
    background: #f59e0b;
    color: #000;
}


/* ================================
   MOBILE FIXES
================================ */
@media (max-width: 768px) {
    .contact-boxed {
        padding: 60px 0;
    }
    .contact-box {
        padding: 25px 15px;
    }
    .contact-submit {
        width: 100%;
    }
}

/* Accordion Styling */
.accordion-item {
    border: none;
    margin-bottom: 15px;
}

.accordion-button {
    background: #ffffff;
    color: #000;
    font-weight: 600;
    border: 1px solid #eee;
    border-left: 4px solid #f59e0b;
    border-radius: 8px;
}

.accordion-button:not(.collapsed) {
    background: #fff7ed;
    color: #000;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    border: 1px solid #eee;
    border-top: none;
    border-radius: 0 0 8px 8px;
    color: #444;
    line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
    .faq-title {
        font-size: 34px;
    }
}

/* Responsive */
@media (max-width: 768px) {
  .how-heading {
    font-size: 32px;
  }

  .problem-solution {
    flex-direction: column;
  }

  .arrow {
    transform: rotate(90deg);
  }
  /* FORCE OVERRIDE BOOTSTRAP ACCORDION ACTIVE COLOR */
.accordion {
    --bs-accordion-active-bg: #fff7ed;   /* soft copper bg */
    --bs-accordion-active-color: #000;
    --bs-accordion-btn-focus-box-shadow: none;
}

/* LEFT BORDER COPPER */
.accordion-button {
    border-left: 4px solid #f59e0b !important;
    background-color: #ffffff;
}

/* ACTIVE STATE */
.accordion-button:not(.collapsed) {
    background-color: #fff7ed !important;
    color: #000 !important;
}

/* REMOVE ANY BLUE FOCUS */
.accordion-button:focus {
    box-shadow: none !important;
    outline: none !important;
}

}
.benefits-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f7f9fc, #ffffff);
}

/* Heading */
.benefits-heading {
  font-size: 42px;
  font-weight: 700;
  color: #111;
}

.benefits-subtext {
  font-size: 16px;
  color: #555;
}

/* Layout */
.benefits-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}

/* Benefit Boxes */
.benefits-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.benefit-box {
  background: #ffffff;
  padding: 25px 22px;
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.benefit-box i {
  font-size: 26px;
  color: #F2B24C;
  margin-bottom: 12px;
}

.benefit-box h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.benefit-box p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.benefit-box:hover {
  transform: translateY(-6px);
}

/* Center Image */
.benefits-image img {
  width: 280px;
  border-radius: 50%;
  padding: 18px;
  background: #ffffff;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 992px) {
  .benefits-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .benefits-image img {
    margin: 40px auto;
  }
}
.benefit-box {
  position: relative;
  overflow: hidden;
}

.benefit-box::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(
    circle at top left,
    rgba(242,178,76,0.35),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.benefit-box:hover::after {
  opacity: 1;
}

.benefit-box:hover {
  box-shadow: 0 25px 60px rgba(242,178,76,0.25);
}
.benefit-icon {
  position: relative;
}

.benefit-icon::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px dashed rgba(242,178,76,0.6);
  opacity: 0;
  animation: spin 6s linear infinite;
}

.benefit-box:hover .benefit-icon::after {
  opacity: 1;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
/* ROOT VARIABLES */
:root {
  --primary: #0d6efd;
  --text: #222;
  --bg: #f6f9ff;
  --glass: rgba(255,255,255,0.35);
}

body.dark-mode {
  --text: #eee;
  --bg: #0b0f19;
  --glass: rgba(255,255,255,0.08);
}

/* =====================================
   ODOUR-AID ABOUT SECTION – PREMIUM
===================================== */

.odour-aid-section-new {
    position: relative;
    padding: 100px 0;
    overflow: hidden;

    /* LEFT TOP COPPER GLOW + CLEAN BASE */
    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(196, 122, 44, 0.28),
            rgba(196, 122, 44, 0.15),
            transparent 55%
        ),
        linear-gradient(
            90deg,
            #fff7ef 0%,
            #fffaf6 55%,
            #ffffff 100%
        );
}

/* SOFT LIGHT WASH FOR DEPTH */
.odour-aid-section-new::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 55% 50%,
            rgba(255, 255, 255, 0.85),
            rgba(255, 255, 255, 0.55) 35%,
            rgba(255, 255, 255, 0.15) 55%,
            transparent 75%
        );
    z-index: 0;
    pointer-events: none;
}

/* CONTENT ABOVE BACKGROUND */
.odour-aid-section-new .container {
    position: relative;
    z-index: 2;
}

/* ================= GRID ================= */

.odour-aid-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 60px;
}

/* ================= TEXT SIDE ================= */

.odour-aid-text {
    max-width: 520px;
}

.aid-subheading {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #c47a2c;
    margin-bottom: 14px;
    font-weight: 600;
}

.odour-aid-text h2 {
    font-size: 40px;
    font-weight: 700;
    color: #111;
    margin-bottom: 18px;
}

.odour-aid-text h2 span {
    color: #c47a2c;
}

.odour-aid-text p {
    font-size: 16px;
    line-height: 1.75;
    color: #555;
    margin-bottom: 14px;
}

.odour-aid-text p strong {
    color: #111;
}

.odour-aid-text .emphasis {
    font-weight: 600;
    color: #222;
    margin-top: 18px;
}

/* HIGHLIGHT LINE */
.highlight-line {
    margin-top: 22px;
    padding-left: 14px;
    border-left: 3px solid #c47a2c;
    font-weight: 600;
    color: #333;
}

.highlight-line span {
    color: #c47a2c;
}

/* ================= IMAGE SIDE ================= */

.odour-aid-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* RICH COPPER GLOW BEHIND IMAGE */
.odour-aid-visual::before {
    content: "";
    position: absolute;
    width: 460px;
    height: 460px;
    background: radial-gradient(
        circle,
        rgba(196, 122, 44, 0.45),
        rgba(196, 122, 44, 0.22),
        rgba(196, 122, 44, 0.08),
        transparent 72%
    );
    filter: blur(45px);
    z-index: 0;
}

/* IMAGE FRAME */
.glass-frame {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    padding: 0;
    box-shadow:
        0 22px 55px rgba(0,0,0,0.25),
        0 12px 30px rgba(196,122,44,0.35);
    transition: transform 0.4s ease;
}

.glass-frame img {
    width: 100%;
    max-width: 420px;
    display: block;
    border-radius: 14px;
}

/* FLOAT EFFECT */
.glass-frame:hover {
    transform: translateY(-8px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .odour-aid-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .odour-aid-text {
        max-width: 100%;
        margin-inline: auto;
    }

    .highlight-line {
        border-left: none;
        border-top: 2px solid #c47a2c;
        padding-left: 0;
        padding-top: 12px;
        margin-inline: auto;
        width: fit-content;
    }

    .odour-aid-visual::before {
        width: 340px;
        height: 340px;
    }
}
/* =========================================================
   WHAT MAKES ODOUR-AID DIFFERENT
   EXACT MATCH WITH KEY FEATURES – METALLIC GLASS
========================================================= */

/* ===============================
   SECTION
================================ */
.odour-different-section {
  padding: 120px 0;
  background:
    radial-gradient(
      circle at top center,
      rgba(255,180,80,0.12),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      #05070c 0%,
      #0b1220 60%,
      #111827 100%
    );
}

/* ===============================
   HEADER
================================ */
.different-wrapper {
  text-align: center;
}

.different-wrapper h2 {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
}

/* SAME COPPER-GOLD TEXT */
.different-wrapper h2 span {
    background: linear-gradient(135deg, #f5a000, #ffd27d);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.different-wrapper .intro {
  margin-top: 12px;
  font-size: 16px;
  color: #cbd5e1;
}

.different-wrapper .intro span {
  display: block;
  margin-top: 6px;
  font-weight: 600;
  color: #ffffff;
}

/* ===============================
   CARD ROW
================================ */
.difference-cards {
  display: flex;
  gap: 26px;
  margin-top: 70px;
  flex-wrap: nowrap;
  justify-content: center;
}

/* ===============================
   CARD – METALLIC GLASS (CLONE)
================================ */
.diff-card {
  width: 23%;
  padding: 38px 26px;
  border-radius: 22px;
  text-align: center;
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.12),
      rgba(255,255,255,0.04)
    );

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255,255,255,0.18);

  box-shadow:
    0 25px 50px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.25);

  transition: all 0.45s ease;
}

/* METALLIC EDGE SHINE */
.diff-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background:
    linear-gradient(
      120deg,
      transparent 30%,
      rgba(255,193,7,0.25),
      transparent 70%
    );
  opacity: 0.4;
  pointer-events: none;
}

/* ===============================
   ICON – EXACT SAME GOLD LOOK
================================ */
.diff-icon {
  font-size: 30px;
  margin-bottom: 18px;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* SVG ICON COLOR */
.diff-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.8;
  fill: none;

  stroke: url(#goldGradient);
  filter: drop-shadow(0 0 10px rgba(255,183,3,0.35));
}

/* ===============================
   TEXT
================================ */
.diff-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

.diff-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #d1d5db;
}

/* ===============================
   HOVER – LUXURY GLOW (SAME)
================================ */
.diff-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 0 0 1px rgba(255,193,7,0.55),
    0 40px 90px rgba(0,0,0,0.7);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 991px) {
  .difference-cards {
    flex-wrap: wrap;
  }

  .diff-card {
    width: 48%;
  }
}

@media (max-width: 575px) {
  .diff-card {
    width: 100%;
  }

  .different-wrapper h2 {
    font-size: 32px;
  }
}
/* SAME BACKGROUND AS BENEFITS */
.odour-different-like-benefits {
  padding: 120px 0;
  background:
    radial-gradient(circle at 40% 20%, rgba(196,122,44,0.25), transparent 55%),
    linear-gradient(rgba(5,8,15,0.85), rgba(5,8,15,0.95)),
    url("img/e65df634-9a58-4e82-bddf-f330cd365736.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
}

/* ICON EFFECT ONLY */
.diff-icon svg {
  width: 38px;
  height: 38px;
  filter:
    drop-shadow(0 0 12px rgba(255,183,3,0.55))
    drop-shadow(0 0 28px rgba(255,183,3,0.35));
  transition: filter 0.3s ease;
}

/* ICON HOVER GLOW ONLY */
.diff-box:hover .diff-icon svg {
  filter:
    drop-shadow(0 0 18px rgba(255,183,3,0.85))
    drop-shadow(0 0 40px rgba(255,183,3,0.55));
}

/* LOCK ICON MOVEMENT */
.diff-icon,
.diff-icon svg {
  transform: none !important;
}
/* REMOVE ICON BACK CIRCLE */
.diff-icon {
  background: none !important;
  box-shadow: none !important;
}

.diff-icon::before,
.diff-icon::after {
  display: none !important;
}
/* ===== FORCE SHOW SUBTITLE UNDER "What Makes ODOUR-AID Different" ===== */
.what-makes-section p,
.what-makes-section .section-subtitle,
.what-makes-section .section-title p,
.what-makes-section .subtitle,
.what-makes-section small {
    color: #ffffff !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Extra safety if opacity is on parent */
.what-makes-section {
    opacity: 1 !important;
}





/* SECTION */
.odour-compare-section {
  padding: 100px 0;
  background: #f9fafc;
  text-align: center;
}

/* HEADING */
.odour-compare-section h2 {
  font-size: 42px;
  margin-bottom: 10px;
}

.odour-compare-section h2 span {
  color: #c47a2c;
}

/* INTRO */
.compare-intro {
  color: #555;
  margin-bottom: 20px;
  font-size: 16px;
}

/* AUTHORITY LINE */
.authority-line {
  margin-bottom: 60px;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.authority-line .old {
  color: #999;
}

.authority-line .divider {
  margin: 0 12px;
  color: #c47a2c;
  font-weight: 700;
}

.authority-line .new {
  color: #c47a2c;
  font-weight: 600;
}

/* GRID */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 45px;
  max-width: 1100px;
  margin: 0 auto;
}

/* BASE CARD */
.compare-card {
  padding: 45px 35px;
  border-radius: 26px;
  transition: all 0.4s ease;
}

/* OLD CARD */
.compare-card.masking {
  background: #f3f3f3;
  border: 2px dashed #d0d0d0;
  opacity: 0.75;
  box-shadow: 0 18px 35px rgba(0,0,0,0.06);
}

.compare-card.masking h3,
.compare-card.masking li {
  color: #777;
}

/* NEW CARD */
.compare-card.eliminating {
  background: #ffffff;
  border: 2px solid #b87333;
  box-shadow:
    0 30px 70px rgba(184,115,51,0.35),
    0 0 0 1px rgba(184,115,51,0.25);
  transform: translateY(-12px);
}

/* ICON */
.compare-card .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.masking .icon {
  background: #e5e5e5;
  color: #888;
  border: 1px solid #ccc;
}

.eliminating .icon {
  background: rgba(184,115,51,0.15);
  color: #b87333;
}

.compare-card .icon i {
  font-size: 30px;
}

/* TEXT */
.compare-card h3 {
  font-size: 22px;
  margin-bottom: 18px;
}

.compare-card ul {
  list-style: none;
  padding: 0;
}

.compare-card li {
  padding: 10px 0;
  font-size: 15px;
}

/* CTA */
.cta-buttons {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn {
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 15px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn.primary {
  background: #000;
  color: #fff;
}

.btn.primary:hover {
  box-shadow: 0 0 25px rgba(184,115,51,0.6);
}

.btn.outline {
  border: 2px solid #b87333;
  color: #b87333;
}

.btn.outline:hover {
  background: #b87333;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .compare-grid {
    grid-template-columns: 1fr;
  }

  .compare-card.eliminating {
    transform: none;
  }
}
/* ===============================
   KILL ALL DEFAULT LINK COLORS
================================ */
a,
a:hover,
a:focus,
a:active,
a:visited {
  text-decoration: none !important;
  outline: none !important;
  box-shadow: none !important;
  -webkit-tap-highlight-color: transparent !important;
}

/* ===============================
   NAVBAR LINKS – COPPER ONLY
================================ */
.navbar .nav-link {
  color: #000 !important;
  font-weight: 500;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link:active {
  color: #b87333 !important;
}

/* active page */
.navbar .nav-link.active {
  color: #b87333 !important;
  position: relative;
}

.navbar .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #b87333;
}




.odour-pss-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f6f9ff, #eef3ff);
}

.pss-block {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 90px;
  flex-wrap: wrap;
}

.pss-block.reverse {
  flex-direction: row-reverse;
}

.pss-content {
  flex: 1;
}

.pss-content h3 {
  font-size: 36px;
  margin-bottom: 15px;
}

.pss-content h3 span {
  color: var(--primary);
}

.pss-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

/* Problem list */
.problem-list {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 20px;
  margin: 20px 0;
}

.problem-list li {
  background: rgba(13,110,253,0.08);
  padding: 10px 16px;
  border-radius: 20px;
  font-size: 15px;
}

.problem-list i {
  color: #f59e0b;
  margin-right: 6px;
}

/* Solution features */
.solution-features {
  margin-top: 20px;
}

.solution-features div {
  margin-bottom: 10px;
  font-size: 15px;
}

.solution-features i {
  color: #000;
  margin-right: 8px;
}

/* Science highlight */
.science-highlight {
  font-size: 20px;
  font-weight: 600;
  margin-top: 20px;
}

.science-highlight span {
  color: #000;
}

/* Glass Image Card */
.glass-card {
  flex: 1;
  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(16px);
  border-radius: 28px;
  padding: 25px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

.glass-card img {
  width: 100%;
  border-radius: 20px;
}

/* Floating science image */
.floating {
  animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .pss-block {
    flex-direction: column;
    text-align: center;
  }

  .problem-list {
    justify-content: center;
    flex-wrap: wrap;
  }

  .pss-content h3 {
    font-size: 30px;
  }
}
.odour-flow-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #f6f9ff, #eef3ff);
}

.flow-wrapper {
  position: relative;
  max-width: 1100px;
  margin: auto;
}

/* CENTER LINE */
.flow-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(#0d6efd, transparent);
  transform: translateX(-50%);
}

.flow-card {
  display: flex;
  align-items: flex-start;
  margin-bottom: 100px;
  position: relative;
}

.flow-card.left {
  justify-content: flex-start;
}

.flow-card.right {
  justify-content: flex-end;
}

/* ICON NODE */
.flow-icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 2;
}

.flow-icon.danger { background: #dc3545; }
.flow-icon.success { background: #198754; }
.flow-icon.science { background: #0d6efd; }

.flow-icon i {
  font-size: 22px;
}

/* CONTENT CARD */
.flow-content {
  width: 45%;
  padding: 30px;
}

.flow-content h3 {
  font-size: 30px;
  margin-bottom: 15px;
}

.flow-content h3 span {
  color: var(--primary);
}

.flow-list {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 15px;
  margin: 15px 0;
}

.flow-list li {
  background: rgba(13,110,253,0.1);
  padding: 8px 14px;
  border-radius: 18px;
  font-size: 14px;
}

.flow-features span {
  display: block;
  margin-bottom: 8px;
}

/* IMAGE */
.flow-img {
  width: 100%;
  margin-top: 20px;
  border-radius: 18px;
}

/* GLASS */
.glass-card {
  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(18px);
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.2);
}

/* FLOAT */
.floating {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

/* MOBILE */
@media (max-width: 900px) {
  .flow-wrapper::before {
    left: 20px;
  }

  .flow-card {
    justify-content: flex-start !important;
    padding-left: 60px;
  }

  .flow-icon {
    left: 20px;
    transform: none;
  }

  .flow-content {
    width: 100%;
  }
}
/* ================================
   HEADER INSTAGRAM BUTTON
================================ */

.instagram-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #000;          /* pure white */
    color: #000000;               /* icon black */
    font-size: 28px;
    text-decoration: none;

    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
    margin-top: 2px;
}

/* Hover = copper premium */
.instagram-btn:hover {
    background: #000;
    color: #c47a2c;               /* copper icon */
    transform: translateY(-2px) scale(1.08);
    box-shadow: 0 12px 26px rgba(196,122,44,0.35);
}

/* icon centering fix */
.instagram-btn i {
    line-height: 1;
}


Benefits Css
-------------------------------------------
/* BENEFITS SECTION */
.benefits-section {
  padding: 90px 20px;
  background: linear-gradient(180deg, #ffffff, #f6f6f6);
  font-family: "Inter", sans-serif;
}

/* TITLE */
.section-title h2 {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-title p {
  font-size: 16px;
  color: #666;
}

/* GRID SPACING */
.benefits-grid {
  margin-top: 60px;
}

/* BENEFIT CARD – GLASSMORPHISM */
.benefit-box {
  height: 100%;
  padding: 35px 25px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(255,255,255,0.4);
}

/* HOVER – LUXURY LIFT */
.benefit-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
}

/* ICON CONTAINER */
.benefit-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #c58a4a, #8b5a2b);
  box-shadow: 0 10px 25px rgba(197,138,74,0.35);
}

/* ICON */
.benefit-icon i {
  font-size: 30px;
  color: #fff;
}

/* TEXT */
.benefit-box h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111;
}

.benefit-box p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* ICON GLOW ON HOVER */
.benefit-box:hover .benefit-icon {
  box-shadow: 0 15px 40px rgba(197,138,74,0.6);
}
.navbar
/* =====================================
 WHY ODOUR-AID – GLASS CARD ONLY
===================================== */

.why-card {
  background: rgba(255, 255, 255, 0.10) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 22px;

  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.18),
    0 25px 60px rgba(0,0,0,0.55);

  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* soft copper glow like Key Features */
.why-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at right corner,
    rgba(184,115,51,0.35),
    transparent 65%
  );
  opacity: 0.6;
  pointer-events: none;
}

/* hover = premium lift */
.why-card:hover {
  transform: translateY(-6px);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.22),
    0 35px 80px rgba(184,115,51,0.35);
}

/* text clarity on glass */
.why-card h4 {
  color: #ffffff;
}

.why-card p {
  color: rgba(255,255,255,0.78);
}
KEY FEATURES CSSS
-----------------------------
/* ===============================
   BENEFITS 
================================ */

.benefits-section {
  padding: 110px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(184,115,51,0.18), transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(0,0,0,0.9), transparent 55%),
    linear-gradient(180deg, #050505, #0b0b0b);
}

/* Heading */
.benefits-heading {
  font-size: 44px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.4px;
}

.benefits-subtext {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
}

/* Layout */
.benefits-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  margin-top: 60px;
}

/* Columns */
.benefits-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* ===============================
   GLASSY CARDS
================================ */

.benefit-box {
  position: relative;
  padding: 28px 26px;
  border-radius: 22px;

  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.14);

  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.15),
    0 30px 60px rgba(0,0,0,0.65);

  transition: all 0.4s ease;
  overflow: hidden;
}

/* Copper glow overlay */
.benefit-box::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: radial-gradient(
    circle at top left,
    rgba(184,115,51,0.45),
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.benefit-box:hover::after {
  opacity: 1;
}

.benefit-box:hover {
  transform: translateY(-6px);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.18),
    0 40px 80px rgba(184,115,51,0.35);
}

/* ===============================
   ICON STYLE
================================ */

.benefit-box i {
  font-size: 26px;
  color: #d9a441;
  background: rgba(217,164,65,0.12);
  padding: 14px;
  border-radius: 50%;
  margin-bottom: 14px;
}

/* ===============================
   TEXT
================================ */

.benefit-box h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #ffffff;
}

.benefit-box p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
}

/* ===============================
   CENTER IMAGE
================================ */

.benefits-image img {
  width: 280px;
  border-radius: 50%;
  padding: 18px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(255,255,255,0.18);

  box-shadow:
    0 30px 70px rgba(0,0,0,0.7),
    inset 0 1px 1px rgba(255,255,255,0.2);
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
  .benefits-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .benefits-image img {
    margin: 40px auto;
  }
}

@media (max-width: 768px) {

  .benefits-wrapper {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 15px;
    scroll-snap-type: x mandatory;
  }

  .benefits-column,
  .benefits-image {
    flex: 0 0 80%;
    scroll-snap-align: center;
  }

  .benefits-image img {
    width: 220px;
  }

  /* Hide scrollbar */
  .benefits-wrapper::-webkit-scrollbar {
    display: none;
  }
}

/* ================================
   NAVBAR COLOR OVERRIDE (FINAL)
================================ */

/* Default nav links */
.navbar-nav .nav-link {
  color: #000 !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

/* Hover = COPPER */
.navbar-nav .nav-link:hover {
  color: #b87333 !important;
}

/* Active (current page) = COPPER */
.navbar-nav .nav-link.active {
  color: #b87333 !important;
  font-weight: 600;
}

/* Remove Bootstrap blue focus/active */
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:active {
  color: #b87333 !important;
  box-shadow: none !important;
}

/* Optional underline effect */
.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.5px;
  background: #b87333;
  margin-top: 6px;
}
/* ===============================
   WHY WE BUILT – PREMIUM GLASS
================================ */

.why-built-section {
  padding: 140px 0;
  background: radial-gradient(
    circle at top,
    rgba(184,115,51,0.06),
    transparent 60%
  );
}

.why-built-card {
  max-width: 900px;
  margin: auto;
  padding: 80px 90px;

  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.75),
    rgba(255,255,255,0.35)
  );

  backdrop-filter: blur(22px);
  border-radius: 32px;

  border: 1px solid rgba(184,115,51,0.35);

  box-shadow:
    0 30px 80px rgba(0,0,0,0.12),
    inset 0 0 0 rgba(255,255,255,0);

  position: relative;
  overflow: hidden;

  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* floating hover */
.why-built-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 45px 120px rgba(0,0,0,0.18),
    0 0 60px rgba(184,115,51,0.25);
}

/* moving copper light */
.why-built-card::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -60%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(184,115,51,0.12),
    transparent
  );
  transform: rotate(25deg);
  animation: copperSweep 8s linear infinite;
}

@keyframes copperSweep {
  0% { transform: translateX(-30%) rotate(25deg); }
  100% { transform: translateX(30%) rotate(25deg); }
}

/* content stays above glow */
.why-built-card * {
  position: relative;
  z-index: 2;
}

/* tag */
.why-tag {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #b87333;
  margin-bottom: 22px;
}

/* title */
.why-title {
  font-size: 48px;
  font-weight: 700;
  color: #0f0f0f;
  margin-bottom: 40px;
}

.why-title span {
  color: #b87333;
}

/* text */
.why-content p {
  font-size: 18px;
  line-height: 1.9;
  color: #3e3e3e;
  margin-bottom: 20px;
}

/* highlight */
.why-highlight {
  font-size: 20px;
  font-weight: 500;
  color: #111;
  margin-top: 30px;
}

/* final punch */
.why-strong {
  margin-top: 38px;
  font-size: 22px;
  font-weight: 700;
  color: #000;
}

.why-strong span {
  color: #b87333;
}

/* responsive */
@media (max-width: 768px) {
  .why-built-card {
    padding: 55px 30px;
  }

  .why-title {
    font-size: 34px;
  }

  .why-content p {
    font-size: 16px;
  }
}
/* ===== Navbar Background & Text ===== */
.navbar {
    background-color: #000000 !important;
}

/* Navbar links */
.navbar .nav-link {
    color: #ffffff !important;
    font-weight: 500;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

/* Hover & Active state (Copper color) */
.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #c47a2c !important; /* Copper shade */
}


/* Navbar toggler icon (mobile) */
.navbar-toggler {
    border-color: rgba(255,255,255,0.5);
}

.navbar-toggler-icon {
    filter: invert(1);
}

/* Instagram Button */
.instagram-btn {
    color: #ffffff;
    font-size: 25px;
    transition: color 0.3s ease;
}

.instagram-btn:hover {
    color: #c47a2c; /* Copper hover */
}
.benefits-section h2 {
    color: #ffffff !important;
}

.benefits-section p {
    color: #ffffff !important;
    opacity: 0.85; /* optional */
}
/* ================================
   HEADER WHATSAPP BUTTON
================================ */

.whatsapp-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #000;          /* same black bg */
    color: #fff;            /* icon black */
    font-size: 25px;
    text-decoration: none;

    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
    margin-top: 2px;
}

/* Hover = same copper premium */
.whatsapp-btn:hover {
    background: #000;
    color: #c47a2c;            /* same copper */
    transform: translateY(-2px) scale(1.08);
    box-shadow: 0 12px 26px rgba(196,122,44,0.35);
}

/* icon centering fix */
.whatsapp-btn i {
    line-height: 1;
}
.problem-bottom-text h2 {
    white-space: nowrap;
}
.problem-bottom-text h2 {
    white-space: nowrap;
    font-size: clamp(22px, 4vw, 36px);
}
.hero-title {
    line-height: 1.2;
}

.hero-title span {
    display: block;
    white-space: nowrap;
}

.sticky-buy-now {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: linear-gradient(135deg, #ffb703, #c26b2e);
  color: #000;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  z-index: 9999;
  transition: all 0.3s ease;
}

.sticky-buy-now:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
  color: #000;
}