/* ═══════════════════════════════════════════════════════
   ASHOKA INFRATECH PRIVATE LIMITED — Website Stylesheet
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --dg:  #1B5E20;
  --mg:  #2E7D32;
  --lg:  #43A047;
  --xlg: #C8E6C9;
  --gld: #F9A825;
  --dgld:#F57F17;
  --drk: #1A1A1A;
  --txt: #333333;
  --lgt: #F5F5F5;
  --wht: #FFFFFF;
  --bdr: #E0E0E0;
  --shd: 0 4px 20px rgba(0,0,0,0.10);
  --shd2:0 8px 40px rgba(0,0,0,0.15);
  --rad: 8px;
  --trs: all 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--txt);
  background: var(--wht);
  line-height: 1.7;
}

h1,h2,h3,h4,h5 {
  font-family: 'Montserrat', sans-serif;
  color: var(--drk);
  line-height: 1.25;
}

a { text-decoration: none; color: inherit; transition: var(--trs); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 50px 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--trs);
  border: 2px solid transparent;
}
.btn-primary   { background: var(--gld); color: var(--drk); border-color: var(--gld); }
.btn-primary:hover { background: var(--dgld); border-color: var(--dgld); transform: translateY(-2px); box-shadow: var(--shd); }
.btn-outline   { background: transparent; color: var(--wht); border-color: var(--wht); }
.btn-outline:hover { background: var(--wht); color: var(--dg); transform: translateY(-2px); }
.btn-green     { background: var(--dg); color: var(--wht); border-color: var(--dg); }
.btn-green:hover { background: var(--mg); transform: translateY(-2px); box-shadow: var(--shd); }

/* ── SECTION TITLES ── */
.sec-title {
  text-align: center;
  margin-bottom: 56px;
}
.sec-title .tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--lg);
  margin-bottom: 10px;
}
.sec-title h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--drk);
  margin-bottom: 16px;
}
.sec-title h2 span { color: var(--dg); }
.sec-title p { max-width: 620px; margin: 0 auto; color: #666; font-size: 1.05rem; }
.divider {
  width: 56px; height: 4px;
  background: linear-gradient(90deg, var(--dg), var(--gld));
  border-radius: 2px;
  margin: 14px auto 20px;
}

/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 3px solid var(--dg);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: var(--trs);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand img { height: 48px; width: auto; }
.nav-brand-text { line-height: 1.2; }
.nav-brand-text .name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: 1.0rem;
  color: var(--dg); letter-spacing: 0.3px;
}
.nav-brand-text .tag-line {
  font-size: 0.68rem; color: var(--gld);
  font-style: italic; font-family: 'Open Sans', sans-serif;
}
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 8px 14px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600; font-size: 0.85rem;
  color: var(--txt); letter-spacing: 0.3px;
}
.nav-links a:hover, .nav-links a.active { color: var(--dg); background: var(--xlg); }
.nav-cta { margin-left: 10px; padding: 9px 22px !important; background: var(--dg) !important; color: var(--wht) !important; border-radius: 4px !important; }
.nav-cta:hover { background: var(--mg) !important; color: var(--wht) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dg); border-radius: 2px; transition: var(--trs); }

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a2e0d 0%, #1B5E20 45%, #2E7D32 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 72px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 1; max-width: 760px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(249,168,37,0.15); border: 1px solid rgba(249,168,37,0.4);
  padding: 6px 16px; border-radius: 20px; margin-bottom: 24px;
}
.hero-badge span { font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gld); }
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800; color: var(--wht);
  margin-bottom: 22px; line-height: 1.18;
}
.hero h1 em { color: var(--gld); font-style: normal; }
.hero p {
  font-size: 1.15rem; color: rgba(255,255,255,0.85);
  margin-bottom: 36px; max-width: 580px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 40px; margin-top: 56px; flex-wrap: wrap;
}
.hero-stat { text-align: left; }
.hero-stat .num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem; font-weight: 800; color: var(--gld); line-height: 1;
}
.hero-stat .lbl { font-size: 0.82rem; color: rgba(255,255,255,0.7); margin-top: 4px; letter-spacing: 0.5px; }
.hero-stat-sep { width: 1px; background: rgba(255,255,255,0.2); align-self: stretch; margin: 4px 0; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 0.75rem; letter-spacing: 1px;
  animation: bounce 2s infinite;
}
.hero-scroll::after { content:''; width:1px; height:32px; background:rgba(255,255,255,0.3); }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(-8px)} }

/* ══════════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════════ */
.trust-bar { background: var(--dg); padding: 18px 0; }
.trust-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.9); font-size: 0.88rem;
  font-family: 'Montserrat', sans-serif; font-weight: 500;
}
.trust-item svg { flex-shrink: 0; }
.trust-sep { width: 1px; height: 20px; background: rgba(255,255,255,0.25); }

/* ══════════════════════════════════════════════
   ABOUT SNAPSHOT
══════════════════════════════════════════════ */
.about-snap { background: var(--lgt); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-wrap {
  position: relative;
}
.about-img-box {
  background: linear-gradient(135deg, var(--dg), var(--mg));
  border-radius: 12px; padding: 48px 36px; text-align: center;
  box-shadow: var(--shd2);
}
.about-img-box .logo-big { width: 140px; margin: 0 auto 20px; filter: brightness(0) invert(1); }
.about-img-box h3 { color: var(--wht); font-size: 1.3rem; margin-bottom: 8px; }
.about-img-box p  { color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--gld); color: var(--drk);
  border-radius: 50%; width: 100px; height: 100px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: var(--shd); font-family: 'Montserrat', sans-serif;
}
.about-badge .n { font-size: 1.8rem; font-weight: 800; line-height: 1; }
.about-badge .t { font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; text-align: center; }
.about-text .tag { font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--lg); }
.about-text h2 { font-size: clamp(1.7rem,2.5vw,2.4rem); font-weight: 800; margin: 12px 0 18px; }
.about-text h2 span { color: var(--dg); }
.about-text p { color: #555; margin-bottom: 16px; }
.about-checks { margin: 24px 0; display: flex; flex-direction: column; gap: 10px; }
.about-check { display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; }
.about-check .ico { width: 20px; height: 20px; background: var(--xlg); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.about-check .ico svg { width: 12px; }

/* ══════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════ */
.services { background: var(--wht); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.svc-card {
  background: var(--wht); border-radius: var(--rad);
  border: 1px solid var(--bdr);
  padding: 32px 28px; transition: var(--trs);
  position: relative; overflow: hidden;
}
.svc-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:4px;
  background: linear-gradient(90deg, var(--dg), var(--gld));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.svc-card:hover { box-shadow: var(--shd2); transform: translateY(-4px); border-color: transparent; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: var(--xlg); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.svc-icon svg { width: 28px; height: 28px; }
.svc-card h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 10px; color: var(--drk); }
.svc-card p  { font-size: 0.91rem; color: #666; line-height: 1.65; }

/* ══════════════════════════════════════════════
   STATS COUNTER
══════════════════════════════════════════════ */
.stats-band {
  background: linear-gradient(135deg, var(--dg) 0%, #0a3d0e 100%);
  padding: 64px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-item .num {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.4rem,4vw,3.4rem); font-weight: 800;
  color: var(--gld); line-height: 1;
}
.stat-item .lbl { font-size: 0.88rem; color: rgba(255,255,255,0.8); margin-top: 8px; letter-spacing: 0.5px; }
.stat-sep { width: 1px; background: rgba(255,255,255,0.15); margin: 8px auto 0; }

/* ══════════════════════════════════════════════
   PROJECTS
══════════════════════════════════════════════ */
.projects { background: var(--lgt); }
.proj-tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; }
.proj-tab {
  padding: 8px 22px; border-radius: 20px; font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem; font-weight: 600; cursor: pointer; transition: var(--trs);
  border: 2px solid var(--dg); color: var(--dg); background: transparent;
}
.proj-tab.active, .proj-tab:hover { background: var(--dg); color: var(--wht); }
.proj-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 24px; }
.proj-card {
  background: var(--wht); border-radius: var(--rad);
  border: 1px solid var(--bdr); overflow: hidden;
  transition: var(--trs);
}
.proj-card:hover { box-shadow: var(--shd2); transform: translateY(-4px); }
.proj-card-header {
  background: linear-gradient(135deg, var(--dg), var(--mg));
  padding: 22px 22px 16px; position: relative;
}
.proj-card-header .proj-num {
  position: absolute; top: 12px; right: 14px;
  font-family: 'Montserrat', sans-serif; font-size: 1.8rem; font-weight: 800;
  color: rgba(255,255,255,0.12);
}
.proj-card-header h3 { color: var(--wht); font-size: 1.0rem; font-weight: 700; margin-bottom: 4px; }
.proj-card-header .loc { color: rgba(255,255,255,0.75); font-size: 0.8rem; }
.proj-card-body { padding: 18px 22px; }
.proj-meta { display: flex; gap: 16px; flex-wrap: wrap; }
.proj-meta span {
  font-size: 0.8rem; color: #666; display: flex; align-items: center; gap: 5px;
}
.proj-tag {
  display: inline-block; padding: 3px 10px; border-radius: 12px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.3px;
  background: var(--xlg); color: var(--dg); margin-top: 10px;
}
.proj-tag.ongoing { background: #FFF9C4; color: #F57F17; }

/* ══════════════════════════════════════════════
   WHY US
══════════════════════════════════════════════ */
.why-us { background: var(--wht); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 28px; }
.why-card {
  text-align: center; padding: 36px 24px; border-radius: var(--rad);
  border: 1px solid var(--bdr); transition: var(--trs);
}
.why-card:hover { box-shadow: var(--shd); border-color: var(--xlg); background: #FAFFF8; }
.why-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--dg), var(--lg));
  margin: 0 auto 18px; display: flex; align-items: center; justify-content: center;
}
.why-icon svg { width: 30px; height: 30px; }
.why-card h3 { font-size: 1.0rem; font-weight: 700; margin-bottom: 10px; }
.why-card p  { font-size: 0.88rem; color: #666; }

/* ══════════════════════════════════════════════
   REGISTRATIONS STRIP
══════════════════════════════════════════════ */
.reg-strip { background: var(--lgt); padding: 48px 0; }
.reg-grid { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.reg-pill {
  display: flex; align-items: center; gap: 10px;
  background: var(--wht); border: 1px solid var(--bdr);
  border-radius: 40px; padding: 10px 20px;
  font-size: 0.82rem; font-family: 'Montserrat', sans-serif; font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.reg-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lg); flex-shrink: 0; }

/* ══════════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, var(--gld) 0%, #F57F17 100%);
  padding: 64px 0; text-align: center;
}
.cta-band h2 { font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 800; color: var(--drk); margin-bottom: 14px; }
.cta-band p  { color: rgba(0,0,0,0.65); margin-bottom: 30px; font-size: 1.05rem; }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer { background: #0d1f0e; color: rgba(255,255,255,0.8); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 48px; margin-bottom: 48px; }
.footer-brand img { height: 52px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand h3 { color: var(--wht); font-size: 1.05rem; margin-bottom: 8px; }
.footer-brand p  { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; }
.footer-brand .tagline { color: var(--gld); font-style: italic; font-size: 0.9rem; margin: 10px 0 16px; }
.footer h4 { color: var(--wht); font-size: 0.88rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; padding-bottom: 8px; border-bottom: 2px solid var(--dg); display: inline-block; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: var(--trs); }
.footer-links a:hover { color: var(--gld); padding-left: 4px; }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 12px; font-size: 0.86rem; color: rgba(255,255,255,0.6); align-items: flex-start; }
.footer-contact svg { flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0; text-align: center;
  font-size: 0.82rem; color: rgba(255,255,255,0.35);
}
.footer-bottom span { color: var(--gld); }

/* ══════════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, #0a2e0d, var(--dg));
  padding: 130px 0 64px; text-align: center;
}
.page-hero h1 { color: var(--wht); font-size: clamp(2rem,4vw,3.2rem); font-weight: 800; margin-bottom: 14px; }
.page-hero p  { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 20px; font-size: 0.82rem; }
.breadcrumb a   { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--gld); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }
.breadcrumb .cur { color: var(--gld); font-weight: 600; }

/* ══════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start; }
.contact-info h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 16px; }
.contact-info h2 span { color: var(--dg); }
.contact-info p { color: #666; margin-bottom: 28px; }
.contact-card {
  background: var(--lgt); border-radius: var(--rad);
  padding: 24px; margin-bottom: 16px;
  display: flex; gap: 18px; align-items: flex-start;
  border-left: 4px solid var(--dg); transition: var(--trs);
}
.contact-card:hover { box-shadow: var(--shd); }
.contact-card .ico {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--dg); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-card .ico svg { width: 20px; }
.contact-card h4 { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--lg); margin-bottom: 4px; }
.contact-card p  { font-size: 0.92rem; color: var(--txt); margin: 0; line-height: 1.6; }
.contact-form { background: var(--wht); border-radius: var(--rad); padding: 40px; box-shadow: var(--shd); border: 1px solid var(--bdr); }
.contact-form h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 24px; color: var(--dg); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 6px; color: var(--txt); font-family: 'Montserrat', sans-serif; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--bdr);
  border-radius: 6px; font-family: 'Open Sans', sans-serif; font-size: 0.92rem;
  color: var(--txt); background: var(--wht); transition: var(--trs); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--dg); box-shadow: 0 0 0 3px rgba(27,94,32,0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }

/* ══════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════ */
.timeline { position: relative; padding: 0 0 0 36px; }
.timeline::before { content:''; position:absolute; left:8px; top:0; bottom:0; width:2px; background:var(--xlg); }
.tl-item { position:relative; margin-bottom:36px; }
.tl-dot {
  position:absolute; left:-31px; top:4px;
  width:16px; height:16px; border-radius:50%;
  background:var(--dg); border:3px solid var(--xlg);
}
.tl-item h3 { font-size:1.0rem; font-weight:700; color:var(--dg); margin-bottom:6px; }
.tl-item p  { font-size:0.9rem; color:#555; }
.sister-card {
  background: linear-gradient(135deg, var(--lgt), #e8f5e9);
  border: 2px solid var(--xlg); border-radius: 12px;
  padding: 36px; margin-top: 48px;
}
.sister-card h3 { color: var(--dg); font-size: 1.4rem; margin-bottom: 12px; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 20px; margin-top: 40px; }
.team-card {
  background: var(--wht); border-radius: var(--rad);
  border: 1px solid var(--bdr); padding: 24px; text-align: center;
  transition: var(--trs);
}
.team-card:hover { box-shadow: var(--shd); border-color: var(--xlg); }
.team-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--dg), var(--lg));
  margin: 0 auto 12px; display: flex; align-items: center; justify-content: center;
}
.team-avatar svg { width: 28px; }
.team-card h4 { font-size: 0.92rem; font-weight: 700; color: var(--drk); margin-bottom: 4px; }
.team-card p  { font-size: 0.78rem; color: var(--lg); font-weight: 600; letter-spacing: 0.5px; }

/* ══════════════════════════════════════════════
   PROJECTS PAGE
══════════════════════════════════════════════ */
.projects-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 24px; }
.proj-card {
  background: var(--wht); border-radius: var(--rad);
  border: 1px solid var(--bdr); padding: 24px 22px;
  position: relative; transition: var(--trs);
}
.proj-card:hover { box-shadow: var(--shd2); transform: translateY(-4px); border-color: var(--xlg); }
.proj-status {
  display: inline-block; padding: 3px 12px; border-radius: 12px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.5px;
  text-transform: uppercase; margin-bottom: 14px;
}
.proj-status.ongoing   { background: #FFF9C4; color: #E65100; }
.proj-status.delivered { background: #E8F5E9; color: #1B5E20; }
.proj-icon {
  width: 52px; height: 52px; border-radius: 10px;
  background: var(--xlg); display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.proj-card h3 { font-size: 1.0rem; font-weight: 700; margin-bottom: 8px; color: var(--drk); }
.proj-card .proj-meta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 10px; }
.proj-card .proj-meta span {
  font-size: 0.78rem; color: #888; background: var(--lgt);
  padding: 2px 10px; border-radius: 10px; font-weight: 600;
}
.proj-card p { font-size: 0.87rem; color: #666; line-height: 1.6; margin-bottom: 12px; }
.proj-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.proj-tags span {
  font-size: 0.72rem; font-weight: 600; padding: 3px 10px;
  border-radius: 10px; background: #E8F5E9; color: var(--dg);
}

/* ══════════════════════════════════════════════
   CONTACT PAGE ITEMS
══════════════════════════════════════════════ */
.c-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid var(--bdr);
}
.c-item:last-of-type { border-bottom: none; }
.c-ico {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--xlg); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.c-item strong { font-size: 0.88rem; font-weight: 700; color: var(--drk); display: block; margin-bottom: 4px; font-family: 'Montserrat',sans-serif; }
.c-item p { font-size: 0.88rem; color: #666; margin: 0; line-height: 1.6; }
.contact-form-wrap {
  background: var(--wht); border-radius: var(--rad);
  padding: 36px; box-shadow: var(--shd); border: 1px solid var(--bdr);
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid  { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .about-grid   { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row     { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; gap: 32px; }
  .about-badge  { bottom: -16px; right: 12px; }
  .nav-links { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--wht); flex-direction: column; padding: 20px; box-shadow: var(--shd); gap: 4px; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero-stats { gap: 24px; }
  .trust-inner { gap: 20px; }
  .trust-sep { display: none; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 2rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; }
}
