 :root {
     --rd-green: #00a651;
     --rd-green-dark: #007a3c;
     --rd-green-deep: #05331d;
     --rd-gold: #f9b315;
     --rd-gold-soft: #ffd56a;
     --rd-ink: #102018;
     --rd-muted: #5b6b62;
     --rd-line: #d7e6dc;
     --rd-wash: #f3faf6;
 }

 * {
     box-sizing: border-box;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: "Plus Jakarta Sans", system-ui, sans-serif;
     color: var(--rd-ink);
     background: #fff;
     overflow-x: hidden;
 }

 h1,
 h2,
 h3,
 h4,
 .display-font {
     font-family: "Outfit", sans-serif;
     letter-spacing: -0.03em;
 }

 /* NAV */
 .navbar {
     background: rgba(255, 255, 255, 0.86);
     backdrop-filter: blur(16px);
     border-bottom: 1px solid transparent;
     transition: all 0.35s ease;
     padding-block: 0.7rem;
 }

 .navbar.scrolled {
     border-bottom-color: var(--rd-line);
     box-shadow: 0 8px 30px rgba(0, 80, 40, 0.06);
     padding-block: 0.4rem;
 }

 .navbar-brand img {
     height: 40px;
     width: auto;
     display: block;
 }

 .nav-link {
     font-weight: 600;
     color: var(--rd-ink) !important;
     margin: 0 0.15rem;
     position: relative;
 }

 .nav-link::after {
     content: "";
     position: absolute;
     left: 0.7rem;
     right: 0.7rem;
     bottom: 4px;
     height: 2px;
     background: var(--rd-green);
     transform: scaleX(0);
     transform-origin: left;
     transition: transform 0.25s ease;
 }

 .nav-link:hover::after,
 .nav-link.active::after {
     transform: scaleX(1);
 }

 .btn-gold {
     background: var(--rd-gold);
     color: #3a2a00;
     font-weight: 700;
     border: 0;
     border-radius: 999px;
     padding: 0.4rem 1.35rem;
     box-shadow: 0 8px 20px rgba(249, 179, 21, 0.28);
     transition: transform 0.2s ease, box-shadow 0.2s ease;
 }
 .btn-green {
     background: linear-gradient(180deg, #16a34a, var(--green-dark));
     color: #fff;
     box-shadow: 0 10px 22px rgba(15, 138, 62, .28);
 }

 .btn-green:hover {
     color: #fff;
     transform: translateY(-2px);
     background: #007a3c!important;
 }

 .btn-outline-green {
     background: #fff;
     color: var(--green-dark);
     border: 1.5px solid rgba(15, 138, 62, .35) !important;
 }

 .btn-outline-green:hover {
     background: var(--mint);
     color: var(--green-dark);
 }
 .contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1.5rem;
}


 .btn-gold:hover {
     transform: translateY(-2px);
     box-shadow: 0 12px 28px rgba(249, 179, 21, 0.38);
     color: #3a2a00;
 }
.speccem{
    padding: 5rem 0;
}
 .btn-green {
     background: var(--rd-green);
     color: #fff;
     font-weight: 700;
     border: 0;
     border-radius: 999px;
     padding: 0.85rem 1.5rem;
     box-shadow: 0 10px 24px rgba(0, 166, 81, 0.28);
     transition: transform 0.2s ease, box-shadow 0.2s ease;
 }

 .btn-green:hover {
     transform: translateY(-2px);
     color: #fff;
     box-shadow: 0 14px 30px rgba(0, 166, 81, 0.38);
 }

 .btn-outline-light-pill {
     border: 1.5px solid rgba(255, 255, 255, 0.45);
     color: #fff;
     border-radius: 999px;
     font-weight: 650;
     padding: 0.85rem 1.5rem;
 }

 .btn-outline-light-pill:hover {
     background: #fff;
     color: var(--rd-green-deep);
 }

 /* HERO */
 .hero {
     position: relative;
     /* min-height: 100vh; */
     display: flex;
     align-items: center;
     padding: 2rem 0 2rem;
     background:
         radial-gradient(900px 500px at 85% 10%, rgba(249, 179, 21, 0.18), transparent 55%),
         radial-gradient(700px 480px at 8% 90%, rgba(0, 166, 81, 0.28), transparent 50%),
         linear-gradient(160deg, #032015 0%, #064528 48%, #0a2e1c 100%);
     color: #fff;
     overflow: hidden;
 }

 /* .hero::before {
     content: "";
     position: absolute;
     inset: 0;
     background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
         linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
     background-size: 56px 56px;
     mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
     pointer-events: none;
 } */

 .orb {
     position: absolute;
     border-radius: 50%;
     filter: blur(2px);
     animation: float 9s ease-in-out infinite;
     pointer-events: none;
 }

 /* .orb-1 {
     width: 280px;
     height: 280px;
     background: rgba(0, 166, 81, 0.28);
     top: -60px;
     left: -40px;
 } */

 .orb-2 {
     width: 220px;
     height: 220px;
     background: rgba(249, 179, 21, 0.16);
     bottom: 8%;
     right: 6%;
     animation-delay: -3s;
 }

 .orb-3 {
     width: 120px;
     height: 120px;
     background: rgba(255, 255, 255, 0.06);
     top: 28%;
     right: 22%;
     animation-delay: -5s;
 }

 @keyframes float {

     0%,
     100% {
         transform: translateY(0) scale(1);
     }

     50% {
         transform: translateY(-22px) scale(1.06);
     }
 }

 .eyebrow {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     font-size: 0.78rem;
     letter-spacing: 0.16em;
     text-transform: uppercase;
     font-weight: 700;
     color: var(--rd-gold);
     margin-bottom: 1rem;
 }

 .eyebrow .dot {
     width: 8px;
     height: 8px;
     border-radius: 50%;
     background: var(--rd-gold);
     box-shadow: 0 0 0 0 rgba(249, 179, 21, 0.6);
     animation: pulse 1.8s infinite;
 }

 @keyframes pulse {
     0% {
         box-shadow: 0 0 0 0 rgba(249, 179, 21, 0.55);
     }

     70% {
         box-shadow: 0 0 0 10px rgba(249, 179, 21, 0);
     }

     100% {
         box-shadow: 0 0 0 0 rgba(249, 179, 21, 0);
     }
 }

 .hero h1 {
     font-size: clamp(2.3rem, 5.2vw, 4.4rem);
     font-weight: 800;
     line-height: 1.05;
     margin-bottom: 1.25rem;
 }

 .hero h1 span {
     color: var(--rd-gold);
 }

 .hero .lead {
     font-size: 1.18rem;
     color: rgba(255, 255, 255, 0.86);
     max-width: 40rem;
 }

 .media-frame {
     position: relative;
     border-radius: 1.35rem;
     overflow: hidden;
     box-shadow: 0 22px 50px rgba(5, 51, 29, 0.16);
 }

 .media-frame img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     transition: transform 0.7s ease;
 }

 .media-frame:hover img {
     transform: scale(1.05);
 }

.media-frame video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #000;
}

 .media-frame.ratio-wide {
     aspect-ratio: 16/10;
 }

 .media-frame.ratio-tall {
     aspect-ratio: 3/4;
     min-height: 320px;
 }

 .media-frame.ratio-square {
     aspect-ratio: 1/1;
 }

 .media-badge {
     position: absolute;
     left: 1rem;
     bottom: 1rem;
     background: rgba(2, 21, 14, 0.72);
     color: #fff;
     backdrop-filter: blur(8px);
     font-size: 0.75rem;
     font-weight: 700;
     letter-spacing: 0.06em;
     text-transform: uppercase;
     padding: 0.4rem 0.75rem;
     border-radius: 999px;
 }

 .hero-photo {
     border-radius: 1.4rem;
     overflow: hidden;
     box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
     border: 1px solid rgba(255, 255, 255, 0.12);
     aspect-ratio: 16/11;
 }

 .hero-photo img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     animation: ken 18s ease-in-out infinite alternate;
 }

 @keyframes ken {
     from {
         transform: scale(1);
     }

     to {
         transform: scale(1.08);
     }
 }

 .float-card {
     position: absolute;
     right: -18px;
     bottom: -22px;
     width: 42%;
     border-radius: 1rem;
     overflow: hidden;
     border: 4px solid #fff;
     box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
     animation: float 7s ease-in-out infinite;
 }

 .hero-stats {
     display: flex;
     flex-wrap: wrap;
     gap: 1.5rem 2.2rem;
     margin-top: 2.4rem;
 }

 .hero-stats .stat-label {
     font-size: 0.78rem;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     color: rgba(255, 255, 255, 0.62);
     font-weight: 600;
 }

 .hero-stats strong {
     font-size: 1.15rem;
     display: block;
 }

 /* SECTIONS */
 section {
     position: relative;
 }

 .section-pad {
     padding: 4rem 0;
 }

 .section-kicker {
     color: var(--rd-green);
     font-weight: 800;
     letter-spacing: 0.14em;
     text-transform: uppercase;
     font-size: 0.78rem;
 }

 .section-title {
     font-weight: 800;
     font-size: clamp(1.8rem, 3.4vw, 2.7rem);
     margin: 0.4rem 0 1rem;
 }

 .rule {
     width: 72px;
     height: 3px;
     background: linear-gradient(90deg, var(--rd-green), var(--rd-gold));
     border: 0;
     opacity: 1;
     margin: 0 0 1.4rem;
 }

 .muted {
     color: var(--rd-muted);
 }

 .prose p {
     color: #3d4d44;
     line-height: 1.75;
     font-size: 1.05rem;
 }

 .wash {
     background: var(--rd-wash);
 }

 .deep {
     background: linear-gradient(180deg, #042418 0%, #073322 100%);
     color: #fff;
 }
 .mbanner{
    padding-top: 5rem;
    width: 100%;
 }
 .mbanner img{
    width: 100%;
 }

 .deep .muted,
 .deep .prose p {
     /* color: #fff; */
 }

 .deep .section-kicker {
     color: var(--rd-gold);
 }

 .service-card h3 {
     color: #000;
 }

 /* CARDS */
 .glass-card,
 .service-card,
 .product-panel,
 .belief-card {
     background: #fff;
     border: 1px solid var(--rd-line);
     border-radius: 1.25rem;
     transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
 }

 .service-card:hover,
 .belief-card:hover,
 .product-panel:hover {
     transform: translateY(-8px);
     box-shadow: 0 22px 50px rgba(5, 51, 29, 0.1);
     border-color: rgba(0, 166, 81, 0.35);
 }

 .icon-wrap {
     width: 52px;
     height: 52px;
     border-radius: 14px;
     display: grid;
     place-items: center;
     background: linear-gradient(135deg, rgba(0, 166, 81, 0.12), rgba(249, 179, 21, 0.16));
     color: var(--rd-green-dark);
     font-size: 1.35rem;
     margin-bottom: 1rem;
 }

 .product-panel {
     padding: 2.2rem;
     height: 100%;
     position: relative;
     overflow: hidden;
 }

 .product-panel::after {
     content: "";
     position: absolute;
     width: 180px;
     height: 180px;
     border-radius: 50%;
     right: -50px;
     top: -50px;
     background: radial-gradient(circle, rgba(0, 166, 81, 0.12), transparent 70%);
 }

 .product-panel.gold::after {
     background: radial-gradient(circle, rgba(249, 179, 21, 0.18), transparent 70%);
 }

 .tag {
     display: inline-block;
     font-size: 0.72rem;
     font-weight: 800;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     padding: 0.28rem 0.65rem;
     border-radius: 999px;
     background: rgba(0, 166, 81, 0.1);
     color: var(--rd-green-dark);
 }

 .tag.gold {
     background: rgba(249, 179, 21, 0.18);
     color: #8a5b00;
 }

 .feature-list {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .feature-list li {
     display: flex;
     gap: 0.7rem;
     padding: 0.7rem 0;
     border-bottom: 1px solid var(--rd-line);
     color: #33443b;
 }

 .feature-list li:last-child {
     border-bottom: 0;
 }

 .feature-list i {
     color: var(--rd-green);
     margin-top: 0.15rem;
     flex-shrink: 0;
 }

 .quote-box {
     border-left: 4px solid var(--rd-gold);
     background: #fff;
     padding: 1.4rem 1.6rem;
     border-radius: 0 1rem 1rem 0;
     font-size: 1.2rem;
     font-weight: 650;
     font-family: Outfit, sans-serif;
 }

 .cta-band {
     background:
         radial-gradient(600px 200px at 90% 0%, rgba(249, 179, 21, 0.22), transparent 60%),
         linear-gradient(90deg, var(--rd-green-dark), #05934a);
     border-radius: 1.6rem;
     padding: 2.6rem;
     color: #fff;
 }

 footer {
     background: #02150e;
     color: rgba(255, 255, 255, 0.75);
     padding: 3.2rem 0 1.6rem;
 }

 footer a {
     color: #fff;
     text-decoration: none;
 }

 footer a:hover {
     color: var(--rd-gold);
 }

 .footer-logo {
     height: 45px;
     width: auto;
     margin-bottom: 1rem;
     filter: brightness(1.05);
 }

 /* reveal helpers */
 .shine {
     position: relative;
     overflow: hidden;
 }

 .shine::before {
     content: "";
     position: absolute;
     top: 0;
     left: -120%;
     width: 80%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
     transform: skewX(-20deg);
     animation: shine 4.5s ease-in-out infinite;
 }

 @keyframes shine {
     0% {
         left: -120%;
     }

     40%,
     100% {
         left: 140%;
     }
 }

 @media (max-width: 991px) {
     .navbar-brand img {
         height: 34px;
         width: auto;
     }

     .hero {
         min-height: auto;
         padding-top: 7.2rem;
     }

     .float-card {
         width: 46%;
         right: 12px;
         bottom: -16px;
     }

     .hero-photo {
         margin-bottom: 1.4rem;
     }
 }

 .scroll-top-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: all 0.25s ease;
  z-index: 1050;
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: #000;
  transform: translateY(-2px);
}
