/* ===== YUVA ALUMNI PAGE - 2025 ULTRA MODERN STYLES (Themed) ===== */

/* Import your root variables */
:root {
    /* India Theme Color Palette */
    --saffron-primary: #FF9933;
    --saffron-light: #FFB366;
    --saffron-dark: #E67300;
    --saffron-pale: #FFE5CC;
    --white-primary: #FFFFFF;
    --white-warm: #FAFAF9;
    --white-cream: #F5F5F4;
    --green-primary: #138808;
    --green-light: #22C55E;
    --green-dark: #0F6606;
    --green-pale: #D1FAE5;
    --navy-chakra: #000080;
    --navy-dark: #00005C;

    /* Semantic Colors */
    --color-primary: var(--navy-chakra);
    --color-secondary: var(--green-primary);
    --color-accent: var(--saffron-primary);
    --color-error: #ef4444;
    --color-error-pale: #fef2f2;
    --color-info-pale: #EBF4FF;

    /* Text & Background */
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #64748B;
    --text-on-dark: var(--white-primary);
    --text-on-accent: var(--white-primary);
    --bg-base: var(--white-warm);
    --bg-elevated: var(--white-primary);
    --bg-subtle: var(--white-cream);
    --bg-muted: #F1F5F9;
    --border-light: #E2E8F0;
    --border-medium: #CBD5E1;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, var(--saffron-light) 0%, var(--white-primary) 50%, var(--green-light) 100%);
    --gradient-saffron: linear-gradient(135deg, var(--saffron-primary) 0%, var(--saffron-dark) 100%);
    --gradient-green: linear-gradient(135deg, var(--green-light) 0%, var(--green-primary) 100%);
    --gradient-navy: linear-gradient(135deg, var(--navy-chakra) 0%, var(--navy-dark) 100%);

    /* Shadows & Radii */
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Add at the very top of your CSS */
* {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
    margin: 0;
    padding: 0;
}

.main {
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
}


/* ===== HERO SECTION ===== */
.alumni-hero {
    position: relative;
    min-height: 100vh;
    margin-top: 80px;
    background: var(--gradient-hero);
    display: grid;
    /* Changed to grid */
    place-items: center;
    /* Changed to grid */
    padding: 4rem 2rem;
    overflow: hidden;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    /* Matched to home-page */
}

/* .hero-particles removed */

/* ===== NEW: Added from home.css ===== */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ===== NEW: Added from home.css ===== */
.hero-chakra-bg {
    grid-column: 1 / -1;
    grid-row: 1 / -1;
    width: 500px;
    height: 500px;
    z-index: 1;
    color: var(--navy-chakra);
    opacity: 0.08;
    stroke: currentColor;
    fill: currentColor;
    animation: spin 60s linear infinite;
    pointer-events: none;
}

.hero-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    /* Above chakra */
    text-align: center;
    grid-column: 1 / -1;
    /* Added for grid */
    grid-row: 1 / -1;
    /* Added for grid */
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--saffron-pale);
    /* Matched to home.css */
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: var(--saffron-dark);
    /* Matched to home.css */
    font-weight: 500;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
    border: 1px solid var(--saffron-light);
    /* Added for consistency */
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--text-primary);
    /* Changed from white */
    margin-bottom: 1rem;
}

/* This accent text is already saffron, perfect! */
.hero-title-accent-text {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.gradient-text {
    background: var(--gradient-saffron);
    /* Changed to new gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    /* Changed from white */
    max-width: 600px;
    margin: 0 auto 2.5rem;
    animation: fadeIn 1s ease-out 0.4s backwards;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeIn 1s ease-out 0.6s backwards;
}

.btn-primary,
.btn-secondary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-full);
    /* Matched to home.css */
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    /* Matched to home.css */
}

.btn-primary {
    background: var(--saffron-primary);
    /* Matched to home.css */
    color: var(--text-on-accent);
    /* Matched to home.css */
    box-shadow: var(--shadow-md);
    /* Matched to home.css */
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    /* Matched to home.css */
    box-shadow: var(--shadow-lg);
    /* Matched to home.css */
    background: var(--saffron-dark);
    /* Matched to home.css */
}

.btn-secondary {
    background: transparent;
    /* Matched to home.css */
    color: var(--navy-chakra);
    /* Matched to home.css */
    border: 2px solid var(--navy-chakra);
    /* Matched to home.css */
}

.btn-secondary:hover {
    background: var(--navy-chakra);
    /* Matched to home.css */
    color: var(--white-primary);
    /* Matched to home.css */
    transform: translateY(-3px) scale(1.05);
    /* Added */
    box-shadow: var(--shadow-lg);
    /* Added */
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 0.8s backwards;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    /* Changed from white */
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    /* Changed from white */
    margin-top: 0.5rem;
}

.hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 1080px;
    height: 400px;
    display: none;
    pointer-events: none;
}

@media (min-width: 1200px) {
    .hero-visual {
        display: block;
    }
}

.floating-card {
    position: absolute;
    background: var(--bg-elevated);
    /* Changed from rgba */
    backdrop-filter: blur(10px);
    padding: 0.875rem 1.25rem;
    border-radius: var(--radius-xl);
    /* Mapped from --radius-lg */
    color: var(--text-primary);
    /* Changed from white */
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.875rem;
    white-space: nowrap;
    will-change: transform;
    animation: floatModern 4s ease-in-out infinite;
    border: 1px solid var(--border-light);
    /* Added */
    box-shadow: var(--shadow-lg);
    /* Added */
}

.floating-card i {
    font-size: 1.25rem;
    color: var(--color-primary);
    /* Added */
}

/* Proper positioning within container bounds */
.card-1 {
    top: -2%;
    left: -0%;
    animation-delay: 0s;
}

.card-2 {
    top: 25%;
    right: 0;
    animation-delay: 1s;
}

.card-3 {
    bottom: 25%;
    left: -2%;
    animation-delay: 2s;
}

.card-4 {
    bottom: 0;
    right: 15%;
    animation-delay: 3s;
}

/* Smoother, modern animation */
@keyframes floatModern {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }

    25% {
        transform: translateY(-15px) scale(1.02);
        opacity: 0.95;
    }

    50% {
        transform: translateY(-25px) scale(1.05);
        opacity: 0.9;
    }

    75% {
        transform: translateY(-15px) scale(1.02);
        opacity: 0.95;
    }
}

/* @keyframes orbit, @keyframes pulse removed for brevity (already in home.css) */

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    padding: 5rem 2rem;
    background: var(--bg-subtle);
    /* Mapped from --gray-50 */
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    /* Mapped from --gray-900 */
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    /* Mapped from --gray-600 */
}

.benefits-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--bg-elevated);
    /* Mapped from white */
    padding: 2rem;
    border-radius: var(--radius-2xl);
    /* Mapped from --radius-xl */
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    /* Mapped from --transition */
    cursor: pointer;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-navy);
    /* Mapped from --gradient-primary */
    border-radius: var(--radius-xl);
    /* Mapped from --radius-lg */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-primary);
    /* Mapped from white */
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    /* Mapped from --gray-900 */
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--text-secondary);
    /* Mapped from --gray-600 */
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.benefit-metric {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-light);
    /* Mapped from --gray-200 */
}

.metric-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-primary);
    /* Mapped from --primary */
}

.metric-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    /* Mapped from --gray-500 */
}

/* ===== STORIES SECTION ===== */
.stories-section {
    padding: 5rem 2rem;
    background: var(--bg-base);
    /* Mapped from white */
}

.stories-carousel {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.story-card {
    background: var(--bg-elevated);
    /* Mapped from --gray-50 */
    border-radius: var(--radius-2xl);
    /* Mapped from --radius-xl */
    overflow: hidden;
    transition: var(--transition-base);
    /* Mapped from --transition */
}

.story-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-xl);
}

.story-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(90deg, var(--bg-subtle) 25%, var(--border-light) 50%, var(--bg-subtle) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite linear;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.story-image img.loaded {
    opacity: 1;
}

.story-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-primary);
    /* Mapped from --primary */
    color: var(--white-primary);
    /* Mapped from white */
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.story-content {
    padding: 1.5rem;
}

.story-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    /* Mapped from --gray-900 */
    margin-bottom: 0.25rem;
}

.story-role {
    font-size: 0.875rem;
    color: var(--color-primary);
    /* Mapped from --primary */
    font-weight: 600;
    margin-bottom: 1rem;
}

.story-text {
    color: var(--text-secondary);
    /* Mapped from --gray-700 */
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.story-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    /* Mapped from --gray-600 */
}

.story-stats span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* ===== FORM SECTION ===== */
.form-section {
    padding: 5rem 2rem;
    background: var(--bg-subtle);
    /* Mapped from --gray-50 */
}

.form-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    background: var(--bg-elevated);
    /* Mapped from white */
    border-radius: var(--radius-2xl);
    /* Mapped from --radius-xl */
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.form-visual {
    background: var(--gradient-navy);
    /* Mapped from --gradient-primary */
    padding: 3rem;
    color: var(--white-primary);
    /* Mapped from white */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-visual h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.form-visual p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.visual-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.visual-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
}

.visual-stat i {
    font-size: 1.25rem;
    color: var(--saffron-primary);
    /* Mapped from --accent */
}

.alumni-form {
    padding: 3rem;
}

.alumni-form h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    /* Mapped from --gray-900 */
    margin-bottom: 2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
    /* Mapped from --gray-700 */
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-group label i {
    color: var(--color-primary);
    /* Mapped from --primary */
}

.form-group input,
.form-group select {
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-light);
    /* Mapped from --gray-200 */
    border-radius: var(--radius-lg);
    font-size: 1rem;
    transition: var(--transition-base);
    /* Mapped from --transition */
    background: var(--bg-elevated);
    /* Mapped from white */
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    /* Mapped from --primary */
    box-shadow: 0 0 0 3px var(--color-info-pale);
    /* Mapped from rgba */
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.75rem;
    background: var(--bg-subtle);
    /* Mapped from --gray-50 */
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    /* Mapped from --transition */
}

.checkbox-label:hover {
    background: var(--bg-muted);
    /* Mapped from --gray-100 */
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--color-primary);
    /* Mapped from --primary */
}

.btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--gradient-saffron);
    /* Changed to Saffron */
    color: var(--white-primary);
    /* Mapped from white */
    border: none;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    /* Mapped from --transition */
    margin-top: 1.5rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--gradient-saffron);
    /* Keep gradient on hover */
    filter: brightness(1.1);
    /* Add brightness */
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ===== IMAGE UPLOAD STEPS STYLES ===== */
.upload-steps {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    margin-top: 0.75rem;
    padding: 0;
    border-left: 3px solid var(--navy-dark);
    /* Mapped from --primary-light */
    background: var(--bg-subtle);
    /* Mapped from --gray-50 */
    border-radius: 0 8px 8px 0;
}

.upload-steps.show {
    max-height: 500px;
    padding: 1rem 1.5rem;
}

.upload-steps h4 {
    margin-top: 0;
    color: var(--navy-dark);
    /* Mapped from --primary-dark */
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.upload-steps ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0.5rem 0 0 0;
}

.upload-steps li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    /* Mapped from --gray-700 */
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.upload-steps li .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    /* Mapped from --primary */
    color: var(--white-primary);
    /* Mapped from white */
    font-weight: bold;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    font-size: 0.75rem;
}

.upload-steps a {
    color: var(--color-primary);
    /* Mapped from --primary */
    font-weight: 600;
    text-decoration: none;
}

.upload-steps a:hover {
    text-decoration: underline;
}

/* ===== COMMUNITY SECTION (REVERTED) ===== */
.community-section {
    padding: 5rem 2rem;
    background: var(--bg-elevated);
    /* Reverted to white */
}

.community-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.community-card {
    text-decoration: none;
    background: var(--bg-subtle);
    /* Reverted to light gray */
    padding: 2rem;
    border-radius: var(--radius-2xl);
    /* Mapped from --radius-xl */
    text-align: center;
    transition: var(--transition-base);
    /* Mapped from --transition */
    border: 2px solid transparent;
}

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

.community-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.community-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.community-card p {
    color: var(--text-secondary);
    /* Mapped from --gray-600 */
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.member-count {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--bg-elevated);
    /* Mapped from white */
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.community-card.linkedin {
    border-color: #0077b5;
}

.community-card.linkedin i {
    color: #0077b5;
}

.community-card.linkedin h3 {
    color: #0077b5;
}

.community-card.linkedin .member-count {
    color: #0077b5;
}

.community-card.whatsapp {
    border-color: #25d366;
}

.community-card.whatsapp i {
    color: #25d366;
}

.community-card.whatsapp h3 {
    color: #25d366;
}

.community-card.whatsapp .member-count {
    color: #25d366;
}

.community-card.telegram {
    border-color: #0088cc;
}

.community-card.telegram i {
    color: #0088cc;
}

.community-card.telegram h3 {
    color: #0088cc;
}

.community-card.telegram .member-count {
    color: #0088cc;
}

.community-card.facebook {
    border-color: #1877f2;
}

.community-card.facebook i {
    color: #1877f2;
}

.community-card.facebook h3 {
    color: #1877f2;
}

.community-card.facebook .member-count {
    color: #1877f2;
}


/* ===== SKELETON LOADER STYLES ===== */
.story-card-skeleton {
    background: var(--bg-elevated);
    /* Mapped from --gray-50 */
    border-radius: var(--radius-2xl);
    /* Mapped from --radius-xl */
    overflow: hidden;
}

.skeleton {
    background: linear-gradient(90deg, var(--bg-subtle) 25%, var(--border-light) 50%, var(--bg-subtle) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite linear;
    border-radius: var(--radius-lg);
}

.skeleton-image {
    height: 250px;
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

.skeleton-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.skeleton-line {
    height: 1rem;
    border-radius: var(--radius-lg);
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* For error message on failed load */
.stories-carousel .error-message {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--color-error);
    /* Mapped from --error */
    font-weight: 600;
    background: var(--color-error-pale);
    /* Mapped from rgba */
    padding: 1.5rem;
    border-radius: var(--radius-2xl);
    /* Mapped from --radius-xl */
}

/* ===== ANIMATIONS ===== */
/* @keyframes float, @keyframes pulse, @keyframes fadeIn removed for brevity */

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .form-container {
        grid-template-columns: 1fr;
    }

    .form-visual {
        padding: 2rem;
    }

    .alumni-form {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .alumni-hero {
        min-height: auto;
        padding: 3rem 1.5rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .benefits-grid,
    .stories-carousel {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .checkbox-grid {
        grid-template-columns: 1fr;
    }

    .community-grid {
        grid-template-columns: 1fr;
    }

    .benefits-section,
    .stories-section,
    .form-section,
    .community-section {
        padding: 3rem 1.5rem;
    }
}

/* ===== FLASH NOTIFICATIONS ===== */
.flash-container {
    position: fixed;
    left: auto;
    top: 20px;
    right: 20px;
    z-index: 30000000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.flash-notification {
    display: flex;
    align-items: center;
    /* Centered icons */
    gap: 1rem;
    background: var(--bg-elevated);
    /* Mapped from white */
    padding: 1rem 1.5rem;
    border-radius: var(--radius-xl);
    /* Mapped from --radius-lg */
    box-shadow: var(--shadow-xl);
    min-width: 300px;
    max-width: 400px;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 4px solid;
}

.flash-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.flash-notification.success {
    border-left-color: var(--green-primary);
    background: var(--green-pale);
}

.flash-notification.error {
    border-left-color: var(--color-error);
    background: var(--color-error-pale);
}

.flash-notification.warning {
    border-left-color: var(--saffron-primary);
    background: var(--saffron-pale);
}

.flash-notification.info {
    border-left-color: var(--navy-chakra);
    background: var(--color-info-pale);
}

.flash-icon {
    width: 24px;
    /* Standardized size */
    height: 24px;
    /* Standardized size */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white-primary);
    /* Icons are white */
}

.flash-notification.success .flash-icon {
    background: var(--green-primary);
}

.flash-notification.error .flash-icon {
    background: var(--color-error);
}

.flash-notification.warning .flash-icon {
    background: var(--saffron-primary);
}

.flash-notification.info .flash-icon {
    background: var(--navy-chakra);
}

.flash-content {
    flex: 1;
}

.flash-title {
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--text-primary);
    /* Mapped from --gray-900 */
    margin-bottom: 0.25rem;
}

.flash-message {
    font-size: 0.875rem;
    color: var(--text-secondary);
    /* Mapped from --gray-600 */
    line-height: 1.4;
}

.flash-close {
    background: none;
    border: none;
    color: var(--text-muted);
    /* Mapped from --gray-400 */
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    /* Mapped from --transition */
}

.flash-close:hover {
    color: var(--text-primary);
    /* Mapped from --gray-600 */
    background: var(--bg-muted);
    /* Added bg on hover */
}

/* ===== MOBILE MEDIA QUERIES FOR ALUMNI PAGE - 2025 ===== */

/* ===== Tablets and Small Laptops (1024px and below) ===== */
@media screen and (max-width: 1024px) {
    .alumni-hero {
        margin-top: 70px;
        padding: 3.5rem 1.5rem;
        min-height: 85vh;
    }

    .hero-title {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }

    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 550px;
    }

    .hero-stats {
        gap: 2.5rem;
    }

    .stat-number {
        font-size: 2.25rem;
    }

    /* Hide floating cards on tablets */
    .hero-visual {
        display: none !important;
    }

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.75rem;
    }

    .stories-carousel {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.75rem;
    }

    .form-container {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-visual {
        padding: 2.5rem 2rem;
        border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
    }

    .alumni-form {
        padding: 2.5rem 2rem;
    }

    .community-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.25rem;
    }
}

/* ===== Large Mobile / Small Tablets (768px and below) ===== */
@media screen and (max-width: 768px) {

    /* Flash Notifications */
    .flash-container {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: 100%;
        gap: 10px;
    }

    .flash-notification {
        min-width: auto;
        max-width: 100%;
        padding: 14px 16px;
    }

    .flash-title {
        font-size: 13px;
    }

    .flash-message {
        font-size: 12px;
    }

    .flash-icon {
        width: 22px;
        height: 22px;
        font-size: 12px;
    }

    /* Hero Section */
    .alumni-hero {
        margin-top: 60px;
        padding: 3rem 1.25rem;
        min-height: 80vh;
        border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    }

    .hero-chakra-bg {
        width: 350px;
        height: 350px;
        opacity: 0.06;
    }

    .hero-content-wrapper {
        max-width: 100%;
    }

    .hero-badge {
        font-size: 13px;
        padding: 0.45rem 1.25rem;
        margin-bottom: 1.75rem;
        gap: 0.4rem;
    }

    .hero-badge i {
        font-size: 13px;
    }

    .hero-title {
        font-size: clamp(1.85rem, 5.5vw, 2.75rem);
        margin-bottom: 0.9rem;
        line-height: 1.15;
    }

    .hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 2.25rem;
        padding: 0 8px;
        line-height: 1.5;
    }

    .hero-cta {
        gap: 0.9rem;
        margin-bottom: 2.75rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.85rem 1.75rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-stats {
        gap: 2rem;
        flex-wrap: wrap;
    }

    .stat-number {
        font-size: 2.25rem;
    }

    .stat-label {
        font-size: 0.8rem;
        margin-top: 0.4rem;
    }

    /* Benefits Section */
    .benefits-section {
        padding: 4rem 1.25rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: clamp(1.75rem, 4vw, 2.25rem);
        margin-bottom: 0.65rem;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 12px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-card {
        padding: 1.75rem 1.5rem;
    }

    .benefit-card:hover {
        transform: translateY(-5px);
    }

    .benefit-icon {
        width: 54px;
        height: 54px;
        font-size: 1.35rem;
        margin-bottom: 1.25rem;
    }

    .benefit-card h3 {
        font-size: 1.15rem;
        margin-bottom: 0.65rem;
    }

    .benefit-card p {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .benefit-metric {
        padding-top: 0.9rem;
    }

    .metric-value {
        font-size: 1.6rem;
    }

    .metric-label {
        font-size: 0.8rem;
    }

    /* Stories Section */
    .stories-section {
        padding: 4rem 1.25rem;
    }

    .stories-carousel {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .story-image {
        height: 220px;
    }

    .story-badge {
        font-size: 0.8rem;
        padding: 0.45rem 0.9rem;
        top: 0.9rem;
        right: 0.9rem;
    }

    .story-content {
        padding: 1.35rem;
    }

    .story-content h3 {
        font-size: 1.15rem;
        margin-bottom: 0.2rem;
    }

    .story-role {
        font-size: 0.8rem;
        margin-bottom: 0.9rem;
    }

    .story-text {
        font-size: 0.95rem;
        margin-bottom: 0.9rem;
    }

    .story-stats {
        font-size: 0.8rem;
    }

    /* Form Section */
    .form-section {
        padding: 4rem 1.25rem;
    }

    .form-container {
        border-radius: var(--radius-xl);
    }

    .form-visual {
        padding: 2.25rem 1.75rem;
        border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    }

    .form-visual h2 {
        font-size: 1.75rem;
        margin-bottom: 0.9rem;
    }

    .form-visual p {
        font-size: 1rem;
        margin-bottom: 1.75rem;
    }

    .visual-stat {
        font-size: 0.95rem;
        gap: 0.65rem;
    }

    .visual-stat i {
        font-size: 1.15rem;
    }

    .alumni-form {
        padding: 2.25rem 1.75rem;
    }

    .alumni-form h3 {
        font-size: 1.6rem;
        margin-bottom: 1.75rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.35rem;
        margin-bottom: 1.35rem;
    }

    .form-group label {
        font-size: 0.8rem;
        margin-bottom: 0.45rem;
    }

    .form-group input,
    .form-group select {
        padding: 0.8rem 0.9rem;
        font-size: 0.95rem;
    }

    .checkbox-grid {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }

    .checkbox-label {
        padding: 0.7rem;
        font-size: 0.95rem;
    }

    .btn-submit {
        padding: 0.9rem 1.75rem;
        font-size: 0.95rem;
        margin-top: 1.35rem;
    }

    .upload-steps {
        margin-top: 0.65rem;
    }

    .upload-steps.show {
        padding: 0.9rem 1.35rem;
    }

    .upload-steps h4 {
        font-size: 0.85rem;
    }

    .upload-steps li {
        font-size: 0.8rem;
        padding: 0.45rem 0;
    }

    .upload-steps .step-number {
        width: 18px;
        height: 18px;
        font-size: 0.7rem;
    }

    /* Community Section */
    .community-section {
        padding: 4rem 1.25rem;
    }

    .community-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .community-card {
        padding: 1.75rem 1.5rem;
    }

    .community-card i {
        font-size: 2.75rem;
        margin-bottom: 0.9rem;
    }

    .community-card h3 {
        font-size: 1.15rem;
        margin-bottom: 0.45rem;
    }

    .community-card p {
        font-size: 0.8rem;
        margin-bottom: 0.9rem;
    }

    .member-count {
        padding: 0.45rem 0.9rem;
        font-size: 0.8rem;
    }

    /* Skeleton Loaders */
    .skeleton-image {
        height: 220px;
    }

    .skeleton-content {
        padding: 1.35rem;
        gap: 0.65rem;
    }

    .skeleton-line {
        height: 0.9rem;
    }
}

/* ===== Medium Mobile (480px - 600px) ===== */
@media screen and (max-width: 600px) {
    .alumni-hero {
        padding: 2.75rem 1rem;
        min-height: 75vh;
    }

    .hero-chakra-bg {
        width: 300px;
        height: 300px;
        opacity: 0.05;
    }

    .hero-badge {
        font-size: 12px;
        padding: 0.4rem 1rem;
        margin-bottom: 1.5rem;
        gap: 0.35rem;
    }

    .hero-badge i {
        font-size: 12px;
    }

    .hero-title {
        font-size: clamp(1.65rem, 5vw, 2.25rem);
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        padding: 0 4px;
    }

    .hero-cta {
        gap: 0.8rem;
        margin-bottom: 2.5rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        max-width: 260px;
    }

    .hero-stats {
        gap: 1.75rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    /* Benefits Section */
    .benefits-section {
        padding: 3.5rem 1rem;
    }

    .section-header {
        margin-bottom: 2.25rem;
    }

    .section-title {
        font-size: clamp(1.6rem, 3.5vw, 2rem);
        margin-bottom: 0.6rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .benefits-grid {
        gap: 1.35rem;
    }

    .benefit-card {
        padding: 1.6rem 1.35rem;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-bottom: 1.15rem;
    }

    .benefit-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }

    .benefit-card p {
        font-size: 0.9rem;
        margin-bottom: 1.15rem;
    }

    .metric-value {
        font-size: 1.5rem;
    }

    /* Stories Section */
    .stories-section {
        padding: 3.5rem 1rem;
    }

    .stories-carousel {
        gap: 1.35rem;
    }

    .story-image {
        height: 200px;
    }

    .story-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .story-content {
        padding: 1.25rem;
    }

    .story-content h3 {
        font-size: 1.1rem;
    }

    .story-role {
        font-size: 0.75rem;
        margin-bottom: 0.85rem;
    }

    .story-text {
        font-size: 0.9rem;
        margin-bottom: 0.85rem;
    }

    .story-stats {
        font-size: 0.75rem;
        gap: 0.85rem;
    }

    /* Form Section */
    .form-section {
        padding: 3.5rem 1rem;
    }

    .form-visual {
        padding: 2rem 1.5rem;
    }

    .form-visual h2 {
        font-size: 1.6rem;
        margin-bottom: 0.85rem;
    }

    .form-visual p {
        font-size: 0.95rem;
        margin-bottom: 1.6rem;
    }

    .visual-stat {
        font-size: 0.9rem;
        gap: 0.6rem;
    }

    .visual-stat i {
        font-size: 1.1rem;
    }

    .alumni-form {
        padding: 2rem 1.5rem;
    }

    .alumni-form h3 {
        font-size: 1.5rem;
        margin-bottom: 1.6rem;
    }

    .form-grid {
        gap: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .form-group label {
        font-size: 0.75rem;
    }

    .form-group input,
    .form-group select {
        padding: 0.75rem 0.85rem;
        font-size: 0.9rem;
    }

    .checkbox-label {
        padding: 0.65rem;
        font-size: 0.9rem;
    }

    .btn-submit {
        padding: 0.85rem 1.6rem;
        font-size: 0.9rem;
    }

    /* Community Section */
    .community-section {
        padding: 3.5rem 1rem;
    }

    .community-card {
        padding: 1.6rem 1.35rem;
    }

    .community-card i {
        font-size: 2.5rem;
        margin-bottom: 0.85rem;
    }

    .community-card h3 {
        font-size: 1.1rem;
    }

    .community-card p {
        font-size: 0.75rem;
    }

    .member-count {
        padding: 0.4rem 0.85rem;
        font-size: 0.75rem;
    }
}

/* ===== Small Mobile (480px and below) ===== */
@media screen and (max-width: 480px) {

    /* Flash Notifications */
    .flash-notification {
        padding: 12px 14px;
        border-radius: var(--radius-lg);
    }

    .flash-icon {
        width: 20px;
        height: 20px;
        font-size: 11px;
    }

    .flash-title {
        font-size: 12px;
        margin-bottom: 2px;
    }

    .flash-message {
        font-size: 11px;
    }

    .flash-close {
        width: 18px;
        height: 18px;
        font-size: 11px;
    }

    /* Hero Section */
    .alumni-hero {
        margin-top: 60px;
        padding: 2.5rem 0.9rem;
        min-height: 70vh;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }

    .hero-chakra-bg {
        width: 250px;
        height: 250px;
        opacity: 0.04;
    }

    .hero-badge {
        font-size: 11px;
        padding: 0.35rem 0.9rem;
        margin-bottom: 1.35rem;
        gap: 0.3rem;
    }

    .hero-badge i {
        font-size: 11px;
    }

    .hero-title {
        font-size: clamp(1.45rem, 4.5vw, 1.95rem);
        margin-bottom: 0.75rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.85rem;
        padding: 0;
        line-height: 1.5;
    }

    .hero-cta {
        gap: 0.75rem;
        margin-bottom: 2.25rem;
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.75rem 1.35rem;
        font-size: 0.85rem;
        width: 100%;
        max-width: 240px;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.85rem;
    }

    .stat-label {
        font-size: 0.7rem;
        margin-top: 0.35rem;
    }

    /* Benefits Section */
    .benefits-section {
        padding: 3rem 0.9rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: clamp(1.45rem, 3vw, 1.85rem);
        margin-bottom: 0.55rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        padding: 0 8px;
    }

    .benefits-grid {
        gap: 1.25rem;
    }

    .benefit-card {
        padding: 1.5rem 1.25rem;
        border-radius: var(--radius-xl);
    }

    .benefit-icon {
        width: 46px;
        height: 46px;
        font-size: 1.15rem;
        margin-bottom: 1rem;
        border-radius: var(--radius-lg);
    }

    .benefit-card h3 {
        font-size: 1.05rem;
        margin-bottom: 0.55rem;
    }

    .benefit-card p {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .benefit-metric {
        padding-top: 0.85rem;
    }

    .metric-value {
        font-size: 1.4rem;
    }

    .metric-label {
        font-size: 0.7rem;
    }

    /* Stories Section */
    .stories-section {
        padding: 3rem 0.9rem;
    }

    .stories-carousel {
        gap: 1.25rem;
    }

    .story-card {
        border-radius: var(--radius-xl);
    }

    .story-image {
        height: 180px;
    }

    .story-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.75rem;
        top: 0.85rem;
        right: 0.85rem;
    }

    .story-content {
        padding: 1.15rem;
    }

    .story-content h3 {
        font-size: 1.05rem;
        margin-bottom: 0.15rem;
    }

    .story-role {
        font-size: 0.7rem;
        margin-bottom: 0.8rem;
    }

    .story-text {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 0.8rem;
    }

    .story-stats {
        font-size: 0.7rem;
        gap: 0.8rem;
        flex-wrap: wrap;
    }

    /* Form Section */
    .form-section {
        padding: 3rem 0.9rem;
    }

    .form-container {
        border-radius: var(--radius-xl);
    }

    .form-visual {
        padding: 1.85rem 1.35rem;
        border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    }

    .form-visual h2 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .form-visual p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    .visual-stats {
        gap: 0.9rem;
    }

    .visual-stat {
        font-size: 0.85rem;
        gap: 0.55rem;
    }

    .visual-stat i {
        font-size: 1.05rem;
    }

    .alumni-form {
        padding: 1.85rem 1.35rem;
    }

    .alumni-form h3 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .form-grid {
        gap: 1.15rem;
        margin-bottom: 1.15rem;
    }

    .form-group label {
        font-size: 0.7rem;
        margin-bottom: 0.4rem;
        gap: 0.4rem;
    }

    .form-group label i {
        font-size: 0.75rem;
    }

    .form-group input,
    .form-group select {
        padding: 0.7rem 0.8rem;
        font-size: 0.85rem;
        border-radius: var(--radius-lg);
    }

    .checkbox-grid {
        gap: 0.85rem;
        margin-top: 0.65rem;
    }

    .checkbox-label {
        padding: 0.6rem;
        font-size: 0.85rem;
        border-radius: var(--radius-lg);
    }

    .checkbox-label input[type="checkbox"] {
        width: 16px;
        height: 16px;
    }

    .btn-submit {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
        margin-top: 1.25rem;
        border-radius: var(--radius-lg);
    }

    .upload-steps.show {
        padding: 0.85rem 1.25rem;
        max-height: 450px;
    }

    .upload-steps h4 {
        font-size: 0.8rem;
        gap: 0.4rem;
    }

    .upload-steps li {
        font-size: 0.75rem;
        padding: 0.4rem 0;
        gap: 0.65rem;
    }

    .upload-steps .step-number {
        width: 17px;
        height: 17px;
        font-size: 0.65rem;
    }

    /* Community Section */
    .community-section {
        padding: 3rem 0.9rem;
    }

    .community-grid {
        gap: 1.15rem;
    }

    .community-card {
        padding: 1.5rem 1.25rem;
        border-radius: var(--radius-xl);
    }

    .community-card i {
        font-size: 2.35rem;
        margin-bottom: 0.8rem;
    }

    .community-card h3 {
        font-size: 1.05rem;
        margin-bottom: 0.4rem;
    }

    .community-card p {
        font-size: 0.7rem;
        margin-bottom: 0.85rem;
    }

    .member-count {
        padding: 0.35rem 0.8rem;
        font-size: 0.7rem;
    }

    /* Skeleton Loaders */
    .skeleton-image {
        height: 180px;
    }

    .skeleton-content {
        padding: 1.15rem;
        gap: 0.6rem;
    }

    .skeleton-line {
        height: 0.85rem;
    }

    .error-message {
        padding: 1.35rem;
        font-size: 0.9rem;
    }
}

/* ===== Extra Small Mobile (375px and below) ===== */
@media screen and (max-width: 375px) {
    .alumni-hero {
        padding: 2.25rem 0.8rem;
        min-height: 68vh;
        margin-left: 5px;
        margin-right: 5px;
    }

    .hero-chakra-bg {
        width: 220px;
        height: 220px;
    }

    .hero-badge {
        font-size: 10px;
        padding: 0.3rem 0.8rem;
        margin-bottom: 1.2rem;
    }

    .hero-title {
        font-size: clamp(1.35rem, 4vw, 1.75rem);
        margin-bottom: 0.7rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.7rem;
    }

    .hero-cta {
        gap: 0.7rem;
        margin-bottom: 2rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.7rem 1.25rem;
        font-size: 0.8rem;
        max-width: 220px;
    }

    .hero-stats {
        gap: 1.35rem;
    }

    .stat-number {
        font-size: 1.7rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    /* Sections */
    .benefits-section,
    .stories-section,
    .form-section,
    .community-section {
        padding: 2.75rem 0.8rem;
    }

    .section-title {
        font-size: clamp(1.35rem, 2.8vw, 1.75rem);
        margin-bottom: 0.5rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
    }

    .benefits-grid,
    .stories-carousel {
        gap: 1.15rem;
    }

    .benefit-card {
        padding: 1.35rem 1.15rem;
    }

    .benefit-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
        margin-bottom: 0.9rem;
    }

    .benefit-card h3 {
        font-size: 1rem;
    }

    .benefit-card p {
        font-size: 0.8rem;
    }

    .metric-value {
        font-size: 1.3rem;
    }

    .metric-label {
        font-size: 0.65rem;
    }

    .story-image {
        height: 170px;
    }

    .story-content {
        padding: 1.05rem;
    }

    .story-content h3 {
        font-size: 1rem;
    }

    .story-role,
    .story-stats {
        font-size: 0.65rem;
    }

    .story-text {
        font-size: 0.8rem;
    }

    .form-visual,
    .alumni-form {
        padding: 1.7rem 1.25rem;
    }

    .form-visual h2 {
        font-size: 1.4rem;
    }

    .form-visual p {
        font-size: 0.85rem;
    }

    .visual-stat {
        font-size: 0.8rem;
    }

    .alumni-form h3 {
        font-size: 1.3rem;
        margin-bottom: 1.4rem;
    }

    .form-grid {
        gap: 1.05rem;
    }

    .form-group label {
        font-size: 0.65rem;
    }

    .form-group input,
    .form-group select {
        padding: 0.65rem 0.75rem;
        font-size: 0.8rem;
    }

    .checkbox-label {
        padding: 0.55rem;
        font-size: 0.8rem;
        /* Completed this line */
        border-radius: var(--radius-lg);
    }

    .checkbox-label input[type="checkbox"] {
        width: 16px;
        height: 16px;
    }

    .btn-submit {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
        margin-top: 1.25rem;
        border-radius: var(--radius-lg);
    }

    .upload-steps.show {
        padding: 0.85rem 1.25rem;
        max-height: 450px;
    }

    .upload-steps h4 {
        font-size: 0.8rem;
        gap: 0.4rem;
    }

    .upload-steps li {
        font-size: 0.75rem;
        padding: 0.4rem 0;
        gap: 0.65rem;
    }

    .upload-steps .step-number {
        width: 17px;
        height: 17px;
        font-size: 0.65rem;
    }

    .community-card {
        padding: 1.5rem 1.25rem;
        border-radius: var(--radius-xl);
    }

    .community-card i {
        font-size: 2.35rem;
        margin-bottom: 0.8rem;
    }

    .community-card h3 {
        font-size: 1.05rem;
        margin-bottom: 0.4rem;
    }

    .community-card p {
        font-size: 0.7rem;
        margin-bottom: 0.85rem;
    }

    .member-count {
        padding: 0.35rem 0.8rem;
        font-size: 0.7rem;
    }

    .skeleton-image {
        height: 170px;
    }

    .skeleton-content {
        padding: 1.05rem;
    }

    .error-message {
        padding: 1.35rem;
        font-size: 0.9rem;
    }
}