:root {
  --brand-green: #219653;
  --brand-green-dark: #145239;
  --brand-green-darker: #113728;
  --brand-orange: #f4a51c;
  --footer-bg: #102f24;
  --muted: #f5f8f4;
  --border: #e4ece2;
  --text: #111111;
  --text-muted: #262626;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.bg-brand-green { background-color: var(--brand-green) !important; }
.bg-brand-green-dark { background-color: var(--brand-green-dark) !important; }
.bg-brand-green-darker { background-color: var(--brand-green-darker) !important; }
.bg-brand-orange { background-color: var(--brand-orange) !important; }
.bg-muted-soft { background-color: var(--muted) !important; }
.text-brand-green { color: var(--brand-green) !important; }
.text-brand-orange { color: var(--brand-orange) !important; }
.text-muted-custom { color: var(--text-muted) !important; font-weight: 500; }

.section-pad {
  padding: 96px 0;
}

.section-label {
  color: var(--brand-green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.btn-wastco {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  border: 0;
  border-radius: 6px;
  background: var(--brand-orange);
  color: #fff;
  padding: .9rem 1.6rem;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 4px 0 var(--brand-green);
  transition: transform .2s ease;
}

.btn-wastco:hover {
  color: #fff;
  transform: translateY(-2px);
}

.topbar {
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none !important;
  transition: transform 0.25s ease;
}

.brand-logo:hover {
  transform: translateY(-1px);
}

.logo-wrapper {
  transition: all 0.25s ease;
}

.brand-logo:hover .logo-wrapper {
  box-shadow: 0 4px 12px rgba(33, 150, 83, 0.15);
  border-color: rgba(33, 150, 83, 0.35) !important;
}

.logo-bin,
.agency-logo {
  max-height: 44px;
  width: auto;
  object-fit: contain;
}

.top-info-icon,
.square-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 6px;
  color: #fff;
  flex: 0 0 auto;
}

.social-btn {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: var(--brand-green);
  color: #fff;
  transition: transform .2s ease;
}

.social-btn:hover {
  color: #fff;
  transform: translateY(-2px);
}

.main-nav {
  background: var(--brand-green);
  color: #fff;
}

.main-nav .nav-link,
.main-nav .dropdown-toggle {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active,
.main-nav .dropdown-toggle:hover {
  color: var(--brand-orange);
}

.dropdown-menu {
  border: 0;
  border-radius: 6px;
  box-shadow: 0 18px 45px rgba(0,0,0,.14);
}

.dropdown-item {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.dropdown-item:hover {
  color: var(--brand-orange);
  background: #fff;
}

.hero,
.page-hero,
.cta-banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
}

.hero {
  min-height: 720px;
  display: grid;
  place-items: center;
  text-align: center;
}

.page-hero {
  min-height: 350px;
  display: grid;
  place-items: center;
  text-align: center;
}

.hero-bg,
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .hero-bg {
  object-fit: cover;
  object-position: center 82%;
  transform: scale(1.38);
  transform-origin: center 80%;
  width: 100%;
  height: 100%;
  inset: 0;
  transition: transform 0.5s ease;
}

.page-hero-bg {
  object-fit: cover;
  object-position: center top !important;
}

.hero > .container {
  padding-top: 4.5rem;
  padding-bottom: 2.5rem;
  transform: translateY(clamp(1.5rem, 3vw, 2.75rem));
  z-index: 2;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(14, 42, 32, 0.72) 0%, rgba(0, 0, 0, 0.50) 60%, rgba(0, 0, 0, 0.35) 100%);
}

.hero-kicker {
  color: rgba(255,255,255,.95);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

@keyframes pulseGlow {
  0% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(244, 165, 28, 0.7); }
  70% { transform: scale(1.15); opacity: 0.8; box-shadow: 0 0 0 8px rgba(244, 165, 28, 0); }
  100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(244, 165, 28, 0); }
}

.hero-stat-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 16px 20px;
  transition: all 0.3s ease;
}

.hero-stat-card:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(244, 165, 28, 0.5);
  transform: translateY(-3px);
}

.hero h1 {
  margin-top: 1rem;
  font-size: clamp(2.1rem, 3.6vw, 3.0rem);
  line-height: 1.22;
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.hero-description {
  color: rgba(255,255,255,.94);
  font-size: clamp(.9rem, 1.1vw, .98rem);
  font-weight: 500;
  line-height: 1.78;
  letter-spacing: .01em;
  text-shadow: 0 1px 8px rgba(0,0,0,.48);
}

.typewriter-wrap {
  display: inline-grid;
  position: relative;
}

.typewriter-base,
.typewriter-text {
  grid-area: 1 / 1;
}

.typewriter-base {
  opacity: .42;
}

.typewriter-text {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  width: 0;
  animation: typewriter var(--tw-duration, 1.2s) steps(var(--tw-chars)) var(--tw-delay, 160ms) forwards,
    typewriterCaret var(--tw-duration, 1.2s) steps(1) var(--tw-delay, 160ms) forwards;
}

.floating-help {
  position: relative;
  z-index: 4;
  margin-top: -52px;
  margin-bottom: 32px;
}

.card-wastco {
  border: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(16,47,36,.1);
}

.border-left-green {
  border-left: 4px solid var(--brand-green);
}

.ticker-shell {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 48px 0;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: max-content;
  padding: 1rem 1.5rem;
  animation: tickerMove 32s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  border-radius: 999px;
  background: #f2f7f1;
  padding: .7rem 1rem;
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.image-corner {
  position: relative;
}

.image-corner::before,
.image-corner::after {
  content: "";
  position: absolute;
  width: 96px;
  height: 96px;
  background: var(--brand-orange);
}

.image-corner::before {
  top: -24px;
  left: -24px;
}

.image-corner::after {
  right: -24px;
  bottom: -24px;
}

.image-corner img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 14px 35px rgba(0,0,0,.15);
}

.service-card {
  overflow: hidden;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0,0,0,.1);
  transition: transform .25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card img {
  width: 100%;
  height: 224px;
  object-fit: cover;
  transition: transform .5s ease;
}

.service-card:hover img {
  transform: scale(1.08);
}

.service-panel {
  position: relative;
  margin: -48px 24px 0;
  border-radius: 6px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(0,0,0,.13);
}

.service-panel.featured {
  background: var(--brand-green);
  color: #fff;
}

.service-spacer {
  height: 48px;
}

.industries-band {
  position: relative;
  overflow: hidden;
  background: var(--muted);
}

.image-green-frame {
  position: relative;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(17,55,40,.14);
  border: 4px solid var(--brand-green);
  overflow: hidden;
}

.contact-overlap {
  position: relative;
  z-index: 5;
  margin-top: 32px;
  margin-bottom: 32px;
}

.stats-section {
  padding: 80px 0;
}

.feature-item-card {
  padding: 18px 20px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-item-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.pricing-card {
  border: 0;
  border-bottom: 4px solid var(--brand-green);
  border-radius: 6px;
  padding: 32px 22px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0,0,0,.1);
}

.pricing-card.featured {
  border-bottom-color: var(--brand-orange);
  background: var(--brand-green);
  color: #fff;
  padding: 42px 22px;
  box-shadow: 0 14px 35px rgba(17,55,40,.22);
}

.pricing-card h3 {
  font-size: clamp(0.98rem, 1.15vw, 1.15rem);
  white-space: nowrap;
}

.pricing-card ul li {
  white-space: nowrap;
  display: flex;
  align-items: center;
  font-size: 0.83rem;
}

.price {
  color: var(--brand-green);
  font-size: 3.25rem;
  font-weight: 900;
  line-height: 1;
}

.pricing-card.featured .price {
  color: var(--brand-orange);
}

.testimonial-slider-wrap {
  position: relative;
  width: 100%;
}

.testimonial-carousel-shell {
  overflow: hidden;
  border-radius: 6px;
  width: 100%;
}

.testimonial-track {
  display: flex;
  width: 100%;
  transition: transform 0.42s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-slide {
  flex: 0 0 100%;
  width: 100%;
}

.testimonial-slider {
  position: relative;
  width: 100%;
}

.testimonial-slider .testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.42s ease, transform 0.42s ease, visibility 0.42s ease;
  transform: translateY(10px);
}

.testimonial-slider .testimonial-card.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.testimonial-card {
  border-radius: 6px;
  background: #fff;
  color: var(--text);
  padding: 40px;
  box-shadow: 0 22px 50px rgba(0,0,0,.18);
}

.testimonial-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}

.dot-btn {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot-btn.active {
  width: 24px;
  border-radius: 10px;
  background: var(--brand-orange);
}

.dot-btn:hover:not(.active) {
  background: rgba(255, 255, 255, 0.7);
}

.blog-card img,
.blog-list-img {
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.blog-card img {
  height: 224px;
}

.blog-list-img {
  height: 320px;
}

.process-line {
  position: absolute;
  top: 28px;
  left: 16.666%;
  right: 16.666%;
  border-top: 2px dashed var(--border);
}

.faq-item {
  overflow: hidden;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(0,0,0,.08);
}

.faq-button {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 1rem 1.25rem;
  color: inherit;
  font-weight: 800;
  text-align: left;
}

.faq-item.open {
  background: var(--brand-orange);
  color: #fff;
}

.faq-answer {
  display: none;
  padding: 0 1.25rem 1.25rem;
  font-size: .9rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

.footer {
  background: linear-gradient(180deg, var(--footer-bg) 0%, #0a2018 100%);
  color: #fff;
  position: relative;
}

.footer a {
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer a:hover {
  color: var(--brand-orange);
}

.footer-link-list a {
  display: inline-block;
}

.footer-link-list a:hover {
  transform: translateX(4px);
}

.footer-rule {
  width: 48px;
  height: 3px;
  background: var(--brand-orange);
  border-radius: 2px;
}

.footer-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}

.footer-social-icon:hover {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(244, 165, 28, 0.35);
}

.footer-helpline-badge {
  background: rgba(244, 165, 28, 0.12);
  border: 1px solid rgba(244, 165, 28, 0.35);
  border-radius: 12px;
  padding: 14px 18px;
}

.js-reveal .scroll-reveal {
  --reveal-delay: 0ms;
  opacity: 0;
  transition: opacity 520ms ease, transform 520ms cubic-bezier(.22,1,.36,1);
  transition-delay: var(--reveal-delay);
}

.js-reveal .scroll-reveal[data-reveal-direction="up"] { transform: translate3d(0, 22px, 0); }
.js-reveal .scroll-reveal[data-reveal-direction="down"] { transform: translate3d(0, -22px, 0); }
.js-reveal .scroll-reveal[data-reveal-direction="left"] { transform: translate3d(-26px, 0, 0); }
.js-reveal .scroll-reveal[data-reveal-direction="right"] { transform: translate3d(26px, 0, 0); }
.js-reveal .scroll-reveal[data-reveal-direction="zoom"] { transform: scale(.975); }
.js-reveal .scroll-reveal[data-reveal="visible"] { opacity: 1; transform: translate3d(0,0,0) scale(1); }

@keyframes typewriter {
  from { width: 0; }
  to { width: calc(var(--tw-chars) * 1ch); }
}

@keyframes typewriterCaret {
  0%, 48% { border-right: .1em solid var(--brand-orange); }
  52%, 100% { border-right: 0 solid transparent; }
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translate3d(0,18px,0); }
  to { opacity: 1; transform: translate3d(0,0,0); }
}

@keyframes heroKickerPulse {
  0%, 100% {
    color: rgba(255,255,255,.84);
    text-shadow: none;
  }
  50% {
    color: #fff;
    text-shadow: 0 0 12px rgba(255,255,255,.55);
  }
}

@keyframes tickerMove {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-50%,0,0); }
}

@media (max-width: 991.98px) {
  .hero {
    min-height: 600px;
  }

  .industries-band::before,
  .industries-band::after {
    display: none;
  }

  .contact-overlap {
    margin-bottom: 0;
  }

  .stats-section {
    padding-top: 96px;
  }

  .process-line {
    display: none;
  }
}


.stat-card {
  padding: 1.2rem 1rem;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.35s ease, box-shadow 0.35s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.stat-number {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

.stat-icon {
  font-size: 1.65rem;
  color: var(--brand-orange);
  transition: transform 0.35s ease;
}

.stat-card:hover .stat-icon {
  transform: scale(1.12);
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  margin-top: 0.25rem;
}

@media (prefers-reduced-motion: reduce) {
  .typewriter-text,
  .hero-kicker,
  .ticker-track {
    animation: none;
  }

  .typewriter-text {
    width: auto;
  }

  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Catchy & Elegant Segmented Control Bar */
.services-tabs-bar {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  padding: 6px;
  border-radius: 50rem;
  border: 2px solid transparent;
  background-image: linear-gradient(#ffffff, #ffffff), linear-gradient(135deg, rgba(33, 150, 83, 0.45), rgba(242, 101, 34, 0.45));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.services-tabs-bar .nav-link {
  color: #1e293b !important;
  background-color: transparent !important;
  border: none !important;
  font-size: 0.92rem;
  font-weight: 700 !important;
  padding: 10px 22px !important;
  border-radius: 50rem !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.services-tabs-bar .nav-link i {
  color: var(--brand-green);
  transition: transform 0.25s ease;
}

.services-tabs-bar .nav-link:hover {
  background-color: rgba(33, 150, 83, 0.08) !important;
  color: var(--brand-green-darker) !important;
  transform: translateY(-2px);
}

.services-tabs-bar .nav-link:hover i {
  transform: scale(1.15);
}

.services-tabs-bar .nav-link.active {
  background: linear-gradient(135deg, #1b7a43, #219653) !important;
  color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(33, 150, 83, 0.35) !important;
  transform: translateY(-1px);
}

.services-tabs-bar .nav-link.active i {
  color: #ffffff !important;
}

.services-tabs-bar .tab-count-badge {
  font-size: 10.5px;
  padding: 2px 8px;
  border-radius: 50rem;
  background: rgba(33, 150, 83, 0.12);
  color: var(--brand-green-darker);
  font-weight: 700;
  transition: all 0.25s ease;
}

.services-tabs-bar .nav-link.active .tab-count-badge {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

/* Premium 4-Category Card-Tabs Selector Design */
.service-cat-tab {
  background: #ffffff;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  cursor: pointer;
  overflow: hidden;
  text-decoration: none !important;
}

.service-cat-tab:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(33, 150, 83, 0.14);
  border-color: rgba(33, 150, 83, 0.4) !important;
}

.service-cat-tab .cat-icon-box {
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.service-cat-tab .cat-arrow {
  transition: transform 0.3s ease, color 0.3s ease;
}

.service-cat-tab:hover .cat-icon-box {
  transform: scale(1.1) rotate(-3deg);
}

.service-cat-tab:hover .cat-arrow {
  transform: translateX(4px);
}

.service-cat-tab.active {
  background: linear-gradient(145deg, #165b35, #219653) !important;
  border-color: #219653 !important;
  box-shadow: 0 14px 32px rgba(33, 150, 83, 0.28) !important;
  transform: translateY(-3px);
}

.service-cat-tab.active .cat-title {
  color: #ffffff !important;
}

.service-cat-tab.active .cat-num-badge {
  background: rgba(255, 255, 255, 0.22) !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.service-cat-tab.active small {
  color: rgba(255, 255, 255, 0.88) !important;
}

.service-cat-tab.active .border-top {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.service-cat-tab.active .cat-icon-box {
  background-color: #f4a51c !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18) !important;
}

.service-cat-tab.active .cat-arrow {
  color: #f4a51c !important;
}

/* Subcategory Service Cards - High-End Micro-Animations & Glass Badges */

/* Smooth & Fast Entrance Animation (0.20s) */
.tab-pane.fade {
  transition: opacity 0.10s linear !important;
}

.tab-pane.fade.show {
  animation: tabSmoothFade 0.20s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes tabSmoothFade {
  0% {
    opacity: 0;
    transform: translateY(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Staggered Entrance for Cards (0.20s) */
.tab-pane.show .row > div:nth-child(1) .service-card { animation: cardSubtleFade 0.20s cubic-bezier(0.16, 1, 0.3, 1) 0s both; }
.tab-pane.show .row > div:nth-child(2) .service-card { animation: cardSubtleFade 0.20s cubic-bezier(0.16, 1, 0.3, 1) 0.02s both; }
.tab-pane.show .row > div:nth-child(3) .service-card { animation: cardSubtleFade 0.20s cubic-bezier(0.16, 1, 0.3, 1) 0.04s both; }
.tab-pane.show .row > div:nth-child(4) .service-card { animation: cardSubtleFade 0.20s cubic-bezier(0.16, 1, 0.3, 1) 0.06s both; }

@keyframes cardSubtleFade {
  0% {
    opacity: 0;
    transform: translateY(8px) scale(0.99);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Service Card Container */
.service-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.85) !important;
  border-radius: 20px !important;
  box-shadow: 0 8px 24px rgba(16, 47, 36, 0.05) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #219653, #f4a51c);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 3;
}

.service-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 40px rgba(33, 150, 83, 0.14) !important;
  border-color: rgba(33, 150, 83, 0.35) !important;
}

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

/* Image Container & Hover Zoom */
.service-card .card-img-wrapper {
  position: relative;
  height: 195px;
  overflow: hidden;
}

.service-card .card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .card-img-wrapper img {
  transform: scale(1.09);
}

.service-card .card-img-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16, 47, 36, 0.3) 0%, transparent 60%);
  pointer-events: none;
}

/* Glassmorphic Badge Overlay on Image */
.service-card .card-badge-overlay {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #145239;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 11px;
  border-radius: 50rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

/* Icon Box Styling */
.service-card .square-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover .square-icon {
  transform: scale(1.1) rotate(-4deg);
  box-shadow: 0 8px 20px rgba(33, 150, 83, 0.22);
}

/* CTA Link Pill Button Styling */
.service-card .card-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 9px 16px;
  border-radius: 50rem;
  background: rgba(33, 150, 83, 0.08);
  color: #145239;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none !important;
}

.service-card .card-cta-btn.orange-cta {
  background: rgba(244, 165, 28, 0.11);
  color: #c47600;
}

.service-card:hover .card-cta-btn {
  background: #219653;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(33, 150, 83, 0.3);
}

.service-card:hover .card-cta-btn.orange-cta {
  background: #f4a51c;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(244, 165, 28, 0.35);
}

.service-card .card-cta-btn i {
  transition: transform 0.3s ease;
}

.service-card:hover .card-cta-btn i {
  transform: translateX(4px);
}

/* Bento Showcase Guarantees Section (Light, Harmonious & Compact) */
.bento-guarantees-section {
  position: relative;
  background: linear-gradient(180deg, #f7faf8 0%, #ffffff 100%);
  color: #1a2b23;
  overflow: hidden;
  padding: 3rem 0;
  border-top: 1px solid rgba(33, 150, 83, 0.12);
  border-bottom: 1px solid rgba(33, 150, 83, 0.12);
}

.bento-hero-card {
  background: linear-gradient(145deg, #19643b 0%, #0e4226 100%);
  border: 1px solid rgba(33, 150, 83, 0.2);
  border-radius: 18px;
  padding: 1.8rem 1.5rem;
  box-shadow: 0 12px 30px rgba(25, 100, 59, 0.2);
  position: relative;
  overflow: hidden;
  color: #ffffff;
  margin-top: 14px;
}

.bento-hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(244, 165, 28, 0.18), transparent 60%);
  pointer-events: none;
}

.bento-card {
  background: #ffffff;
  border: 1px solid rgba(33, 150, 83, 0.15);
  border-radius: 16px;
  padding: 1.15rem 1.2rem;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.bento-card:hover {
  background: #ffffff;
  border-color: rgba(33, 150, 83, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(33, 150, 83, 0.12);
}

.bento-card-highlight {
  background: linear-gradient(135deg, #ffffff 0%, #fffcf5 100%);
  border: 1px solid rgba(244, 165, 28, 0.4);
}

.bento-card-highlight:hover {
  border-color: rgba(244, 165, 28, 0.7);
  box-shadow: 0 12px 28px rgba(244, 165, 28, 0.14);
}

.bento-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.bento-progress-track {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 1rem;
}

.bento-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #219653, #f4a51c);
  border-radius: 10px;
  width: 100%;
  animation: pulseBar 2.5s infinite ease-in-out;
}

@keyframes pulseBar {
  0% { opacity: 0.8; }
  50% { opacity: 1; }
  100% { opacity: 0.8; }
}

/* High-Impact Prominent CTA Button */
.bento-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: linear-gradient(135deg, #f4a51c 0%, #ff8c00 100%);
  color: #ffffff !important;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.95rem 1.5rem;
  border-radius: 12px;
  border: 0;
  box-shadow: 0 8px 24px rgba(244, 165, 28, 0.45);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none !important;
}

.bento-cta-btn:hover {
  background: linear-gradient(135deg, #ff9800 0%, #e65100 100%);
  color: #ffffff !important;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(244, 165, 28, 0.6);
}

.bento-cta-btn i {
  font-size: 1.15rem;
  transition: transform 0.3s ease;
}

.bento-cta-btn:hover i.bi-arrow-right {
  transform: translateX(5px);
}

/* Connected Process Flow Styling */
.process-step-card {
  background: #ffffff;
  border: 1px solid rgba(33, 150, 83, 0.18);
  border-radius: 20px;
  padding: 1.8rem 1.4rem;
  transition: all 0.35s ease;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.process-step-card:hover {
  transform: translateY(-6px);
  border-color: #219653;
  box-shadow: 0 16px 36px rgba(33, 150, 83, 0.12);
}

.step-num-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

/* Swiper Custom Styling */
.mediaSwiper {
  overflow: hidden;
  padding: 10px 4px 20px 4px !important;
}

.media-swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #cbd5e1;
  opacity: 1;
  transition: all 0.3s ease;
}

.media-swiper-pagination .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 6px;
  background: var(--brand-green) !important;
}

/* Floating Side Navigation Arrows */
.swiper-side-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  z-index: 15;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid rgba(33, 150, 83, 0.25);
  color: var(--brand-green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.swiper-side-btn:hover {
  background: var(--brand-green);
  color: #ffffff;
  border-color: var(--brand-green);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 28px rgba(33, 150, 83, 0.3);
}

.swiper-side-prev {
  left: -24px;
}

.swiper-side-next {
  right: -24px;
}

@media (max-width: 991px) {
  .swiper-side-prev {
    left: 2px;
  }
  .swiper-side-next {
    right: 2px;
  }
}

/* Custom Video Poster Display & Play Button Styling */
.video-poster-card .poster-img {
  transition: transform 0.5s ease;
}

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

.play-circle-glow {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.play-btn-link:hover .play-circle-glow {
  transform: scale(1.15);
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.25), 0 12px 28px rgba(0, 0, 0, 0.5);
}

/* Sleek Darbar Baba Fareed Cleaning Section Styles */
.darbar-cleaning-section {
  position: relative;
  isolation: isolate;
}

.darbar-feature-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.darbar-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45) !important;
}

.darbar-gallery-square {
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.darbar-gallery-square:hover {
  border-color: rgba(33, 150, 83, 0.5) !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5) !important;
}

.darbar-thumb-btn {
  background: transparent;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.25s ease;
}

.darbar-thumb-btn:hover,
.darbar-thumb-btn.active {
  opacity: 1;
  border-color: var(--brand-green) !important;
  transform: scale(1.05);
}

.darbar-swiper-prev,
.darbar-swiper-next {
  transition: all 0.25s ease;
}

.darbar-swiper-prev:hover,
.darbar-swiper-next:hover {
  background: var(--brand-green) !important;
  transform: translateY(-50%) scale(1.1);
}

/* Home Page - Modern 2-Card Activities Spotlight Section */
.activities-spotlight-section {
  background: linear-gradient(180deg, #f7faf8 0%, #ffffff 100%);
  padding: 42px 0 60px;
  border-top: 1px solid rgba(33, 150, 83, 0.08);
  border-bottom: 1px solid rgba(33, 150, 83, 0.08);
}

.activities-spotlight-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e6efe7;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  padding: 24px;
  height: 100%;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.activities-spotlight-card:hover {
  box-shadow: 0 18px 40px rgba(33, 150, 83, 0.08);
  border-color: rgba(33, 150, 83, 0.28);
}

.activity-main-img-wrapper {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  margin-top: 16px;
  flex-grow: 1;
  height: 230px;
  min-height: 210px;
}

.activity-main-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.activities-spotlight-card:hover .activity-main-img-wrapper img {
  transform: scale(1.03);
}

.activity-swiper-frame {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  margin-top: 16px;
  flex-grow: 1;
}

.activitySwiper {
  border-radius: 14px;
  overflow: hidden;
  width: 100%;
  height: 230px;
}

.activitySwiper .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
}

.activitySwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.activity-slide-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 10;
  width: fit-content;
  max-width: calc(100% - 75px);
  background: rgba(16, 47, 36, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 11.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.activity-slide-counter {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 10;
  background: rgba(16, 47, 36, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  font-family: monospace;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.activity-nav-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: var(--brand-green-dark);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.activity-nav-btn:hover {
  background: var(--brand-green);
  color: #ffffff;
  border-color: var(--brand-green);
  box-shadow: 0 6px 18px rgba(33, 150, 83, 0.35);
}

.activity-nav-overlay-prev,
.activity-nav-overlay-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
}

.activity-nav-overlay-prev {
  left: 12px;
}

.activity-nav-overlay-next {
  right: 12px;
}

.activity-nav-overlay-prev:hover,
.activity-nav-overlay-next:hover {
  transform: translateY(-50%) scale(1.08);
}

.activity-nav-btn::after {
  display: none;
}

.activity-swiper-pagination {
  position: relative !important;
  bottom: auto !important;
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.activity-swiper-pagination .swiper-pagination-bullet {
  background: #cbd5e1;
  opacity: 0.6;
  width: 8px;
  height: 8px;
  transition: all 0.3s ease;
  margin: 0 !important;
}

.activity-swiper-pagination .swiper-pagination-bullet-active {
  background: var(--brand-green);
  opacity: 1;
  width: 24px;
  border-radius: 4px;
}

/* Eid-ul-Azha Right Card Multi-Thumb Layout Styles */
.eid-gallery-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  height: 100%;
  width: 100%;
  position: relative;
  padding-top: 14px;
}

.eid-main-view {
  position: relative;
  width: 100%;
  height: 315px;
  border-radius: 14px;
  overflow: hidden;
  background: #0d1a15;
}

.eidMainSwiper .swiper-wrapper,
.eidMainSwiper .swiper-slide,
.ursMainSwiper .swiper-wrapper,
.ursMainSwiper .swiper-slide,
.marketMainSwiper .swiper-wrapper,
.marketMainSwiper .swiper-slide,
.floodMainSwiper .swiper-wrapper,
.floodMainSwiper .swiper-slide,
.ramadanMainSwiper .swiper-wrapper,
.ramadanMainSwiper .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
}

.eidMainSwiper .swiper-slide img,
.ursMainSwiper .swiper-slide img,
.marketMainSwiper .swiper-slide img,
.floodMainSwiper .swiper-slide img,
.ramadanMainSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.floodMainSwiper .swiper-slide,
.ramadanMainSwiper .swiper-slide {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.floodMainSwiper .swiper-slide .slide-blur-bg,
.ramadanMainSwiper .swiper-slide .slide-blur-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(7px) brightness(0.88);
  transform: scale(1.15);
  z-index: 1;
  pointer-events: none;
}

.floodMainSwiper .swiper-slide .slide-fg-img,
.ramadanMainSwiper .swiper-slide .slide-fg-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.eidThumbSwiper,
.ursThumbSwiper,
.marketThumbSwiper,
.floodThumbSwiper,
.ramadanThumbSwiper {
  width: 100%;
  padding: 2px 0;
  height: 72px;
}

.eidThumbSwiper .swiper-wrapper,
.ursThumbSwiper .swiper-wrapper,
.marketThumbSwiper .swiper-wrapper,
.floodThumbSwiper .swiper-wrapper,
.ramadanThumbSwiper .swiper-wrapper {
  display: flex;
}

.eidThumbSwiper .swiper-slide,
.ursThumbSwiper .swiper-slide,
.marketThumbSwiper .swiper-slide,
.floodThumbSwiper .swiper-slide,
.ramadanThumbSwiper .swiper-slide {
  height: 66px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  opacity: 0.65;
  background: #eaefe9;
}

.eidThumbSwiper .swiper-slide:hover,
.eidThumbSwiper .swiper-slide-thumb-active,
.ursThumbSwiper .swiper-slide:hover,
.ursThumbSwiper .swiper-slide-thumb-active,
.marketThumbSwiper .swiper-slide:hover,
.marketThumbSwiper .swiper-slide-thumb-active,
.floodThumbSwiper .swiper-slide:hover,
.floodThumbSwiper .swiper-slide-thumb-active,
.ramadanThumbSwiper .swiper-slide:hover,
.ramadanThumbSwiper .swiper-slide-thumb-active {
  opacity: 1;
  border-color: var(--brand-green);
  box-shadow: 0 4px 12px rgba(33, 150, 83, 0.25);
  transform: translateY(-2px);
}

.eidThumbSwiper .swiper-slide img,
.ursThumbSwiper .swiper-slide img,
.marketThumbSwiper .swiper-slide img,
.floodThumbSwiper .swiper-slide img,
.ramadanThumbSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.eid-floating-nav {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  display: flex;
  gap: 8px;
}





