/* ═══════════════════════════════
   GLOBAL ICON INDIA — Stylesheet
   Orange + White
   ═══════════════════════════════ */

:root {
    --orange: #FF6B35;
    --orange-dark: #e85d26;
    --orange-light: #ff8f65;
    --orange-subtle: #fff0eb;
    --gold: #c99a43;
    --gold-light: #f0d78a;
    --white: #ffffff;
    --off-white: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e7eb;
    --gray-400: #9ca3af;
    --gray-600: #1f2937;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', sans-serif;
    --font-script: 'Great Vibes', cursive;
    --max-width: 1200px;
    --header-h: 72px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ═══ TYPOGRAPHY ═══ */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 2.75rem;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.8;
}

/* ═══ BUTTONS ═══ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .9rem;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all .3s ease;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, .35);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), #b8860b);
    color: var(--white);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 154, 67, .35);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--orange);
    color: var(--orange-dark);
}

.btn-outline:hover {
    background: var(--orange);
    color: var(--white);
}

.btn-lg { padding: 16px 40px; font-size: 1rem; }
.btn-sm { padding: 8px 20px; font-size: .82rem; }

/* ═══ HEADER ═══ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--header-h);
    transition: background .4s ease, box-shadow .4s ease;
}

.site-header.scrolled {
    background: rgba(255,255,255, .98);
    box-shadow: var(--shadow-md);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    transition: color .4s ease;
}

.scrolled .logo { color: var(--gray-900); }

.logo-img { border-radius: 4px; }

.logo-accent { color: var(--orange); }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-size: .88rem;
    font-weight: 500;
    color: rgba(255,255,255, .85);
    transition: color .3s ease;
    position: relative;
    padding: 6px 0;
}

.scrolled .nav-link { color: var(--gray-600); }
.scrolled .nav-link:hover,
.nav-link.active { color: var(--orange-dark); }

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--orange);
    transition: width .3s ease;
}

.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.nav-link i { font-size: .7rem; margin-left: 4px; }

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--white);
    min-width: 160px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(4px);
}

.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    font-size: .88rem;
    color: var(--gray-600);
    border-radius: 8px;
    transition: all .2s ease;
}

.dropdown-menu a:hover {
    background: var(--orange-subtle);
    color: var(--orange-dark);
}

.nav-cta {
    padding: 10px 24px !important;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-radius: 50px;
    color: var(--white) !important;
    font-weight: 600 !important;
    font-size: .88rem;
    transition: all .3s ease;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 107, 53, .3);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.menu-toggle span {
    display: block;
    width: 26px; height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: all .3s ease;
}

.scrolled .menu-toggle span { background: var(--gray-900); }

/* ═══ PAGE BANNER ═══ */
.page-banner {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::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");
    opacity: .5;
}

.page-banner h1 {
    font-size: 3rem;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.page-banner p {
    color: rgba(255,255,255, .7);
    font-size: 1.1rem;
    margin-top: 10px;
    position: relative;
    z-index: 1;
}

/* ═══ HERO ═══ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slides { position: relative; height: 100%; }

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active { opacity: 1; }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,15,30,.85), rgba(22,33,62,.7));
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    max-width: 650px;
    padding: 0 24px;
    margin: 0 auto 0 10%;
}

.hero-badge {
    display: inline-block;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    border: 1px solid var(--orange);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
    align-self: flex-start;
}

.hero-content h1,
.hero-content .hero-title {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255, .8);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.hero-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255, .5);
    background: none;
    cursor: pointer;
    transition: all .3s ease;
}

.hero-dot.active {
    background: var(--orange);
    border-color: var(--orange);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255,255,255, .1);
    border: none;
    color: var(--white);
    width: 52px; height: 52px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: background .3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-arrow:hover { background: rgba(255,255,255, .25); }
.hero-arrow-prev { left: 20px; }
.hero-arrow-next { right: 20px; }

/* ═══ ABOUT ═══ */
.about { background: var(--off-white); }

.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about-card {
    background: var(--white);
    padding: 40px 28px;
    border-radius: 16px;
    text-align: center;
    transition: transform .3s ease, box-shadow .3s ease;
}

.about-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.about-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange-subtle), var(--orange-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.3rem;
    color: var(--orange-dark);
}

.about-card h3 { font-size: 1.2rem; color: var(--gray-900); margin-bottom: 10px; }
.about-card p { font-size: .92rem; color: var(--gray-600); line-height: 1.7; }

/* ═══ WINNERS ═══ */
.winners { background: var(--gray-900); }
.winners .section-tag { color: var(--orange); }
.winners .section-header h2 { color: var(--white); }
.winners .section-header p { color: rgba(255,255,255, .7); }

.winners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.winner-card {
    background: rgba(255,255,255, .06);
    border-radius: 16px;
    overflow: hidden;
    transition: transform .4s ease;
}

.winner-card:hover { transform: translateY(-8px); }

.winner-img {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.winner-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.winner-card:hover .winner-img img { transform: scale(1.08); }

.winner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,15,30,.95), transparent);
    opacity: 0;
    transition: opacity .4s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.winner-card:hover .winner-overlay { opacity: 1; }

.winner-overlay span {
    color: var(--orange);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.winner-info { padding: 20px; }
.winner-info h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 4px; }
.winner-info p { color: rgba(255,255,255, .65); font-size: .85rem; line-height: 1.5; }

/* ═══ FOUNDER ═══ */
.founder { background: var(--white); }

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.founder-image { position: relative; }

.founder-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.founder-social {
    position: absolute;
    bottom: -20px;
    right: -20px;
    display: flex;
    gap: 8px;
    background: var(--white);
    padding: 12px 16px;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
}

.founder-social a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--orange-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-dark);
    transition: all .3s ease;
}

.founder-social a:hover {
    background: var(--orange);
    color: var(--white);
}

.founder-content h2 {
    font-size: 2.5rem;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.founder-role {
    color: var(--orange-dark);
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 20px;
}

.founder-content p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.founder-content blockquote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--gray-800);
    padding: 24px 28px;
    border-left: 4px solid var(--orange);
    background: var(--orange-subtle);
    border-radius: 0 12px 12px 0;
    margin-top: 8px;
}

/* ═══ JURY ═══ */
.jury { background: var(--gray-100); }
.jury .section-tag { color: var(--orange); }
.jury .section-header h2 { color: var(--gray-900); }
.jury .section-header p { color: var(--gray-600); }

.jury-list { display: grid; gap: 40px; }

.jury-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: center;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .4s ease, box-shadow .4s ease;
}

.jury-card:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
}

.jury-card:nth-child(even) {
    direction: rtl;
    text-align: left;
}

.jury-card:nth-child(even) .jury-info { direction: ltr; }

.jury-img { aspect-ratio: 1; overflow: hidden; }

.jury-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.jury-card:hover .jury-img img { transform: scale(1.05); }

.jury-info { padding: 32px 32px 32px 0; }
.jury-card:nth-child(even) .jury-info { padding: 32px 0 32px 32px; }

.jury-season {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 8px;
    display: block;
}

.jury-info h3 {
    font-size: 1.8rem;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.jury-role {
    color: var(--orange-dark);
    font-weight: 500;
    margin-bottom: 12px;
}

.jury-info p:last-child {
    color: var(--gray-600);
    line-height: 1.8;
}

/* ═══ TEAM ═══ */
.team { background: var(--off-white); }

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: transform .4s ease, box-shadow .4s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.team-img { aspect-ratio: 1; overflow: hidden; }

.team-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.team-card:hover .team-img img { transform: scale(1.08); }

.team-info { padding: 28px; }
.team-info h4 { font-size: 1.2rem; color: var(--gray-900); margin-bottom: 4px; }
.team-info > p:first-of-type { color: var(--orange-dark); font-size: .88rem; font-weight: 500; margin-bottom: 12px; }
.team-bio { color: var(--gray-600); font-size: .9rem; line-height: 1.7; }

/* ═══ CTA ═══ */
.cta {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    text-align: center;
}

.cta .section-tag { color: var(--white); opacity: .8; }
.cta h2 { color: var(--white); font-size: 2.75rem; }
.cta p { color: rgba(255,255,255, .85); margin-bottom: 32px; }
.cta-content { max-width: 700px; margin: 0 auto; }

.cta .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.cta .btn-outline:hover {
    background: var(--white);
    color: var(--orange-dark);
}

/* ═══ FOOTER ═══ */
.site-footer {
    background: var(--gray-900);
    color: rgba(255,255,255, .7);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255, .08);
}

.footer-about .logo { margin-bottom: 16px; display: inline-flex; color: var(--white); }
.footer-about p { font-size: .9rem; line-height: 1.8; margin-bottom: 20px; }

.footer-social { display: flex; gap: 10px; }

.footer-social a {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    transition: all .3s ease;
}

.footer-social a:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}

.footer-links h4, .footer-contact h4 {
    color: var(--white);
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    font-size: .9rem;
    padding: 6px 0;
    transition: color .3s ease;
}

.footer-links a:hover { color: var(--orange); }

.footer-contact p {
    font-size: .9rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i { color: var(--orange); width: 16px; }

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    font-size: .85rem;
    color: rgba(255,255,255, .4);
}

/* ═══ ELEGANT FONT ACCENTS ═══ */
.logo-text {
    font-family: var(--font-script);
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: .5px;
}

.hero-script {
    font-family: var(--font-script);
    font-size: 2rem;
    font-weight: 400;
    color: var(--orange);
    margin-bottom: 10px;
}

.section-script {
    font-family: var(--font-script);
    font-size: 1.8rem;
    color: var(--orange);
    display: block;
    margin-bottom: 6px;
}

/* ═══ PHOTO SHOWCASE (HOME / ABOUT) ═══ */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.showcase-tile {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    box-shadow: var(--shadow-md);
}

.showcase-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.showcase-tile:hover img { transform: scale(1.06); }

.showcase-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 48px 20px 16px;
    background: linear-gradient(transparent, rgba(15,15,30,.82));
    color: var(--white);
    font-size: .88rem;
    font-weight: 500;
    letter-spacing: .5px;
}

.showcase-tile.tall { margin-top: 40px; }
.showcase-tile.tall-2 { margin-bottom: 40px; }

/* ═══ IMAGE BANNER ═══ */
.image-banner {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 48px;
    aspect-ratio: 21 / 9;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.image-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,15,30,.25), transparent 60%);
}

/* ═══ CARD WITH IMAGE TOP ═══ */
.card-img-top {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.step-card {
    background: var(--off-white);
    border-radius: 16px;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.step-card-body {
    padding: 28px 24px;
    text-align: center;
}

.step-card-body h3 {
    font-size: 1.1rem;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.step-card-body p {
    font-size: .9rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange-subtle), var(--orange-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -44px auto 16px;
    position: relative;
    z-index: 2;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--orange-dark);
    box-shadow: var(--shadow-sm);
}

.card-img-cover {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* ═══ GALLERY GRID ═══ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-grid .album-card { aspect-ratio: 3 / 2; }

/* ═══ TESTIMONIAL AVATAR ═══ */
.t-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--orange);
    margin: 0 auto 14px;
}

.t-name {
    color: var(--orange-dark);
    font-weight: 600;
    font-size: .9rem;
    margin-top: 4px;
}

/* ═══ INLINE GRID REPLACEMENT CLASSES ═══ */
.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vision-items-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.journey-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.mentor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.partner-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 20px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.category-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.awaits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.partner-cats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.timeline-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: center;
}

.timeline-step.even { flex-direction: row; }
.timeline-step.odd { flex-direction: row-reverse; }

.timeline-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(255, 107, 53, .3);
}

.timeline-content {
    flex: 1;
    background: var(--off-white);
    padding: 32px;
    border-radius: 16px;
}

.timeline-step.even .timeline-content { border-left: 4px solid var(--orange); }
.timeline-step.odd .timeline-content { border-right: 4px solid var(--orange); }

/* ═══ STATS BAND ═══ */
.stats-band {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}

.stats-band::before,
.stats-band::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
}

.stats-band::before {
    width: 220px; height: 220px;
    top: -80px; left: -60px;
}

.stats-band::after {
    width: 280px; height: 280px;
    bottom: -120px; right: -80px;
}

.stats-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-item .stat-num {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    display: block;
}

.stat-item .stat-label {
    display: block;
    margin-top: 10px;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.85);
}

/* ═══ BENEFIT CARDS (DARK) ═══ */
.benefit-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    transition: transform .3s ease, background .3s ease, border-color .3s ease;
}

.benefit-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,.1);
    border-color: rgba(255,107,53,.45);
}

.benefit-card .benefit-icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(255,107,53,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.25rem;
    color: var(--orange);
}

.benefit-card p {
    color: rgba(255,255,255,.85);
    font-size: .88rem;
    line-height: 1.55;
}

/* ═══ MENTOR CARDS (LIGHT) ═══ */
.mentor-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform .3s ease, box-shadow .3s ease;
}

.mentor-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.mentor-card .mentor-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange-subtle), var(--orange-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.3rem;
    color: var(--orange-dark);
}

.mentor-card p {
    font-size: .9rem;
    color: var(--gray-700);
    font-weight: 500;
}

/* ═══ PARTNER TYPE CARDS (DARK) ═══ */
.partner-type-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 32px 20px;
    text-align: center;
    transition: transform .3s ease, background .3s ease, border-color .3s ease;
}

.partner-type-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,.1);
    border-color: rgba(255,107,53,.45);
}

.partner-type-card i {
    display: block;
    font-size: 1.9rem;
    color: var(--orange);
    margin-bottom: 14px;
}

.partner-type-card h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
}

.partner-section-cta {
    text-align: center;
    margin-top: 48px;
}

.partner-section-cta a {
    display: inline-block;
    color: var(--orange-light);
    font-weight: 600;
    font-size: .95rem;
    letter-spacing: .5px;
    border-bottom: 1px solid rgba(255,143,101,.5);
    padding-bottom: 4px;
    transition: color .3s ease, border-color .3s ease;
}

.partner-section-cta a:hover {
    color: var(--white);
    border-color: var(--white);
}

/* ═══ VISION & MISSION (DARK) ═══ */
.vm-block h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 16px;
}

.vm-block > p {
    color: rgba(255,255,255,.8);
    line-height: 1.8;
    margin-bottom: 16px;
}

.vision-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50px;
    padding: 10px 16px;
    color: rgba(255,255,255,.82);
    font-size: .85rem;
    transition: background .3s ease, border-color .3s ease;
}

.vision-chip:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,107,53,.4);
}

.vision-chip i {
    color: var(--orange);
    font-size: .8rem;
}

.mission-quote {
    margin-top: 24px;
    padding: 26px 24px;
    background: rgba(255,255,255,.06);
    border-left: 4px solid var(--orange);
    border-radius: 0 16px 16px 0;
}

.mission-quote p {
    font-style: italic;
    color: rgba(255,255,255,.85);
    font-size: 1.05rem;
    line-height: 1.7;
}

.mission-quote .mission-purpose {
    color: var(--orange);
    margin-top: 10px;
    font-style: normal;
    font-weight: 600;
}

/* ═══ HOMEPAGE QUOTE CARDS (TESTIMONIALS) ═══ */
.quote-card {
    background: var(--off-white);
    border-radius: 16px;
    border-left: 4px solid var(--orange);
    padding: 32px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform .3s ease, box-shadow .3s ease;
}

.quote-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.quote-card .quote-text {
    font-style: italic;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 12px;
}

/* ═══ REDUCED MOTION ═══ */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        transition-delay: 0s !important;
    }
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: repeat(2, 1fr); }
    .winners-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .section-header h2 { font-size: 2rem; }

    .menu-toggle { display: flex; }

    .nav-menu {
        position: fixed;
        top: var(--header-h); left: 0; right: 0;
        background: rgba(255,255,255, .98);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        transform: translateY(-120%);
        transition: transform .4s ease;
        box-shadow: var(--shadow-md);
    }

    .nav-menu.open { transform: translateY(0); }
    .nav-menu a { color: var(--gray-600) !important; font-size: 1rem; }

    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        padding: 0 0 0 16px;
        display: none;
    }

    .nav-dropdown.open .dropdown-menu { display: block; }

    .hero-content { margin: 0 24px; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-arrow { display: none; }
    .hero-script { font-size: 1.5rem; }

    .founder-grid { grid-template-columns: 1fr; gap: 40px; }
    .jury-card { grid-template-columns: 1fr; }
    .jury-card:nth-child(even) { direction: ltr; }
    .jury-info { padding: 20px !important; }
    .jury-img { max-height: 300px; }

    .team-grid,
    .about-grid,
    .winners-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; }
    .page-banner h1 { font-size: 2rem; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
    .stat-item .stat-num { font-size: 2rem; }
    .vision-mission-grid { grid-template-columns: 1fr; gap: 40px; }
    .journey-steps-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .mentor-grid { grid-template-columns: repeat(2, 1fr); }
    .partner-types-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonial-grid { grid-template-columns: 1fr; }
    .categories-grid { grid-template-columns: 1fr; }
    .category-cards-grid { grid-template-columns: 1fr; }
    .awaits-grid { grid-template-columns: 1fr; }
    .partner-cats-grid { grid-template-columns: repeat(2, 1fr); }
    .pillars-grid { grid-template-columns: 1fr; }

    .showcase-grid { grid-template-columns: repeat(2, 1fr); }
    .showcase-tile.tall,
    .showcase-tile.tall-2 { margin: 0; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .image-banner { aspect-ratio: 16 / 9; }

    .timeline-step,
    .timeline-step.even,
    .timeline-step.odd {
        flex-direction: column;
        gap: 16px;
    }

    .timeline-step.odd .timeline-content { border-right: none; border-left: 4px solid var(--orange); }

    .testimonial-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .testimonial-card img {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2rem; }
    .hero-content p { font-size: 1rem; }
    .section-header h2 { font-size: 1.75rem; }
    .benefits-grid { grid-template-columns: 1fr; }
    .mentor-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; gap: 28px; }
    .partner-types-grid { grid-template-columns: 1fr; }
    .partner-cats-grid { grid-template-columns: 1fr; }
    .showcase-grid,
    .gallery-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════
   INNER PAGE STYLES
   ════════════════════════════════════════ */

.page-hero {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,107,53,0.12), transparent 60%),
                radial-gradient(circle at 80% 50%, rgba(201,154,67,0.08), transparent 60%);
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 12px;
    position: relative;
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--orange-light);
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.content-block {
    max-width: 900px;
    margin: 0 auto;
}

.content-block h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--gray-900);
    margin-top: 50px;
    margin-bottom: 20px;
}

.content-block h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gray-800);
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-block p {
    color: var(--gray-600);
    margin-bottom: 16px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.section-dark .content-block p {
    color: rgba(255,255,255,.82);
}

.content-block ul {
    margin: 20px 0 20px 20px;
}

.content-block ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    color: var(--gray-600);
}

.content-block ul li::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--orange);
}

.text-center { text-align: center; }

/* Testimonials */
.section-dark {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: var(--white);
}

.section-dark .section-header h2 { color: var(--white); }
.section-dark .section-header p { color: var(--gray-400); }

.testimonial-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    align-items: center;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
}

.testimonial-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--orange);
}

.testimonial-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-300);
    margin-bottom: 15px;
}

.testimonial-text h4 {
    font-family: var(--font-heading);
    color: var(--orange);
    font-size: 1.1rem;
}

/* Gallery Albums */
.gallery-albums {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.album-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4 / 3;
    display: block;
    transition: transform .4s ease, box-shadow .4s ease;
}

.album-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.album-img {
    width: 100%;
    height: 100%;
}

.album-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.album-card:hover .album-img img {
    transform: scale(1.08);
}

.album-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

.album-info h3 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.2rem;
}

/* Winners grid large */
.winners-lg {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: 0 auto;
}

/* Registration Layout */
.registration-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    align-items: start;
}

.eligibility-card-form {
    background: var(--gray-900);
    border-radius: 16px;
    overflow: hidden;
    position: sticky;
    top: 100px;
}

.eligibility-card-form img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.eligibility-content {
    padding: 24px;
}

.eligibility-content p {
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.eligibility-content hr {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.15);
    margin: 12px 0;
}

.eligibility-content h4 {
    color: var(--orange);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.eligibility-content i {
    color: var(--gold-light);
    margin-right: 8px;
    font-size: 13px;
}

.registration-form {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.registration-form h2 {
    font-family: var(--font-heading);
    color: var(--gray-900);
    font-size: 1.6rem;
    margin-bottom: 30px;
}

.form-section-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--orange-dark);
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--gray-200);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray-800);
    background: var(--off-white);
    transition: border-color .3s ease, box-shadow .3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
}

.form-group textarea {
    resize: vertical;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: .3px;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%239ca3af' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 42px;
    cursor: pointer;
}

.file-upload input[type="file"] {
    padding: 12px;
    border: 1.5px dashed var(--gray-400);
    border-radius: 8px;
    background: var(--off-white);
    cursor: pointer;
    width: 100%;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--gray-600);
    transition: border-color .3s ease, background .3s ease;
}

.file-upload input[type="file"]:hover {
    border-color: var(--orange);
    background: var(--orange-subtle);
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.registration-video {
    width: 100%;
    max-width: 900px;
    height: 500px;
    border-radius: 16px;
    border: none;
}

/* Winners Responsive */
@media (max-width: 1024px) {
    .gallery-albums { grid-template-columns: repeat(2, 1fr); }
    .registration-layout { grid-template-columns: 1fr; }
    .eligibility-card-form { position: static; }
    .registration-form { padding: 24px; }
}

@media (max-width: 768px) {
    .page-hero h1 { font-size: 2.5rem; }
    .page-hero p { font-size: 1rem; }
    .content-block h2 { font-size: 1.8rem; }
    .gallery-albums { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .registration-video { height: 280px; }
    .winners-lg { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .page-hero h1 { font-size: 2rem; }
    .content-block h2 { font-size: 1.5rem; }
}
