/* ==========================================================================
   GARBOX waste management HERO SECTION STYLESHEET - PIXEL PERFECT
   ========================================================================== */

/* DESIGN SYSTEM & TOKENS */
:root {
  --color-dark-green: #0B1D33;
  --color-orange: #ff8a00;
  --color-orange-hover: #e07a00;
  --color-white: #ffffff;
  --color-navbar-bg: rgba(18, 53, 91, 0.65);
  --font-primary: "Poppins", sans-serif;
  --font-cursive: "Caveat", cursive;
  --green-bg: #12355B;
  --orange-bg: #ea5223;
}

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

body {
  font-family: var(--font-primary);
  background-color: #051124;
  color: var(--color-white);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}

/* TOP HEADER */
.top-header {
  background-color: rgba(11, 29, 51, 0.6);
  padding: 14px 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
}

.top-header .header-wrapper {
  height: 32px;
}

.top-header .header-item {
  display: inline-flex;
  align-items: center;
}

.top-header .icon-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #239a55;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  font-size: 13px;
  box-shadow: 0 2px 6px rgba(35, 154, 85, 0.3);
}

.top-header .header-text {
  color: var(--color-white);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.2px;
}

.top-header .header-vertical-divider {
  width: 1px;
  height: 18px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 24px;
  display: inline-block;
}

/* Social media buttons */
.top-header .social-icons {
  display: flex;
  align-items: center;
}

.top-header .social-icons .social-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.top-header .social-icons .social-btn:hover {
  background-color: var(--color-orange);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 138, 0, 0.4);
}

/* FLOATING NAVBAR */
.main-navbar {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 1320px;
  z-index: 1000;
  padding: 0;
}

.main-navbar .container-fluid {
  background-color: var(--color-navbar-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.15);
  padding: 0 30px;
  height: 78px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

/* Logo brand style */
.main-navbar .navbar-brand {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 26px;
  color: var(--color-white);
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}

.main-navbar .logo-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #239a55;
  color: #ffd600;
  border: 2px solid #239a55;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-right: 12px;
  box-shadow: 0 4px 10px rgba(35, 154, 85, 0.25);
}

.main-navbar .logo-text {
  letter-spacing: 0.5px;
}

/* Navigation link items */
.main-navbar .navbar-nav .nav-item {
  margin: 0 4px;
}

.main-navbar .navbar-nav .nav-link {
  color: var(--color-white) !important;
  font-weight: 500;
  font-size: 15px;
  padding: 10px 14px !important;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  transition: color 0.3s ease;
}

.main-navbar .navbar-nav .nav-link i {
  font-size: 9px;
  opacity: 0.8;
}

/* Link active underline and hover underlines (exactly matching the text, not arrow) */
.main-navbar .navbar-nav .nav-link span {
  position: relative;
  padding-bottom: 4px;
}

.main-navbar .navbar-nav .nav-link span::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--color-orange);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform-origin: left;
}

.main-navbar .navbar-nav .nav-link.active,
.main-navbar .navbar-nav .nav-link:hover {
  color: var(--color-orange) !important;
}

.main-navbar .navbar-nav .nav-link.active span::after,
.main-navbar .navbar-nav .nav-link:hover span::after {
  transform: scaleX(1);
}

/* Right-side Elements */
.main-navbar .navbar-right {
  gap: 16px;
}

.main-navbar .phone-contact {
  cursor: pointer;
}

.main-navbar .phone-icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--color-orange);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(255, 138, 0, 0.3);
  transition: all 0.3s ease;
}

.main-navbar .phone-contact:hover .phone-icon-circle {
  background-color: var(--color-orange-hover);
  transform: scale(1.08);
}

.main-navbar .phone-text {
  line-height: 1.25;
}

.main-navbar .phone-number {
  font-weight: 700;
  font-size: 15px;
  color: var(--color-white);
}

.main-navbar .phone-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.main-navbar .nav-icon-link {
  color: var(--color-white);
  font-size: 18px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.main-navbar .nav-icon-link:hover {
  color: var(--color-orange);
  transform: scale(1.1);
}

.main-navbar .nav-divider {
  width: 1px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.25);
  margin: 0 8px;
}

/* Shopping Bag notification dot - bottom right placement */
.main-navbar .nav-bag-container {
  position: relative;
}

.main-navbar .bag-notification-dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 8px;
  height: 8px;
  background-color: var(--color-orange);
  border-radius: 50%;
  border: 1px solid rgba(108, 118, 104, 0.9);
}

/* HERO SECTION */
.hero-section {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  background-image: url("assets/hero-bg-clean.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 1;
}

/* Gradient dark overlay from left to right */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(11, 29, 51, 0.88),
      rgba(18, 53, 91, 0.72),
      rgba(0, 0, 0, 0.2));
  z-index: -1;
  pointer-events: none;
}

/* Left Content Spacing */
.hero-section .hero-content-col {
  padding-top: 80px;
}

/* Top Accent subtitle script */
.hero-section .hero-subtitle {
  font-family: var(--font-cursive);
  font-size: 18px;
  color: var(--color-orange);
  line-height: 1.1;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 8px !important;
}

.hero-section .subtitle-dot {
  font-size: 22px;
  color: var(--color-orange);
  margin-right: 8px;
  display: inline-block;
  vertical-align: middle;
}

/* Main Heading */
.hero-section .hero-title {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-white);
  letter-spacing: -0.5px;
  max-width: 560px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px !important;
}

/* Description Text */
.hero-section .hero-desc {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 480px;
  margin-bottom: 32px !important;
}

/* Premium Orange Button with Bevel Shadows */
.btn-garbox {
  background-color: var(--color-orange);
  color: var(--color-white) !important;
  font-weight: 600;
  font-size: 15px;
  height: 52px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  border: none;
  box-shadow:
    inset 0 -3px 0 rgba(0, 0, 0, 0.15),
    inset 0 3px 0 rgba(255, 255, 255, 0.25),
    0 6px 20px rgba(255, 138, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-decoration: none;
}

.btn-garbox:hover {
  background-color: var(--color-orange-hover);
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    inset 0 -3px 0 rgba(0, 0, 0, 0.15),
    inset 0 3px 0 rgba(255, 255, 255, 0.25),
    0 8px 25px rgba(255, 138, 0, 0.55);
}

.btn-garbox:active {
  transform: translateY(0) scale(1);
  box-shadow:
    inset 0 -1px 0 rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 4px 10px rgba(255, 138, 0, 0.4);
}

/* MOBILE TOGGLER OVERRIDE */
.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.25) !important;
  padding: 6px 10px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */

/* Large screens and desktop centering */
@media (min-width: 992px) {
  .main-navbar {
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1320px;
  }
}

/* Laptop (1440px) */
@media (max-width: 1440px) {
  .hero-section .hero-title {
    font-size: 48px;
  }
}

/* Laptop (1366px) */
@media (max-width: 1366px) {
  .hero-section .hero-title {
    font-size: 46px;
  }
}

/* Tablets (landscape and portrait) */
@media (max-width: 991.98px) {
  .top-header {
    display: none !important;
  }

  .main-navbar {
    top: 20px;
    width: 90%;
    padding: 0;
  }

  .main-navbar .container-fluid {
    height: auto;
    min-height: 78px;
    padding: 10px 20px;
  }

  .main-navbar .navbar-collapse {
    background-color: rgba(40, 40, 40, 0.95);
    border-radius: 10px;
    margin-top: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .main-navbar .navbar-nav {
    text-align: center;
    margin-bottom: 20px !important;
  }

  .main-navbar .navbar-nav .nav-link {
    justify-content: center;
    padding: 12px 0 !important;
  }

  .main-navbar .navbar-nav .nav-link span::after {
    display: none;
    /* Hide active underlines on collapsed menus */
  }

  .main-navbar .navbar-right {
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
  }

  .main-navbar .nav-divider {
    display: none;
  }

  .hero-section {
    height: auto;
    min-height: 800px;
    padding-top: 140px;
    padding-bottom: 60px;
    background-position: 70% bottom;
  }

  .hero-section .hero-title {
    font-size: 38px;
  }
}

/* Mobile Devices */
@media (max-width: 767.98px) {
  .main-navbar {
    width: 95%;
  }

  .hero-section {
    min-height: 750px;
    background-position: 68% bottom;
    /* Lock background positioning to keep subjects visible */
  }

  .hero-section::before {
    background: linear-gradient(180deg,
        rgba(11, 29, 51, 0.85) 0%,
        rgba(15, 42, 74, 0.9) 60%,
        rgba(18, 53, 91, 0.95) 100%);
  }

  .hero-section .hero-content-col {
    padding-top: 60px;
  }

  .hero-section .hero-subtitle {
    font-size: 20px;
  }

  .hero-section .hero-title {
    font-size: 30px;
    line-height: 1.25;
  }

  .hero-section .hero-desc {
    font-size: 15px;
    margin: 0 auto 28px auto;
    max-width: 100%;
  }

  .btn-garbox {
    height: 52px;
    padding: 0 28px;
    font-size: 15px;
    width: 100%;
    max-width: 300px;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .hero-section .hero-title {
    font-size: 28px;
  }
}

/* QUICK ACTION TOOLBAR */
.quick-action-toolbar {
  position: fixed;
  right: 0;
  top: 75%;
  transform: translateY(-50%);
  width: 52px;
  background-color: var(--color-white);
  border-radius: 8px 0 0 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  animation: slideInRight 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, -50%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, -50%, 0);
  }
}

.toolbar-item {
  width: 52px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #444444;
  font-size: 18px;
  text-decoration: none;
  border-bottom: 1px solid #ececec;
  transition: all 0.3s ease;
  background-color: var(--color-white);
}

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

.toolbar-item:hover,
.toolbar-item.active {
  background-color: var(--color-orange);
  color: var(--color-white);
  cursor: pointer;
}

.toolbar-item.toolbar-fb:hover {
  background-color: #1877F2 !important;
  color: #FFFFFF !important;
  transform: scale(1.05);
}

.toolbar-item.toolbar-tw:hover {
  background-color: #111111 !important;
  color: #FFFFFF !important;
  transform: scale(1.05);
}

.toolbar-item.toolbar-li:hover {
  background-color: #0A66C2 !important;
  color: #FFFFFF !important;
  transform: scale(1.05);
}

.toolbar-item.toolbar-ig:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
  color: #FFFFFF !important;
  transform: scale(1.05);
}

/* TABLET STYLING OVERRIDES (REDUCE WIDTH SLIGHTLY) */
@media (max-width: 991.98px) and (min-width: 768px) {
  .quick-action-toolbar {
    width: 46px;
  }

  .toolbar-item {
    width: 46px;
    height: 46px;
    font-size: 16px;
  }
}

/* MOBILE STYLING OVERRIDES (HIDE ON MOBILE BELOW 768PX) */
@media (max-width: 767.98px) {
  .quick-action-toolbar {
    display: none !important;
  }
}

/* STATS/FEATURES SECTION */
.stats-section {
  background-color: #F3ECDF !important;
  padding: 240px 0 100px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* MARQUEE WATERMARK BACKGROUND */
.stats-section .marquee-bg {
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
  opacity: 0.85;
}

.stats-section .marquee-text-wrapper {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}

.stats-section .marquee-text {
  font-family: var(--font-primary);
  font-size: 170px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
  display: inline-block;
  padding-right: 50px;
}

@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.stats-section .cards-container {
  position: relative;
  z-index: 2;
}

/* STAT CARD GENERAL STYLING */
.stat-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
    box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  background-color: var(--color-white);
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.text-orange {
  color: var(--color-orange);
}

/* CARD 1: Cream card */
.stat-card.card-1 {
  background: #F3ECDF !important;
  border: 1px solid #f2eedd;
  display: flex;
  flex-direction: column;
}

.stat-card.card-1 .card-img-top-wrapper {
  overflow: hidden;
  padding: 24px;
  padding-bottom: 0;
}

.stat-card.card-1 .card-img-top-wrapper img {
  width: 100%;
  border-radius: 14px;
}

.stat-card.card-1 .card-body-content {
  padding: 24px;
  flex-grow: 1;
}

.stat-card.card-1 .avatar-group-img {
  width: 72px;
  height: auto;
}

.stat-card.card-1 .rating-stars {
  line-height: 1.1;
}

.stat-card.card-1 .stars-row {
  font-size: 12px;
}

.stat-card.card-1 .rating-text {
  font-size: 12px;
  font-weight: 600;
  color: #444444;
}

.stat-card.card-1 .card-text {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: #555555;
  margin: 0;
}

/* CARD 2: Dark charcoal card */
.stat-card.card-2 {
  background: #1a1d1b !important;
  color: var(--color-white);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stat-card.card-2 .card-header-content {
  padding-bottom: 16px;
}

.stat-card.card-2 .stat-card-text {
  font-family: var(--font-primary);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-white);
  margin: 0;
}

.stat-card.card-2 .card-img-bottom {
  margin-top: auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.stat-card.card-2 .card-img-bottom img {
  max-width: 100%;
  height: auto;
  max-height: 160px;
}

/* CARD 3: Orange card */
.stat-card.card-3 {
  background: linear-gradient(135deg, #ff8a00 0%, #ea5223 100%);
  color: var(--color-white);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stat-card.card-3 .card-header-content {
  padding-bottom: 16px;
}

.stat-card.card-3 .play-btn-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.25);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.stat-card.card-3 .play-btn-circle:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.stat-card.card-3 .stat-number {
  font-family: var(--font-primary);
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  color: var(--color-white);
  margin-bottom: 10px;
}

.stat-card.card-3 .stat-sub {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}

.stat-card.card-3 .card-img-bottom {
  margin-top: auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.stat-card.card-3 .card-img-bottom img {
  max-width: 100%;
  height: auto;
  max-height: 160px;
}

/* CARD 4: Full image card */
.stat-card.card-4 {
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.stat-card.card-4 .card-bg-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border-radius: 10px;
  overflow: hidden;
}

.stat-card.card-4 .card-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.stat-card.card-4 .google-review-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 10px 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  z-index: 2;
}

.stat-card.card-4 .google-logo-img {
  width: 28px;
  height: auto;
}

.stat-card.card-4 .badge-content {
  line-height: 1.3;
  text-align: left;
}

.stat-card.card-4 .badge-rating {
  font-size: 14px;
  font-weight: 700;
  color: #333;
}

.stat-card.card-4 .badge-stars {
  font-size: 11px;
  display: flex;
  gap: 2px;
}

.stat-card.card-4 .badge-sub {
  font-size: 12px;
  color: #666;
  font-weight: 500;
  display: block;
}

/* CARD 5: Green card */
.stat-card.card-5 {
  background: linear-gradient(145deg, #12355B 0%, #0A213D 100%);
  color: var(--color-white);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stat-card.card-5 .card-header-content {
  padding-bottom: 16px;
}

.stat-card.card-5 .stat-number {
  font-family: var(--font-primary);
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  color: #ffd600;
  margin-bottom: 14px;
}

.stat-card.card-5 .stat-sub {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}

.stat-card.card-5 .card-img-bottom {
  margin-top: auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.stat-card.card-5 .card-img-bottom img {
  max-width: 100%;
  height: auto;
  max-height: 160px;
}

/* Mobile carousel scrolling */
@media (max-width: 767.98px) {
  .stats-section {
    padding: 160px 0 60px 0;
  }

  .stats-section .marquee-bg {
    top: 35px;
  }

  .stats-section .marquee-text {
    font-size: 90px;
  }

  .stats-section .cards-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 20px 25px 20px;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    margin: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
  }

  .stats-section .cards-container::-webkit-scrollbar {
    height: 6px;
  }

  .stats-section .cards-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
  }

  .stats-section .cards-container::-webkit-scrollbar-thumb {
    background-color: rgba(255, 138, 0, 0.4);
    border-radius: 10px;
  }

  .stats-section .cards-container .col {
    flex: 0 0 280px;
    scroll-snap-align: start;
    padding: 0;
  }

  .stat-card {
    height: auto !important;
    min-height: 350px;
  }
}

/* ABOUT COMPANY SECTION */
.about-section {
  background-color: #f8f6f2;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.about-section .about-subtitle {
  font-family: var(--font-cursive);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-orange);
  letter-spacing: 0.5px;
}

.about-section .about-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 58px;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #1d1d1d;
  max-width: 560px;
}

.about-section .about-desc {
  font-size: 17px;
  color: #666666;
  line-height: 1.8;
  max-width: 560px;
}

/* Feature Card inside left column */
.about-section .about-feature-card {
  background-color: var(--color-white);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.about-section .feature-card-img-wrapper {
  width: 45%;
  flex-shrink: 0;
}

.about-section .feature-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.about-section .feature-card-list {
  width: 55%;
}

.about-section .feature-item {
  font-size: 15px;
  font-weight: 600;
  color: #1d1d1d;
}

.about-section .feature-item .green-icon {
  color: #2563EB;
  font-size: 16px;
}

/* Green Rounded Button */
.btn-green-about {
  background-color: #2563EB;
  color: var(--color-white) !important;
  font-weight: 600;
  font-size: 16px;
  height: 58px;
  padding: 0 34px;
  border-radius: 50px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.25);
}

.btn-green-about:hover {
  background-color: #1D4ED8;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.btn-green-about:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.25);
}

/* Bottom rating layout */
.about-section .about-rating .avatar-group-img {
  width: 68px;
  height: auto;
}

.about-section .about-rating .stars-row {
  color: var(--color-orange);
  font-size: 12px;
}

.about-section .about-rating .rating-text {
  font-size: 12px;
  font-weight: 600;
  color: #555555;
}

/* Worker Image Wrapper on the right */
.about-section .about-img-wrapper {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
}

.about-section .about-worker-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

/* RESPONSIVE LAYOUT FOR ABOUT COMPANY */
@media (max-width: 991.98px) {
  .about-section {
    padding: 60px 0;
  }

  .about-section .about-title {
    font-size: 42px;
  }
}

@media (max-width: 767.98px) {
  .about-section .about-title {
    font-size: 32px;
    line-height: 1.2;
  }
}

@media (max-width: 575.98px) {
  .about-section .about-feature-card {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .about-section .feature-card-img-wrapper {
    width: 100% !important;
    margin-bottom: 15px;
  }

  .about-section .feature-card-list {
    width: 100% !important;
    margin-left: 0 !important;
  }
}

/* SERVICES SECTION */
.services-section {
  background-color: #051124;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.services-section .services-subtitle {
  font-family: var(--font-cursive);
  font-size: 28px;
  font-weight: 700;
  color: #FF7A00;
  letter-spacing: 0.5px;
}

.services-section .services-title {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 56px;
  color: var(--color-white);
  line-height: 1.15;
  letter-spacing: -0.8px;
}

.services-section .services-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  max-width: 760px;
}

/* Orange Pill Button "See All Services" */
.btn-orange-pill {
  background-color: #FF7A00;
  color: var(--color-white) !important;
  font-weight: 700;
  font-size: 17px;
  height: 58px;
  padding: 0 36px;
  border-radius: 50px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow:
    inset 0 -3px 0 rgba(0, 0, 0, 0.15),
    inset 0 3px 0 rgba(255, 255, 255, 0.25),
    0 4px 15px rgba(255, 122, 0, 0.35);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-orange-pill:hover {
  background-color: #e06c00;
  transform: translateY(-2px);
  box-shadow:
    inset 0 -3px 0 rgba(0, 0, 0, 0.15),
    inset 0 3px 0 rgba(255, 255, 255, 0.25),
    0 8px 20px rgba(255, 122, 0, 0.45);
}

.btn-orange-pill:active {
  transform: translateY(0);
  box-shadow:
    inset 0 -1px 0 rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 4px 10px rgba(255, 122, 0, 0.3);
}

/* SERVICE CARD STYLING */
.service-card {
  background-color: #0B1D33;
  border-radius: 26px;
  padding: 38px 30px 28px 30px;
  min-height: 610px;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
    box-shadow 0.35s ease,
    background-color 0.35s ease,
    border-color 0.35s ease;
  overflow: visible;
}

/* Hover translation and rotate icon micro-animation */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.service-card:hover .card-arrow-btn {
  transform: rotate(45deg);
}

/* Staggered layout helper border colors */
.service-card.card-recycle,
.service-card.card-eco,
.service-card.card-segregation {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-card.card-recycle .card-arrow-btn,
.service-card.card-eco .card-arrow-btn,
.service-card.card-collection .card-arrow-btn,
.service-card.card-segregation .card-arrow-btn {
  border: 4px solid #0B1D33;
  transition:
    transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
    border-color 0.35s ease;
}

/* Active / Hovered Service Card: Bright Green */
.service-card.active,
.service-card:hover {
  background-color: #1E65B6;
  border-color: transparent;
}

.service-card.active .card-arrow-btn,
.service-card:hover .card-arrow-btn {
  border-color: #1E65B6 !important;
}

.service-card:hover .green-icon {
  color: #ffffff;
}

/* Floating Top-Right Circular Orange Icon */
.card-arrow-btn {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #FF7A00;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 5;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Card Content Details */
.card-service-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.25;
}

.card-service-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
}

.card-divider {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  width: 100%;
}

.card-features-list .feature-item {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 14px;
}

/* Green Circle checkmarks for Normal cards */
.card-features-list .green-icon {
  color: #FF7A00;
  font-size: 18px;
  transition: color 0.35s ease;
}

/* White Circle checkmarks for Active card */
.card-features-list .white-icon {
  color: var(--color-white);
  font-size: 18px;
}

/* Card Bottom Image Wrapper and Sizing */
.card-img-bottom-wrapper {
  margin-top: auto;
  overflow: hidden;
  border-radius: 18px;
  height: 200px;
  width: 100%;
}

.card-service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
}

/* Bottom CTA Area Styling */
.services-bottom-cta {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}

.services-bottom-cta .cta-avatar-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--color-white);
}

.services-bottom-cta .cta-phone-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--color-orange);
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  box-shadow: 0 2px 8px rgba(255, 138, 0, 0.3);
}

.services-bottom-cta .cta-text {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.services-bottom-cta .cta-link-orange {
  color: var(--color-orange);
  font-weight: 600;
  font-size: 15px;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.services-bottom-cta .cta-link-orange:hover {
  color: var(--color-orange-hover);
  text-decoration: none;
}

/* RESPONSIVE LAYOUT OVERRIDES FOR SERVICES */
@media (max-width: 991.98px) {
  .services-section {
    padding: 70px 0;
  }

  .services-section .services-title {
    font-size: 40px;
  }

  .service-card {
    height: 480px;
    /* Slight extra height breathing room when columns are wider */
  }
}

@media (max-width: 767.98px) {
  .services-section .services-title {
    font-size: 32px;
  }

  .services-section .services-header-left {
    text-align: center;
    width: 100%;
  }

  .services-section .services-desc {
    margin: 0 auto;
  }

  .services-section .services-header-right {
    text-align: center;
    width: 100%;
    margin-top: 10px;
  }

  .service-card {
    height: auto;
    min-height: 440px;
    padding-bottom: 24px;
    max-width: 320px;
    margin: 0 auto;
  }
}

/* =========================================================
   CEO / MARK ANTONY SECTION
   ========================================================= */

/* Section: position:relative is the anchor for the woman cutout */
.ceo-section {
  position: relative;
  overflow: hidden;
  /* clip at section edges on x-axis for mobile */
}

/* ── LEFT COLUMN (green) ─────────────────────────────────── */
.ceo-left-col {
  background: linear-gradient(160deg, #12355B 0%, #0A1F38 100%);
  position: relative;
  /* Must be overflow:visible so the absolutely-placed card images
     and the centred woman cutout are not clipped */
  overflow: visible;
  z-index: 1;
}

/* Vertically centred flex container inside the left col */
.ceo-left-content {
  padding: 70px 0 70px 60px;
  /* left padding = visual indent from page edge */
}

/* ── STAT CARDS STACK ─────────────────────────────────────── */

/* Vertical column of cards */
.stat-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ── Individual card ──────────────────────────────────────── */
/*  Flex-row: text LEFT | image RIGHT – everything inside card  */
.stat-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  /* nothing escapes the card border   */
  width: 270px;
  min-height: 100px;
  border-radius: 18px;
  background: linear-gradient(90deg, #1E65B6 0%, #3B82F6 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
  padding: 16px 14px 16px 20px;
  box-sizing: border-box;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: default;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

/* Left side: number + description ──────────────────────── */
.stat-card-body {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  /* takes all space left of the image  */
  min-width: 0;
  /* prevents text from pushing image   */
  padding-right: 10px;
  /* gap between text and image         */
}

/* Large white number */
.sc-number {
  font-family: var(--font-primary);
  font-size: 46px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
  color: #ffffff;
  margin: 0;
}

/* Description below number */
.sc-desc {
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
  margin: 5px 0 0 0;
}

/* Right side: image – contained inside card ─────────────── */
.sc-img {
  /* NOT absolutely positioned – part of the flex row */
  position: static;
  transform: none;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.2));
}

/* Per-card image sizes (fit comfortably inside the card) */
.sc-img--garbage {
  width: 82px;
  height: 82px;
}

.sc-img--earth {
  width: 88px;
  height: 88px;
}

.sc-img--bag {
  width: 76px;
  height: 76px;
}

.sc-img--truck {
  width: 90px;
  height: 90px;
}

/* ── Woman + Globe – centred on left/right boundary ──────── */
.ceo-woman-col--abs {
  position: absolute !important;
  bottom: 0;
  /* horizontally centred on the boundary between left & right col */
  left: 50%;
  transform: translateX(-50%);
  width: 460px;
  pointer-events: none;
  z-index: 20;
}

.ceo-woman-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Grounding shadow under bins */
.ceo-woman-wrapper::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 10%;
  width: 80%;
  height: 24px;
  background: radial-gradient(ellipse at center,
      rgba(0, 0, 0, 0.4) 0%,
      transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.ceo-globe-img {
  width: 320px;
  height: auto;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.ceo-woman-img {
  position: relative;
  z-index: 2;
  height: 470px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  vertical-align: bottom;
}

/* ── Right column (orange) ───────────────────────────────── */
.ceo-right-col {
  background: linear-gradient(135deg, #ea5223 0%, #f1683a 50%, #d03d10 100%);
  padding: 100px 8%;
  overflow: visible;
}

.ceo-right-content-wrapper {
  max-width: 100%;
  margin: 0;
}

@media (min-width: 1200px) {
  .ceo-right-content-wrapper {
    max-width: 520px;
    margin-left: 80px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .ceo-right-content-wrapper {
    max-width: 440px;
    margin-left: 50px;
  }
}

/* Heading */
.ceo-heading {
  font-family: var(--font-primary);
  font-size: 36px;
  line-height: 1.25;
  font-weight: 800 !important;
  color: var(--color-white);
  letter-spacing: -0.5px;
}

/* Paragraph */
.ceo-quote-paragraph {
  font-family: var(--font-primary);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  line-height: 1.8;
}

/* White pill button */
.btn-orange-rounded {
  background-color: var(--color-white);
  color: #ea5223 !important;
  font-weight: 700;
  font-size: 15px;
  height: 52px;
  padding: 0 34px;
  border-radius: 50px;
  border: 2px solid var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-orange-rounded:hover {
  background-color: transparent;
  color: var(--color-white) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-orange-rounded:active {
  transform: translateY(0);
}

/* CEO Info */
.ceo-info {
  margin-bottom: 1.5rem;
}

.ceo-name {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-white);
  margin: 0;
}

.ceo-title {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Divider */
.ceo-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}

/* Social Icons */
.ceo-social-icons {
  display: flex;
  gap: 16px;
}

.social-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background-color: transparent;
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.social-icon-btn:hover {
  background-color: var(--color-white);
  color: #ea5223;
  transform: translateY(-2px);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */

/* Tablet (<992px): stack sections, centre cards */
@media (max-width: 991.98px) {
  .ceo-left-content {
    padding: 60px 24px 80px;
    justify-content: center;
  }

  .stat-cards-stack {
    align-items: center;
  }

  .ceo-woman-col--abs {
    position: relative;
    left: auto;
    transform: none;
    width: 100%;
    display: flex;
    justify-content: center;
    bottom: auto;
    background: linear-gradient(160deg, #12355B 0%, #0A1F38 100%);
  }

  .ceo-right-content-wrapper {
    padding: 60px 8%;
    text-align: center;
  }

  .ceo-heading {
    font-size: 28px;
  }

  .pagination-dots {
    justify-content: center;
  }
}

/* Mobile (<576px): cards stretch full width */
@media (max-width: 575.98px) {
  .ceo-left-content {
    padding: 48px 20px 60px;
  }

  .stat-card {
    width: 100%;
    min-height: 84px;
  }

  .sc-number {
    font-size: 38px;
  }

  /* Scale images proportionally on mobile */
  .sc-img--garbage {
    width: 66px;
    height: 66px;
  }

  .sc-img--earth {
    width: 70px;
    height: 70px;
  }

  .sc-img--bag {
    width: 60px;
    height: 60px;
  }

  .sc-img--truck {
    width: 74px;
    height: 74px;
  }

  .ceo-woman-img {
    height: 280px;
  }

  .ceo-globe-img {
    width: 220px;
    top: -24px;
  }

  .ceo-heading {
    font-size: 24px;
  }

  .ceo-quote-paragraph {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* ==========================================================================
   PREETI'S SECTIONS CSS (HEADER, HERO, CLIENTS STRIP, ABOUT)
   ========================================================================== */
:root {
  --color-primary: #0B5ED7;
  --color-secondary: #12355B;
  --color-accent: #F37021;
  --color-light: #F8FAFC;
  --color-dark: #0F172A;
  --color-success: #16A34A;
  --color-white: #FFFFFF;
  --color-primary-light: rgba(11, 94, 215, 0.1);
  --color-success-light: rgba(22, 163, 74, 0.1);
  --font-primary: 'Plus Jakarta Sans', sans-serif;
  --font-secondary: 'Poppins', sans-serif;
  --container-max-width: 1560px;
  --section-padding: 120px 0;
  --border-radius-card: 24px;
  --border-radius-btn: 30px;
  --shadow-soft: 0 10px 40px rgba(15, 23, 42, 0.05);
  --shadow-hover: 0 20px 40px rgba(15, 23, 42, 0.1);
}

.container,
.container-custom {
  width: 94% !important;
  max-width: 1560px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
}

.section-padding {
  padding: var(--section-padding);
}

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

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

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

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

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

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

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

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

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

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

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

.btn-accent {
  background-color: var(--color-accent);
  color: var(--color-white);
  border: 2px solid transparent;
  box-shadow: 0 0 0 6px rgba(243, 112, 33, 0.2);
  transition: all 0.3s ease;
}

.btn-accent:hover {
  background-color: #D96017;
  color: var(--color-white);
  box-shadow: 0 0 0 6px rgba(217, 96, 23, 0.3);
}

.rounded-custom {
  border-radius: var(--border-radius-card);
}

.rounded-4 {
  border-radius: 20px !important;
}

.letter-spacing-1 {
  letter-spacing: 1px;
}

.transition-all {
  transition: all 0.3s ease;
}

.max-w-700 {
  max-width: 700px;
}

.leading-tight {
  line-height: 1.1;
}

.hover-lift:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover) !important;
}

/* Header & Navbar */
.top-bar {
  background: transparent;
}

.topbar-social {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
}

.topbar-social:hover {
  background: var(--color-accent);
}

.hover-opacity-100:hover {
  opacity: 1 !important;
}

.header-area {
  transition: all 0.4s ease;
}

.header-area.scrolled {
  margin-top: 0 !important;
  background: transparent;
}

.header-area.scrolled .top-bar {
  display: none !important;
}

.glass-nav {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.header-area.scrolled .glass-nav {
  background: transparent;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.navbar-nav .nav-link {
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
  opacity: 0.8;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--color-accent) !important;
  opacity: 1;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 5px;
  left: 1rem;
  background-color: var(--color-accent);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: calc(100% - 2rem);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  padding-top: 150px;
  background-color: var(--color-dark);
}

.hero-content {
  padding-right: 2rem;
}

.hero-subtitle {
  font-family: var(--font-secondary);
}

/* Trusted Clients */
.client-logo {
  height: 100px;
  width: 200px;
  object-fit: contain;
  transition: all 0.3s ease;
  border: 1px solid #ccc;
  padding: 8px;
  border-radius: 4px;
  background-color: #fff;
}

.grayscale-hover img {
  filter: grayscale(100%);
  opacity: 0.6;
}

.grayscale-hover img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Responsive */
@media (max-width: 991.98px) {
  .section-padding {
    padding: 80px 0;
  }

  .hero-section {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .hero-content {
    text-align: center;
    padding-right: 0;
  }

  .navbar.scrolled {
    background: var(--color-white);
  }

  .navbar-collapse {
    background: var(--color-dark);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
    margin-top: 15px;
  }
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: 60px 0;
  }
}

/* ==========================================================================
   TEAM MEMBERS SECTION STYLESHEET - PIXEL PERFECT
   ========================================================================== */
.team-section {
  background-color: #ffffff;
  padding: 110px 0;
  position: relative;
}

.team-header {
  max-width: 820px;
}

.team-subtitle {
  font-family: var(--font-cursive, 'Caveat', cursive);
  font-size: 28px;
  font-weight: 700;
  color: #F37021;
}

.team-title {
  font-family: var(--font-primary, 'Plus Jakarta Sans', sans-serif);
  font-size: 56px;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.8px;
  line-height: 1.18;
}

.team-desc {
  font-size: 18px;
  line-height: 1.75;
  color: #64748B;
  max-width: 780px;
}

.team-card {
  transition: transform 0.35s ease;
  cursor: pointer;
}

.team-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background-color: #ffffff !important;
  box-shadow: none;
}

.team-img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  object-position: left center;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  display: block;
}

.team-card:hover .team-img {
  transform: scale(1.06);
}

.team-info {
  margin-top: 22px;
  text-align: left;
}

.team-name {
  font-family: var(--font-primary, 'Plus Jakarta Sans', sans-serif);
  font-size: 26px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 6px;
}

.team-role {
  font-size: 17px;
  color: #64748B;
  font-weight: 500;
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .team-title {
    font-size: 2.2rem;
  }

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

@media (max-width: 575.98px) {
  .team-title {
    font-size: 1.85rem;
  }

  .team-section {
    padding: 60px 0;
  }
}

/* ==========================================================================
   GLOBAL TYPOGRAPHY & LAYOUT PROPORTIONS OVERRIDE (GRAND DESIGN)
   ========================================================================== */
.hero-section h1.display-3 {
  font-size: 64px !important;
  font-weight: 800 !important;
  line-height: 1.12 !important;
  letter-spacing: -1px !important;
}

.hero-section p.lead {
  font-size: 20px !important;
  line-height: 1.75 !important;
  max-width: 760px !important;
}

#about h2.display-5 {
  font-size: 52px !important;
  font-weight: 800 !important;
  line-height: 1.18 !important;
  letter-spacing: -0.8px !important;
}

#about p.text-muted {
  font-size: 18px !important;
  line-height: 1.8 !important;
}

#about .feature-box span {
  font-size: 16px !important;
}

/* Ensure all Caveat script badges look crisp and large */
.hero-subtitle,
#about span.text-accent,
.services-subtitle,
.team-subtitle,
.why-subtitle {
  font-size: 28px !important;
  font-family: 'Caveat', cursive !important;
  font-weight: 700 !important;
}

/* ==========================================================================
   WHY CHOOSE US SECTION STYLESHEET - PIXEL PERFECT
   ========================================================================== */
.why-choose-section {
  padding: 130px 0;
  background-color: var(--color-white, #ffffff);
  position: relative;
}

.why-choose-section .container-custom {
  width: 97% !important;
  max-width: 1780px !important;
}

.why-choose-box {
  background: linear-gradient(135deg, #12355B 0%, #0B1D33 100%);
  border-radius: 44px;
  padding: 110px 95px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.25);
  position: relative;
  overflow: hidden;
}

.why-subtitle {
  color: #FFFFFF !important;
  display: inline-block;
  font-size: 32px !important;
}

.why-title {
  font-family: var(--font-primary, 'Plus Jakarta Sans', sans-serif);
  font-size: 64px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  letter-spacing: -1px;
}

.why-desc {
  font-size: 20px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  max-width: 660px;
}

.why-img-stat-wrapper {
  position: relative;
  margin-top: 50px;
}

.why-main-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  display: block;
}

.why-stat-badge {
  position: absolute;
  bottom: -32px;
  left: 36px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 5;
}

.why-stat-icon {
  width: 84px;
  height: 84px;
  background-color: #FF7A00;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 38px;
  box-shadow: 0 10px 25px rgba(255, 122, 0, 0.5);
  flex-shrink: 0;
}

.why-stat-num {
  font-family: var(--font-primary);
  font-size: 52px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 4px;
  display: block;
}

.why-stat-label {
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  display: block;
}

/* Right Stack of 4 Horizontal Feature Cards */
.why-feature-card {
  background-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 32px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  min-height: 225px;
  transition: transform 0.35s ease, background-color 0.35s ease;
}

.why-feature-card:last-child {
  margin-bottom: 0;
}

.why-feature-card:hover {
  transform: translateX(10px);
  background-color: rgba(255, 255, 255, 0.18);
}

.why-feature-img-box {
  width: 225px;
  height: 225px;
  flex-shrink: 0;
  border-radius: 32px 0 0 32px;
  overflow: hidden;
}

.why-feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why-step-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 800;
  flex-shrink: 0;
  margin-left: -36px;
  z-index: 3;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

.why-step-circle.step-white {
  background-color: #FFFFFF;
  color: #0F172A;
}

.why-step-circle.step-orange {
  background-color: #FF7A00;
  color: #FFFFFF;
}

.why-feature-content {
  padding: 32px 42px 32px 40px;
  flex-grow: 1;
}

.why-feature-title {
  font-family: var(--font-primary);
  font-size: 30px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.why-feature-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 0;
}

@media (max-width: 1199.98px) {
  .why-choose-box {
    padding: 60px 45px;
  }

  .why-title {
    font-size: 42px;
  }
}

@media (max-width: 991.98px) {
  .why-choose-box {
    padding: 60px 35px;
  }

  .why-stat-badge {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: 20px;
  }
}

@media (max-width: 767.98px) {
  .why-choose-box {
    padding: 50px 24px;
  }

  .why-title {
    font-size: 34px;
  }

  .why-feature-card {
    flex-direction: column;
    align-items: stretch;
  }

  .why-feature-img-box {
    width: 100%;
    height: 190px;
    border-radius: 24px 24px 0 0;
  }

  .why-step-circle {
    margin-left: 20px;
    margin-top: -26px;
  }

  .why-feature-content {
    padding: 24px 20px;
  }
}

/* ==========================================================================
   FULL WIDTH PROJECTS CAROUSEL SECTION - PIXEL PERFECT
   ========================================================================== */
.projects-section {
  padding: 130px 0 110px 0;
  background-color: #FAF8F5;
  position: relative;
  overflow: hidden;
}

.projects-subtitle {
  font-family: var(--font-cursive, 'Caveat', cursive);
  font-size: 32px;
  font-weight: 700;
  color: #FF7A00;
  display: inline-block;
}

.projects-title {
  font-family: var(--font-primary, 'Plus Jakarta Sans', sans-serif);
  font-size: 58px;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.15;
  letter-spacing: -1px;
}

.projects-swiper-wrapper-box {
  position: relative;
  margin-top: 60px;
  width: 100%;
}

.projects-swiper {
  width: 100%;
  padding-bottom: 20px;
  overflow: visible !important;
}

.swiper-slide.project-slide {
  width: 1160px;
  max-width: 82vw;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.swiper-slide.project-slide:not(.swiper-slide-active) {
  opacity: 0.65;
  transform: scale(0.92);
}

.swiper-slide.project-slide.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  z-index: 5;
}

.project-card {
  position: relative;
  width: 100%;
  height: 570px;
  border-radius: 38px;
  overflow: hidden;
  box-shadow: 0 25px 65px rgba(15, 23, 42, 0.14);
  background-color: #0F172A;
}

.project-img-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.project-card:hover .project-img {
  transform: scale(1.05);
}

.project-info-box {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 510px;
  background-color: #FAF8F5;
  border-top-left-radius: 38px;
  padding: 48px 48px 42px 48px;
  z-index: 3;
  box-shadow: -15px -15px 50px rgba(0, 0, 0, 0.08);
}

.project-badge {
  background-color: #1E65B6;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 22px;
}

.project-title {
  font-family: var(--font-primary, 'Plus Jakarta Sans', sans-serif);
  font-size: 28px;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.35;
  margin-bottom: 24px;
}

.project-divider {
  height: 1px;
  background-color: #E2E8F0;
  margin-bottom: 22px;
}

.project-meta-list li {
  font-size: 17px;
  color: #475569;
  margin-bottom: 11px;
  line-height: 1.5;
}

.project-meta-list li strong {
  color: #0F172A;
  font-weight: 700;
  margin-right: 8px;
}

/* Floating Navigation Arrows */
.project-prev-btn,
.project-next-btn {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #FFFFFF;
  color: #0F172A;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.project-prev-btn:hover,
.project-next-btn:hover {
  background: #FF7A00;
  color: #FFFFFF;
  transform: translateY(-50%) scale(1.08);
}

.project-prev-btn {
  left: 60px;
}

.project-next-btn {
  right: 60px;
}

@media (max-width: 1399.98px) {
  .project-prev-btn {
    left: 25px;
  }

  .project-next-btn {
    right: 25px;
  }
}

@media (max-width: 1199.98px) {
  .swiper-slide.project-slide {
    width: 88vw;
    max-width: 88vw;
  }

  .project-info-box {
    width: 460px;
    padding: 38px;
  }

  .projects-title {
    font-size: 46px;
  }
}

@media (max-width: 991.98px) {
  .project-card {
    height: auto;
    display: flex;
    flex-direction: column;
  }

  .project-img-wrapper {
    position: relative;
    height: 330px;
  }

  .project-info-box {
    position: relative;
    width: 100%;
    border-top-left-radius: 0;
    padding: 35px 28px;
  }

  .project-prev-btn,
  .project-next-btn {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .swiper-slide.project-slide {
    width: 93vw;
    max-width: 93vw;
  }

  .projects-title {
    font-size: 34px;
  }

  .project-title {
    font-size: 23px;
  }
}

/* ==========================================================================
   REQUEST A WASTE PICK UP SECTION STYLESHEET - PIXEL PERFECT
   ========================================================================== */
.pickup-section {
  position: relative;
  width: 100%;
  min-height: 820px;
  background: url('https://images.unsplash.com/photo-1580674684081-7617fbf3d745?q=80&w=1920&auto=format&fit=crop') no-repeat center center / cover;
  display: flex;
  align-items: center;
  padding: 110px 0;
  overflow: hidden;
}

/* Optional subtle dark/warm overlay to ensure crisp contrast */
.pickup-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.45) 0%, rgba(15, 23, 42, 0.15) 55%, rgba(15, 23, 42, 0.35) 100%);
  z-index: 1;
}

.pickup-section .container-custom {
  position: relative;
  z-index: 5;
}

/* Left side Circular Play Video Button */
.pickup-play-btn {
  width: 175px;
  height: 175px;
  border-radius: 50%;
  background-color: #FF7A00;
  border: 4px solid #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  animation: pickupPulse 2.8s infinite;
}

.pickup-play-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 30px 70px rgba(255, 122, 0, 0.6);
}

.pickup-play-inner {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background-color: #1A1A1A;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pickup-play-inner i {
  font-size: 60px;
  color: #FFFFFF;
  margin-left: 6px;
}

@keyframes pickupPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 122, 0, 0.6);
  }

  70% {
    box-shadow: 0 0 0 28px rgba(255, 122, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 122, 0, 0);
  }
}

/* Glassmorphism Form Card on Right */
.pickup-form-card {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.45);
}

.pickup-form-header {
  display: flex;
  align-items: stretch;
  background-color: #12355B;
}

.pickup-form-header-title {
  padding: 30px 40px;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.pickup-form-header-title h2 {
  font-family: var(--font-primary, 'Plus Jakarta Sans', sans-serif);
  font-size: 30px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
}

.pickup-form-header-icon {
  background-color: #FF7A00;
  width: 105px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pickup-form-header-icon i {
  font-size: 42px;
  color: #FFFFFF;
}

/* Dark Glassmorphism Body */
.pickup-form-body {
  background: rgba(42, 53, 47, 0.72);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-top: none;
  border-radius: 0 0 28px 28px;
  padding: 38px 46px 46px 46px;
}

.pickup-disclaimer {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  margin-bottom: 28px;
}

.pickup-label {
  font-size: 14.5px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 8px;
  display: block;
}

.pickup-input-group {
  position: relative;
}

.pickup-input {
  background-color: #FFFFFF;
  border: none;
  border-radius: 35px;
  padding: 15px 26px;
  font-size: 15.5px;
  color: #1E293B;
  width: 100%;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}

textarea.pickup-input {
  border-radius: 20px;
  resize: none;
}

select.pickup-input {
  cursor: pointer;
}

.pickup-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.45);
}

.pickup-input::placeholder {
  color: #94A3B8;
}

.pickup-input-icon {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: #475569;
  font-size: 18px;
  pointer-events: none;
}

.pickup-submit-wrapper {
  margin-top: 32px;
  background: rgba(255, 122, 0, 0.22);
  padding: 6px;
  border-radius: 46px;
}

.pickup-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #FF8A00 0%, #FF6A00 100%);
  border: none;
  border-radius: 40px;
  padding: 17px 32px;
  font-family: var(--font-primary);
  font-size: 18.5px;
  font-weight: 700;
  color: #FFFFFF;
  transition: all 0.3s ease;
  box-shadow: 0 10px 28px rgba(255, 122, 0, 0.45);
  cursor: pointer;
  display: block;
  text-align: center;
}

.pickup-submit-btn:hover {
  background: linear-gradient(135deg, #FF9514 0%, #FF720D 100%);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(255, 122, 0, 0.6);
}

@media (max-width: 991.98px) {
  .pickup-section {
    padding: 80px 0;
  }

  .pickup-play-btn {
    margin: 0 auto 50px auto;
  }

  .pickup-form-body {
    padding: 30px 24px;
  }

  .pickup-form-header-title {
    padding: 24px 28px;
  }

  .pickup-form-header-title h2 {
    font-size: 24px;
  }
}

/* ==========================================================================
   TESTIMONIAL CAROUSEL SECTION STYLESHEET - PIXEL PERFECT
   ========================================================================== */
.testimonial-section {
  padding: 130px 0;
  background-color: #FAF8F5;
  position: relative;
  overflow: hidden;
}

.testimonial-subtitle {
  font-family: var(--font-cursive, 'Caveat', cursive);
  font-size: 32px;
  font-weight: 700;
  color: #FF7A00;
  display: inline-block;
}

.testimonial-title {
  font-family: var(--font-primary, 'Plus Jakarta Sans', sans-serif);
  font-size: 58px;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.15;
  letter-spacing: -1px;
}

.testimonial-slider-box {
  margin-top: 60px;
  position: relative;
}

.testimonial-swiper {
  padding-bottom: 15px;
}

/* Uniform slide height for side-by-side match */
.testimonial-photo-card {
  width: 100%;
  height: 490px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.14);
}

.testimonial-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.testimonial-photo-card:hover .testimonial-photo-img {
  transform: scale(1.05);
}

/* White Review Card */
.testimonial-review-card {
  background-color: #FFFFFF;
  border-radius: 28px;
  padding: 42px 40px 38px 40px;
  height: 490px;
  position: relative;
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(15, 23, 42, 0.04);
}

.testimonial-quote-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #1E65B6;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 26px;
  right: 28px;
  font-size: 26px;
  box-shadow: 0 10px 24px rgba(30, 101, 182, 0.35);
}

.testimonial-stars {
  color: #FF7A00;
  font-size: 21px;
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
}

.testimonial-quote-text {
  font-size: 17px;
  color: #475569;
  line-height: 1.8;
  margin: 0;
  flex-grow: 1;
}

.testimonial-author-box {
  border-top: 1px solid #E2E8F0;
  padding-top: 24px;
  margin-top: 28px;
}

.testimonial-author-name {
  font-family: var(--font-primary, 'Plus Jakarta Sans', sans-serif);
  font-size: 21px;
  font-weight: 700;
  color: #12355B;
  margin-bottom: 4px;
  display: block;
}

.testimonial-author-location {
  font-size: 14.5px;
  color: #64748B;
  display: block;
}

/* Custom Swiper Pill Bars Pagination */
.swiper-pagination.testimonial-pagination {
  position: relative;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.swiper-pagination.testimonial-pagination .swiper-pagination-bullet {
  width: 48px;
  height: 6px;
  border-radius: 6px;
  background-color: #DDE2E5;
  opacity: 1;
  transition: all 0.35s ease;
  margin: 0 !important;
}

.swiper-pagination.testimonial-pagination .swiper-pagination-bullet-active {
  width: 64px;
  background-color: #FF7A00;
  box-shadow: 0 4px 12px rgba(255, 122, 0, 0.4);
}

@media (max-width: 1199.98px) {
  .testimonial-title {
    font-size: 46px;
  }
}

@media (max-width: 767.98px) {
  .testimonial-title {
    font-size: 34px;
  }

  .testimonial-photo-card,
  .testimonial-review-card {
    height: auto;
    min-height: 400px;
  }

  .testimonial-review-card {
    padding: 34px 26px;
  }
}

/* ==========================================================================
   FAQ SECTION STYLESHEET - PIXEL PERFECT
   ========================================================================== */
.faq-section {
  padding: 130px 0;
  background-color: #FAF8F5;
  position: relative;
}

.faq-section .container-custom {
  width: 97% !important;
  max-width: 1780px !important;
}

.faq-main-box {
  background-color: #FF7A00;
  border-radius: 44px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.22);
  min-height: 760px;
  display: flex;
  align-items: center;
}

.faq-left-content {
  padding: 95px 85px;
  position: relative;
  z-index: 5;
  width: 58%;
}

.faq-subtitle {
  font-family: var(--font-cursive, 'Caveat', cursive);
  font-size: 32px;
  font-weight: 700;
  color: #FFFFFF;
  display: inline-block;
}

.faq-title {
  font-family: var(--font-primary, 'Plus Jakarta Sans', sans-serif);
  font-size: 54px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 45px;
}

/* Full-height image covering the right side */
.faq-right-photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 46%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 2;
}

/* Overlapping Pure White Accordion Box */
.faq-accordion-box {
  background-color: #FFFFFF;
  border-radius: 28px;
  padding: 42px 48px;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.22);
  max-width: 680px;
  position: relative;
  z-index: 5;
}

.faq-item {
  border-bottom: 1px solid #F1F5F9;
  transition: all 0.3s ease;
}

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

.faq-question-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  user-select: none;
}

.faq-question-text {
  font-family: var(--font-primary, 'Plus Jakarta Sans', sans-serif);
  font-size: 18px;
  font-weight: 700;
  color: #0F172A;
  margin: 0;
  transition: color 0.3s ease;
}

.faq-toggle-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background-color: #E2E8F0;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.3s ease;
  margin-left: 20px;
}

.faq-item:hover .faq-question-text {
  color: #FF7A00;
}

.faq-item.active .faq-question-text {
  color: #FF7A00;
}

.faq-item.active .faq-toggle-btn {
  background-color: #FF7A00;
  color: #FFFFFF;
}

.faq-answer-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
}

.faq-item.active .faq-answer-panel {
  max-height: 250px;
  padding-bottom: 22px;
}

.faq-answer-text {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 1199.98px) {
  .faq-left-content {
    padding: 70px 50px;
    width: 62%;
  }

  .faq-title {
    font-size: 44px;
  }
}

@media (max-width: 991.98px) {
  .faq-main-box {
    flex-direction: column;
    min-height: auto;
  }

  .faq-left-content {
    width: 100%;
    padding: 60px 30px;
  }

  .faq-right-photo {
    position: relative;
    width: 100%;
    height: 380px;
  }

  .faq-accordion-box {
    max-width: 100%;
    padding: 30px 24px;
  }
}

@media (max-width: 767.98px) {
  .faq-title {
    font-size: 34px;
  }

  .faq-question-text {
    font-size: 16px;
  }
}

/* ==========================================================================
   FINAL FOOTER SECTION STYLESHEET - PIXEL PERFECT
   ========================================================================== */
.footer-section {
  background: linear-gradient(180deg, #07172C 0%, #0B1D33 65%, #12355B 100%);
  color: #FFFFFF;
  padding-top: 85px;
  position: relative;
  overflow: hidden;
}

.footer-top-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-logo-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.footer-logo-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #12355B;
  border: 2px solid #2563EB;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF7A00;
  font-size: 22px;
}

.footer-logo-text {
  font-family: var(--font-primary, 'Plus Jakarta Sans', sans-serif);
  font-size: 32px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.5px;
}

.footer-contact-list {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #FF7A00;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(255, 122, 0, 0.35);
}

.footer-contact-title {
  font-size: 17.5px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 2px 0;
}

.footer-contact-desc {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.footer-top-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: 45px 0 65px 0;
}

.footer-col-title {
  font-family: var(--font-primary, 'Plus Jakarta Sans', sans-serif);
  font-size: 20px;
  font-weight: 700;
  color: #FF7A00;
  margin-bottom: 28px;
}

.footer-desc-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 30px;
}

.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-btn:hover {
  background-color: #FF7A00;
  color: #FFFFFF;
  transform: translateY(-3px);
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15.5px;
  text-decoration: none;
  display: block;
  padding: 10px 0;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: #FF7A00;
  padding-left: 6px;
}

.footer-newsletter-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 6px 6px 6px 20px;
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  transition: border-color 0.3s ease;
}

.footer-newsletter-box:focus-within {
  border-color: #FF7A00;
}

.footer-newsletter-input {
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 15px;
  width: 100%;
  outline: none;
}

.footer-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.footer-newsletter-btn {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background-color: #1E65B6;
  color: #FFFFFF;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
  flex-shrink: 0;
  cursor: pointer;
}

.footer-newsletter-btn:hover {
  background-color: #1A4B82;
  transform: scale(1.05);
}

.footer-newsletter-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.footer-bell-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 16px;
  flex-shrink: 0;
}

.footer-note-text {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin: 0;
}

.footer-copyright-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px 0;
  margin-top: 65px;
  text-align: center;
}

.footer-copyright-text {
  font-size: 14.5px;
  color: #FFFFFF;
  margin: 0;
}

.footer-copyright-text span {
  color: #FF7A00;
  font-weight: 600;
}

.footer-back-to-top {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #FF7A00;
  background-color: #07172C;
  color: #FF7A00;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.footer-back-to-top:hover {
  background-color: #FF7A00;
  color: #FFFFFF;
  transform: translateY(-4px);
}

@media (max-width: 991.98px) {
  .footer-contact-list {
    gap: 28px;
  }
}

@media (max-width: 767.98px) {
  .footer-top-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-contact-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

/* ==========================================================================
   UNIVERSAL SECTION SPACING & GAP HARMONY
   Standardizes vertical padding & margins across all sections for equal gaps
   ========================================================================== */
:root {
  --universal-section-padding-desktop: 120px 0;
  --universal-section-padding-tablet: 85px 0;
  --universal-section-padding-mobile: 65px 0;
}

/* Apply universal desktop padding to every section */
.section-padding,
.why-choose-section,
.services-section,
.projects-section,
.pickup-section,
.testimonial-section,
.faq-section,
.team-section {
  padding: var(--universal-section-padding-desktop) !important;
  margin: 0 !important;
}

/* Ensure Stats Section has consistent bottom spacing & clean marquee top spacing */
.stats-section {
  padding: 160px 0 120px 0 !important;
  margin: 0 !important;
}

/* Ensure CEO Section has clean zero-margin wrapper */
.ceo-section {
  margin: 0 !important;
}

/* Tablet Universal Section Spacing */
@media (max-width: 991.98px) {

  .section-padding,
  .why-choose-section,
  .stats-section,
  .services-section,
  .projects-section,
  .pickup-section,
  .testimonial-section,
  .faq-section,
  .team-section {
    padding: var(--universal-section-padding-tablet) !important;
  }
}

/* Mobile Universal Section Spacing */
@media (max-width: 767.98px) {

  .section-padding,
  .why-choose-section,
  .stats-section,
  .services-section,
  .projects-section,
  .pickup-section,
  .testimonial-section,
  .faq-section,
  .team-section {
    padding: var(--universal-section-padding-mobile) !important;
  }
}

/* Hide Default Bootstrap Caret */
.navbar .dropdown-toggle::after {
  display: none !important;
}

/* Custom Dropdown Styling */
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    animation: fadeInDown 0.3s ease;
  }
}

.navbar .dropdown-menu {
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 10px;
  min-width: 280px;
}

.navbar .dropdown-item {
  border-radius: 8px;
  padding: 12px 15px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-color, #333);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
  background-color: var(--primary-brand, #2563EB);
  color: #fff;
  transform: translateX(5px);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bg-navy {
  background-color: rgba(18, 53, 91, 0.85) !important;
}



/* ==========================================================================
   FULL MOBILE RESPONSIVENESS OVERRIDES
   ========================================================================== */
@media (max-width: 991.98px) {
  .hero-section h1.display-3 {
    font-size: 46px !important;
  }

  #about h2.display-5 {
    font-size: 40px !important;
  }
}

@media (max-width: 767.98px) {
  .hero-section h1.display-3 {
    font-size: 34px !important;
    line-height: 1.25 !important;
  }

  .hero-section p.lead {
    font-size: 16px !important;
    line-height: 1.6 !important;
  }

  #about h2.display-5,
  h2.display-5,
  .display-5,
  .team-title {
    font-size: 30px !important;
    line-height: 1.25 !important;
  }

  #about p.text-muted,
  .team-desc {
    font-size: 15px !important;
  }

  .section-padding {
    padding: 60px 0 !important;
  }

  .hero-section {
    padding-top: 110px !important;
    padding-bottom: 50px !important;
    text-align: center !important;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .carousel-item {
    height: auto !important;
    min-height: 80vh !important;
  }

  .navbar-brand img {
    max-height: 60px !important;
  }

  /* Fix gap on footer and other columns */
  .row {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .container-custom {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

@media (max-width: 575.98px) {
  .hero-section h1.display-3 {
    font-size: 28px !important;
  }

  #about h2.display-5 {
    font-size: 26px !important;
  }
}