/* =============================================
   MiTiE — Sode Vadiraja Foundation
   Clean Corporate · Elegant · Rural Innovation
   ============================================= */

/* ---------- CSS VARIABLES ---------- */
:root {
    --green:       #2d6a4f;
    --green-light: #74c69d;
    --green-pale:  #d8f3dc;
    --saffron:     #e07b39;
    --saffron-light: #f4a261;
    --saffron-pale:  #fde8d8;
    --blue:        #1b4f72;
    --blue-light:  #5dade2;
    --blue-pale:   #d6eaf8;
    --ink:         #1a1a2e;
    --ink-mid:     #3d3d5c;
    --ink-light:   #6b6b8a;
    --cream:       #faf9f6;
    --white:       #ffffff;
    --border:      #e5e2da;
    --border-mid:  #ccc9be;
    --shadow-sm:   0 2px 8px rgba(26,26,46,0.07);
    --shadow-md:   0 8px 32px rgba(26,26,46,0.10);
    --shadow-lg:   0 20px 60px rgba(26,26,46,0.12);
    --radius-sm:   6px;
    --radius-md:   12px;
    --radius-lg:   20px;
    --nav-h:       72px;
    --font-serif:  'Cormorant Garamond', Georgia, serif;
    --font-sans:   'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition:  0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-sans);
    background: var(--cream);
    color: var(--ink);
    line-height: 1.7;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
    color: var(--ink);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1.4rem; }
em { font-style: italic; color: var(--green); }
p { color: var(--ink-mid); font-weight: 300; }
strong { font-weight: 500; color: var(--ink); }

/* ---------- LAYOUT ---------- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.alt-bg { background: var(--white); }

/* ---------- SECTION HEADER ---------- */
.section-head { text-align: center; margin-bottom: 3.5rem; }
.section-head p { max-width: 540px; margin: 0.75rem auto 0; }
.section-tag {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green);
    background: var(--green-pale);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 0.75rem;
}

/* ---------- NAVBAR ---------- */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    background: rgba(250,249,246,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-sm); }
.nav-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.nav-logo img { height: 44px; width: auto; max-height: 44px; object-fit: contain; }
.logo-fallback {
    display: none;
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--ink);
}
.logo-fallback span { color: var(--green); }
.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}
.nav-links a {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--ink-mid);
    position: relative;
    transition: color var(--transition);
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 1.5px;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--green); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: var(--transition);
}
.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); }

/* ---------- BUTTONS ---------- */
.btn-primary {
    display: inline-block;
    background: var(--green);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    border: 2px solid var(--green);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-sans);
}
.btn-primary:hover {
    background: var(--ink);
    border-color: var(--ink);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--ink);
    padding: 0.75rem 2rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    border: 2px solid var(--border-mid);
    cursor: pointer;
    transition: var(--transition);
}
.btn-outline:hover {
    border-color: var(--green);
    color: var(--green);
    transform: translateY(-2px);
}
.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.55rem 1.1rem;
    border: 1.5px solid var(--green);
    border-radius: 100px;
    transition: background var(--transition), color var(--transition), transform var(--transition);
    letter-spacing: 0.02em;
}
.btn-link::after {
    content: "↗";
    font-size: 0.85rem;
    transition: transform var(--transition);
}
.btn-link:hover {
    background: var(--green);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-link:hover::after { transform: translate(2px, -2px); }

/* ---------- HERO ---------- */
.hero {
    min-height: 100vh;
    padding-top: var(--nav-h);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: var(--cream);
}
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 70% 30%, rgba(45,106,79,0.06) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(27,79,114,0.05) 0%, transparent 50%);
    pointer-events: none;
}
.hero-bg-pattern::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 45%;
    height: 100%;
    background: var(--white);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 0.5;
}
.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1160px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: calc(100vh - var(--nav-h));
}
.hero-text { max-width: 560px; }
.hero-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green);
    background: var(--green-pale);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 1.25rem;
}
.hero-tagline {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--green);
    margin: 0.5rem 0 1rem;
}
.hero-desc {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 480px;
    line-height: 1.8;
}
.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.hero-images { position: relative; }
.img-stack { position: relative; }
.img-main {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.img-side {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    width: 55%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 4px solid var(--white);
    box-shadow: var(--shadow-md);
}
.img-badge {
    position: absolute;
    top: 1.5rem;
    right: -1rem;
    background: var(--green);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 0.05em;
}
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    color: var(--ink-light);
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ---------- FOCUS STRIP ---------- */
.focus-strip {
    background: var(--ink);
    padding: 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.06);
}
/* Fade edges */
.focus-strip::before,
.focus-strip::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.focus-strip::before { left: 0;  background: linear-gradient(to right, var(--ink), transparent); }
.focus-strip::after  { right: 0; background: linear-gradient(to left,  var(--ink), transparent); }

.focus-inner {
    display: flex;
    width: max-content;
    animation: marquee 28s linear infinite;
}
.focus-inner:hover { animation-play-state: paused; }

@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.focus-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    white-space: nowrap;
    color: rgba(255,255,255,0.55);
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-family: var(--font-sans);
    transition: color 0.3s ease;
}
.focus-item:hover { color: rgba(255,255,255,0.95); }

/* Diamond separator between items */
.focus-item::before {
    content: '◆';
    font-size: 0.35rem;
    color: var(--green-light);
    opacity: 0.7;
    flex-shrink: 0;
}
.focus-item:first-child::before { display: none; }
.focus-icon { display: none; }

/* ---------- VISION SECTION ---------- */
.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.vision-text h2 { margin-bottom: 1rem; }
.vision-text p { margin-bottom: 1.5rem; }
.objectives h3 {
    font-size: 1.1rem;
    font-family: var(--font-sans);
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 1.25rem;
}
.obj-list {
    list-style: decimal;
    padding-left: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.obj-list li {
    color: var(--ink-mid);
    font-weight: 300;
    font-size: 0.95rem;
    padding-left: 0.5rem;
}

/* ---------- PROGRAMS CARDS (Home) ---------- */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.prog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.prog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.prog-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.prog-kannada {
    font-family: 'Noto Sans Kannada', var(--font-serif);
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
}
.prog-card h3 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}
.prog-sub { font-size: 0.8rem; color: var(--ink-light); }
.prog-points {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}
.prog-points li {
    font-size: 0.85rem;
    color: var(--ink-mid);
    padding-left: 1rem;
    position: relative;
    font-weight: 300;
}
.prog-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
}
.prog-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: auto;
    padding: 0.45rem 1rem;
    border-radius: 100px;
    border: 1.5px solid;
    width: fit-content;
    transition: background var(--transition), color var(--transition), transform var(--transition);
    letter-spacing: 0.02em;
}
.prog-link::after {
    content: "↗";
    font-size: 0.8rem;
    transition: transform var(--transition);
}
.prog-link:hover { transform: translateY(-2px); }
.prog-link:hover::after { transform: translate(2px, -2px); }

/* Program Colors */
.prog-green .prog-kannada { color: var(--green); }
.prog-green .prog-points li::before { background: var(--green); }
.prog-green .prog-link { color: var(--green); border-color: var(--green); }
.prog-green .prog-link:hover { background: var(--green); color: var(--white); }
.prog-green { border-top: 3px solid var(--green); }

.prog-saffron .prog-kannada { color: var(--saffron); }
.prog-saffron .prog-points li::before { background: var(--saffron); }
.prog-saffron .prog-link { color: var(--saffron); border-color: var(--saffron); }
.prog-saffron .prog-link:hover { background: var(--saffron); color: var(--white); }
.prog-saffron { border-top: 3px solid var(--saffron); }

.prog-blue .prog-kannada { color: var(--blue); }
.prog-blue .prog-points li::before { background: var(--blue); }
.prog-blue .prog-link { color: var(--blue); border-color: var(--blue); }
.prog-blue .prog-link:hover { background: var(--blue); color: var(--white); }
.prog-blue { border-top: 3px solid var(--blue); }

/* ---------- CTA BAND ---------- */
.cta-band {
    background: var(--ink);
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.cta-inner h2 {
    color: var(--white);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    margin-bottom: 0.5rem;
}
.cta-inner p { color: rgba(255,255,255,0.65); }
.cta-inner .btn-primary {
    background: var(--green);
    border-color: var(--green);
    white-space: nowrap;
    flex-shrink: 0;
}
.cta-inner .btn-primary:hover {
    background: var(--green-light);
    border-color: var(--green-light);
    color: var(--ink);
}

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
    padding: calc(var(--nav-h) + 4rem) 0 4rem;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    text-align: center;
}
.page-hero h1 { margin-top: 0.75rem; }
.page-hero p {
    max-width: 520px;
    margin: 1rem auto 0;
    font-size: 1.05rem;
}

/* ---------- ABOUT PAGE ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-grid.reverse .about-image { order: 2; }
.about-grid.reverse .about-text  { order: 1; }
.about-image { position: relative; }
.about-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.about-badge {
    position: absolute;
    bottom: -1rem;
    right: 1.5rem;
    background: var(--green);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}
.badge-blue { background: var(--blue); }
.about-text h2 { margin: 0.75rem 0 1.25rem; }
.about-text p { margin-bottom: 1rem; }

/* ---------- BOARD ---------- */
.board-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.advisors-grid { grid-template-columns: repeat(5, 1fr); }
.board-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.75rem 1rem;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}
.board-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.board-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--green-pale);
    color: var(--green);
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
.advisor-avatar {
    background: var(--blue-pale);
    color: var(--blue);
}
.board-name { font-size: 0.9rem; font-weight: 500; color: var(--ink); margin-bottom: 4px; }
.board-role { font-size: 0.75rem; color: var(--ink-light); }

/* ---------- PROGRAMS PAGE ---------- */
.journey-section { padding: 2.5rem 0; background: var(--white); border-bottom: 1px solid var(--border); }
.journey-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.journey-node {
    text-align: center;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    border: 2px solid;
}
.journey-node.journey-green  { border-color: var(--green);   background: var(--green-pale);   }
.journey-node.journey-saffron{ border-color: var(--saffron); background: var(--saffron-pale); }
.journey-node.journey-blue   { border-color: var(--blue);    background: var(--blue-pale);    }
.journey-step { font-size: 0.7rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.journey-node.journey-green  .journey-step { color: var(--green); }
.journey-node.journey-saffron .journey-step { color: var(--saffron); }
.journey-node.journey-blue   .journey-step { color: var(--blue); }
.journey-name { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 600; color: var(--ink); }
.journey-arrow { font-size: 1.5rem; color: var(--border-mid); }

.prog-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.prog-stage-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 0.75rem;
}
.prog-tag-green   { background: var(--green-pale);   color: var(--green);   }
.prog-tag-saffron { background: var(--saffron-pale); color: var(--saffron); }
.prog-tag-blue    { background: var(--blue-pale);    color: var(--blue);    }

.prog-kannada-large {
    font-family: 'Noto Sans Kannada', var(--font-serif);
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 0.5rem;
}
#prerana  .prog-kannada-large { color: var(--green); }
#srujana  .prog-kannada-large { color: var(--saffron); }
#samruddhi .prog-kannada-large { color: var(--blue); }

.prog-tagline-text {
    font-size: 1rem;
    color: var(--ink-light);
    margin-bottom: 1rem;
}
.prog-detail-list {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.prog-detail-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--ink-mid);
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.6;
}
.list-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.45em;
}
.prog-list-green   .list-dot { background: var(--green); }
.prog-list-saffron .list-dot { background: var(--saffron); }
.prog-list-blue    .list-dot { background: var(--blue); }

/* ---------- CONTACT PAGE ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}
.contact-info h2 { margin: 0.5rem 0 1rem; }
.contact-info > p { margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.contact-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 2px; }
.contact-item strong { font-size: 0.85rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink); }
.contact-item p { margin: 0; font-size: 0.9rem; }
.contact-item a { color: var(--green); transition: opacity var(--transition); }
.contact-item a:hover { opacity: 0.75; }
.contact-svf-note {
    background: var(--green-pale);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    border-left: 3px solid var(--green);
}
.contact-svf-note strong { font-size: 0.85rem; display: block; margin-bottom: 0.5rem; color: var(--green); }
.contact-svf-note p { font-size: 0.88rem; margin: 0; }

.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
}
.contact-form h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 1.75rem;
    color: var(--ink);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 1.25rem;
}
.form-group label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: 0.02em;
}
.req { color: var(--saffron); }
.form-group input,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--ink);
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    width: 100%;
    resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(45,106,79,0.12);
    background: var(--white);
}
.form-group.has-error input,
.form-group.has-error textarea {
    border-color: #d32f2f;
    box-shadow: 0 0 0 3px rgba(211,47,47,0.1);
}
.field-error {
    font-size: 0.78rem;
    color: #d32f2f;
    font-weight: 400;
}
.form-error-banner {
    background: #fdecea;
    color: #c62828;
    border: 1px solid #f5c6cb;
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}
.btn-submit {
    width: 100%;
    padding: 1rem;
    font-size: 0.95rem;
    cursor: pointer;
    font-family: var(--font-sans);
}
.form-success {
    text-align: center;
    padding: 3rem 1rem;
}
.success-icon {
    width: 64px;
    height: 64px;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1.5rem;
}
.form-success h3 { margin-bottom: 0.75rem; }
.form-success p { color: var(--ink-mid); }

/* ---------- FOOTER ---------- */
.site-footer {
    background: var(--ink);
    color: rgba(255,255,255,0.8);
    padding: 4rem 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .nav-logo img { height: 40px; filter: brightness(0) invert(1); }
.footer-logo .logo-fallback { color: var(--white); }
.footer-logo .logo-fallback span { color: var(--green-light); }
.footer-brand p { font-size: 0.88rem; margin-top: 1rem; color: rgba(255,255,255,0.6); }
.footer-tagline {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--green-light) !important;
    font-size: 1rem !important;
    margin-top: 0.5rem !important;
}
.footer-links h4, .footer-contact h4 {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1.25rem;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.footer-links a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-contact p, .footer-contact a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    display: block;
    margin-bottom: 0.5rem;
}
.footer-contact a:hover { color: var(--green-light); }
.footer-org { margin-top: 1rem !important; font-size: 0.8rem !important; color: rgba(255,255,255,0.45) !important; }
.footer-org strong { color: rgba(255,255,255,0.7); font-weight: 500; }
.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); line-height: 1.8; }

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.34s; }

/* ---------- HERO CAROUSEL ---------- */
.hero-carousel {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
    background: var(--green-pale);
}
.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
}
.carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
}
.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.88);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    color: var(--ink);
    box-shadow: var(--shadow-sm);
    transition: background var(--transition), transform var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel-btn:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
}
.carousel-prev { left: 12px; }
.carousel-next { right: 12px; }
.carousel-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
    z-index: 10;
}
.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.55);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    border: none;
}
.carousel-dot.active {
    background: var(--white);
    transform: scale(1.3);
}
.hero-carousel .img-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    background: var(--green);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 20px;
}

/* =============================================
   FIXES: Logo, Justified text, Footer, People Cards
   ============================================= */

/* --- Logo: no stretch --- */
.nav-logo img,
.footer-logo-img {
    height: 44px !important;
    width: auto !important;
    max-width: 140px;
    object-fit: contain !important;
    display: block;
}
/* Footer logo wrapper */
.footer-logo-wrap {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    text-decoration: none;
}
.footer-logo-wrap .logo-fallback {
    display: none;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}
.footer-logo-wrap .logo-fallback span { color: var(--green-light); }

/* Invert logo in footer so it's visible on dark bg */
.footer-logo-img {
    filter: none !important;
    background: var(--white);
    border-radius: 8px;
    padding: 4px 8px;
}

/* --- Justified paragraphs --- */
.about-text p,
.vision-text p,
.obj-list li,
.prog-detail-left p,
.contact-info p,
.contact-svf-note p {
    text-align: justify;
    hyphens: auto;
}

/* --- People (board) cards: photo-first design --- */
.people-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.people-grid-5 {
    grid-template-columns: repeat(5, 1fr);
}
.people-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}
.people-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.people-photo {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--green-pale);
    position: relative;
}
.people-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.people-card:hover .people-photo img {
    transform: scale(1.05);
}
.people-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--green-pale) 0%, #b7dfc8 100%);
    position: relative;
}
.people-placeholder::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(45,106,79,0.15), transparent);
}
.advisor-ph {
    background: linear-gradient(145deg, var(--blue-pale) 0%, #a8cfe8 100%);
}
.advisor-ph::after {
    background: linear-gradient(to top, rgba(27,79,114,0.15), transparent);
}
.people-placeholder span {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--green);
    opacity: 0.6;
    letter-spacing: 0.05em;
    z-index: 1;
}
.advisor-ph span { color: var(--blue); }
.people-info {
    padding: 1rem 1rem 1.1rem;
    text-align: center;
    border-top: 1px solid var(--border);
}
.people-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 3px;
    line-height: 1.3;
}
.people-role {
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.09em;
}
.advisor-ph ~ .people-info .people-role,
.people-grid-5 .people-card .people-role { color: var(--blue); }

/* Override old board styles so they don't conflict */
.board-grid, .board-card, .board-avatar,
.board-name, .board-role, .advisors-grid { all: unset; }

/* Responsive */
@media (max-width: 900px) {
    .people-grid   { grid-template-columns: repeat(2, 1fr); }
    .people-grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
    .people-grid,
    .people-grid-5 { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}

/* =============================================
   RESPONSIVE — Mobile & Tablet
   Breakpoints: 1024 | 768 | 480
   ============================================= */

/* ---- Hamburger: hidden on desktop ---- */
.hamburger { display: none; }

/* ========== TABLET (max 1024px) ========== */
@media (max-width: 1024px) {

    /* Programs home grid: single column centered */
    .programs-grid {
        grid-template-columns: 1fr;
        max-width: 620px;
        margin: 0 auto;
    }

    /* People grids */
    .people-grid   { grid-template-columns: repeat(2, 1fr); }
    .people-grid-5 { grid-template-columns: repeat(3, 1fr); }

    /* Footer: 2 col */
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

    /* Hero: stack */
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        min-height: auto;
        padding: 3rem 1.5rem 4rem;
    }
    .hero-images {
        display: block;
        max-width: 520px;
        margin: 0 auto;
    }

    /* Vision */
    .vision-grid { grid-template-columns: 1fr; gap: 2.5rem; }

    /* About grids */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .about-grid.reverse .about-image,
    .about-grid.reverse .about-text { order: unset; }

    /* Programs detail */
    .prog-detail-grid { grid-template-columns: 1fr; gap: 2rem; }

    /* Contact */
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .form-row     { grid-template-columns: 1fr 1fr; }

    /* CTA band */
    .cta-inner {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    /* Journey: horizontal, allow wrap */
    .journey-track { flex-wrap: wrap; justify-content: center; }
}

/* ========== MOBILE (max 768px) ========== */
@media (max-width: 768px) {
    :root { --nav-h: 60px; }

    /* ---- NAVBAR ---- */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 6px;
        border-radius: var(--radius-sm);
        flex-shrink: 0;
        z-index: 1100;
    }
    .hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--ink);
        border-radius: 2px;
        transition: transform 0.3s ease, opacity 0.3s ease;
        transform-origin: center;
    }
    /* Animated X */
    .hamburger.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .hamburger.open span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }
    .hamburger.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* ---- NAV DROPDOWN ---- */
    .nav-links {
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        gap: 0;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        /* Hidden by default */
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
        z-index: 999;
    }
    .nav-links.open {
        max-height: 320px;
    }
    .nav-links a {
        display: block;
        padding: 0.95rem 1.5rem;
        font-size: 1rem;
        border-bottom: 1px solid var(--border);
        color: var(--ink);
    }
    .nav-links a:last-child { border-bottom: none; }
    .nav-links a.active {
        color: var(--green);
        background: var(--green-pale);
    }
    .nav-links a::after { display: none; } /* remove underline animation on mobile */

    /* ---- TYPOGRAPHY ---- */
    h1 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
    h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
    h3 { font-size: 1.2rem; }

    /* ---- SECTIONS ---- */
    .section { padding: 3rem 0; }
    .container { padding: 0 1.25rem; }

    /* ---- HERO ---- */
    .hero-inner {
        grid-template-columns: 1fr;
        padding: 2.5rem 1.25rem 3rem;
        gap: 2rem;
        min-height: auto;
    }
    .hero-images {
        display: block;
        max-width: 100%;
    }
    .hero-carousel { aspect-ratio: 16/10; }
    .hero-cta { flex-direction: column; gap: 0.75rem; }
    .hero-cta .btn-primary,
    .hero-cta .btn-outline {
        width: 100%;
        text-align: center;
    }
    .hero-scroll { display: none; }

    /* ---- FOCUS STRIP ---- */
    .focus-item  { font-size: 0.72rem; padding: 0.9rem 1.75rem; letter-spacing: 0.1em; }

    /* ---- VISION / ABOUT ---- */
    .vision-grid          { grid-template-columns: 1fr; gap: 2rem; }
    .about-grid           { grid-template-columns: 1fr; gap: 2rem; }
    .about-image img      { height: 240px; }
    .about-grid.reverse .about-image,
    .about-grid.reverse .about-text { order: unset; }

    /* ---- PROGRAMS HOME ---- */
    .programs-grid { max-width: 100%; }
    .prog-card     { padding: 1.5rem; }

    /* ---- PROGRAMS PAGE ---- */
    .journey-track     { flex-direction: column; align-items: center; gap: 0.5rem; }
    .journey-arrow     { transform: rotate(90deg); font-size: 1.2rem; }
    .journey-node      { width: 80%; max-width: 280px; }
    .prog-detail-grid  { grid-template-columns: 1fr; gap: 1.5rem; }
    .prog-kannada-large{ font-size: 2.5rem; }
    .prog-detail-list  { padding: 1.25rem; }

    /* ---- BOARD / PEOPLE ---- */
    .people-grid   { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .people-grid-5 { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

    /* ---- CONTACT ---- */
    .contact-grid        { grid-template-columns: 1fr; gap: 2rem; }
    .contact-form-wrap   { padding: 1.5rem; }
    .form-row            { grid-template-columns: 1fr; gap: 0; }
    .contact-form h3     { font-size: 1.25rem; }

    /* ---- CTA BAND ---- */
    .cta-inner {
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
        padding: 2.5rem 1.25rem;
    }
    .cta-inner .btn-primary { width: 100%; text-align: center; }

    /* ---- FOOTER ---- */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .footer-brand { grid-column: 1 / -1; }

    /* ---- PAGE HERO ---- */
    .page-hero {
        padding: calc(var(--nav-h) + 2.5rem) 0 2.5rem;
    }
    .page-hero p { font-size: 0.95rem; }

    /* ---- SECTION HEADER ---- */
    .section-head { margin-bottom: 2rem; }
}

/* ========== SMALL MOBILE (max 480px) ========== */
@media (max-width: 480px) {

    :root { --nav-h: 56px; }

    .container { padding: 0 1rem; }
    .section    { padding: 2.5rem 0; }

    h1 { font-size: 1.75rem; line-height: 1.25; }
    h2 { font-size: 1.45rem; }

    /* Hero tighter */
    .hero-inner    { padding: 2rem 1rem 2.5rem; }
    .hero-tagline  { font-size: 1.2rem; }
    .hero-desc     { font-size: 0.95rem; }
    .hero-tag      { font-size: 0.68rem; }

    /* Carousel smaller on tiny screens */
    .hero-carousel    { aspect-ratio: 4/3; }
    .carousel-btn     { width: 32px; height: 32px; font-size: 1.1rem; }

    /* People: 2 col tight */
    .people-grid,
    .people-grid-5 { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .people-name   { font-size: 0.8rem; }
    .people-role   { font-size: 0.65rem; }
    .people-info   { padding: 0.75rem 0.5rem; }

    /* Programs */
    .prog-card { padding: 1.25rem; }
    .prog-kannada { font-size: 1.6rem; }
    .prog-kannada-large { font-size: 2rem; }
    .journey-node { width: 90%; }

    /* Contact form */
    .contact-form-wrap { padding: 1.25rem; border-radius: var(--radius-md); }

    /* Footer: single column */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
    .footer-brand { grid-column: auto; }
    .footer-bottom p { font-size: 0.72rem; }

    /* Stat cards */
    .stats-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 1rem !important; }
    .stat-value { font-size: 2rem !important; }

    /* Buttons full width in forms */
    .btn-submit { padding: 0.875rem; font-size: 0.9rem; }

    /* Board sections spacing */
    .section-head[style*="margin-top:4rem"] { margin-top: 2.5rem !important; }
    .section-head[style*="margin-top:5rem"] { margin-top: 2.5rem !important; }
}


/* =============================================
   PROGRAMS PAGE — Modern Stage Tracker
   ============================================= */

.prog-hero-section {
    padding-top: calc(var(--nav-h) + 3.5rem);
    padding-bottom: 0;
    background: var(--white);
}

.prog-hero-top {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 3.5rem;
}
.prog-hero-top h1 { margin: 0.6rem 0 0.75rem; }
.prog-hero-top p  { font-size: 1rem; }

/* ---- Stage Tracker ---- */
.stage-tracker {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: relative;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
    border: 1px solid var(--border);
    border-bottom: none;
}

/* Connecting line between cards */
.stage-step { position: relative; }
.stage-connector {
    position: absolute;
    top: 50%;
    right: -1px;
    width: 2px;
    height: 40%;
    transform: translateY(-50%);
    background: var(--border);
    z-index: 2;
}

/* Each step card */
.stage-step {
    display: flex;
    flex-direction: column;
    padding: 2.5rem 2rem 2rem;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.stage-step::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity var(--transition);
}
.stage-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); z-index: 3; }
.stage-step:hover::before { opacity: 1; }

/* Color themes per stage */
.stage-green  { background: #f6fbf8; border-right: 1px solid var(--border); }
.stage-saffron { background: #fdf8f3; border-right: 1px solid var(--border); }
.stage-blue   { background: #f3f7fc; }

.stage-green::before  { background: var(--green-pale); }
.stage-saffron::before{ background: var(--saffron-pale); }
.stage-blue::before   { background: var(--blue-pale); }

/* Step number — large background numeral */
.stage-number {
    font-family: var(--font-serif);
    font-size: 5rem;
    font-weight: 600;
    line-height: 1;
    opacity: 0.08;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    pointer-events: none;
    transition: opacity var(--transition);
}
.stage-green  .stage-number { color: var(--green); }
.stage-saffron .stage-number { color: var(--saffron); }
.stage-blue   .stage-number { color: var(--blue); }
.stage-step:hover .stage-number { opacity: 0.15; }

/* Kannada script */
.stage-kannada {
    font-family: 'Noto Sans Kannada', var(--font-serif);
    font-size: 1.6rem;
    line-height: 1.2;
    margin-bottom: 0.4rem;
}
.stage-green  .stage-kannada { color: var(--green); }
.stage-saffron .stage-kannada { color: var(--saffron); }
.stage-blue   .stage-kannada { color: var(--blue); }

/* Program name */
.stage-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: 0.04em;
    margin-bottom: 0.4rem;
}

/* Tagline */
.stage-sub {
    font-size: 0.78rem;
    color: var(--ink-light);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 1.25rem;
}

/* Meaning pill at bottom */
.stage-meaning {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.stage-meaning em {
    font-family: var(--font-serif);
    font-size: 0.92rem;
    font-style: italic;
    font-weight: 400;
}
.stage-meaning::before {
    content: none;
}
.stage-green  .stage-meaning em  { color: var(--green); }
.stage-green  .stage-meaning::before { background: var(--green); }
.stage-saffron .stage-meaning em { color: var(--saffron); }
.stage-saffron .stage-meaning::before{ background: var(--saffron); }
.stage-blue   .stage-meaning em  { color: var(--blue); }
.stage-blue   .stage-meaning::before { background: var(--blue); }

/* Bottom border accent line */
.stage-step::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    height: 3px;
    opacity: 0;
    transition: opacity var(--transition);
}
.stage-green::after  { background: var(--green);   }
.stage-saffron::after{ background: var(--saffron); }
.stage-blue::after   { background: var(--blue);    }
.stage-step:hover::after { opacity: 1; }

/* Remove old journey styles that conflict */
.journey-section,
.journey-track,
.journey-node,
.journey-arrow,
.journey-step,
.journey-name { display: none !important; }

/* Responsive stage tracker */
@media (max-width: 768px) {
    .stage-tracker {
        grid-template-columns: 1fr;
        border-radius: var(--radius-md) var(--radius-md) 0 0;
    }
    .stage-step {
        border-right: none !important;
        border-bottom: 1px solid var(--border);
        padding: 1.75rem 1.5rem;
        flex-direction: row;
        align-items: center;
        gap: 1.25rem;
    }
    .stage-step:last-child { border-bottom: none; }
    .stage-connector { display: none; }
    .stage-number {
        font-size: 3.5rem;
        top: 50%;
        right: 1rem;
        transform: translateY(-50%);
    }
    .stage-body { flex: 1; }
    .stage-kannada { font-size: 1.3rem; margin-bottom: 0.2rem; }
    .stage-name    { font-size: 1.2rem; margin-bottom: 0.2rem; }
    .stage-sub     { margin-bottom: 0; }
    .stage-meaning { margin-top: 0.5rem; }
    .stage-step:hover { transform: none; box-shadow: none; }
    .stage-step::after { bottom: auto; top: 0; height: 100%; width: 3px; right: auto; left: 0; }
    .prog-hero-section { padding-top: calc(var(--nav-h) + 2rem); }
    .prog-hero-top { margin-bottom: 2rem; }
}

@media (max-width: 480px) {
    .stage-step { padding: 1.25rem 1rem; gap: 1rem; }
    .stage-kannada { font-size: 1.1rem; }
    .stage-name    { font-size: 1rem; }
    .stage-sub     { font-size: 0.72rem; }
    .stage-number  { font-size: 2.8rem; }
}