/* ═══════════════════════════════════════════
   AROGYA DHANSAMPDA — Global Stylesheet
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;600;700;800&family=DM+Serif+Display:ital@0;1&display=swap');

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

:root {
  --green:        #1a7a4a;
  --green-light:  #e6f4ed;
  --green-mid:    #2ea865;
  --green-dark:   #0d4f2e;
  --green-pale:   #f0fdf4;
  --purple:       #7c3aed;
  --purple-light: #f5f0ff;
  --gold:         #e08a1a;
  --gold-light:   #fff8ed;
  --white:        #ffffff;
  --off-white:    #f8faf9;
  --gray-50:      #f9fbfa;
  --gray-100:     #f1f5f2;
  --gray-200:     #e2e8e4;
  --gray-400:     #9aafa0;
  --gray-600:     #4a6355;
  --gray-800:     #1c2e25;
  --text:         #1c2e25;
  --text-muted:   #4a6355;
  --radius:       12px;
  --radius-lg:    20px;
  --radius-xl:    28px;
  --shadow:       0 4px 24px rgba(26,122,74,0.08);
  --shadow-lg:    0 12px 40px rgba(26,122,74,0.15);
  --shadow-xl:    0 24px 64px rgba(26,122,74,0.18);
  --transition:   all 0.25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Sora', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── TOPBAR ── */
.topbar {
  background: var(--green-dark);
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  padding: 8px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { color: #a8d5bb; transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar-right { display: flex; gap: 20px; align-items: center; }
.topbar-right a {
  background: rgba(255,255,255,0.1);
  padding: 3px 12px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.15);
}
.topbar-right a:hover { background: rgba(255,255,255,0.2); }

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.1); }

.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-brand-icon {
  width: 40px; height: 40px;
  background: var(--green);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.nav-brand-text { font-family: 'DM Serif Display', serif; font-size: 18px; color: var(--green-dark); line-height: 1.2; }
.nav-brand-text span { display: block; font-family: 'Sora', sans-serif; font-size: 10px; font-weight: 600; color: var(--text-muted); letter-spacing: .06em; }

.hamburger {
  display: none; background: none; border: none;
  flex-direction: column; gap: 5px; padding: 6px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--green-dark); border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 13px; font-size: 13px; font-weight: 600;
  color: var(--gray-800); border-radius: 8px;
  transition: background .2s, color .2s; white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { background: var(--green-light); color: var(--green); }
.nav-links > li.has-drop > a .arrow {
  font-size: 9px; transition: transform .2s;
}
.nav-links > li:hover > a .arrow { transform: rotate(180deg); }

.nav-dropdown {
  display: none; position: absolute; top: calc(100% + 10px); left: 0;
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  min-width: 220px; padding: 8px 0;
  border: 1px solid var(--gray-200); z-index: 999;
  animation: dropIn .2s ease;
}
@keyframes dropIn { from { opacity:0; transform:translateY(-8px);} to { opacity:1; transform:translateY(0);} }
.nav-links > li:hover .nav-dropdown { display: block; }
.nav-dropdown li a {
  display: block; padding: 10px 18px; font-size: 13px;
  color: var(--text-muted); transition: background .15s, color .15s;
}
.nav-dropdown li a:hover { background: var(--green-light); color: var(--green); padding-left: 24px; }

.nav-cta {
  background: var(--green) !important; color: var(--white) !important;
  border-radius: 50px !important; padding: 9px 22px !important;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--green-dark) !important; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(26,122,74,0.3); }

/* ── BUTTONS ── */
.btn { display: inline-block; font-weight: 600; font-size: 14px; padding: 13px 28px; border-radius: 50px; border: none; cursor: pointer; transition: var(--transition); text-decoration: none; }
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,122,74,0.3); }
.btn-gold { background: var(--gold); color: var(--gray-800); }
.btn-gold:hover { background: #c97d16; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(224,138,26,0.35); }
.btn-outline { background: transparent; color: var(--green); border: 2px solid var(--green); }
.btn-outline:hover { background: var(--green); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.9); }
.btn-lg { padding: 16px 36px; font-size: 16px; }

/* ── SECTION LABELS ── */
.section-label {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: .12em; color: var(--green-mid); text-transform: uppercase;
  background: var(--green-light); padding: 5px 14px; border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--gray-800); margin-bottom: 16px; line-height: 1.15;
}
.section-sub {
  color: var(--text-muted); font-size: 16px;
  max-width: 540px; line-height: 1.75; margin-bottom: 52px;
}
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, #1a5c35 60%, #0a3d22 100%);
  padding: 80px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 120%, rgba(46,168,101,0.3) 0%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px,5vw,60px);
  color: var(--white); margin-bottom: 16px;
}
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.72); max-width: 560px; margin: 0 auto; }
.breadcrumb {
  display: flex; justify-content: center; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 20px;
}
.breadcrumb a { color: #6ee9a0; }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ── FOOTER ── */
.footer {
  background: var(--gray-800);
  color: rgba(255,255,255,0.6);
  padding: 64px 32px 30px;
}
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand-name { font-family: 'DM Serif Display', serif; font-size: 22px; color: var(--white); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.footer-brand-name span { font-size: 28px; }
.footer-brand p { font-size: 13.5px; line-height: 1.8; color: rgba(255,255,255,0.45); margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: var(--transition);
}
.footer-social:hover { background: var(--green); border-color: var(--green); }
.footer-col h4 {
  font-size: 12px; font-weight: 700; color: var(--white);
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 18px;
}
.footer-col a { display: block; font-size: 13.5px; color: rgba(255,255,255,0.45); margin-bottom: 11px; transition: color .15s; }
.footer-col a:hover { color: #6ee9a0; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 12px; font-size: 13px; color: rgba(255,255,255,0.45); }
.footer-contact-icon { font-size: 14px; margin-top: 2px; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin-bottom: 24px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: 12.5px;
}
.footer-cin { font-size: 11.5px; color: rgba(255,255,255,0.25); }

/* ── CARDS SHARED ── */
.card-hover { transition: transform .25s, box-shadow .25s; }
.card-hover:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }

/* ── UTILITIES ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 32px; }
.section-sm { padding: 56px 32px; }
.bg-off { background: var(--off-white); }
.bg-pale { background: var(--green-pale); }
.bg-dark { background: var(--gray-800); }

.tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  padding: 4px 12px; border-radius: 50px;
}
.tag-green { background: var(--green-light); color: var(--green); }
.tag-gold { background: var(--gold-light); color: var(--gold); }
.tag-purple { background: var(--purple-light); color: var(--purple); }

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0; transform: translateY(24px);
  animation: fadeUp .6s ease forwards;
}
@keyframes fadeUp { to { opacity:1; transform:translateY(0); } }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .topbar { font-size: 11px; justify-content: center; text-align: center; }
  .topbar-right { justify-content: center; }
  .hamburger { display: flex; }
  .nav-links {
    display: none; flex-direction: column; align-items: stretch; gap: 0;
    position: absolute; top: 70px; left: 0; right: 0;
    background: var(--white); box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    padding: 16px; z-index: 999; max-height: calc(100vh - 70px); overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links > li > a { padding: 12px 16px; border-radius: var(--radius); }
  .nav-dropdown { display: none !important; position: static; box-shadow: none; border: none; background: var(--gray-100); border-radius: var(--radius); margin: 4px 8px; padding: 4px 0; }
  .nav-links > li.mob-open .nav-dropdown { display: block !important; }
  .nav-cta { margin: 8px 0 0; border-radius: var(--radius) !important; }
  .section { padding: 60px 20px; }
  .section-sm { padding: 40px 20px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .navbar { padding: 0 20px; }
  .topbar { padding: 7px 16px; }
}
