/* ============================================================
   SINGH SOLAR — Premium Solar Website
   Style Sheet — Clean White Professional Design
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --primary: #f59e0b;
  /* Solar amber */
  --primary-dark: #d97706;
  --primary-light: #fef3c7;
  --green: #16a34a;
  --green-dark: #15803d;
  --green-light: #dcfce7;
  --accent: #0ea5e9;
  --white: #ffffff;
  --off-white: #f8fafc;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --text: #1f2937;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, .08), 0 2px 4px -1px rgba(0, 0, 0, .04);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, .08), 0 4px 6px -2px rgba(0, 0, 0, .04);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, .08), 0 10px 10px -5px rgba(0, 0, 0, .03);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, .12);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all .3s cubic-bezier(.4, 0, .2, 1);
  --transition-fast: all .15s cubic-bezier(.4, 0, .2, 1);
  --font-main: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* ── Selection ── */
::selection {
  background: var(--primary-light);
  color: var(--primary-dark);
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: linear-gradient(135deg, var(--gray-900) 0%, #0f172a 100%);
  padding: 9px 0;
  font-size: .8rem;
  color: var(--gray-300);
  letter-spacing: .01em;
}

.top-bar a {
  color: var(--gray-300);
  transition: var(--transition-fast);
}

.top-bar a:hover {
  color: var(--primary);
}

.top-bar .top-info {
  gap: 22px;
}

.top-bar .top-info span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.top-bar .top-social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  margin-left: 6px;
}

.top-bar .top-social a:hover {
  background: var(--primary);
  color: #fff;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar-main {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, .06);
  transition: var(--transition);
}

.navbar-main.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, .12);
}

.navbar-brand {
  padding: 0px 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo .logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(245, 158, 11, .35);
  flex-shrink: 0;
}

.brand-logo .brand-text {
  line-height: 1.2;
}

.brand-logo .brand-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -.02em;
}

.brand-logo .brand-sub {
  font-size: .7rem;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.nav-link-custom {
  font-weight: 600;
  font-size: .88rem;
  color: var(--gray-700) !important;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: var(--transition-fast);
  letter-spacing: .01em;
  position: relative;
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
  left: 14px;
  right: 14px;
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--gray-900) !important;
  background: var(--gray-50);
}

.nav-cta-btn {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white !important;
  padding: 9px 22px !important;
  border-radius: 50px !important;
  font-weight: 700;
  font-size: .88rem;
  box-shadow: 0 4px 15px rgba(245, 158, 11, .35);
  transition: var(--transition) !important;
  letter-spacing: .01em;
}

.nav-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, .45) !important;
  color: white !important;
}

.nav-cta-btn::after {
  display: none !important;
}

.navbar-toggler {
  border: 2px solid var(--border) !important;
  border-radius: 8px !important;
  padding: 6px 10px !important;
}

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

/* ============================================================
   DYNAMIC DROPDOWN NAV
   ============================================================ */

/* Dropdown trigger — unstyled button that looks like a nav-link */
.nav-dropdown-trigger {
  background: none;
  border: none;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  width: 100%;
}

/* Dropdown wrapper — positioned relative to its parent <li> */
.nav-dropdown-item {
  position: relative;
}

/* The floating dropdown panel */
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 1100;
}

/* Arrow pointing up */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: var(--white);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  border-radius: 3px 0 0 0;
  rotate: 45deg;
}

.nav-dropdown-open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-inner {
  padding: 10px;
}

.nav-dropdown-header {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 4px 10px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 6px;
}

.nav-dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: .87rem;
  font-weight: 600;
  color: var(--gray-700);
  transition: var(--transition-fast);
  text-decoration: none;
}

.nav-dropdown-link:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.nav-dropdown-link--active {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.nav-dropdown-link-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.nav-dropdown-link:hover .nav-dropdown-link-icon {
  background: var(--primary);
  color: white;
}

.nav-dropdown-link-arrow {
  margin-left: auto;
  font-size: .65rem;
  opacity: 0;
  transform: translateX(-4px);
  transition: var(--transition-fast);
}

.nav-dropdown-link:hover .nav-dropdown-link-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Mobile submenu — collapsed by default, expands on tap */
.nav-mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
  padding: 0 14px;
  border-left: 2px solid transparent;
  margin: 0 14px;
}

.nav-mobile-submenu--open {
  max-height: 400px; /* large enough for any package list */
  padding: 4px 14px 8px;
  border-left-color: var(--primary-light);
  margin-bottom: 4px;
}

.nav-mobile-submenu-link {
  display: block;
  padding: 6px 10px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: 6px;
  transition: var(--transition-fast);
  text-decoration: none;
}

.nav-mobile-submenu-link:hover {
  color: var(--primary);
  background: var(--primary-light);
}

/* ============================================================
   PACKAGE DETAIL PAGES
   ============================================================ */

/* ── Hero ── */
.pkg-hero {
  position: relative;
  min-height: 76vh;
  background: linear-gradient(135deg, var(--gray-900) 0%, #0f172a 60%, #0c1a2e 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0 80px;
}

.pkg-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(245, 158, 11, .08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(22, 163, 74, .06) 0%, transparent 70%);
  pointer-events: none;
}

.pkg-hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.pkg-hero-content {
  position: relative;
  z-index: 2;
}

.pkg-breadcrumb {
  color: rgba(255,255,255,.55);
  font-size: .8rem;
  font-weight: 500;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pkg-breadcrumb a {
  color: rgba(255,255,255,.6);
  transition: var(--transition-fast);
}

.pkg-breadcrumb a:hover {
  color: var(--primary);
}

.pkg-breadcrumb-sep {
  color: rgba(255,255,255,.3);
}

.pkg-breadcrumb-current {
  color: var(--primary);
  font-weight: 600;
}

.pkg-hero-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  letter-spacing: -.03em;
  margin-bottom: 20px;
}

.pkg-hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 8px;
}

.pkg-hero-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,.4);
  max-width: 480px;
  width: 100%;
}

.pkg-hero-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-xl);
  transition: transform .6s ease;
}

.pkg-hero-img-wrap:hover .pkg-hero-img {
  transform: scale(1.04);
}

.pkg-hero-img-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(255,255,255,.95);
  border-radius: 50px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--gray-800);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}

.pkg-hero-img-badge i {
  color: var(--green);
}

/* ── Feature Cards ── */
.pkg-feature-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition);
  height: 100%;
}

.pkg-feature-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.pkg-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--primary-light);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
}

.pkg-feature-text {
  font-size: .9rem;
  font-weight: 600;
  color: var(--gray-700);
  line-height: 1.4;
}

/* ── Spec Cards ── */
.pkg-spec-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  height: 100%;
  transition: var(--transition);
}

.pkg-spec-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.pkg-spec-icon {
  margin-bottom: 18px;
}

.pkg-spec-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.pkg-spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pkg-spec-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: var(--gray-600);
}

.pkg-spec-item i {
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Breadcrumb shared (used also in other pages) ── */
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 500;
  margin-bottom: 18px;
  color: rgba(255,255,255,.55);
}

.page-breadcrumb a {
  color: rgba(255,255,255,.65);
}

.page-breadcrumb a:hover {
  color: var(--primary);
}

/* ============================================================

   HERO SLIDER
   ============================================================ */
.hero-slider {
  position: relative;
  height: 92vh;
  min-height: 620px;
  max-height: 860px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .5s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.hero-slide.exit {
  opacity: 0;
  transform: scale(.97);
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(15, 23, 42, .82) 0%,
      rgba(15, 23, 42, .55) 50%,
      rgba(15, 23, 42, .2) 100%);
  z-index: 3;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, .18);
  border: 1px solid rgba(245, 158, 11, .4);
  color: var(--primary);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  backdrop-filter: blur(6px);
}

.hero-badge i {
  font-size: .7rem;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  letter-spacing: -.03em;
  margin-bottom: 22px;
}

.hero-title span {
  color: var(--primary);
}

.hero-subtitle {
  font-size: clamp(.95rem, 1.5vw, 1.15rem);
  color: rgba(255, 255, 255, .82);
  font-weight: 400;
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
}


.hero-stats {
  margin-top: 52px;
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: left;
}

.hero-stat .stat-num {
  font-size: 1.9rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  letter-spacing: -.03em;
}

.hero-stat .stat-num span {
  color: var(--primary);
}

.hero-stat .stat-label {
  font-size: .75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .65);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Hero Controls */
.hero-controls {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
}

.hero-dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--primary);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .25);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 1rem;
}

.hero-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.08);
}

.hero-arrow.prev {
  left: 24px;
}

.hero-arrow.next {
  right: 24px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-solar {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, var(--primary) 0%, #e88e05 100%);
  color: white;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .93rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: .01em;
  box-shadow: 0 4px 20px rgba(245, 158, 11, .35);
  white-space: nowrap;
}

.btn-solar:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 158, 11, .5);
  color: white;
}

.btn-solar-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: white;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .93rem;
  border: 2px solid rgba(255, 255, 255, .6);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: .01em;
  white-space: nowrap;
}

.btn-solar-outline:hover {
  background: white;
  border-color: white;
  color: var(--gray-900);
  transform: translateY(-2px);
}

.btn-green {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  box-shadow: 0 4px 20px rgba(22, 163, 74, .3);
}

.btn-green:hover {
  box-shadow: 0 8px 28px rgba(22, 163, 74, .45);
}

.btn-dark-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--gray-800);
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .93rem;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: .01em;
  white-space: nowrap;
}

.btn-dark-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section {
  padding: 96px 0;
}

.section-sm {
  padding: 64px 0;
}

.section-alt {
  background: var(--off-white);
}

.section-dark {
  background: linear-gradient(135deg, var(--gray-900) 0%, #0f172a 100%);
  color: white;
}

.section-green {
  background: linear-gradient(135deg, var(--green) 0%, #065f46 100%);
  color: white;
}

.section-amber {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-label.green-label {
  color: var(--green);
  background: var(--green-light);
}

.section-label.white-label {
  color: white;
  background: rgba(255, 255, 255, .15);
}

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -.03em;
  line-height: 1.22;
  margin-bottom: 16px;
}

.section-title.light {
  color: white;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin: 0 auto;
}

.section-subtitle.light {
  color: rgba(255, 255, 255, .75);
}

.divider {
  width: 52px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: 2px;
  margin: 16px 0 0;
}

.divider.center {
  margin: 16px auto 0;
}

.divider.green {
  background: linear-gradient(90deg, var(--green), var(--green-dark));
}

.divider.white {
  background: rgba(255, 255, 255, .5);
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

.trust-strip .trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gray-600);
  padding: 4px 0;
}

.trust-strip .trust-item i {
  color: var(--primary);
  font-size: 1.1rem;
}

.trust-strip .trust-item i.green {
  color: var(--green);
}

/* ============================================================
   SERVICES OVERVIEW
   ============================================================ */
.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--green));
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

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

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 22px;
  transition: var(--transition);
}

.service-icon.amber {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.service-icon.green {
  background: var(--green-light);
  color: var(--green-dark);
}

.service-icon.blue {
  background: #e0f2fe;
  color: #0369a1;
}

.service-icon.purple {
  background: #ede9fe;
  color: #7c3aed;
}

.service-card:hover .service-icon {
  transform: scale(1.12) rotate(-5deg);
}

.service-card h4 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.service-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 18px;
  transition: var(--transition);
}

.service-link i {
  font-size: .75rem;
  transition: var(--transition);
}

.service-link:hover {
  color: var(--primary-dark);
}

.service-link:hover i {
  transform: translateX(4px);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.why-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-badge-float {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  background: white;
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-lg);
}

.why-badge-float .badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--primary-light);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.why-badge-float .badge-text strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gray-900);
}

.why-badge-float .badge-text span {
  font-size: .8rem;
  color: var(--text-muted);
}

.feature-list {
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list .feat-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--green-light);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-list .feat-text strong {
  display: block;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 3px;
}

.feature-list .feat-text span {
  font-size: .87rem;
  color: var(--text-muted);
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-section {
  background: var(--off-white);
}

.process-step {
  position: relative;
  text-align: center;
  padding: 0 16px;
}

.process-step-num {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--border);
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-400);
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.process-step:hover .process-step-num {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
  transform: scale(1.1);
}

.process-connector {
  position: absolute;
  top: 34px;
  left: calc(50% + 34px);
  right: calc(-50% + 34px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--border) 0, var(--border) 8px, transparent 8px, transparent 14px);
}

.process-step h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.process-step p {
  font-size: .87rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.process-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: .95rem;
  margin: 0 auto 14px;
  box-shadow: 0 4px 12px rgba(245, 158, 11, .3);
}

/* ============================================================
   STATS BANNER
   ============================================================ */
.stats-banner {
  background: linear-gradient(135deg, var(--gray-900) 0%, #0f172a 100%);
  padding: 60px 0;
}

.stat-card {
  text-align: center;
  padding: 8px;
}

.stat-card .num {
  font-size: 2.8rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  letter-spacing: -.04em;
}

.stat-card .num span {
  color: var(--primary);
}

.stat-card .label {
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .55);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 8px;
}

.stat-card .icon {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}

.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, .1);
  align-self: stretch;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-slider-wrap {
  position: relative;
}

.testimonial-slide {
  display: none;
  animation: fadeIn .5s ease;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  position: relative;
  border: 1px solid var(--border);
  height: 100%;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 26px;
  font-size: 6rem;
  line-height: 1;
  color: var(--primary-light);
  font-family: Georgia, serif;
  pointer-events: none;
}

.stars {
  color: var(--primary);
  font-size: .9rem;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: .95rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--green-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-dark);
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: .93rem;
  font-weight: 700;
  color: var(--gray-800);
}

.author-info span {
  font-size: .8rem;
  color: var(--text-muted);
}

.testimonial-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: white;
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-nav button:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #d97706 40%, var(--green) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: 5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
}

.cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: white;
  letter-spacing: -.03em;
  line-height: 1.2;
  margin-bottom: 14px;
}

.cta-banner p {
  color: rgba(255, 255, 255, .85);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

/* ============================================================
   SAVINGS CALCULATOR
   ============================================================ */
.calculator-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 42px 38px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
}

.calc-result {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--green-light) 100%);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  border: 1px solid rgba(245, 158, 11, .2);
}

.calc-result .result-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -.03em;
}

.calc-result .result-num span {
  color: var(--green);
}

.calc-result .result-label {
  font-size: .85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.form-label-custom {
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.form-control-custom {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: .93rem;
  font-family: var(--font-main);
  color: var(--text);
  background: var(--gray-50);
  transition: var(--transition-fast);
  outline: none;
}

.form-control-custom:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, .08);
}

.range-custom {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--gray-200);
  outline: none;
}

.range-custom::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(245, 158, 11, .4);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  background: linear-gradient(135deg, var(--gray-900) 0%, #0f172a 100%);
  padding: 100px 0 80px;
  text-align: center;
  color: white;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 16px;
}

.page-breadcrumb a {
  color: var(--primary);
  font-weight: 600;
}

.page-breadcrumb span {
  font-size: .65rem;
}

.mission-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  height: 100%;
  transition: var(--transition);
}

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

.mission-card .mission-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.mission-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.mission-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}

.value-item i {
  color: var(--green);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.value-item span {
  font-size: .92rem;
  font-weight: 500;
  color: var(--gray-700);
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-hero {
  background: linear-gradient(135deg, var(--gray-900) 0%, #0f172a 100%);
  padding: 100px 0 80px;
  text-align: center;
  color: white;
}

.service-detail-card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  margin-bottom: 28px;
  transition: var(--transition);
}

.service-detail-card:hover {
  box-shadow: var(--shadow-xl);
}

.service-detail-img {
  height: 280px;
  overflow: hidden;
}

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

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

.service-detail-body {
  padding: 32px;
}

.service-detail-body h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.service-detail-body p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.service-features {
  margin-top: 20px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: var(--gray-700);
  padding: 6px 0;
}

.service-features li i {
  color: var(--green);
  font-size: .85rem;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(245, 158, 11, .12);
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background: white;
  font-weight: 600;
  font-size: .95rem;
  color: var(--gray-800);
  transition: var(--transition-fast);
  gap: 16px;
}

.faq-question:hover {
  background: var(--gray-50);
}

.faq-question .faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.open .faq-question .faq-icon {
  background: var(--primary);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  background: var(--gray-50);
}

.faq-answer.open {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero {
  background: linear-gradient(135deg, var(--gray-900) 0%, #0f172a 100%);
  padding: 100px 0 80px;
  text-align: center;
  color: white;
}

.contact-form-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
}

.form-group-custom {
  margin-bottom: 22px;
}

.form-row-custom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

textarea.form-control-custom {
  resize: vertical;
  min-height: 130px;
}

.contact-info-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
  height: 100%;
}

.contact-info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-icon.amber {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.contact-info-icon.green {
  background: var(--green-light);
  color: var(--green-dark);
}

.contact-info-icon.blue {
  background: #e0f2fe;
  color: #0369a1;
}

.contact-info-text strong {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--gray-500);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.contact-info-text p,
.contact-info-text a {
  font-size: .95rem;
  color: var(--gray-800);
  font-weight: 500;
}

.contact-info-text a:hover {
  color: var(--primary);
}

.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 380px;
  background: var(--gray-100);
  border: 1px solid var(--border);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.form-submit-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: .01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(245, 158, 11, .3);
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, .45);
}

.form-success {
  display: none;
  text-align: center;
  padding: 24px;
}

.form-success i {
  font-size: 3rem;
  color: var(--green);
  margin-bottom: 16px;
}

.form-success h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray-800);
}

.form-success p {
  font-size: .92rem;
  color: var(--text-muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: linear-gradient(135deg, var(--gray-900) 0%, #0d1525 100%);
  color: rgba(255, 255, 255, .7);
  padding-top: 72px;
}

.footer-brand .logo-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 10px;
  width: 44px;
  height: 44px;
}

.footer-brand .brand-name {
  color: white;
}

.footer-brand .brand-sub {
  color: var(--primary);
}

.footer-desc {
  font-size: .88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .55);
  margin-top: 14px;
  max-width: 270px;
}

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

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .6);
  font-size: .9rem;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, .08);
}

.footer-social a:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  font-size: .88rem;
  color: rgba(255, 255, 255, .55);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 7px;
}

.footer-links a i {
  font-size: .75rem;
  color: var(--primary);
}

.footer-links a:hover {
  color: white;
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}

.footer-contact-item .fc-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(245, 158, 11, .15);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  flex-shrink: 0;
}

.footer-contact-item .fc-text {
  font-size: .85rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.5;
}

.footer-contact-item .fc-text strong {
  color: rgba(255, 255, 255, .8);
  display: block;
  font-size: .8rem;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 20px 0;
  margin-top: 52px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .35);
}

.footer-bottom a {
  color: var(--primary);
  font-weight: 600;
}

.certified-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cert-badge {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .55);
  display: flex;
  align-items: center;
  gap: 6px;
}

.cert-badge i {
  color: var(--primary);
}


/* ============================================================
   UTILITIES
   ============================================================ */
.text-primary-custom {
  color: var(--primary) !important;
}

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

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

.gap-3 {
  gap: 1rem;
}

.overflow-hidden-custom {
  overflow: hidden;
}

.position-relative-custom {
  position: relative;
}

.fw-800 {
  font-weight: 800 !important;
}

.letter-spacing-tight {
  letter-spacing: -.03em;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .hero-slider {
    height: 80vh;
    min-height: 540px;
  }

  .hero-stats {
    gap: 24px;
  }

  .process-connector {
    display: none;
  }

  .section {
    padding: 70px 0;
  }

  .form-row-custom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .hero-slider {
    height: 100svh;
    min-height: 480px;
    max-height: 700px;
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .hero-stat .stat-num {
    font-size: 1.5rem;
  }

  .top-bar .top-info {
    flex-wrap: wrap;
    gap: 8px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .btn-solar,
  .btn-solar-outline {
    width: 100%;
    justify-content: center;
  }

  .contact-form-card {
    padding: 28px 20px;
  }

  .calculator-card {
    padding: 28px 20px;
  }

  .stat-card .num {
    font-size: 2rem;
  }

  .section {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .hero-arrows {
    display: none;
  }

  .why-badge-float {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}

/* ── Active page highlight ── */
.nav-link-custom.active {
  color: var(--primary) !important;
  background: var(--primary-light);
}

.nav-link-custom.active::after {
  display: none;
}

/* ── Smooth page load ── */


.myGivenTxtColor {
  color: var(--primary);
}

.myGivenBgColor {
  background-color: var(--primary);
}