/* ═══════════════════════════════════════════════
   SWAYAMKRUSHI — SHARED STYLES
   Theme: Airy Sky Blue — refined, soothing, hopeful
   Fonts: Lora (serif display) + Plus Jakarta Sans (body)
═══════════════════════════════════════════════ */

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

:root {
  /* Blues */
  --sky:        #e8f4fd;
  --sky-mid:    #cce6f8;
  --sky-deep:   #a8d4f0;
  --blue:       #4a9fd4;
  --blue-dark:  #1e6fa3;
  --navy:       #0d3d6e;
  /* Accents */
  --gold:       #e8b84b;
  --coral:      #e07a5f;
  --mint:       #6dbf9e;
  /* Neutrals */
  --white:      #ffffff;
  --offwhite:   #f7fbff;
  --mist:       #eaf4fb;
  --text:       #1a3a52;
  --text-mid:   #3a6080;
  --text-soft:  #7099b8;
  --border:     rgba(74,159,212,0.18);
  --shadow-sm:  0 4px 16px rgba(13,61,110,0.08);
  --shadow-md:  0 12px 40px rgba(13,61,110,0.12);
  --shadow-lg:  0 24px 64px rgba(13,61,110,0.15);
}

*, *::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;
  background: var(--offwhite);
  color: var(--text);
  overflow-x: hidden;
  padding-top: 80px;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: 'Lora', serif; line-height: 1.2; }
p { line-height: 1.8; }

/* ── SECTION HELPERS ── */
.section { padding: 7rem 6vw; }
.section-label {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--blue); font-weight: 600; font-family: 'Plus Jakarta Sans', sans-serif;
  margin-bottom: 1rem;
}
.section-label::before {
  content: ''; display: block; width: 24px; height: 2px;
  background: var(--blue); border-radius: 2px;
}
.section-h2 {
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  font-weight: 600; color: var(--navy);
  line-height: 1.18;
}
.section-h2 em { font-style: italic; color: var(--blue); }
.section-desc {
  font-size: 1rem; color: var(--text-mid);
  font-weight: 300; max-width: 540px;
  line-height: 1.82; margin-top: 1.2rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.78rem 1.8rem; border-radius: 3rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.07em;
  text-transform: uppercase; text-decoration: none;
  cursor: pointer; border: none; transition: all 0.25s;
}
.btn-blue {
  background: var(--blue-dark); color: #fff;
  box-shadow: 0 4px 18px rgba(30,111,163,0.3);
}
.btn-blue:hover { background: var(--navy); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(13,61,110,0.3); }
.btn-outline-blue {
  background: transparent; color: var(--blue-dark);
  border: 2px solid var(--blue-dark);
}
.btn-outline-blue:hover { background: var(--blue-dark); color: #fff; transform: translateY(-2px); }
.btn-white {
  background: #fff; color: var(--navy);
  box-shadow: 0 4px 18px rgba(255,255,255,0.25);
}
.btn-white:hover { background: var(--sky); transform: translateY(-2px); }
.btn-gold {
  background: var(--gold); color: var(--navy);
  box-shadow: 0 4px 18px rgba(232,184,75,0.35);
}
.btn-gold:hover { background: #d4a53a; transform: translateY(-2px); }

/* ── CARDS ── */
.card {
  background: var(--white); border-radius: 1.25rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden; transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

/* ── REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.in { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-36px); transition: opacity 0.75s, transform 0.75s; }
.reveal-left.in { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(36px); transition: opacity 0.75s, transform 0.75s; }
.reveal-right.in { opacity: 1; transform: none; }

/* ── PAGE HERO BANNER ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-dark) 60%, var(--blue) 100%);
  padding: 5.5rem 6vw 5rem;
  position: relative; overflow: hidden;
}
.page-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%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-breadcrumb {
  font-size: 0.75rem; color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 1rem; font-family: 'Plus Jakarta Sans', sans-serif;
}
.page-hero-breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.page-hero-breadcrumb a:hover { color: var(--gold); }
.page-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  color: #fff; font-weight: 600; max-width: 680px;
  position: relative; z-index: 1;
}
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero p {
  color: rgba(255,255,255,0.72); font-size: 1.05rem; font-weight: 300;
  max-width: 520px; margin-top: 1.2rem; line-height: 1.8;
  position: relative; z-index: 1;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.page-hero-orb {
  position: absolute; right: -80px; top: -80px;
  width: min(420px, 60vw); height: min(420px, 60vw); border-radius: 50%;
  background: radial-gradient(circle, rgba(168,212,240,0.2), transparent 70%);
  pointer-events: none;
}

/* ── FOOTER (shared) ── */
footer.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 4.5rem 6vw 2rem;
}
.footer-brand-link {
  display: inline-block;
  margin-bottom: 0.9rem;
  text-decoration: none;
}
.footer-logo-img {
  height: 72px;
  width: auto;
  display: block;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  padding: 6px 10px;
  opacity: 0.95;
  transition: opacity 0.2s;
}
.footer-brand-link:hover .footer-logo-img { opacity: 1; }
.footer-grid {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.4fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-tagline { font-size: 0.85rem; line-height: 1.75; max-width: 280px; font-weight: 300; }
.footer-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.18em;
  color: rgba(255,255,255,0.9); margin-bottom: 1.2rem; font-weight: 600;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul li a {
  font-size: 0.85rem; color: rgba(255,255,255,0.52);
  text-decoration: none; font-weight: 300; transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--sky-deep); }
.footer-contact-item { display: flex; gap: 0.8rem; align-items: flex-start; margin-bottom: 0.9rem; }
.footer-contact-icon { font-size: 0.9rem; margin-top: 0.1rem; opacity: 0.7; flex-shrink: 0; }
.footer-contact-text { font-size: 0.82rem; line-height: 1.6; font-weight: 300; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.8rem; font-size: 0.75rem; color: rgba(255,255,255,0.3);
}
.footer-social { display: flex; gap: 0.7rem; }
.social-btn {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.07); display: inline-flex;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.8rem;
  transition: background 0.2s, color 0.2s; font-family: sans-serif;
}
.social-btn:hover { background: var(--blue); color: #fff; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 5rem 5vw; }
  .page-hero { padding: 4rem 5vw 3.5rem; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  body { padding-top: 68px; }
  .section { padding: 4rem 5vw; }
  .page-hero { padding: 3rem 5vw 2.5rem; }
  .page-hero h1 { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .section-h2 { font-size: clamp(1.5rem, 6vw, 2.2rem); }
  .btn { padding: 0.72rem 1.4rem; font-size: 0.78rem; }
}
