/* 
   SWATI GREEN ENERGY SOLUTIONS  style.css
   Primary: #0C8D4D | Font: Inter
    */

/*  Custom Properties  */
:root {
  --green:        #0C8D4D;
  --green-dark:   #086e3b;
  --green-light:  #e6f7ef;
  --green-mid:    #1aaa63;
  --white:        #ffffff;
  --off-white:    #f7faf8;
  --dark:         #0d1f14;
  --dark-mid:     #1a3325;
  --text-main:    #1a2e22;
  --text-soft:    #4a6b57;
  --text-muted:   #8aaa96;
  --border:       #d4e8dc;
  --font:         'Inter', system-ui, -apple-system, sans-serif;
  --radius:       12px;
  --radius-lg:    18px;
  --shadow-sm:    0 2px 10px rgba(12,141,77,0.09);
  --shadow-md:    0 8px 30px rgba(12,141,77,0.13);
  --shadow-lg:    0 20px 60px rgba(12,141,77,0.16);
  --transition:   0.3s cubic-bezier(0.4,0,0.2,1);
}

/*  Reset  */
*,
*::before,
*::after { box-sizing: border-box; }

body, h1, h2, h3, h4, h5, h6, p, ul { margin: 0; }

 html { scroll-behavior: smooth; font-size: 16px; }

 body {
  font-family: var(--font);
  color: var(--text-main);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); }

/*  Utility  */
.section { padding: 5rem 0; }

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.page-center {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-light);
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 0.85rem;
}
.section-tag.center { display: block; text-align: center; }
.section-tag.light  { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }

.section-heading {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.22;
  margin-bottom: 1rem;
}
.section-heading.center { text-align: center; }
.section-heading.light  { color: var(--white); }

.section-subhead {
  font-size: 1rem;
  color: var(--text-soft);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.75;
}

.section-header {
  margin-bottom: 0.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Decorative pill heading */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.55rem 1.7rem;
  border: 2px solid #0C8D4D;
  border-radius: 999px;
  background: transparent;
  color: #0C8D4D;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}

.badge-dots {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.badge-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0C8D4D;
  flex-shrink: 0;
}

.why-badge { margin-bottom: 1rem; }
.badge-center {
  display: flex;
  width: fit-content;
  margin: 0 auto 0.9rem;
}

.badge-light {
  margin-bottom: 1rem;
  border-color: rgba(255,255,255,0.65);
  color: rgba(255,255,255,0.96);
}

.badge-light .badge-dots span {
  background: rgba(255,255,255,0.9);
}

/*  Buttons  */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 1.6rem;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 600;
  border: 2px solid var(--green);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(12,141,77,0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 1.6rem;
  background: transparent;
  color: var(--white);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.55);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-arrow { transition: transform var(--transition); }
.btn-primary:hover .btn-arrow,
.btn-outline:hover .btn-arrow { transform: translateX(4px); }

/* 
   NAVBAR
    */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: var(--transition);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.logo-circle {
  width: 72px; height: 72px;
  border-radius: 0;
  border: 4px solid rgba(255,255,255,0.9);
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  flex-shrink: 0;
  overflow: visible;
  padding: 0;
}

.logo-circle svg { width: 100%; height: 100%; }
.logo-circle img { width: 100%; height: 100%; object-fit: contain; }
.logo-circle .logo-img { width: 100%; height: 100%; object-fit: contain; }

/* Bigger logo sizes for header and footer */
.navbar .logo-circle {
  width: 96px;
  height: 96px;
}

.footer .logo-circle {
  width: 98px;
  height: 98px;
  border: none;
  background: transparent;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-main {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: 0.04em;
}

.logo-sub {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: 0.06em;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0 auto;
}

.nav-link {
  padding: 0.45rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-main);
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--green);
  background: var(--green-light);
}

/* Right section */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.btn-contact {
  padding: 0.55rem 1.3rem;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid var(--green);
}
.btn-contact:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-1px);
}

.nav-socials {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.social-icon {
  width: 30px; height: 30px;
  border-radius: 6px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition), box-shadow var(--transition);
  flex-shrink: 0;
}

.social-icon svg { width: 100%; height: 100%; }
.social-icon img { width: 100%; height: 100%; object-fit: cover; }
.social-icon.gmail img { transform: scale(1.35); }

.social-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 4px solid rgba(255,255,255,0.9);
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* 
   HERO
    */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px; /* navbar height */
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img img {
  object-position: center;
  filter: brightness(0.25) saturate(1.5);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5, 40, 18, 0.85) 0%,
    rgba(12, 141, 77, 0.30) 60%,
    rgba(5, 40, 18, 0.80) 100%
  );
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}

/* Hero Left */
.hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 1.2rem;
}

.hero-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 1.4rem;
  max-width: 500px;
}

.hero-checks {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.hero-checks li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
}

.check-icon { width: 42px; height: 42px; flex-shrink: 0; }
.check-icon svg { width: 100%; height: 100%; }

.hero-btns {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

/* Hero Right */
.hero-right { position: relative; }

.hero-img-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 360px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  border: 3px solid rgba(255,255,255,0.1);
}

.hero-badge {
  position: absolute;
  bottom: -16px;
  right: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
  min-width: 240px;
}

.badge-icon-wrap {
  width: 42px; height: 42px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.badge-icon-wrap svg { width: 22px; height: 22px; }

.hero-badge strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
}

.hero-badge span {
  font-size: 0.78rem;
  color: var(--text-soft);
  font-weight: 500;
  line-height: 1.3;
  display: block;
  margin-top: 0.2rem;
}

/* 
   FEATURES STRIP
    */
.features-strip {
  background: var(--white);
  padding: 3.4rem 0 1.6rem;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  align-items: stretch;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.1rem;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  height: 100%;
  min-height: 170px;
}

.feature-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.feature-icon-wrap {
  width: 40px; height: 40px;
  background: var(--green-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-icon-wrap svg { width: 22px; height: 22px; }

.feature-body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.feature-body h3,
.feature-body h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0;
}

.feature-body p {
  font-size: 0.8rem;
  color: var(--text-soft);
  line-height: 1.52;
  margin: 0;
}

.feature-link {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--green);
  transition: gap var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.feature-link:hover { gap: 0.6rem; text-decoration: underline; }

/* 
   WHY US
    */
.why-us { background: var(--off-white); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-images { position: relative; height: 480px; }

.why-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 72%;
  height: 75%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.why-img-secondary {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 52%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}

.why-stats-box {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  background: var(--green);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: var(--shadow-md);
}

.wstat { text-align: center; }

.wstat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
}

.wstat-plus {
  font-size: 1.2rem;
  font-weight: 800;
  color: rgba(255,255,255,0.8);
}

.wstat p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.75);
  margin-top: 0.1rem;
  line-height: 1.3;
}

.wstat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.3);
}

/* Why content */
.why-content { padding-left: 0.5rem; }

.section-body {
  font-size: 0.97rem;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 1.8rem;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.why-point {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 0.9rem 1rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.why-point:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.wp-icon { width: 28px; height: 28px; flex-shrink: 0; margin-top: 1px; }
.wp-icon svg { width: 100%; height: 100%; }

.why-point strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.2rem;
}

.why-point p {
  font-size: 0.83rem;
  color: var(--text-soft);
  line-height: 1.55;
  margin: 0;
}

/* 
   SERVICES
    */
.services { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  align-items: stretch;
}

.service-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.service-img {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.service-img img { transition: transform 0.5s ease; }
.service-card:hover .service-img img { transform: scale(1.06); }

.service-tag {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  background: var(--green);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
}

.service-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-icon {
  width: 40px; height: 40px;
  background: var(--green-light);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.9rem;
}
.service-icon svg { width: 22px; height: 22px; }

.service-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.service-body p {
  font-size: 0.84rem;
  color: var(--text-soft);
  line-height: 1.65;
  margin-bottom: 0.9rem;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.service-list li {
  font-size: 0.82rem;
  color: var(--text-soft);
  padding-left: 1.1rem;
  position: relative;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--green);
  transform: translateY(-50%);
}





.service-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.service-link:hover { gap: 0.6rem; }

/* 
   STATS BAND
    */
.stats-band {
  background: #ececec;
  padding: 3rem 0;
  overflow: hidden;
  width: 100%;
}

.stats-marquee {
  width: 100%;
  overflow: hidden;
}

.stats-track {
  display: flex !important;
  align-items: center;
  width: max-content;
  animation: stats-scroll 22s linear infinite;
  white-space: nowrap;
}

.stats-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0 1.25rem;
  flex-shrink: 0;
}

.sband-item {
  min-width: 290px;
  text-align: center;
  padding: 0.35rem 1.3rem;
}

.sband-value {
  display: inline-flex;
  align-items: baseline;
  gap: 0.05rem;
}

.sband-num {
  font-size: clamp(2rem, 3vw, 2.9rem);
  font-weight: 800;
  color: #08a64f;
  line-height: 1;
}

.sband-plus {
  font-size: clamp(1.15rem, 1.8vw, 1.7rem);
  font-weight: 800;
  color: #08a64f;
}

.sband-item p {
  font-size: clamp(1.05rem, 1.2vw, 1.55rem);
  color: #2f4662;
  margin-top: 0.45rem;
  font-weight: 500;
  line-height: 1.35;
}

.sband-divider {
  display: none;
}

.sband-item::after {
  content: '';
  display: block;
  width: 46px;
  height: 4px;
  margin: 0.75rem auto 0;
  background: #08a64f;
  border-radius: 100px;
}

@keyframes stats-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.stats-band:hover .stats-track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .stats-track { animation: none; }
}

/* 
   BLOG
    */
.blog { background: var(--off-white); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 0.5rem;
  align-items: stretch;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--green);
}

.blog-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-img img { transition: transform 0.5s ease; }
.blog-card:hover .blog-img img { transform: scale(1.05); }

.blog-cat {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  background: var(--green);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.22rem 0.65rem;
  border-radius: 100px;
}

.blog-body {
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.blog-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.4;
  margin-bottom: 0.55rem;
}

.blog-body p {
  font-size: 0.83rem;
  color: var(--text-soft);
  line-height: 1.65;
  margin-bottom: 0.9rem;
}

.blog-read {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--transition);
  margin-top: auto;
}

.blog-read:hover { gap: 0.6rem; }

.blog-article-view {
  position: fixed;
  inset: 0;
  background: #f3f7f4;
  z-index: 1200;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.blog-article-view.open {
  opacity: 1;
  pointer-events: auto;
}

.blog-article-shell { min-height: 100%; }

.blog-article-hero {
  position: relative;
  min-height: 430px;
  color: var(--white);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.blog-article-hero > img {
  position: absolute;
  inset: 0;
}

.blog-article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(4, 20, 13, 0.86) 0%, rgba(4, 20, 13, 0.56) 45%, rgba(4, 20, 13, 0.75) 100%);
}

.blog-article-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 6.5rem;
  padding-bottom: 2.75rem;
}

.blog-article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1rem;
}

.blog-article-back:hover { color: var(--white); }

.blog-article-meta-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0.95rem;
}

.blog-article-pill {
  background: #0e9f58;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
}

#blogArticleTitle {
  max-width: 900px;
  font-size: clamp(1.95rem, 4.3vw, 3.45rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.blog-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 2rem;
  align-items: start;
  padding-top: 2rem;
  padding-bottom: 2.4rem;
}

.blog-article-main {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.9rem 1.8rem;
  box-shadow: var(--shadow-sm);
}

.blog-article-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.15rem;
}

.blog-article-read {
  font-size: 0.9rem;
  color: var(--text-soft);
  font-weight: 600;
}

.blog-article-share {
  border: 0;
  background: transparent;
  color: var(--text-soft);
  font-size: 0.87rem;
  font-weight: 600;
  padding: 0.2rem 0.25rem;
}

.blog-article-content p {
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.86;
  margin-bottom: 1rem;
}

.blog-article-content h3 {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  color: #071f42;
  line-height: 1.28;
  margin: 1.6rem 0 0.8rem;
}

.blog-article-content h4 {
  font-size: 1.1rem;
  color: #103d2f;
  margin: 1.1rem 0 0.4rem;
}

.blog-article-content ul {
  margin: 0.35rem 0 1rem;
  padding-left: 1.15rem;
  color: var(--text-soft);
}

.blog-article-content li {
  margin-bottom: 0.38rem;
  line-height: 1.72;
}

.blog-article-content .check-list {
  list-style: none;
  padding-left: 0;
}

.blog-article-content .check-list li {
  position: relative;
  padding-left: 1.35rem;
}

.blog-article-content .check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 700;
}

.blog-article-tags {
  margin-top: 1.3rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.blog-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-dark);
  background: var(--green-light);
}

.blog-article-pager {
  margin-top: 1.45rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.blog-nav-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #f8fbf9;
  color: var(--text-main);
  text-align: left;
  padding: 0.95rem 1rem;
  min-height: 92px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: var(--transition);
}

.blog-nav-card:hover:not([disabled]) {
  border-color: var(--green);
  background: #eff8f3;
}

.blog-nav-card[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.blog-nav-dir {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

.blog-nav-title {
  font-size: 1.04rem;
  line-height: 1.4;
  font-weight: 600;
  color: var(--text-main);
}

.blog-article-cta {
  margin-top: 1.45rem;
  border: 1px solid #b8dbc8;
  border-radius: 14px;
  background: #eef6f0;
  padding: 1.35rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.blog-article-cta h3 {
  font-size: 2rem;
  color: #04122c;
  margin-bottom: 0.25rem;
}

.blog-article-cta p {
  color: var(--text-soft);
  line-height: 1.7;
}

.blog-article-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.blog-author-card,
.blog-related-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.2rem;
}

.blog-author-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.blog-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-author-head h4 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.blog-author-head p,
.blog-author-card > p {
  color: var(--text-soft);
  line-height: 1.7;
}

.blog-related-block h3 {
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.blog-related-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.blog-related-item {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 0.7rem;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #f8fbf9;
  padding: 0.6rem;
  text-align: left;
}

.blog-related-item:hover { border-color: var(--green); }

.blog-related-item img {
  width: 76px;
  height: 76px;
  border-radius: 10px;
}

.blog-related-meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.blog-related-cat {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
}

.blog-related-meta strong {
  font-size: 0.97rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-related-meta span {
  font-size: 0.86rem;
  color: var(--text-muted);
}

.blog-help-card {
  background: #0f9a53;
  border-radius: 16px;
  color: var(--white);
  padding: 1.2rem;
}

.blog-help-card h4 {
  font-size: 2rem;
  margin-bottom: 0.4rem;
}

.blog-help-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.86);
  margin-bottom: 0.85rem;
}

.blog-help-card a {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  font-weight: 700;
}

/* 
   CONTACT
    */
.contact { position: relative; overflow: hidden; }

.contact-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-bg img { object-position: center; }

.contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,30,15,0.93) 0%, rgba(12,141,77,0.70) 100%);
}

.contact .section-container { position: relative; z-index: 1; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-info .section-heading { color: var(--white); }

.contact-body {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.78;
  margin-bottom: 2rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
  transition: color var(--transition);
}

.contact-item:hover { color: var(--white); }

.ci-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
}

.contact-item:hover .ci-icon { background: rgba(255,255,255,0.2); }

.ci-icon svg { width: 18px; height: 18px; }

.contact-item strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.15rem;
}

.contact-item span {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.88);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}

.contact-form h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.7rem 0.95rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text-main);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); font-size: 0.88rem; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(12,141,77,0.1);
}

.btn-submit {
  width: 100%;
  padding: 0.85rem 1.5rem;
  background: var(--green);
  color: var(--white);
  border: 2px solid var(--green);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition);
  margin-top: 0.5rem;
}

.btn-submit:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(12,141,77,0.3);
}

.form-success {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: var(--green-light);
  border: 1px solid #b3dfc8;
  border-radius: var(--radius);
  color: var(--green-dark);
  font-size: 0.88rem;
  font-weight: 500;
  align-items: center;
  gap: 0.5rem;
}

.form-success.show { display: flex; }

/* 
   FOOTER
    */
.footer { background: #0a1a10; }

.footer-top { padding: 4rem 0 2.5rem; }

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  align-items: flex-start;
}

.footer-nav-logo { margin-bottom: 1rem; }

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 360px;
}

.footer-desc {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-bottom: 1.4rem;
}

.footer-socials {
  display: flex;
  gap: 0.5rem;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 1.1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.58);
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--green); }

.footer-col-center {
  text-align: left;
  justify-self: start;
}

.footer-col-center ul {
  align-items: flex-start;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.fc-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.fc-item svg { flex-shrink: 0; margin-top: 1px; }

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.2rem 0;
}

.footer-bottom .footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-template-columns: none;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}

.footer-legal a:hover { color: var(--green); }

/*  Back to Top  */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 800;
  width: 72px;
  height: 72px;
  background: var(--green);
  color: var(--white);
  border: 4px solid rgba(255,255,255,0.9);
  border-radius: 50%;
  font-size: 2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transform: translateY(10px);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--green-dark);
  transform: translateY(-5px) scale(1.05);
}

/* 
   REVEAL ANIMATIONS
    */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1),
              transform 0.65s cubic-bezier(0.4,0,0.2,1);
}

.reveal.revealed { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-left.revealed { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-right.revealed { opacity: 1; transform: translateX(0); }

/* 
   RESPONSIVE  TABLET (1024px)
    */
@media (max-width: 1024px) {
  .hero-container        { grid-template-columns: 1fr; text-align: center; }
  .hero-desc             { margin: 0 auto 1.4rem; }
  .hero-checks           { align-items: center; }
  .hero-btns             { justify-content: center; }
  .hero-right            { display: none; }

  .features-container    { grid-template-columns: 1fr 1fr; gap: 1rem; }

  .why-grid              { grid-template-columns: 1fr; gap: 3rem; }
  .why-images            { height: 360px; }
  .why-content           { padding-left: 0; }

  .services-grid         { grid-template-columns: repeat(2, 1fr); }

  .contact-grid          { grid-template-columns: 1fr; gap: 2.5rem; }

  .blog-article-layout   { grid-template-columns: 1fr; }
  .blog-article-side     { max-width: 640px; }
  .blog-article-hero     { min-height: 390px; }

  .footer-container      { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .stats-track           { animation-duration: 20s; }
  .stats-group           { gap: 0.8rem; padding: 0 0.8rem; }
  .sband-item            { min-width: 250px; }
}

/* 
   RESPONSIVE  MOBILE (768px)
    */
@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }

  /* Navbar */
  .nav-inner { gap: 0.65rem; }
  .navbar .logo-circle {
    width: 72px;
    height: 72px;
  }
  .navbar .logo-main { font-size: 0.8rem; }
  .navbar .logo-sub { display: none; }
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,26,16,0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.8rem;
    z-index: 850;
  }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 1.2rem; color: var(--white) !important; }
  .nav-right { margin-left: auto; gap: 0.5rem; }
  .nav-socials { display: flex; gap: 0.35rem; }
  .nav-socials .social-icon { width: 26px; height: 26px; }
  .btn-contact { display: none; }
  .hamburger { display: flex; z-index: 900; }

  /* Features */
  .features-container { grid-template-columns: 1fr; gap: 0.9rem; }
  .feature-card { padding: 1.1rem 1rem; min-height: auto; }
  .feature-body h3,
  .feature-body h4 { font-size: 0.95rem; }
  .feature-body p { font-size: 0.8rem; }

  /* Why Us */
  .why-images { height: 280px; }
  .why-img-main  { width: 75%; height: 72%; }
  .why-img-secondary { width: 55%; height: 50%; }
  .why-stats-box { bottom: -0.5rem; left: 0.5rem; padding: 0.75rem 1rem; gap: 1rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; }
  .blog-article-hero { min-height: 330px; }
  .blog-article-hero-inner {
    padding-top: 5.5rem;
    padding-bottom: 2rem;
  }
  .blog-article-meta-line { gap: 0.55rem; }
  #blogArticleTitle { font-size: clamp(1.65rem, 6.8vw, 2.3rem); }
  .blog-article-main {
    border-radius: 16px;
    padding: 1.2rem 1rem;
  }
  .blog-article-top-row {
    margin-bottom: 0.95rem;
    padding-bottom: 0.8rem;
  }
  .blog-article-pager { grid-template-columns: 1fr; }
  .blog-article-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.1rem 1rem;
  }
  .blog-article-cta h3 { font-size: 1.65rem; }
  .blog-author-card,
  .blog-related-block,
  .blog-help-card {
    border-radius: 14px;
    padding: 1rem;
  }
  .blog-related-item { grid-template-columns: 68px minmax(0, 1fr); }
  .blog-related-item img {
    width: 68px;
    height: 68px;
  }

  /* Form */
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-container { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-brand,
  .footer-col,
  .footer-col-center { text-align: left; justify-self: start; }
  .footer-bottom .footer-container { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }

  .back-to-top {
    width: 58px;
    height: 58px;
    font-size: 1.65rem;
    border-width: 3px;
    bottom: 1.25rem;
    right: 1.25rem;
  }

  /* Stats */
  .stats-track { animation-duration: 18s; }
  .stats-group { gap: 0.5rem; padding: 0 0.5rem; }
  .sband-item { min-width: 220px; padding: 0.35rem 0.85rem; }
  .sband-item p { font-size: 1rem; }
}

@media (max-width: 480px) {
  .section-container, .features-container { padding: 0 1rem; }
  .hero-container { padding: 2rem 1rem; }
  .hero-title { font-size: 1.8rem; }
  .nav-socials .social-icon { width: 24px; height: 24px; }
  .blog-article-hero { min-height: 285px; }
  .blog-article-meta-line { font-size: 0.77rem; }
  #blogArticleTitle { line-height: 1.24; }
  .blog-nav-card { min-height: 84px; }
  .blog-nav-title { font-size: 0.95rem; }
  .stats-band { padding: 2.3rem 0; }
  .stats-track { animation-duration: 16s; }
  .stats-group { gap: 0.4rem; padding: 0 0.4rem; }
  .sband-item { min-width: 190px; padding: 0.3rem 0.65rem; }
  .sband-item p { font-size: 0.95rem; }
  .sband-item::after { width: 36px; height: 3px; margin-top: 0.55rem; }
  .contact-form-wrap { padding: 1.5rem; }
  .nav-inner { padding: 0.75rem 1rem; }
  .navbar .logo-circle {
    width: 64px;
    height: 64px;
  }
  .navbar .logo-main { font-size: 0.72rem; }
  .footer .logo-circle {
    width: 84px;
    height: 84px;
  }
  .badge {
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.82rem;
    gap: 0.45rem;
    padding: 0.55rem 1rem;
    letter-spacing: 0.09em;
  }
  .badge-center {
    margin-left: auto;
    margin-right: auto;
  }
}





