/* ============================================================
   VOLT SPARK ENERGY — style.css (v2.0)
   Bootstrap 5 + Font Awesome · White · Professional · Animated
   ============================================================ */

/* ─── GOOGLE FONTS ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

/* ─── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  /* Core palette */
  --teal: #009E83;
  --teal-light: #00C9A7;
  --teal-dark: #007A65;
  --gold: #D4820A;
  --gold-light: #F5A623;

  /* Surfaces */
  --bg-page: #FFFFFF;
  --bg-soft: #F5F9F8;
  --bg-muted: #EEF4F2;
  --bg-card: #FFFFFF;

  /* Text */
  --text-primary: #0C1B18;
  --text-secondary: #4A6360;
  --text-muted: #8AA5A1;

  /* Borders */
  --border: rgba(0, 158, 131, 0.14);
  --border-soft: rgba(0, 0, 0, 0.07);

  /* Fonts */
  --font-display: 'Plus Jakarta Sans', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;

  /* Radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 6px 28px rgba(0, 0, 0, 0.09);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.11);
  --shadow-teal: 0 8px 32px rgba(0, 158, 131, 0.20);

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur: 0.32s;
}

/* ─── BASE RESET ─────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--bg-page);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

/* ─── CUSTOM SCROLLBAR ──────────────────────────────────────── */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg-soft);
}

::-webkit-scrollbar-thumb {
  background: var(--teal);
  border-radius: 10px;
}

/* ================================================================
   NAVBAR
================================================================ */
.navbar {
  padding: 0;
  height: 90px;
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  box-shadow: none;
  transition: box-shadow var(--dur) var(--ease),
    background var(--dur) var(--ease);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

/* Brand */
.navbar-brand {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.brand-volt {
  color: var(--teal-dark);
}

.brand-spark {
  color: var(--gold);
}

.brand-energy {
  color: var(--text-secondary);
  font-weight: 600;
}

/* Nav links */
.navbar-nav .nav-link {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary) !important;
  padding: 0.45rem 0.9rem !important;
  border-radius: var(--r-sm);
  position: relative;
  transition: color var(--dur) var(--ease),
    background var(--dur) var(--ease);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: left var(--dur) var(--ease), right var(--dur) var(--ease);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: black;
  background: rgba(0, 158, 131, 0.06);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  left: 0.9rem;
  right: 0.9rem;
}

/* CTA Button in nav */
.nav-cta-btn {
  background: var(--teal) !important;
  color: #fff !important;
  border-radius: var(--r-sm) !important;
  padding: 0.45rem 1.15rem !important;
  font-weight: 700 !important;
  transition: background var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease),
    transform var(--dur) var(--ease) !important;
}

.nav-cta-btn::after {
  display: none !important;
}

.nav-cta-btn:hover {
  background: var(--teal-dark) !important;
  color: #fff !important;
  box-shadow: var(--shadow-teal) !important;
  transform: translateY(-1px);
}

/* Toggler */
.navbar-toggler {
  border: 1.5px solid var(--border) !important;
  border-radius: var(--r-sm) !important;
  padding: 0.35rem 0.55rem !important;
  transition: background var(--dur) var(--ease);
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

.navbar-toggler:hover {
  background: var(--bg-muted);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23009E83' stroke-width='2.2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

/* Mobile collapse */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: #fff;
    border-radius: var(--r-md);
    margin-top: 0.5rem;
    padding: 1rem 1.2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-soft);
  }

  .navbar-nav .nav-link::after {
    display: none;
  }
}

/* ================================================================
   SECTION UTILITIES
================================================================ */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.9rem;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--teal);
  flex-shrink: 0;
}

.section-title {
  font-size: 30px;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.section-title .accent {
  color: var(--teal);
}

.section-title .accent-gold {
  color: var(--gold);
}

.section-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 600px;
}

/* ================================================================
   REVEAL ANIMATIONS
================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-left {
  /* opacity: 0; */
  transform: translateX(-30px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal-left.visible {
  opacity: 1;
  transform: none;
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal-right.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.10s;
}

.reveal-delay-2 {
  transition-delay: 0.20s;
}

.reveal-delay-3 {
  transition-delay: 0.30s;
}

.reveal-delay-4 {
  transition-delay: 0.40s;
}

.reveal-delay-5 {
  transition-delay: 0.50s;
}

@media (prefers-reduced-motion: reduce) {

  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ================================================================
   BUTTONS
================================================================ */
.btn-primary-main {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.78rem 1.75rem;
  background: var(--teal);
  color: #fff !important;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0, 158, 131, 0.28);
  transition: background var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease),
    transform var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-primary-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}

.btn-primary-main:hover {
  background: var(--teal-dark);
  box-shadow: 0 8px 30px rgba(0, 158, 131, 0.38);
  transform: translateY(-2px);
  color: #fff !important;
}

.btn-primary-main:hover::before {
  opacity: 1;
}

.btn-outline-main {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.76rem 1.75rem;
  background: transparent;
  color: var(--text-primary) !important;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--r-md);
  border: 1.5px solid var(--border-soft);
  cursor: pointer;
  transition: border-color var(--dur) var(--ease),
    color var(--dur) var(--ease),
    background var(--dur) var(--ease),
    transform var(--dur) var(--ease);
}

.btn-outline-main:hover {
  border-color: var(--teal);
  color: var(--teal) !important;
  background: rgba(0, 158, 131, 0.05);
  transform: translateY(-2px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.78rem 1.75rem;
  background: #fff;
  color: var(--teal-dark) !important;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--r-md);
  border: none;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.20);
  transform: translateY(-2px);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.76rem 1.75rem;
  background: transparent;
  color: #fff !important;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--r-md);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  transition: background var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    transform var(--dur) var(--ease);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  transform: translateY(-2px);
}


.hero-section {
  position: relative;
}

.hero-section .carousel-item {
  height: 100vh;
  min-height: 700px;
  position: relative;
}

.hero-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(2, 15, 34, .88) 0%,
      rgba(2, 15, 34, .65) 45%,
      rgba(2, 15, 34, .35) 100%);
}

.hero-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  max-width: 700px;
  z-index: 10;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  padding: 10px 18px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  margin-bottom: 25px;
  font-weight: 600;
}

.hero-content h1 {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 25px;
}

.hero-content h1 span {
  color: #18d26e;
}

.hero-content p {
  color: #d8e5ef;
  font-size: 18px;
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.carousel-fade .carousel-item {
  transition: opacity 1.2s ease-in-out;
}

/* Mobile */

@media(max-width:991px) {

  .hero-section .carousel-item {
    min-height: 650px;
  }

  .hero-content h1 {
    font-size: 48px;
  }

}

@media(max-width:768px) {

  .hero-section .carousel-item {
    min-height: 600px;
  }

  .hero-content {
    left: 20px;
    right: 20px;
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons a {
    width: 100%;
    text-align: center;
  }

  .hero-tag {
    font-size: 13px;
  }
}



/* ================================================================
   hero1 SECTION
================================================================ */
.hero1-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 10% 60%, rgba(0, 158, 131, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 25%, rgba(212, 130, 10, 0.05) 0%, transparent 55%),
    #ffffff;
}

/* Animated blobs */
.hero1-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  animation: blobFloat 8s ease-in-out infinite alternate;
}

.hero1-blob-1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(0, 201, 167, 0.12), transparent 70%);
  top: -120px;
  left: -100px;
  animation-delay: 0s;
}

.hero1-blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 130, 10, 0.08), transparent 70%);
  top: 50%;
  right: -80px;
  animation-delay: -3s;
}

.hero1-blob-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 158, 131, 0.07), transparent 70%);
  bottom: -60px;
  left: 40%;
  animation-delay: -5.5s;
}

@keyframes blobFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(18px, -22px) scale(1.04);
  }

  66% {
    transform: translate(-12px, 14px) scale(0.97);
  }

  100% {
    transform: translate(8px, -10px) scale(1.02);
  }
}

/* Eyebrow pill */
.hero1-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(0, 158, 131, 0.08);
  border: 1px solid rgba(0, 158, 131, 0.22);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  animation: fadeSlideDown 0.6s var(--ease) both;
}

.hero1-eyebrow i {
  animation: spinOnce 0.8s ease 0.5s both;
}

@keyframes spinOnce {
  from {
    transform: rotate(-20deg) scale(0.8);
  }

  to {
    transform: rotate(0) scale(1);
  }
}

@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.heroh1{
  font-size: 200em;
}

/* Headline */
.hero1-h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.4rem;
  animation: fadeSlideUp 0.7s var(--ease) 0.1s both;
}

.hero1-h1 .accent {
  color: var(--teal);
}

.hero1-h1 .accent-gold {
  color: var(--gold);
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.hero1-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 2rem;
  animation: fadeSlideUp 0.7s var(--ease) 0.2s both;
}

.hero1-btns {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 2.8rem;
  animation: fadeSlideUp 0.7s var(--ease) 0.3s both;
}

/* hero1 stats bar */
.hero1-stats {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.7s var(--ease) 0.4s both;
}

.hero1-stat {
  text-align: left;
}

.hero1-stat-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1;
}

.hero1-stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 0.25rem;
}

.hero1-stat-divider {
  width: 1px;
  height: 38px;
  background: var(--border-soft);
}

/* hero1 right card */
.hero1-card-wrap {
  position: relative;
  animation: fadeSlideUp 0.8s var(--ease) 0.25s both;
}

.hero1-visual-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.hero1-visual-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}

.hero1-card-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero1-card-title i {
  color: var(--teal);
}

/* Capability rows */
.cap-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
}

.cap-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.cap-icon-wrap.teal {
  background: rgba(0, 158, 131, 0.1);
  color: var(--teal);
}

.cap-icon-wrap.gold {
  background: rgba(212, 130, 10, 0.1);
  color: var(--gold);
}

.cap-bar-wrap {
  flex: 1;
}

.cap-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.cap-bar {
  height: 6px;
  background: var(--bg-muted);
  border-radius: 3px;
  overflow: hidden;
}

.cap-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--teal-dark), var(--teal-light));
  width: 0;
  transition: width 1.4s var(--ease);
  animation: barGrow 1.4s var(--ease) 0.6s both;
}

@keyframes barGrow {
  from {
    width: 0 !important;
  }
}

.cap-pct {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.hero1-cert-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border-soft);
}

.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.28rem 0.7rem;
  border-radius: 100px;
}

.cert-badge.teal {
  background: rgba(0, 158, 131, 0.09);
  color: var(--teal-dark);
  border: 1px solid rgba(0, 158, 131, 0.2);
}

.cert-badge.gold {
  background: rgba(212, 130, 10, 0.09);
  color: var(--gold);
  border: 1px solid rgba(212, 130, 10, 0.2);
}

/* Floating badges */
.hero1-float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  padding: 0.65rem 1rem;
  box-shadow: var(--shadow-md);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  z-index: 5;
  animation: floatBadge 4s ease-in-out infinite;
}

.hero1-float-badge.b1 {
  top: -14px;
  left: -16px;
  animation-delay: 0s;
}

.hero1-float-badge.b2 {
  bottom: -14px;
  right: -16px;
  animation-delay: -2s;
}

.badge-icon {
  width: 32px;
  height: 32px;
  background: var(--bg-soft);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.badge-text small {
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.68rem;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

/* ================================================================
   REGION STRIP
================================================================ */
.region-strip {
  background: var(--bg-soft);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 0.75rem 0;
  overflow: hidden;
}

.region-strip-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0 1.5rem;
  max-width: 1320px;
  margin: 0 auto;
}

.region-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
  margin-right: 0.5rem;
}

.region-label i {
  color: var(--teal);
}

.region-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 100px;
  padding: 0.28rem 0.85rem;
  transition: border-color var(--dur) var(--ease),
    color var(--dur) var(--ease);
}

.region-pill i {
  color: var(--teal);
  font-size: 0.7rem;
}

.region-pill:hover {
  border-color: rgba(0, 158, 131, 0.3);
  color: var(--teal);
}

/* ================================================================
   ABOUT / INTRO SECTION
================================================================ */
.about-section {
  padding: 100px 0;
  background: #f2f7fb;
}

.about-image {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.about-image img {
  width: 100%;
  display: block;
  height: 600px;
  object-fit: cover;
}

.about-image:hover img {
  transform: scale(1.08);
}

.experience-card {
  position: absolute;
  left: 30px;
  bottom: 30px;
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  animation: float 3s ease-in-out infinite;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .2);
}

.experience-card h2 {
  color: #0ea5a4;
  font-size: 42px;
  font-weight: 800;
  margin: 0;
}

.experience-card span {
  font-weight: 600;
}

.section-title {
  font-size: 30px;
  color: #fff;
  font-weight: 800;
  margin-bottom: 20px;
}

.section-title span {
  color: #0ea5a4;
}

.about-text {
  color: #3b3838;
  line-height: 1.8;
  font-size: 17px;
}

.feature-card {
  background: #10283d;
  padding: 30px;
  border-radius: 20px;
  transition: .4s;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, .08);
}

.feature-card:hover {
  transform: translateY(-10px);
  background: #143651;
}

.feature-card i {
  font-size: 38px;
  color: #0ea5a4;
  margin-bottom: 18px;
}

.feature-card h5 {
  color: #fff;
  margin-bottom: 10px;
}

.feature-card p {
  color: #9fb0c0;
  margin: 0;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

}

@media(max-width:991px) {

  .about-image img {
    height: 450px;
  }

  .section-title {
   font-size: clamp(1.4rem, 2.8vw, 2rem);
  }

}

@media(max-width:767px) {

  .about-section {
    padding: 70px 0;
  }

  .about-image img {
    height: 280px;
  }

  .experience-card {
    left: 15px;
    bottom: 15px;
    padding: 15px;
  }

  .experience-card h2 {
    font-size: 28px;
  }

  .section-title {
    font-size: clamp(1.4rem, 2.8vw, 2rem);
  }

  .about-text {
    font-size: 15px;
  }

  .feature-card {
    text-align: center;
    padding: 25px;
  }

  .feature-card i {
    font-size: 30px;
  }

}

/* Mobile View */
@media (max-width: 767px) {

  .about-section .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .about-section .why-card {
    padding: 25px 20px;
    text-align: center;
  }

  .about-section .why-icon {
    margin: 0 auto 15px;
  }

  .about-section .section-title {
    font-size: 32px;
  }

  .about-section .about-list li {
    font-size: 15px;
  }

  .about-section .btn-primary-main,
  .about-section .btn-outline-main {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

.about-feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: rgba(0, 158, 131, 0.09);
  border: 1px solid rgba(0, 158, 131, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: background var(--dur) var(--ease),
    transform var(--dur) var(--ease);
}

.about-feature-item:hover .about-feature-icon {
  background: var(--teal);
  color: #fff;
  transform: scale(1.08);
}

.about-feature-text h6 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.about-feature-text p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Intro visual / right panel */
.intro-visual {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-xl);
  padding: 1.8rem;
  box-shadow: var(--shadow-md);
}

.intro-visual-title {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.4rem;
}

/* Progress bars in intro visual */
.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.progress-label span:first-child {
  color: var(--text-primary);
}

.progress-label span:last-child {
  color: var(--teal);
}

.progress-bar-track {
  height: 7px;
  background: var(--bg-muted);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.progress-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--teal-dark), var(--teal-light));
  width: 0;
  transition: width 1.2s var(--ease);
}

/* Bootstrap .progress override */
.progress {
  height: 7px !important;
  background: var(--bg-muted) !important;
  border-radius: 4px !important;
}

.progress-bar {
  background: linear-gradient(90deg, var(--teal-dark), var(--teal-light)) !important;
  border-radius: 4px !important;
  transition: width 1.2s var(--ease) !important;
}

/* ================================================================
   METRICS / STATS
================================================================ */
.metrics-section {
  background: var(--bg-soft);
  padding: 4rem 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.metric-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
  height: 100%;
}

.metric-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-teal);
  border-color: rgba(0, 158, 131, 0.22);
}

.metric-icon {
  font-size: 1.6rem;
  color: var(--teal);
  margin-bottom: 0.8rem;
}

.metric-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.04em;
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.metric-accent {
  color: var(--teal);
}

.metric-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ================================================================
   SERVICES
================================================================ */
.services-section {
  padding: 5.5rem 0;
  background: var(--bg-page);
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 2rem 1.8rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
  height: 100%;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(0, 158, 131, 0.2);
  box-shadow: var(--shadow-teal);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.1rem;
  transition: transform var(--dur) var(--ease);
}

.service-icon-wrap.teal {
  background: rgba(0, 158, 131, 0.1);
  color: var(--teal);
}

.service-icon-wrap.gold {
  background: rgba(212, 130, 10, 0.1);
  color: var(--gold);
}

.service-icon-wrap.blue {
  background: rgba(59, 130, 246, 0.1);
  color: #3B82F6;
}

.service-icon-wrap.green {
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
}

.service-card:hover .service-icon-wrap {
  transform: scale(1.1) rotate(-5deg);
}

.service-card h4 {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.1rem;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.service-features li {
  font-size: 0.82rem;
  color: var(--text-secondary);
  padding-left: 1.2rem;
  position: relative;
}

.service-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 0.7rem;
  top: 2px;
}

/* ================================================================
   WHY CARDS
================================================================ */
.why-section {
  padding: 5.5rem 0;
  background: var(--bg-soft);
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
  height: 100%;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.1rem;
}

.why-icon.teal {
  background: rgba(0, 158, 131, 0.1);
  color: var(--teal);
}

.why-icon.gold {
  background: rgba(212, 130, 10, 0.1);
  color: var(--gold);
}

.why-icon.blue {
  background: rgba(59, 130, 246, 0.1);
  color: #3B82F6;
}

.why-icon.green {
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
}

.why-card h5 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* ================================================================
   TESTIMONIAL
================================================================ */
.testimonial-section {
  padding: 5.5rem 0;
  background: var(--bg-page);
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid rgba(0, 158, 131, 0.15);
  border-radius: var(--r-xl);
  padding: 2.5rem 2.2rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  font-size: 7rem;
  font-family: Georgia, serif;
  color: rgba(0, 158, 131, 0.08);
  line-height: 1;
  pointer-events: none;
}

.testimonial-text {
  font-size: 1.05rem;
  color: rgb(31, 30, 30);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0.2rem;
}

.testimonial-role {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ================================================================
   CTA SECTION
================================================================ */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 60%, #00b897 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  top: -200px;
  right: -150px;
  pointer-events: none;
}

.cta-section h2 {
  color: #fff;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.75;
}

/* ================================================================
   PAGE hero1 (inner pages)
================================================================ */
.page-hero1 {
  padding: 120px 0 60px;
  border-bottom: 1px solid var(--border-soft);
  position: relative;
  overflow: hidden;
}

.page-hero1::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 0% 50%, rgba(0, 158, 131, 0.06), transparent 55%),
    radial-gradient(ellipse 40% 60% at 100% 20%, rgba(212, 130, 10, 0.04), transparent 55%);
  pointer-events: none;
}

.page-hero1-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.page-hero1-icon.teal {
  background: rgba(0, 158, 131, 0.1);
  color: var(--teal);
}

.page-hero1-icon.gold {
  background: rgba(212, 130, 10, 0.1);
  color: var(--gold);
}

.page-hero1-icon.blue {
  background: rgba(59, 130, 246, 0.1);
  color: #3B82F6;
}



/*==============================
    ABOUT HERO
==============================*/

.about-hero {
  position: relative;
  padding: 180px 0 120px;
  background: url("../img/hero2.jpg") center center/cover no-repeat;
  overflow: hidden;
}

/* Dark Overlay */
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(3, 18, 36, .92) 0%,
      rgba(3, 18, 36, .75) 45%,
      rgba(3, 18, 36, .45) 100%);
}

.about-hero .container {
  position: relative;
  z-index: 2;
}

/* Breadcrumb */

.about-hero .breadcrumb {
  margin-bottom: 25px;
  background: none;
  padding: 0;
}

.about-hero .breadcrumb-item,
.about-hero .breadcrumb-item a {
  color: #d6e5f0;
  text-decoration: none;
  font-size: 15px;
}

.about-hero .breadcrumb-item+.breadcrumb-item::before {
  color: #fff;
}

/* Icon */

.page-hero-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(8px);
  margin-bottom: 30px;
}

.page-hero-icon i {
  font-size: 32px;
  color: #15d17b;
}

/* Eyebrow */

.section-eyebrow {
  color: #15d17b;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

/* Heading */

.section-title {
  color: #000000;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 25px;
}

.section-title .accent {
  color: #15d17b;
}

/* Paragraph */

.section-sub {
  color: #646a70;
  font-size: 18px;
  line-height: 1.9;
  max-width: 650px;
}

/*==============================
    MOBILE
==============================*/

@media(max-width:991px) {

  .about-hero {
    padding: 150px 0 90px;
  }

  .section-title {
    font-size: 42px;
  }

}

@media(max-width:768px) {

  .about-hero {
    padding: 120px 0 70px;
    text-align: center;
  }

  .page-hero-icon {
    margin: 0 auto 25px;
  }

  .section-title {
    font-size: 32px;
  }

  .section-sub {
    font-size: 15px;
    line-height: 1.7;
  }

  .breadcrumb {
    justify-content: center;
  }

}

.journey-section{
    padding:100px 0;
    background:#f8fafc;
}

.roadmap{
    display:flex;
    justify-content:space-between;
    position:relative;
    gap:20px;
    margin-top:80px;
}

.roadmap-line{
    position:absolute;
    top:38px;
    left:5%;
    right:5%;
    height:4px;
    background:linear-gradient(90deg,#00a67e,#0ea5e9,#f59e0b);
    border-radius:20px;
}

.roadmap-item{
    position:relative;
    flex:1;
    text-align:center;
}

.roadmap-circle{
    width:80px;
    height:80px;
    border-radius:50%;
    background:#fff;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    color:#00a67e;
    border:5px solid #00a67e;
    transition:.4s;
    z-index:2;
    position:relative;
}

.roadmap-item:hover .roadmap-circle{
    transform:scale(1.15) rotate(8deg);
    background:#00a67e;
    color:#fff;
}

.roadmap-card{
    background:#fff;
    margin-top:30px;
    padding:25px;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
}

.roadmap-card:hover{
    transform:translateY(-10px);
}

.roadmap-card span{
    display:inline-block;
    padding:6px 16px;
    background:#00a67e;
    color:#fff;
    border-radius:30px;
    font-size:13px;
    margin-bottom:15px;
}

.roadmap-card h5{
    font-weight:700;
}

.roadmap-card p{
    color:#64748b;
    margin:0;
}

@media(max-width:992px){

.roadmap{
    flex-direction:column;
}

.roadmap-line{
    display:none;
}

.roadmap-item{
    margin-bottom:30px;
}
}

/*=========================
   Services Hero
=========================*/

.services-hero{
    position:relative;
    padding:170px 0 120px;
    background:url("../img/services-banner.jpg") center center/cover no-repeat;
    overflow:hidden;
}

/* Dark Overlay */
.services-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(4,18,35,.90) 0%,
        rgba(4,18,35,.75) 45%,
        rgba(4,18,35,.55) 100%
    );
}

/* Content */
.services-hero .container{
    position:relative;
    z-index:2;
}

/* Breadcrumb */
.services-hero .breadcrumb{
    margin-bottom:25px;
}

.services-hero .breadcrumb-item,
.services-hero .breadcrumb-item a{
    color:#dce7f2;
    text-decoration:none;
}

.services-hero .breadcrumb-item+.breadcrumb-item::before{
    color:#fff;
}

/* Icon */
.services-hero .page-hero-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:30px;
}

.services-hero .page-hero-icon i{
    color:#fbbf24;
    font-size:34px;
}

/* Text */
.services-hero .section-eyebrow{
    color:#fbbf24;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.services-hero .section-title{
    color:#fff;
    font-size:40px;
    font-weight:800;
    line-height:1.15;
    margin-bottom:25px;
}

.services-hero .accent-gold{
    color:#fbbf24;
}

.services-hero .section-sub{
    color:#d8e5ef;
    font-size:18px;
    line-height:1.8;
    max-width:650px;
}

/* Responsive */
@media (max-width:991px){

    .services-hero{
        padding:140px 0 90px;
    }

    .services-hero .section-title{
        font-size:30px;
    }

}

@media (max-width:767px){

    .services-hero{
        padding:120px 0 70px;
        text-align:center;
    }

    .services-hero .page-hero-icon{
        margin:0 auto 25px;
    }

    .services-hero .breadcrumb{
        justify-content:center;
    }

    .services-hero .section-title{
        font-size:32px;
    }

    .services-hero .section-sub{
        font-size:15px;
        line-height:1.7;
    }

}

/*=========================
   Services Hero
=========================*/

.services-hero{
    position:relative;
    padding:170px 0 120px;
    background:url("../img/service.jpg") center center/cover no-repeat;
    overflow:hidden;
}

/* Dark Overlay */
.services-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(4,18,35,.90) 0%,
        rgba(4,18,35,.75) 45%,
        rgba(4,18,35,.55) 100%
    );
}

/* Content */
.services-hero .container{
    position:relative;
    z-index:2;
}

/* Breadcrumb */
.services-hero .breadcrumb{
    margin-bottom:25px;
}

.services-hero .breadcrumb-item,
.services-hero .breadcrumb-item a{
    color:#dce7f2;
    text-decoration:none;
}

.services-hero .breadcrumb-item+.breadcrumb-item::before{
    color:#fff;
}

/* Icon */
.services-hero .page-hero-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:30px;
}

.services-hero .page-hero-icon i{
    color:#fbbf24;
    font-size:34px;
}

/* Text */
.services-hero .section-eyebrow{
    color:#fbbf24;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.services-hero .section-title{
    color:#fff;
    font-size:30px;
    font-weight:800;
    line-height:1.15;
    margin-bottom:25px;
}

.services-hero .accent-gold{
    color:#fbbf24;
}

.services-hero .section-sub{
    color:#d8e5ef;
    font-size:18px;
    line-height:1.8;
    max-width:650px;
}

/* Responsive */
@media (max-width:991px){

    .services-hero{
        padding:140px 0 90px;
    }

    .services-hero .section-title{
        font-size:42px;
    }

}

@media (max-width:767px){

    .services-hero{
        padding:120px 0 70px;
        text-align:center;
    }

    .services-hero .page-hero-icon{
        margin:0 auto 25px;
    }

    .services-hero .breadcrumb{
        justify-content:center;
    }

    .services-hero .section-title{
        font-size:32px;
    }

    .services-hero .section-sub{
        font-size:15px;
        line-height:1.7;
    }

}


/* ================================================================
   PROJECT CARDS
================================================================ */
.projects-section {
  padding: 5.5rem 0;
  background: var(--bg-page);
}

.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
  height: 100%;
}

.project-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-teal);
}

.project-img {
  height: 200px;
  background: linear-gradient(135deg, var(--bg-muted), var(--bg-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}

.project-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(238, 244, 242, 0.8));
}

.project-body {
  padding: 1.6rem;
}

.project-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(0, 158, 131, 0.08);
  border: 1px solid rgba(0, 158, 131, 0.18);
  padding: 0.22rem 0.7rem;
  border-radius: 100px;
  margin-bottom: 0.7rem;
}

.project-body h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--text-primary);
}

.project-body p {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.project-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.project-meta-item {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.project-meta-item strong {
  color: var(--text-primary);
}
/*  */
/*=====================================
   Projects Hero Section
=====================================*/

.page-hero{
    position:relative;
    padding:170px 0 120px;
    background:url("../img/project.jpg") center center/cover no-repeat;
    overflow:hidden;
}

/* Dark Overlay */

.page-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(5,18,35,.92) 0%,
        rgba(5,18,35,.75) 45%,
        rgba(5,18,35,.50) 100%
    );
}

/* Decorative Gradient */

.page-hero::after{
    content:"";
    position:absolute;
    inset:0;
    background:radial-gradient(circle at top right,
        rgba(0,166,126,.18),
        transparent 45%);
    pointer-events:none;
}

/* Content */

.page-hero .container{
    position:relative;
    z-index:2;
}

/* Breadcrumb */

.page-hero .breadcrumb{
    background:transparent;
    margin-bottom:25px;
}

.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item a{
    color:#dbe7f3;
    text-decoration:none;
}

.page-hero .breadcrumb-item+.breadcrumb-item::before{
    color:#ffffff;
}

/* Icon */

.page-hero-icon{
    width:80px;
    height:80px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(10px);
    margin-bottom:30px;
}

.page-hero-icon i{
    font-size:34px;
    color:#00d084;
}

/* Text */

.page-hero .section-eyebrow{
    color:#00d084;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.page-hero .section-title{
    color:#fff;
    font-weight:800;
    line-height:1.15;
}

.page-hero .accent{
    color:#00d084;
}

.page-hero .section-sub{
    color:#d7e5ef;
    font-size:18px;
    line-height:1.8;
    max-width:720px;
}

/* Filter Buttons */

.filter-bar{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.filter-btn{
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.18);
    color:#fff;
    padding:12px 20px;
    border-radius:50px;
    transition:.35s;
    backdrop-filter:blur(10px);
}

.filter-btn:hover,
.filter-btn.active{
    background:#00a67e;
    border-color:#00a67e;
    color:#fff;
    transform:translateY(-3px);
}

/*=====================================
   Responsive
=====================================*/

@media(max-width:991px){

.page-hero{
    padding:140px 0 90px;
}

}

@media(max-width:768px){

.page-hero{
    padding:120px 0 70px;
    text-align:center;
}

.page-hero-icon{
    margin:0 auto 25px;
}

.breadcrumb{
    justify-content:center;
}

.filter-bar{
    justify-content:center;
}

.filter-btn{
    width:100%;
}

.page-hero .section-sub{
    font-size:15px;
}

}
/*  */

/*=========================================
        FLAGSHIP PROJECT SECTION
=========================================*/

.flagship-section{
    padding:100px 0;
    background:linear-gradient(180deg,#f8fbfd,#ffffff);
    overflow:hidden;
}

/*==============================
        FEATURED CARD
==============================*/

.featured-card{
    position:relative;
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 18px 45px rgba(15,23,42,.08);
    border:1px solid rgba(15,23,42,.08);
    transition:.45s;
}

.featured-card:hover{
    transform:translateY(-12px);
    box-shadow:0 30px 60px rgba(0,0,0,.15);
}

/* Animated Border */

.featured-card::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#00a67e,#0ea5e9,#f59e0b);
    transition:.7s;
}

.featured-card:hover::before{
    left:0;
}

/*==============================
      IMAGE / VISUAL AREA
==============================*/

.featured-visual{
    height:240px;
    position:relative;
    overflow:hidden;
    background:#0f172a;
}

.featured-visual--large{
    height:340px;
}

.featured-visual--tall{
    height:100%;
    min-height:320px;
}

/* Image */

.featured-visual-bg{
    position:absolute;
    inset:0;
    background:url("../img/project.jpg") center/cover;
    transition:1.2s;
}

.featured-card:hover .featured-visual-bg{
    transform:scale(1.12);
}

/* Dark Overlay */

.featured-visual::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
    rgba(0,0,0,.70),
    rgba(0,0,0,.10));
}

/*==============================
      ICON
==============================*/

.featured-visual-icon{
    position:absolute;
    top:20px;
    left:20px;
    width:70px;
    height:70px;
    border-radius:50%;
    background:rgba(255,255,255,.18);
    backdrop-filter:blur(10px);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:30px;
    z-index:2;
    animation:floatIcon 3s infinite ease-in-out;
}

/*==============================
        BADGE
==============================*/

.featured-badge{
    position:absolute;
    right:20px;
    top:20px;
    padding:8px 18px;
    border-radius:50px;
    background:#00a67e;
    color:#fff;
    font-size:13px;
    font-weight:700;
    z-index:2;
    letter-spacing:1px;
}

.featured-badge--gold{
    background:#f59e0b;
}

/*==============================
          BODY
==============================*/

.featured-body{
    padding:35px;
}

.featured-tag{
    color:#00a67e;
    font-weight:700;
    font-size:14px;
    margin-bottom:12px;
}

.featured-title{
    font-size:30px;
    font-weight:800;
    margin-bottom:15px;
}

.featured-body p{
    color:#64748b;
    line-height:1.8;
}

/*==============================
       PROJECT SPECS
==============================*/

.project-specs,
.project-specs-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-top:25px;
}

.spec-item{
    background:#f8fafc;
    border-radius:18px;
    padding:20px;
    text-align:center;
    transition:.35s;
}

.spec-item:hover{
    background:#00a67e;
    color:#fff;
    transform:translateY(-6px);
}

.spec-item:hover .spec-num,
.spec-item:hover .spec-label{
    color:#fff;
}

.spec-num{
    display:block;
    font-size:30px;
    font-weight:800;
    color:#00a67e;
}

.spec-label{
    color:#64748b;
    font-size:14px;
}

/*==============================
      HERO STATS
==============================*/

.hero-project-stats{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
    margin-top:35px;
}

.hero-stat-box{
    flex:1;
    min-width:150px;
    background:#fff;
    border-radius:18px;
    padding:22px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.4s;
}

.hero-stat-box:hover{
    transform:translateY(-8px);
    background:#00a67e;
}

.hero-stat-box:hover h3,
.hero-stat-box:hover span{
    color:#fff;
}

.hero-stat-box h3{
    font-size:34px;
    color:#00a67e;
    margin-bottom:8px;
    font-weight:800;
}

.hero-stat-box span{
    color:#64748b;
}

/*==============================
      SCROLL INDICATOR
==============================*/

.scroll-indicator{
    margin-top:60px;
    display:flex;
    justify-content:center;
}

.scroll-indicator span{
    width:34px;
    height:55px;
    border:2px solid #00a67e;
    border-radius:40px;
    position:relative;
}

.scroll-indicator span::before{
    content:"";
    position:absolute;
    left:50%;
    top:8px;
    width:8px;
    height:8px;
    background:#00a67e;
    border-radius:50%;
    transform:translateX(-50%);
    animation:scrollDown 2s infinite;
}

/*==============================
      ANIMATIONS
==============================*/

@keyframes floatIcon{

0%,100%{
transform:translateY(0);
}

50%{
transform:translateY(-10px);
}

}

@keyframes scrollDown{

0%{
opacity:1;
top:8px;
}

100%{
opacity:0;
top:28px;
}

}

/*==============================
      RESPONSIVE
==============================*/

@media(max-width:991px){

.featured-title{
font-size:24px;
}

.featured-visual--large{
height:260px;
}

.project-specs,
.project-specs-grid{
grid-template-columns:1fr;
}

}

@media(max-width:768px){

.flagship-section{
padding:70px 0;
}

.featured-body{
padding:25px;
}

.hero-project-stats{
justify-content:center;
}

.hero-stat-box{
flex:1 1 45%;
}

.featured-visual{
height:220px;
}

}

@media(max-width:576px){

.hero-stat-box{
flex:1 1 100%;
}

.featured-title{
font-size:22px;
}

}
/*  */

/*=========================================
    DISTRIBUTED PROJECTS SECTION
=========================================*/



/*  */


/*==================================
   SERVICE DETAIL CARD
==================================*/

.service-detail-card{
    position:relative;
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    margin-bottom:45px;
    border:1px solid rgba(15,23,42,.08);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.45s ease;
}

.service-detail-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:0;
    height:5px;
    background:linear-gradient(90deg,#00a67e,#0ea5e9,#f59e0b);
    transition:.5s;
}

.service-detail-card:hover::before{
    width:100%;
}

.service-detail-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

/*==================================
   HEADER
==================================*/

.service-detail-header{
    display:flex;
    align-items:center;
    gap:20px;
    padding:35px;
    position:relative;
}

.service-detail-header::after{
    content:"";
    position:absolute;
    right:-60px;
    top:-60px;
    width:180px;
    height:180px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
}

.service-detail-body{
    padding:35px;
}

/*==================================
   ICON
==================================*/

.service-detail-icon{
    width:80px;
    height:80px;
    min-width:80px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    color:#fff;
    transition:.4s;
    animation:floatIcon 3s ease-in-out infinite;
}

.service-detail-card:hover .service-detail-icon{
    transform:rotate(-8deg) scale(1.1);
}

.service-detail-icon.teal{
    background:linear-gradient(135deg,#00a67e,#0ea5a4);
}

.service-detail-icon.gold{
    background:linear-gradient(135deg,#f59e0b,#facc15);
}

.service-detail-icon.blue{
    background:linear-gradient(135deg,#2563eb,#0ea5e9);
}

/*==================================
   FEATURE LIST
==================================*/

.feature-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
}

.feature-list-item{
    display:flex;
    align-items:flex-start;
    gap:12px;
    padding:14px 18px;
    background:#f8fafc;
    border-radius:14px;
    transition:.35s;
}

.feature-list-item i{
    color:#00a67e;
    margin-top:4px;
}

.feature-list-item:hover{
    background:#00a67e;
    color:#fff;
    transform:translateX(8px);
}

.feature-list-item:hover i{
    color:#fff;
}

/*==================================
   STATS BOX
==================================*/

.service-detail-body > .row > .col-md-5 > div{
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.service-detail-body > .row > .col-md-5 > div:hover{
    transform:translateY(-8px);
}

/*==================================
   SMALL FEATURE BOXES
==================================*/

.col-sm-4 > div{
    transition:.35s;
    height:100%;
}

.col-sm-4 > div:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

/*==================================
   FLOAT ANIMATION
==================================*/

@keyframes floatIcon{

0%,100%{
transform:translateY(0);
}

50%{
transform:translateY(-8px);
}

}

/*==================================
   MOBILE
==================================*/

@media(max-width:991px){

.service-detail-header{
    flex-direction:column;
    text-align:center;
}

.service-detail-body{
    padding:25px;
}

}

@media(max-width:767px){

.service-detail-card{
    border-radius:18px;
}

.service-detail-header{
    padding:25px;
}

.service-detail-icon{
    width:70px;
    height:70px;
    min-width:70px;
    font-size:28px;
}

.feature-list{
    grid-template-columns:1fr;
}

.feature-list-item{
    font-size:15px;
}

}

/* ================================================================
   CONTACT PAGE
================================================================ */
.contact-section {
  padding: 5.5rem 0;
  background: var(--bg-page);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.contact-detail-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(0, 158, 131, 0.09);
  border: 1px solid rgba(0, 158, 131, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--teal);
  flex-shrink: 0;
  transition: background var(--dur) var(--ease),
    transform var(--dur) var(--ease);
}

.contact-detail:hover .contact-detail-icon {
  background: var(--teal);
  color: #fff;
  transform: scale(1.07);
}

.contact-detail h4 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.contact-detail p,
.contact-detail a {
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.6;
  transition: color var(--dur) var(--ease);
  margin: 0;
}

.contact-detail a:hover {
  color: var(--teal);
}

/* Contact form card */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.contact-form-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.contact-form-subtitle {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 1.8rem;
  line-height: 1.65;
}

/* Form controls override */
.form-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
  margin-bottom: 0.35rem;
}

.form-control,
.form-select {
  border: 1.5px solid rgba(0, 0, 0, 0.09) !important;
  border-radius: var(--r-sm) !important;
  background: var(--bg-soft) !important;
  color: var(--text-primary) !important;
  font-family: var(--font-body) !important;
  font-size: 0.9rem !important;
  padding: 0.65rem 0.9rem !important;
  transition: border-color var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease) !important;
}

.form-control::placeholder {
  color: var(--text-muted) !important;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(0, 158, 131, 0.5) !important;
  box-shadow: 0 0 0 3px rgba(0, 158, 131, 0.09) !important;
  background: #fff !important;
  outline: none !important;
}

.form-submit-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 2rem;
  background: var(--teal);
  color: #fff !important;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0, 158, 131, 0.25);
  transition: background var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease),
    transform var(--dur) var(--ease);
  margin-top: 0.4rem;
}

.form-submit-btn:hover {
  background: var(--teal-dark);
  box-shadow: 0 8px 30px rgba(0, 158, 131, 0.38);
  transform: translateY(-2px);
}

.form-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-status {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1.2rem;
  border-radius: var(--r-sm);
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
}

.form-status.success {
  display: block;
  background: rgba(0, 158, 131, 0.08);
  border: 1px solid rgba(0, 158, 131, 0.28);
  color: var(--teal-dark);
}

.form-status.error {
  display: block;
  background: rgba(200, 50, 50, 0.06);
  border: 1px solid rgba(200, 50, 50, 0.25);
  color: #C83232;
}

/* Contact map */
.contact-map {
  margin-top: 2.5rem;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: var(--bg-muted);
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.7rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  position: relative;
}

.contact-map .map-icon {
  font-size: 2.5rem;
  color: var(--teal);
}

.contact-map p {
  color: var(--text-secondary);
  margin: 0;
}

.contact-map-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(0, 158, 131, 0.1);
  border: 1px solid rgba(0, 158, 131, 0.22);
  border-radius: 7px;
  padding: 0.28rem 0.8rem;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--teal);
}

/* FAQ */
.faq-strip {
  padding: 5rem 0;
  background: var(--bg-soft);
}

.accordion-item {
  border: 1px solid var(--border-soft) !important;
  border-radius: var(--r-md) !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.accordion-button {
  font-family: var(--font-display) !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  color: var(--text-primary) !important;
  background: #fff !important;
  padding: 1.2rem 1.5rem !important;
}

.accordion-button:not(.collapsed) {
  color: var(--teal) !important;
  background: rgba(0, 158, 131, 0.04) !important;
  box-shadow: none !important;
}

.accordion-button::after {
  filter: hue-rotate(130deg) saturate(2) !important;
}

.accordion-button:focus {
  box-shadow: none !important;
}

.accordion-body {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  padding: 0 1.5rem 1.2rem !important;
  background: #fff !important;
}

/* Legacy faq classes */
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  transition: color var(--dur) var(--ease);
}

.faq-question:hover {
  color: var(--teal);
}

.faq-chevron {
  font-size: 0.95rem;
  color: var(--teal);
  transition: transform var(--dur) var(--ease);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.5rem;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.2rem;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
}

/* ================================================================
   ABOUT PAGE — JOURNEY / TIMELINE
================================================================ */
.journey {
  padding: 5.5rem 0;
  background: var(--bg-page);
  overflow: hidden;
}

.journey-milestones {
  position: relative;
  padding: 10px 0;
}

.journey-milestones::before {
  content: '';
  position: absolute;
  top: 55px;
  bottom: 55px;
  left: 31px;
  width: 2px;
  background: linear-gradient(to bottom,
      rgba(0, 158, 131, 0.1),
      var(--teal),
      rgba(0, 158, 131, 0.1));
}

.milestone {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 16px 0;
}

.milestone-icon {
  position: relative;
  z-index: 2;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--teal);
  background: #fff;
  border: 2px solid rgba(0, 158, 131, 0.35);
  box-shadow: 0 6px 20px rgba(0, 158, 131, 0.1);
}

.milestone-icon i {
  font-size: 1.25rem;
}

.milestone-info {
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
  position: relative;
}

.milestone-info:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-teal);
}

.milestone-number {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: rgba(0, 158, 131, 0.35);
}

.milestone h4 {
  font-size: 1.05rem;
  padding-right: 40px;
  margin: 0 0 8px;
  color: var(--text-primary);
}

.milestone p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
}

.milestone-future .milestone-icon {
  color: #fff;
  border-color: var(--teal);
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  box-shadow: 0 8px 24px rgba(0, 158, 131, 0.25);
}

/* Insight cards (about page) */
.journey-insights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.insight-card {
  min-height: 230px;
  padding: 26px 22px;
  border-radius: var(--r-lg);
  background: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-md);
  transition: transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}

.insight-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 40px rgba(0, 158, 131, 0.2);
}

.insight-card.gold-border {
  border-color: rgba(0, 158, 131, 0.4);
}

.insight-icon {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  margin-bottom: 18px;
  box-shadow: 0 6px 18px rgba(0, 158, 131, 0.25);
}

.insight-icon.gold-icon {
  background: linear-gradient(135deg, var(--teal), #5ECBB8);
}

.insight-icon i {
  font-size: 1.2rem;
}

.insight-card h4 {
  color: #fff;
  font-size: 1rem;
  margin: 0 0 10px;
  line-height: 1.4;
}

.insight-card p {
  color: #C8D8D5;
  font-size: 0.86rem;
  line-height: 1.7;
  margin: 0;
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.3rem;
  margin-top: 2rem;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 158, 131, 0.22);
  box-shadow: var(--shadow-teal);
}

.value-icon {
  font-size: 1.8rem;
  margin-bottom: 0.9rem;
  display: inline-block;
}

.value-card h4 {
  font-size: 0.98rem;
  font-weight: 800;
  margin-bottom: 0.45rem;
  color: var(--text-primary);
}

.value-card p {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* ================================================================
   EPC PROCESS
================================================================ */
.epc-process {
  padding: 5.5rem 0;
  background: var(--bg-soft);
}

.process-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.process-card {
  width: 220px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.process-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transition: transform 0.35s var(--ease);
}

.process-card:hover::before {
  transform: scaleX(1);
}

.process-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 158, 131, 0.22);
  box-shadow: var(--shadow-teal);
}

.process-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  background: rgba(0, 158, 131, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--teal);
  transition: background 0.4s var(--ease), color 0.4s var(--ease), transform 0.4s var(--ease);
}

.process-card:hover .process-icon {
  background: var(--teal);
  color: #fff;
  transform: rotateY(360deg);
}

.process-number {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 0.75rem;
  font-weight: 800;
  color: rgba(0, 158, 131, 0.25);
}

.process-card h3 {
  font-size: 0.95rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
  color: var(--text-primary);
}

.process-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.process-arrow {
  font-size: 1.8rem;
  color: var(--teal);
  opacity: 0.6;
  animation: moveArrow 2s ease-in-out infinite;
}

@keyframes moveArrow {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(8px);
  }
}

@media (max-width: 991px) {
  .process-grid {
    flex-direction: column;
  }

  .process-arrow {
    transform: rotate(90deg);
    animation: moveArrowDown 2s ease-in-out infinite;
  }

  @keyframes moveArrowDown {

    0%,
    100% {
      transform: rotate(90deg) translateX(0);
    }

    50% {
      transform: rotate(90deg) translateX(8px);
    }
  }
}

@media (max-width: 575px) {
  .process-card {
    width: 100%;
    max-width: 320px;
  }
}

/* ================================================================
   FOOTER
================================================================ */
footer {
  background: #0C1B18;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 5rem 0 2rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.footer-brand .volt {
  color: var(--teal-light);
}

.footer-brand .spark {
  color: var(--gold-light);
}

.footer-desc {
  font-size: 0.88rem;
  color: #7A9E98;
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 1.4rem;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  color: #7A9E98;
  transition: background var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    color var(--dur) var(--ease),
    transform var(--dur) var(--ease);
}

.footer-social-link:hover {
  background: rgba(0, 158, 131, 0.15);
  border-color: rgba(0, 158, 131, 0.35);
  color: var(--teal-light);
  transform: translateY(-2px);
}

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.86rem;
  color: #7A9E98;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color var(--dur) var(--ease),
    transform var(--dur) var(--ease);
}

.footer-col ul li a:hover {
  color: var(--teal-light);
  transform: translateX(3px);
}

.footer-col ul li a i {
  font-size: 0.7rem;
  color: var(--teal);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding-top: 2rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8rem;
  color: #5A7A76;
}

.footer-bottom a {
  color: var(--teal-light);
  transition: color var(--dur) var(--ease);
}

.footer-bottom a:hover {
  color: var(--teal);
}

/* ================================================================
   BACK TO TOP & WHATSAPP
================================================================ */
#backToTop {
  position: fixed;
  bottom: 6rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 158, 131, 0.35);
  z-index: 9000;
  transition: background var(--dur) var(--ease),
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}

#backToTop:hover {
  background: var(--teal-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 158, 131, 0.45);
}

#backToTop.show {
  display: flex;
}

.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 52px;
  height: 52px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  z-index: 9001;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.4);
  transition: background var(--dur) var(--ease),
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}

.whatsapp-float:hover {
  background: #1ebe5d;
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

/* ================================================================
   TRUSTED BAR / PARTNER LOGOS
================================================================ */
.trusted-bar {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 0.75rem 0;
}

.trusted-bar span {
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.trusted-logo {
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-sm);
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  transition: border-color var(--dur) var(--ease),
    color var(--dur) var(--ease);
}

.trusted-logo:hover {
  border-color: rgba(0, 158, 131, 0.25);
  color: var(--teal);
}

/* ================================================================
   PULSE ANIMATION (hero1 dot)
================================================================ */
@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.35;
    transform: scale(0.65);
  }
}

/* ================================================================
   COUNT-UP ELEMENTS
================================================================ */
.count-up {
  display: inline;
}

/* ================================================================
   RESPONSIVE TWEAKS
================================================================ */
@media (max-width: 991px) {
  .journey-insights {
    grid-template-columns: 1fr;
  }

  .journey-milestones::before {
    left: 24px;
  }

  .milestone {
    grid-template-columns: 50px 1fr;
    gap: 14px;
  }

  .milestone-icon {
    width: 50px;
    height: 50px;
  }

  .hero1-h1 {
    font-size: clamp(2.4rem, 8vw, 3.6rem);
  }
}

@media (max-width: 767px) {
  .hero1-section {
    padding: 90px 0 50px;
  }

  .hero1-stats {
    gap: 1.2rem;
  }

  .hero1-stat-num {
    font-size: 1.5rem;
  }

  .hero1-stat-divider {
    display: none;
  }

  .hero1-float-badge {
    display: none;
  }

  .section-title {
    font-size: 30px;
  }

  .journey-insights {
    grid-template-columns: 1fr;
  }

  .insight-card {
    min-height: auto;
    padding: 22px 18px;
  }
}

@media (max-width: 575px) {
  .hero1-btns {
    flex-direction: column;
  }

  .hero1-section {
    padding: 80px 0 40px;
  }

  .contact-form-wrap {
    padding: 1.8rem 1.3rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero1-float-badge {
    display: none;
  }
}


.hero1-slider {
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
}

.hero1-slider img {
  height: 620px;
  width: 100%;
  object-fit: cover;
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, .45);
  border-radius: 50%;
  padding: 18px;
}

.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* Tablet */
@media(max-width:991px) {

  .hero1-slider img {
    height: 450px;
  }

}

/* Mobile */
@media(max-width:767px) {

  .hero1-slider {
    margin-top: 30px;
  }

  .hero1-slider img {
    height: 260px;
  }

}

.hero1-slider {
  border-radius: 25px;
  overflow: hidden;
  position: relative;
}

.hero1-slider img {
  height: 620px;
  object-fit: cover;
}

/* Dark overlay */
.carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* Caption */
.hero1-caption {
  z-index: 2;
  bottom: 40px;
  left: 30px;
  right: 30px;
  text-align: left;
}

.hero1-caption h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.hero1-caption p {
  font-size: 1rem;
  color: #f1f5f9;
  line-height: 1.7;
  max-width: 500px;
}

/* Mobile */
@media (max-width: 768px) {

  .hero1-slider img {
    height: 320px;
  }

  .hero1-caption {
    bottom: 20px;
    left: 20px;
    right: 20px;
  }

  .hero1-caption h2 {
    font-size: 1.3rem;
  }

  .hero1-caption p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

/* ================================================================
   UTILITY OVERRIDES
================================================================ */
.text-teal {
  color: var(--teal) !important;
}

.text-gold {
  color: var(--gold) !important;
}

.bg-soft {
  background: var(--bg-soft) !important;
}

.bg-muted {
  background: var(--bg-muted) !important;
}

/* Ensure Bootstrap containers respect token spacing */
.container,
.container-fluid {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 768px) {

  .container,
  .container-fluid {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/*  */
/*=========================================
 DISTRIBUTED GENERATION
=========================================*/

.dist-card{
    position:relative;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    overflow:hidden;
    transition:.45s ease;
    display:flex;
    flex-direction:column;
    height:100%;
    backdrop-filter:blur(14px);
}

.dist-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,
        rgba(0,200,170,.08),
        transparent 60%);
    opacity:0;
    transition:.45s;
}

.dist-card:hover{
    transform:translateY(-10px);
    border-color:rgba(0,200,170,.35);
    box-shadow:0 25px 60px rgba(0,0,0,.35);
}

.dist-card:hover::before{
    opacity:1;
}

.dist-visual{
    height:170px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:58px;
    color:var(--teal);
    background:linear-gradient(135deg,#071826,#102d3d);
    position:relative;
}

.dist-visual::after{
    content:"";
    position:absolute;
    width:130px;
    height:130px;
    border-radius:50%;
    background:rgba(0,200,170,.08);
    filter:blur(10px);
}

.dist-visual i{
    position:relative;
    z-index:2;
}

.dist-body{
    padding:28px;
    flex:1;
}

.dist-tag{
    display:inline-flex;
    align-items:center;
    gap:6px;
    background:rgba(0,200,170,.12);
    color:var(--teal);
    border:1px solid rgba(0,200,170,.25);
    padding:7px 14px;
    border-radius:50px;
    font-size:12px;
    font-weight:600;
    margin-bottom:18px;
}

.dist-body h4{
    color:#fff;
    font-size:22px;
    font-weight:700;
    margin-bottom:14px;
}

.dist-body p{
    color:var(--text-secondary);
    line-height:1.8;
    font-size:15px;
    margin:0;
}

/*=========================================
 IMPACT SECTION
=========================================*/

.impact-section{
    background:linear-gradient(180deg,var(--dark),#07141f);
}

.impact-banner{
    background:linear-gradient(135deg,#0d1d2b,#102b38);
    border-radius:28px;
    padding:70px;
    border:1px solid rgba(255,255,255,.08);
    position:relative;
    overflow:hidden;
}

.impact-banner::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:radial-gradient(circle,
        rgba(0,200,170,.15),
        transparent 70%);
    top:-250px;
    right:-180px;
}

.impact-banner-title{
    color:#fff;
    font-size:42px;
    font-weight:800;
    margin-bottom:20px;
}

.impact-banner-text{
    color:var(--text-secondary);
    line-height:1.9;
    font-size:16px;
    margin-bottom:35px;
}

/*=========================================
 IMPACT STAT CARDS
=========================================*/

.impact-stat-card{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    padding:30px 20px;
    text-align:center;
    transition:.4s;
    height:100%;
    backdrop-filter:blur(12px);
}

.impact-stat-card:hover{
    transform:translateY(-8px);
    border-color:rgba(0,200,170,.35);
    box-shadow:0 20px 45px rgba(0,0,0,.35);
}

.impact-stat-icon{
    width:72px;
    height:72px;
    margin:auto;
    margin-bottom:20px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    color:var(--teal);
    background:rgba(0,200,170,.12);
}

.impact-stat-num{
    font-size:42px;
    font-weight:800;
    color:#fff;
    margin-bottom:10px;
    line-height:1;
}

.impact-stat-label{
    color:var(--text-secondary);
    font-size:15px;
    line-height:1.6;
}

/*=========================================
 BUTTON
=========================================*/

.btn-primary-main{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:16px 34px;
    border-radius:50px;
    background:linear-gradient(135deg,var(--teal),#00b5ff);
    color:#fff;
    text-decoration:none;
    font-weight:700;
    transition:.35s;
}

.btn-primary-main:hover{
    color:#fff;
    transform:translateY(-4px);
    box-shadow:0 18px 40px rgba(0,200,170,.35);
}

/*=========================================
 RESPONSIVE
=========================================*/

@media (max-width:992px){

.impact-banner{
    padding:45px 35px;
}

.impact-banner-title{
    font-size:34px;
}

.dist-body{
    padding:22px;
}

.dist-body h4{
    font-size:20px;
}

}

@media (max-width:768px){

.dist-visual{
    height:150px;
    font-size:48px;
}

.dist-body{
    padding:20px;
}

.dist-body h4{
    font-size:18px;
}

.impact-banner{
    padding:30px 22px;
}

.impact-banner-title{
    font-size:28px;
}

.impact-banner-text{
    font-size:15px;
}

.impact-stat-card{
    padding:22px 15px;
}

.impact-stat-icon{
    width:60px;
    height:60px;
    font-size:24px;
}

.impact-stat-num{
    font-size:30px;
}

.impact-stat-label{
    font-size:13px;
}

.btn-primary-main{
    width:100%;
    justify-content:center;
}

}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.brand-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    /* border-radius: 50%;      Remove this line if you don't want a circular logo */
}

.brand-text {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
}

.brand-volt {
    color: #0056b3;
}

.brand-spark {
    color: #ff9800;
}

.brand-energy {
    color: #2e7d32;
}

@media (max-width: 768px) {
    .brand-logo {
        width: 92px;
        height: 92px;
    }

    .brand-text {
        font-size: 11px;
    }
}
/*=====================================
   PARTNERS PAGE
=====================================*/

.partners-hero {
  
  padding: 170px 0 110px;
}

.partners-hero::before {
  content: none;
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(3, 18, 36, .92) 0%,
      rgba(3, 18, 36, .75) 45%,
      rgba(3, 18, 36, .45) 100%);
}

.partners-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(0, 201, 167, 0.22), transparent 50%);
  pointer-events: none;
}

.partners-hero .breadcrumb-item,
.partners-hero .breadcrumb-item a {
  color: #cfe9e2;
}

.partners-hero .breadcrumb-item + .breadcrumb-item::before {
  color: #ffffff;
}

.partners-hero .page-hero-icon {
  background: rgba(255, 255, 255, .12);
}

.partners-hero .page-hero-icon i {
  color: var(--teal-light);
}

.partners-hero .section-eyebrow {
  color: var(--teal-light);
}

.partners-hero .section-title {
  color: #ffffff;
}

.partners-hero .section-title .accent {
  color: var(--teal-light);
}

.partners-hero .section-sub {
  color: rgba(255, 255, 255, 0.82);
}

.partners-section {
  padding: 30px 0 90px;
}

.partner-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  padding: 32px;
  height: 100%;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}

.partner-panel:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.partner-panel-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.partner-panel-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--r-md);
  background: rgba(0, 158, 131, 0.10);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
}

.partner-panel-head h5 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  color: var(--text-primary);
  margin: 0;
}

.partner-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.partner-chip {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: .2px;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}

.partner-chip:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #ffffff;
  transform: translateY(-2px);
}

.finance-section {
  padding: 90px 0;
  background: var(--bg-soft);
}

.bank-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  padding: 32px;
  height: 100%;
}

.bank-panel h5 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  color: var(--text-primary);
  margin-bottom: 22px;
}

.bank-panel h5 i {
  color: var(--gold);
}

.bank-chip {
  background: #fff;
  border-color: var(--border-soft);
}

.bank-chip:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #ffffff;
}

@media (max-width: 768px) {
  .partners-hero {
    padding: 130px 0 80px;
    text-align: center;
  }

  .partners-hero .page-hero-icon {
    margin: 0 auto 25px;
  }

  .partner-panel,
  .bank-panel {
    padding: 24px;
  }

  .partner-panel-head {
    justify-content: center;
    text-align: center;
  }

  .partner-grid {
    justify-content: center;
  }
}

.partner-panel{
    background:#fff;
    border-radius:18px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    height:100%;
}

.partner-panel-head{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:25px;
}

.partner-panel-icon{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#198754;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.partner-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.partner-chip{
    height:120px;
    background:#fff;
    border:1px solid #e9ecef;
    border-radius:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:15px;
    transition:.3s;
    box-shadow:0 5px 15px rgba(0,0,0,.05);
}

.partner-chip:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 25px rgba(0,0,0,.12);
}

.partner-chip img{
    width:100%;
    height:90px;
    object-fit:contain;
    transition:.3s;
}

.partner-chip:hover img{
    transform:scale(1.08);
}

@media (max-width:768px){
    .partner-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .partner-chip{
        height:100px;
    }

    .partner-chip img{
        height:55px;
    }
}

@media (max-width:480px){
    .partner-grid{
        grid-template-columns:1fr;
    }
}