/* ═══════════════════════════════════════════════════
   LAMBENT SOLAR — style.css
   Theme: Logo Green #2c7a4f + White + Navy #002d5b
   Ref: heliumsolar.in / freyrenergy.com
═══════════════════════════════════════════════════ */

/* ── ROOT ── */
:root {
  --green:      #2c7a4f;   /* exact logo green */
  --green-l:    #43a047;
  --green-xl:   #66bb6a;
  --green-dim:  rgba(46,125,50,.10);
  --green-dim2: rgba(46,125,50,.18);
  --navy:       #002d5b;
  --navy2:      #0d47a1;
  --white:      #ffffff;
  --off:        #f4fbf5;
  --text:       #1b2a1c;
  --muted:      #5a7060;
  --border:     #c8e6c9;
  --sh:         0 6px 28px rgba(0,45,91,.08);
  --sh-hover:   0 18px 44px rgba(0,45,91,.14);
  --rad:        14px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; transition: .25s; }
button { font-family: inherit; cursor: pointer; }

/* ── SPACING ── */
.sp    { padding: 80px 0; }
.sp-sm { padding: 56px 0; }

/* ── SECTION LABELS ── */
.badge-pill {
  display: inline-block;
  background: var(--green-dim);
  color: var(--green);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid rgba(46,125,50,.25);
  margin-bottom: .8rem;
}
.sec-h {
  font-size: clamp(1.6rem, 3vw, 2.45rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -.4px;
}
.sec-h span { color: var(--green); }
.sec-sub {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 520px;
}

/* ── BUTTONS ── */
.btn-g {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: #fff;
  font-weight: 700; font-size: .88rem;
  padding: .72rem 1.65rem;
  border-radius: 50px;
  border: 2px solid var(--green);
  transition: .25s; white-space: nowrap;
}
.btn-g:hover {
  background: var(--green-l); border-color: var(--green-l);
  color: #fff; transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(46,125,50,.35);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--navy);
  font-weight: 700; font-size: .88rem;
  padding: .72rem 1.65rem;
  border-radius: 50px;
  border: 2px solid var(--navy);
  transition: .25s; white-space: nowrap;
}
.btn-outline:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--green);
  font-weight: 700; font-size: .88rem;
  padding: .72rem 1.65rem;
  border-radius: 50px;
  border: 2px solid #fff;
  transition: .25s; white-space: nowrap;
}
.btn-white:hover { background: var(--green-dim); color: var(--green); }

/* ══════════════════════════════════════
   TOPBAR
══════════════════════════════════════ */
.topbar {
  background: var(--navy);
  padding: 7px 0;
  font-size: .76rem;
  color: rgba(255,255,255,.78);
}
.topbar a { color: rgba(255,255,255,.78); }
.topbar a:hover { color: var(--green-xl); }
.topbar .sep { opacity: .3; margin: 0 10px; }
.tb-soc a {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65); font-size: .72rem;
  margin-left: 5px; transition: .2s;
}
.tb-soc a:hover { background: var(--green); color: #fff; }

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.mnav {
  background: #fff;
  box-shadow: 0 2px 18px rgba(0,0,0,.07);
  position: -webkit-sticky; /* iOS Safari */
  position: sticky;
  top: 0;
  z-index: 1050;
  will-change: box-shadow;
  transform: translateZ(0); /* GPU layer – no flicker on mobile scroll */
  transition: box-shadow .3s;
}
.mnav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.12); }
.mnav .nav-link {
  font-weight: 600; font-size: .84rem;
  color: var(--navy) !important;
  padding: .5rem .9rem !important;
  position: relative;
}
.mnav .nav-link::after {
  content: ''; position: absolute;
  left: .9rem; bottom: 1px;
  width: 0; height: 2px;
  background: var(--green); transition: .25s; border-radius: 2px;
}
.mnav .nav-link:hover::after,
.mnav .nav-link.active::after { width: calc(100% - 1.8rem); }
.mnav .nav-link:hover { color: var(--green) !important; }
.mnav .dropdown-menu {
  border: none; border-radius: 12px;
  box-shadow: 0 12px 36px rgba(0,0,0,.1);
  padding: .45rem 0; margin-top: 8px;
  animation: dropFade .2s ease;
}
@keyframes dropFade { from{opacity:0;transform:translateY(-6px)} to{opacity:1;transform:none} }
.mnav .dropdown-item {
  font-size: .83rem; font-weight: 600;
  color: var(--navy); padding: .55rem 1.2rem; transition: .2s;
}
.mnav .dropdown-item:hover { color: var(--green); background: var(--green-dim); }
.nqbtn {
  background: var(--green) !important;
  color: #fff !important;
  padding: .45rem 1.25rem !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: .83rem !important;
  box-shadow: 0 4px 12px rgba(46,125,50,.3);
}
.nqbtn:hover { background: var(--green-l) !important; }
.nqbtn::after { display: none !important; }
.nav-bar-icon { display: block; width: 20px; height: 2px; background: var(--navy); margin: 4px 0; border-radius: 2px; }
.navbar-toggler { border: 1.5px solid var(--border); border-radius: 8px; padding: 6px 10px; }
.navbar-toggler:focus { box-shadow: none; }
/* Mobile offcanvas */
.offcanvas-c { max-width: 290px !important; }
.offcanvas-c .olink {
  display: block; padding: .72rem 0;
  border-bottom: 1px solid var(--border);
  font-weight: 600; color: var(--navy); font-size: .9rem;
}
.offcanvas-c .olink:hover { color: var(--green); }

/* ══════════════════════════════════════
   TICKER
══════════════════════════════════════ */
.ticker-bar {
  background: var(--green);
  padding: 9px 0; overflow: hidden;
  border-bottom: 2px solid var(--green-l);
}
.ticker-track {
  display: flex; white-space: nowrap;
  width: max-content;
  animation: ticker 30s linear infinite;
}
.ticker-bar:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
  font-size: .75rem; font-weight: 700; color: #fff;
  padding: 0 32px;
  display: flex; align-items: center; gap: 7px;
  text-transform: uppercase; letter-spacing: .8px;
}
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ══════════════════════════════════════
   HERO SLIDER
══════════════════════════════════════ */
.hero-slider { position: relative; width: 100%; overflow: hidden; }
.hero-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  min-height: 100vh;
  opacity: 0; transition: opacity 1s ease; pointer-events: none;
  background-size: cover; background-position: center;
}
.hero-slide.active { opacity: 1; position: relative; pointer-events: all; }
.hero-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(0,45,91,.90) 0%, rgba(0,45,91,.68) 55%, rgba(0,0,0,.2) 100%);
}
.hero-content { position: relative; z-index: 2; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(46,125,50,.22);
  border: 1px solid rgba(102,187,106,.45);
  color: #a5d6a7; border-radius: 50px;
  padding: 5px 14px; font-size: .72rem;
  font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; margin-bottom: 1.2rem;
  animation: fadeUp .7s ease both;
}
.hero-h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800; color: #fff;
  line-height: 1.1; letter-spacing: -1.5px;
  animation: fadeUp .8s .1s ease both;
}
.hero-h1 .hi { color: var(--green-xl); }
.hero-p {
  font-size: .98rem; color: rgba(255,255,255,.82);
  max-width: 500px; line-height: 1.75;
  animation: fadeUp .9s .2s ease both;
  margin: 1.1rem 0 1.7rem;
}
.hero-btns { animation: fadeUp .9s .3s ease both; }
.hero-stats {
  animation: fadeUp 1s .45s ease both;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 1.5rem; margin-top: 2rem;
  display: flex; flex-wrap: wrap; gap: 2rem;
}
.stat-n { font-size: 1.8rem; font-weight: 800; color: #fff; line-height: 1; }
.stat-n em { color: var(--green-xl); font-style: normal; }
.stat-l { font-size: .68rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* Slider Controls */
.slider-dots {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.4); border: none;
  transition: .3s; cursor: pointer;
}
.slider-dot.active { background: var(--green-xl); width: 24px; border-radius: 4px; }
.slider-prev, .slider-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.25);
  color: #fff; font-size: .95rem;
  display: flex; align-items: center; justify-content: center;
  z-index: 10; transition: .25s; cursor: pointer;
}
.slider-prev { left: 20px; }
.slider-next { right: 20px; }
.slider-prev:hover, .slider-next:hover {
  background: var(--green); border-color: var(--green);
}

/* Float badge */
.hero-badge {
  position: absolute; right: 4%; bottom: 8%;
  background: #fff; border-radius: 14px;
  padding: 1rem 1.2rem;
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
  display: flex; align-items: center; gap: .8rem;
  animation: floatY 4s ease-in-out infinite;
  max-width: 215px; z-index: 5;
}
.hero-badge-ic {
  width: 40px; height: 40px; border-radius: 9px;
  background: var(--green-dim);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 1.1rem; flex-shrink: 0;
}
.hero-badge h6 { font-size: .74rem; font-weight: 700; color: var(--navy); margin: 0 0 2px; }
.hero-badge p  { font-size: .68rem; color: var(--muted); margin: 0; }
@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes fadeUp  { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:none} }

/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
#about { background: var(--off); }
.about-img-wrap { position: relative; padding-bottom: 38px; }
.about-main-img {
  width: 100%; border-radius: 18px;
  box-shadow: var(--sh); object-fit: cover; height: 440px;
}
.about-badge {
  position: absolute; bottom: -8px; right: -6px;
  background: var(--navy); color: #fff;
  border-radius: 14px; padding: 16px 18px; text-align: center;
  box-shadow: 0 10px 28px rgba(0,45,91,.3);
}
.about-badge .ab-num { font-size: 1.9rem; font-weight: 800; color: var(--green-xl); line-height: 1; }
.about-badge .ab-lbl { font-size: .66rem; color: rgba(255,255,255,.8); line-height: 1.3; }
.about-pt { display: flex; align-items: flex-start; gap: .8rem; margin-bottom: .85rem; }
.about-pt-ic {
  width: 38px; height: 38px; min-width: 38px;
  border-radius: 9px; background: var(--green-dim);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: .9rem;
}
.about-pt h6 { font-size: .86rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.about-pt p  { font-size: .78rem; color: var(--muted); margin: 0; line-height: 1.5; }

/* ══════════════════════════════════════
   4 STEPS
══════════════════════════════════════ */
.step-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--rad); padding: 2rem 1.6rem;
  text-align: center; position: relative;
  transition: .3s; overflow: hidden;
}
.step-card::before { content: ''; position: absolute; inset: 0; background: var(--green-dim); opacity: 0; transition: .3s; }
.step-card:hover { border-color: var(--green); transform: translateY(-7px); box-shadow: 0 18px 36px rgba(46,125,50,.14); }
.step-card:hover::before { opacity: 1; }
.step-num { position: absolute; top: 10px; left: 14px; font-size: 3rem; font-weight: 900; color: #e8f5e9; line-height: 1; pointer-events: none; }
.step-icon {
  width: 66px; height: 66px; border-radius: 14px;
  background: #fff; border: 2px solid var(--green);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem; font-size: 1.55rem; color: var(--green);
  position: relative; z-index: 1;
  box-shadow: 0 6px 18px rgba(46,125,50,.14); transition: .3s;
}
.step-card:hover .step-icon { background: var(--green); color: #fff; }
.step-card h5 { font-size: .93rem; font-weight: 700; color: var(--navy); margin-bottom: .4rem; position: relative; z-index: 1; }
.step-card p  { font-size: .8rem; color: var(--muted); margin: 0; position: relative; z-index: 1; line-height: 1.6; }

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
#services { background: var(--off); }
.svc-card {
  background: #fff; border-radius: var(--rad);
  overflow: hidden; box-shadow: var(--sh);
  transition: .35s; height: 100%;
  border: 1px solid transparent;
}
.svc-card:hover { transform: translateY(-6px); border-color: rgba(46,125,50,.28); box-shadow: var(--sh-hover); }
.svc-img { height: 210px; overflow: hidden; position: relative; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: .5s; }
.svc-card:hover .svc-img img { transform: scale(1.07); }
.svc-tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(46,125,50,.88); color: #fff;
  font-size: .64rem; font-weight: 700; letter-spacing: .7px;
  text-transform: uppercase; padding: 3px 10px; border-radius: 50px;
}
.svc-body { padding: 1.25rem; }
.svc-body h4 { font-size: .98rem; font-weight: 700; color: var(--navy); margin-bottom: .4rem; }
.svc-body p  { font-size: .8rem; color: var(--muted); line-height: 1.6; margin-bottom: .8rem; }
.svc-link { font-size: .78rem; font-weight: 700; color: var(--navy2); display: inline-flex; align-items: center; gap: 5px; transition: .2s; }
.svc-link:hover { color: var(--green); }

/* ══════════════════════════════════════
   WHY CHOOSE
══════════════════════════════════════ */
.why-img { border-radius: var(--rad); box-shadow: var(--sh); width: 100%; height: 420px; object-fit: cover; }
.why-item {
  display: flex; align-items: flex-start; gap: .9rem;
  padding: .9rem 1.1rem; border-radius: 11px;
  border: 1px solid var(--border); margin-bottom: .7rem;
  transition: .25s; background: #fff;
}
.why-item:hover { border-color: var(--green); background: var(--green-dim); }
.why-em {
  font-size: 1.3rem; width: 40px; height: 40px; min-width: 40px;
  border-radius: 9px; background: var(--off);
  display: flex; align-items: center; justify-content: center; transition: .25s;
}
.why-item:hover .why-em { background: rgba(46,125,50,.18); }
.why-item h5 { font-size: .86rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.why-item p  { font-size: .78rem; color: var(--muted); margin: 0; line-height: 1.5; }

/* ══════════════════════════════════════
   BENTO GRID
══════════════════════════════════════ */
#bento { background: var(--off); padding: 80px 0; }
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 210px 210px;
  gap: 16px;
}
.bento-card { border-radius: 18px; overflow: hidden; position: relative; transition: .35s; }
.bento-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(0,0,0,.12); }
.bento-tall { grid-row: span 2; }
.bento-img { width: 100%; height: 100%; object-fit: cover; transition: .5s; }
.bento-card:hover .bento-img { transform: scale(1.06); }
.bento-over {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,45,91,.88) 0%, rgba(0,45,91,.2) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.2rem;
}
.bento-over h4 { font-size: .96rem; font-weight: 700; color: #fff; margin-bottom: 3px; }
.bento-over p  { font-size: .74rem; color: rgba(255,255,255,.75); margin: 0; }
.bento-green {
  background: var(--green); border-radius: 18px; padding: 1.7rem;
  grid-row: span 2;
  display: flex; flex-direction: column;
}
.bento-green h4 { font-size: 1.08rem; font-weight: 800; color: #fff; margin-bottom: 1rem; padding-bottom: .85rem; border-bottom: 1px solid rgba(255,255,255,.25); }
.bp { display: flex; align-items: flex-start; gap: .65rem; margin-bottom: .65rem; }
.bp i { color: #a5d6a7; font-size: .88rem; margin-top: 2px; flex-shrink: 0; }
.bp span { font-size: .8rem; color: #fff; line-height: 1.35; }
.bp b { font-weight: 700; }

/* ══════════════════════════════════════
   COUNTER
══════════════════════════════════════ */
#counter {
  background: linear-gradient(rgba(0,45,91,.84), rgba(0,45,91,.84)),
    url('https://images.unsplash.com/photo-1466611653911-95081537e5b7?w=1400&q=70') center/cover;
}
.c-num  { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; color: var(--green-xl); display: block; line-height: 1; }
.c-lbl  { font-size: .74rem; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* ══════════════════════════════════════
   PROCESS
══════════════════════════════════════ */
.proc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; margin-top: 2.6rem; }
.proc-card {
  background: var(--off); border-radius: var(--rad);
  border: 1.5px solid var(--border); padding: 1.6rem;
  position: relative; transition: .3s;
}
.proc-card:hover { border-color: var(--green); background: #fff; box-shadow: 0 10px 28px rgba(46,125,50,.1); }
.proc-num { font-size: 3.5rem; font-weight: 900; color: #c8e6c9; line-height: 1; position: absolute; top: 10px; right: 14px; }
.proc-ic {
  width: 48px; height: 48px; border-radius: 11px;
  background: var(--green-dim);
  border: 1px solid rgba(46,125,50,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 1.2rem; margin-bottom: .85rem; transition: .3s;
}
.proc-card:hover .proc-ic { background: var(--green); color: #fff; }
.proc-card h5 { font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: .38rem; }
.proc-card p  { font-size: .78rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* ══════════════════════════════════════
   FEATURES
══════════════════════════════════════ */
#features { background: var(--off); }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; margin-top: 2.2rem; }
.feat-card {
  background: #fff; border-radius: var(--rad);
  border: 1px solid var(--border); padding: 1.6rem; transition: .3s;
}
.feat-card:hover { border-color: var(--green); box-shadow: 0 9px 26px rgba(46,125,50,.1); }
.feat-card.hl { background: var(--green); border-color: var(--green); }
.feat-card.hl h4, .feat-card.hl p { color: #fff; }
.feat-ic {
  width: 46px; height: 46px; border-radius: 11px;
  background: var(--green-dim);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .9rem; font-size: 1.2rem; color: var(--green);
}
.feat-card.hl .feat-ic { background: rgba(255,255,255,.2); color: #fff; }
.feat-card h4 { font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: .42rem; }
.feat-card p  { font-size: .78rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* ══════════════════════════════════════
   EMI CALCULATOR
══════════════════════════════════════ */
#emi { background: var(--navy); }
.emi-wrap {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border-radius: 20px; padding: 2rem;
}
.emi-lbl  { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: rgba(255,255,255,.5); margin-bottom: .38rem; }
.emi-inp  {
  width: 100%; background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.14);
  color: #fff; border-radius: 10px; padding: .6rem 1rem;
  font-size: .9rem; font-family: inherit; transition: .2s;
}
.emi-inp:focus { outline: none; border-color: var(--green-xl); background: rgba(46,125,50,.1); }
select.emi-inp option { background: #002d5b; color: #fff; }
input[type=range].emi-inp {
  padding: 0; height: 4px; border: none;
  background: rgba(255,255,255,.2);
  cursor: pointer; border-radius: 2px; -webkit-appearance: none;
}
input[type=range].emi-inp::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px; height: 16px;
  background: var(--green-xl); border-radius: 50%;
}
.emi-result {
  background: linear-gradient(135deg, rgba(46,125,50,.16), rgba(27,94,32,.08));
  border: 1px solid rgba(46,125,50,.3);
  border-radius: 16px; padding: 2rem;
  text-align: center; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.emi-big { font-size: 2.5rem; font-weight: 800; color: var(--green-xl); line-height: 1; }
.emi-sml { font-size: .72rem; color: rgba(255,255,255,.45); margin-top: 4px; }
.emi-row { display: flex; justify-content: space-between; padding: .45rem 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.emi-row:last-child { border: none; }
.emi-row span { font-size: .8rem; color: rgba(255,255,255,.55); }
.emi-row b    { font-size: .88rem; color: #fff; font-weight: 700; }
.rmm { display: flex; justify-content: space-between; font-size: .68rem; color: rgba(255,255,255,.38); margin-top: 3px; }

/* ══════════════════════════════════════
   TESTIMONIALS (video cards)
══════════════════════════════════════ */
#testimonials { background: var(--off); }
.testi-card {
  background: #fff; border-radius: var(--rad);
  overflow: hidden; box-shadow: var(--sh);
  transition: .3s; border: 1px solid var(--border);
  height: 100%;
}
.testi-card:hover { transform: translateY(-5px); border-color: rgba(46,125,50,.3); }
.testi-video { position: relative; cursor: pointer; overflow: hidden; }
.testi-video img { width: 100%; height: 195px; object-fit: cover; transition: .4s; }
.testi-card:hover .testi-video img { transform: scale(1.04); }
.testi-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,45,91,.35); transition: .3s;
}
.testi-play-btn {
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,.9);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 1.15rem; transition: .3s; padding-left: 4px;
}
.testi-card:hover .testi-play-btn { background: var(--green); color: #fff; transform: scale(1.1); }
.testi-body { padding: 1.3rem; }
.testi-stars { color: #f59e0b; font-size: .8rem; margin-bottom: .6rem; }
.testi-text  { font-size: .82rem; color: var(--muted); line-height: 1.7; margin-bottom: .9rem; font-style: italic; }
.testi-name  { font-size: .88rem; font-weight: 700; color: var(--green); }
.testi-loc   { font-size: .73rem; color: var(--muted); display: flex; align-items: center; gap: 4px; margin-top: 2px; }

/* Video Modal */
.vmodal-bg {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.85);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: .3s;
}
.vmodal-bg.open { opacity: 1; pointer-events: all; }
.vmodal { width: 90%; max-width: 760px; background: #000; border-radius: 14px; overflow: hidden; position: relative; }
.vmodal-close { position: absolute; top: 10px; right: 14px; color: #fff; font-size: 1.4rem; cursor: pointer; z-index: 10; line-height: 1; }
.vmodal iframe { display: block; width: 100%; aspect-ratio: 16/9; border: none; }

/* ══════════════════════════════════════
   QUOTE FORM
══════════════════════════════════════ */
#quote-form { background: #fff; }
.qf-left {
  background: var(--navy); border-radius: 20px; padding: 2.2rem;
  height: 100%; position: relative; overflow: hidden;
}
.qf-left::before {
  content: ''; position: absolute; top: -70px; right: -70px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(46,125,50,.08); pointer-events: none;
}
.qf-left h3 { font-size: 1.45rem; font-weight: 800; color: #fff; }
.qf-left p  { font-size: .83rem; color: rgba(255,255,255,.7); line-height: 1.7; margin: .6rem 0 1.2rem; }
.qf-ic-row  { display: flex; align-items: center; gap: .8rem; margin-bottom: .85rem; }
.qf-ic {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(46,125,50,.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-xl); font-size: .85rem; flex-shrink: 0;
}
.qf-ic-row span { font-size: .82rem; color: rgba(255,255,255,.82); }
.qf-right { background: var(--off); border-radius: 20px; padding: 2.2rem; }
.qf-right h3 { font-size: 1.3rem; font-weight: 800; color: var(--navy); }
.qf-right .sub { font-size: .8rem; color: var(--muted); margin: .3rem 0 1.5rem; }
.fl { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .7px; color: var(--muted); margin-bottom: .36rem; }
.fi {
  width: 100%; background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 10px; padding: .58rem .95rem;
  font-size: .86rem; color: var(--text);
  font-family: inherit; transition: .2s;
}
.fi:focus { outline: none; border-color: var(--green); }
select.fi { cursor: pointer; }
textarea.fi { resize: vertical; min-height: 92px; }
.fg { margin-bottom: .95rem; }
.success-toast {
  display: none; background: rgba(46,125,50,.08);
  border: 1px solid rgba(46,125,50,.3); color: var(--green);
  border-radius: 10px; padding: .65rem 1rem;
  font-size: .82rem; margin-top: .65rem; text-align: center;
}
.qf-soc a {
  width: 30px; height: 30px; border-radius: 7px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65); font-size: .75rem;
  margin-right: 5px; transition: .25s;
}
.qf-soc a:hover { background: var(--green); border-color: var(--green); color: #fff; transform: translateY(-2px); }

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
#faq { background: var(--off); }
.faq-box { background: #fff; border: 1px solid var(--border); border-radius: 12px; margin-bottom: 10px; overflow: hidden; transition: .3s; }
.faq-box.open { border-color: var(--green); box-shadow: 0 6px 20px rgba(46,125,50,.1); }
.faq-hdr { padding: .95rem 1.2rem; cursor: pointer; display: flex; align-items: center; gap: .85rem; background: #f8fdf9; transition: .25s; }
.faq-box.open .faq-hdr { background: var(--green); }
.faq-num  { font-size: .76rem; font-weight: 700; color: #aab; transition: .25s; }
.faq-box.open .faq-num { color: rgba(255,255,255,.7); }
.faq-q    { flex: 1; font-size: .86rem; font-weight: 600; color: var(--navy); margin: 0; transition: .25s; }
.faq-box.open .faq-q { color: #fff; }
.faq-arr  { width: 20px; height: 20px; border-radius: 50%; background: rgba(46,125,50,.15); display: flex; align-items: center; justify-content: center; color: var(--green); font-size: .6rem; transition: .3s; flex-shrink: 0; }
.faq-box.open .faq-arr { background: rgba(255,255,255,.2); color: #fff; transform: rotate(180deg); }
.faq-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.faq-box.open .faq-body { grid-template-rows: 1fr; }
.faq-binner { overflow: hidden; }
.faq-content { padding: 0 1.2rem; font-size: .82rem; color: var(--muted); line-height: 1.7; }
.faq-box.open .faq-content { padding-top: .7rem; padding-bottom: .9rem; }

/* ══════════════════════════════════════
   BLOG (Helium-style)
══════════════════════════════════════ */
#blog { background: #fff; }
.blog-card { background: #fff; border-radius: var(--rad); overflow: hidden; box-shadow: var(--sh); transition: .35s; border: 1px solid var(--border); height: 100%; }
.blog-card:hover { transform: translateY(-6px); border-color: rgba(46,125,50,.28); box-shadow: var(--sh-hover); }
.blog-img { height: 195px; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: .5s; }
.blog-card:hover .blog-img img { transform: scale(1.07); }
.blog-body { padding: 1.25rem; }
.blog-meta { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem; font-size: .72rem; color: var(--muted); margin-bottom: .65rem; }
.blog-meta i { font-size: .72rem; color: var(--green); }
.blog-body h4 { font-size: .96rem; font-weight: 700; color: var(--navy); line-height: 1.35; margin-bottom: .5rem; }
.blog-body p  { font-size: .78rem; color: var(--muted); line-height: 1.65; margin-bottom: .8rem; }
.blog-read { font-size: .78rem; font-weight: 700; color: var(--navy2); display: inline-flex; align-items: center; gap: 5px; transition: .2s; }
.blog-read:hover { color: var(--green); }

/* ══════════════════════════════════════
   PM SCHEME VIDEO
══════════════════════════════════════ */
#pm-scheme { background: var(--off); }
.vid-wrap { border-radius: var(--rad); overflow: hidden; box-shadow: var(--sh); }

/* ══════════════════════════════════════
   BRANCHES
══════════════════════════════════════ */
#branches { background: #fff; }
.branch-state h4 {
  font-size: .88rem; font-weight: 800; color: var(--navy);
  display: flex; align-items: center; gap: .5rem;
  margin-bottom: .65rem; padding-bottom: .5rem;
  border-bottom: 2px solid var(--green-dim);
}
.branch-state h4 i { color: var(--green); font-size: .85rem; }
.branch-city {
  display: flex; align-items: center; gap: 5px;
  font-size: .78rem; color: var(--muted);
  margin-bottom: .35rem; transition: .2s;
}
.branch-city i { color: var(--green); font-size: .6rem; }
.branch-city:hover { color: var(--green); transform: translateX(3px); }

/* ══════════════════════════════════════
   PARTNERS (logo row)
══════════════════════════════════════ */
#partners { background: var(--off); }
.partner-track {
  display: flex; align-items: center; gap: 2rem;
  white-space: nowrap; width: max-content;
  animation: ticker 22s linear infinite;
}
#partners:hover .partner-track { animation-play-state: paused; }
.p-item {
  background: #fff; border: 1px solid var(--border);
  border-radius: 10px; padding: .55rem 1.4rem;
  display: flex; align-items: center; gap: .5rem;
  font-size: .82rem; font-weight: 700; color: var(--navy);
  white-space: nowrap; transition: .2s;
}
.p-item:hover { border-color: var(--green); }
.p-item i { color: var(--green); font-size: .95rem; }
/* Partner logos (image-based) */
.partner-logo-img {
  height: 40px; width: auto; max-width: 120px;
  object-fit: contain; filter: grayscale(1) opacity(.65);
  transition: .3s;
}
.p-item:hover .partner-logo-img { filter: none; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer { background: var(--navy); color: #fff; padding: 60px 0 0; }
.ft-brand { font-weight: 800; font-size: .95rem; color: #fff; }
.ft-brand .g { color: var(--green-xl); }
.ft-sub   { font-size: .56rem; color: rgba(255,255,255,.4); }
.ft-desc  { font-size: .82rem; color: rgba(255,255,255,.65); line-height: 1.75; max-width: 255px; margin-top: .55rem; }
.ft-head  { font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,.42); margin-bottom: .9rem; }
.ft-links { list-style: none; padding: 0; margin: 0; }
.ft-links li { margin-bottom: .52rem; }
.ft-links a { font-size: .83rem; color: rgba(255,255,255,.78); display: flex; align-items: center; gap: 5px; transition: .2s; }
.ft-links a i { font-size: .56rem; color: var(--green-xl); }
.ft-links a:hover { color: var(--green-xl); transform: translateX(3px); }
.ft-ci { display: flex; align-items: flex-start; gap: .7rem; margin-bottom: .8rem; }
.ft-ci-ic {
  width: 30px; height: 30px; min-width: 30px;
  border-radius: 7px; background: rgba(46,125,50,.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-xl); font-size: .8rem;
}
.ft-ci span { font-size: .8rem; color: rgba(255,255,255,.78); line-height: 1.5; }
.ft-soc a {
  width: 30px; height: 30px; border-radius: 7px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: .74rem;
  margin-right: 5px; transition: .25s;
}
.ft-soc a:hover { background: var(--green); border-color: var(--green); color: #fff; transform: translateY(-2px); }
.ft-bottom { border-top: 1px solid rgba(255,255,255,.07); margin-top: 2.5rem; padding: 1rem 0; }
.ft-bottom p { font-size: .76rem; color: rgba(255,255,255,.42); margin: 0; }
.ft-bottom .g { color: var(--green-xl); font-weight: 700; }

/* ══════════════════════════════════════
   BACK TO TOP
══════════════════════════════════════ */
.btt {
  position: fixed; bottom: 22px; right: 22px;
  width: 42px; height: 42px; border-radius: 11px;
  background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; z-index: 998;
  opacity: 0; pointer-events: none; transition: .3s;
  box-shadow: 0 4px 14px rgba(46,125,50,.4);
}
.btt.show { opacity: 1; pointer-events: all; }
.btt:hover { background: var(--green-l); color: #fff; transform: translateY(-3px); }

/* ══════════════════════════════════════
   POPUPS
══════════════════════════════════════ */
/* Startup popup */
.popup-bg {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: .35s;
}
.popup-bg.open { opacity: 1; pointer-events: all; }
.popup-box {
  background: #fff; border-radius: 20px;
  width: 90%; max-width: 480px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.22);
  transform: scale(.93); transition: .35s;
}
.popup-bg.open .popup-box { transform: scale(1); }
.popup-head {
  background: var(--green); padding: 1.6rem 1.8rem;
  position: relative;
}
.popup-head h3 { font-size: 1.25rem; font-weight: 800; color: #fff; }
.popup-head p  { font-size: .82rem; color: rgba(255,255,255,.8); margin-top: .25rem; }
.popup-close {
  position: absolute; top: 14px; right: 16px;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,.2); border: none; color: #fff;
  font-size: .88rem; cursor: pointer; transition: .2s;
  display: flex; align-items: center; justify-content: center;
}
.popup-close:hover { background: rgba(255,255,255,.35); }
.popup-body { padding: 1.6rem; }

/* Right-side Consultation Tab (Freyr-style) */
.consult-tab {
  position: fixed; right: -165px; top: 50%;
  transform: translateY(-50%);
  z-index: 997; transition: right .4s ease;
  display: flex; align-items: stretch;
}
.consult-tab.open { right: 0; }
.consult-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  background: var(--green); color: #fff;
  font-size: .72rem; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  padding: 16px 9px; cursor: pointer;
  border-radius: 8px 0 0 8px;
  display: flex; align-items: center; gap: 6px;
  transition: background .25s;
}
.consult-label:hover { background: var(--green-l); }
.consult-form-panel {
  background: #fff; width: 165px;
  box-shadow: -4px 0 24px rgba(0,0,0,.14);
  padding: 1.1rem .9rem; border-radius: 0 0 0 8px;
  display: flex; flex-direction: column; gap: .55rem;
}
.consult-form-panel h5 { font-size: .78rem; font-weight: 800; color: var(--navy); margin-bottom: .1rem; }
.cf-inp {
  width: 100%; background: var(--off);
  border: 1.5px solid var(--border);
  border-radius: 8px; padding: .45rem .7rem;
  font-size: .75rem; color: var(--text); font-family: inherit;
}
.cf-inp:focus { outline: none; border-color: var(--green); }
.cf-btn {
  background: var(--green); color: #fff;
  border: none; border-radius: 8px;
  padding: .5rem; font-size: .75rem; font-weight: 700;
  cursor: pointer; width: 100%; transition: .2s;
}
.cf-btn:hover { background: var(--green-l); }
.cf-success { font-size: .72rem; color: var(--green); display: none; text-align: center; padding: .3rem; }

/* ══════════════════════════════════════
   REVEAL ANIMATION
══════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: .65s ease; }
.reveal.up { opacity: 1; transform: none; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 991px) {
  .hero-badge { display: none; }
  .bento-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
  .bento-tall { grid-row: span 1; }
  .bento-tall .bento-img { height: 200px; }
  .bento-green { grid-row: span 1; }
  .proc-grid { grid-template-columns: repeat(2,1fr); }
  .feat-grid { grid-template-columns: repeat(2,1fr); }
  .emi-result { margin-top: 1.4rem; }
  .consult-tab { right: -165px; }
}
@media (max-width: 767px) {
  .topbar { display: none; }
  .bento-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .proc-grid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
  .sp { padding: 52px 0; }
  .sp-sm { padding: 36px 0; }
  .hero-stats { gap: 1.2rem; }
  .about-badge { right: 0; bottom: 0; }
  .why-img { height: 240px; }
  .qf-left { margin-bottom: 1.2rem; }
  .consult-tab { display: none; }
}
@media (max-width: 480px) {
  .hero-h1 { font-size: 1.9rem; }
  .sec-h { font-size: 1.5rem; }
  .emi-big { font-size: 2rem; }
  .hero-stats > div { flex: 0 0 45%; }
}
