/* Custom Stylesheet for JU FET Branch Predictor 2026 */

:root {
    /* Color System */
    --color-red-deep: hsl(355, 78%, 52%);
    --color-red-glow: hsl(355, 78%, 62%);
    --color-red-hover: hsl(355, 78%, 45%);
    --color-gold: hsl(38, 100%, 55%);
    --color-gold-glow: hsl(38, 100%, 65%);
    
    --color-bg-dark: hsl(220, 20%, 6%);
    --color-bg-card: hsla(220, 20%, 10%, 0.6);
    --color-border: hsla(220, 20%, 20%, 0.5);
    --color-border-glow: hsla(355, 78%, 52%, 0.3);
    
    --color-text-main: hsl(0, 0%, 94%);
    --color-text-muted: hsl(220, 10%, 65%);
    --color-text-white: #ffffff;
    
    /* Probabilities Colors */
    --color-safe: hsl(145, 63%, 49%);
    --color-safe-bg: hsla(145, 63%, 49%, 0.15);
    --color-moderate: hsl(38, 100%, 55%);
    --color-moderate-bg: hsla(38, 100%, 55%, 0.15);
    --color-low: hsl(355, 78%, 52%);
    --color-low-bg: hsla(355, 78%, 52%, 0.15);
    
    /* Layout Tokens */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-premium: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
    --radius-lg: 16px;
    --radius-md: 10px;
    --radius-sm: 6px;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

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

/* Background Glow Effects */
.bg-glow {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    opacity: 0.18;
    pointer-events: none;
}

.bg-glow-primary {
    top: 5%;
    left: 10%;
    background: radial-gradient(circle, var(--color-red-deep) 0%, transparent 80%);
}

.bg-glow-secondary {
    top: 30%;
    right: 5%;
    background: radial-gradient(circle, var(--color-gold) 0%, transparent 80%);
}

/* Header */
.header {
    background-color: hsla(220, 20%, 6%, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sfi-logo-img {
    height: 56px;
    width: auto;
    border-radius: var(--radius-sm);
    filter: drop-shadow(0 0 8px rgba(230, 57, 70, 0.3));
    transition: var(--transition-smooth);
}

.sfi-logo-img:hover {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text-white);
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.logo-subtitle {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Nav */
.nav {
    display: flex;
    gap: 10px;
}

.nav-link {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link:hover {
    color: var(--color-text-white);
    background-color: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
    color: var(--color-text-white);
    background-color: var(--color-red-deep);
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 60px 0 40px;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--color-text-white);
    margin-bottom: 24px;
    font-weight: 500;
}

.pulse-icon {
    width: 8px;
    height: 8px;
    background-color: var(--color-red-deep);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7);
    animation: pulse 1.6s infinite;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    color: var(--color-text-white);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-red-glow) 30%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    background-clip:text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 650px;
    margin: 0 auto 36px;
}

/* Stats Row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-gold);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* Glass Card */
.glass-card {
    background: var(--color-bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    padding: 36px;
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: rgba(230, 57, 70, 0.2);
}

.card-header {
    margin-bottom: 28px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-text-white);
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title i {
    color: var(--color-red-deep);
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-top: 6px;
}

/* Tabs */
.tabs-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background-color: rgba(0, 0, 0, 0.2);
    padding: 6px;
    border-radius: var(--radius-md);
    margin-bottom: 30px;
    border: 1px solid var(--color-border);
}

.tab-btn {
    background: none;
    border: none;
    outline: none;
    padding: 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tab-btn:hover {
    color: var(--color-text-white);
}

.tab-btn.active {
    background-color: var(--color-bg-dark);
    color: var(--color-red-glow);
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Forms */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 30px;
}

#quota-group.hidden-quota {
    display: none;
}

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

.form-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-white);
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-input {
    background-color: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text-main);
    transition: var(--transition-smooth);
    width: 100%;
}

.form-input:focus {
    border-color: var(--color-red-deep);
    outline: none;
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.15);
}

.input-hint {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* Buttons */
.btn {
    border: none;
    outline: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-red-deep) 0%, var(--color-red-hover) 100%);
    color: var(--color-text-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.45);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-block {
    width: 100%;
}

/* Dashboard Cards (Welcome state) */
.welcome-dashboard {
    margin-top: 40px;
}

.dashboard-card {
    border-color: rgba(255, 183, 3, 0.15);
}

.dashboard-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-gold);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.dash-subtitle {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

/* Responsive Table */
.table-responsive {
    overflow-x: auto;
    width: 100%;
}

.dash-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    text-align: left;
}

.dash-table th, .dash-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--color-border);
}

.dash-table th {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-text-white);
    background-color: rgba(255, 255, 255, 0.02);
}

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

.trend-up {
    color: var(--color-low);
    font-weight: 600;
}

.trend-down {
    color: var(--color-safe);
    font-weight: 600;
}

/* Results Display */
.results-container {
    margin-top: 40px;
    animation: fadeIn 0.4s ease-out;
}

.results-header {
    margin-bottom: 24px;
}

.results-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-text-white);
}

.res-highlight {
    color: var(--color-gold);
    font-weight: 700;
    border-bottom: 2px solid var(--color-gold);
}

.results-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-top: 4px;
}

.results-summary-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.summary-badge {
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid transparent;
}

.summary-badge i {
    font-size: 2.2rem;
}

.probability-safe {
    background-color: var(--color-safe-bg);
    border-color: rgba(76, 175, 80, 0.2);
    color: var(--color-safe);
}

.probability-moderate {
    background-color: var(--color-moderate-bg);
    border-color: rgba(255, 183, 3, 0.2);
    color: var(--color-moderate);
}

.probability-low {
    background-color: var(--color-low-bg);
    border-color: rgba(230, 57, 70, 0.2);
    color: var(--color-low);
}

.badge-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.1;
    display: block;
}

.badge-lbl {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.results-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Branch Result Card */
.branch-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.branch-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.03);
}

.branch-card-header {
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.branch-title-area {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.branch-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-white);
}

.branch-meta {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    display: flex;
    gap: 12px;
}

.branch-meta span i {
    color: var(--color-red-glow);
    margin-right: 4px;
}

.prob-badge {
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.prob-badge-safe {
    background-color: var(--color-safe-bg);
    color: var(--color-safe);
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.prob-badge-moderate {
    background-color: var(--color-moderate-bg);
    color: var(--color-moderate);
    border: 1px solid rgba(255, 183, 3, 0.3);
}

.prob-badge-low {
    background-color: var(--color-low-bg);
    color: var(--color-low);
    border: 1px solid rgba(230, 57, 70, 0.3);
}

.expand-icon {
    color: var(--color-text-muted);
    transition: var(--transition-smooth);
    margin-left: 16px;
    font-size: 1.1rem;
}

.branch-card.expanded .expand-icon {
    transform: rotate(180deg);
    color: var(--color-text-white);
}

.branch-card-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background-color: rgba(0, 0, 0, 0.15);
    border-top: 1px solid transparent;
}

.branch-card.expanded .branch-card-details {
    max-height: 500px;
    border-top-color: var(--color-border);
}

.details-inner {
    padding: 24px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
}

/* SVG Cutoff Chart */
.chart-container {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-md);
    padding: 16px;
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
}

.chart-title {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    font-weight: 600;
}

.chart-svg {
    width: 100%;
    height: 140px;
    overflow: visible;
}

.chart-dot {
    transition: r 0.2s ease;
    cursor: pointer;
}

.chart-dot:hover {
    r: 6px;
}

.chart-line {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: drawLine 1.5s forwards ease-out;
}

/* Details Table */
.details-table-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.details-table-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-white);
    margin-bottom: 8px;
}

.details-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.details-table th, .details-table td {
    padding: 8px 12px;
    border-bottom: 1px solid var(--color-border);
}

.details-table th {
    color: var(--color-text-muted);
    font-weight: 500;
    text-align: left;
}

.details-table td {
    color: var(--color-text-white);
}

.details-table tr:last-child td {
    border-bottom: none;
}

/* Explorer Section Table */
.explorer-filters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    background-color: rgba(0, 0, 0, 0.15);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    border: 1px solid var(--color-border);
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.filter-group label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.exp-table-container {
    max-height: 500px;
    overflow-y: auto;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

.exp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.exp-table th {
    position: sticky;
    top: 0;
    background-color: hsl(220, 20%, 10%);
    color: var(--color-text-white);
    font-family: var(--font-heading);
    font-weight: 600;
    z-index: 2;
    border-bottom: 2px solid var(--color-border);
}

.exp-table th, .exp-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--color-border);
}

.exp-table tr:hover td {
    background-color: rgba(255, 255, 255, 0.015);
}

/* About / Helpdesk Section */
.about-section {
    margin-top: 60px;
    margin-bottom: 80px;
}

.grid-2col {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
}

.card-badge {
    background-color: rgba(230, 57, 70, 0.12);
    border: 1px solid rgba(230, 57, 70, 0.25);
    color: var(--color-red-glow);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.about-card h3, .campus-info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: 12px;
}

.about-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.helpdesk-contacts {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    font-size: 1.4rem;
    color: var(--color-gold);
    background-color: rgba(255, 183, 3, 0.1);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 183, 3, 0.2);
}

.contact-lbl {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

.contact-val {
    font-weight: 600;
    color: var(--color-text-white);
    font-size: 0.95rem;
}

.campus-facts {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.campus-facts li {
    display: flex;
    gap: 16px;
}

.fact-icon {
    font-size: 1.2rem;
    color: var(--color-red-glow);
    background-color: rgba(230, 57, 70, 0.08);
    width: 38px;
    height: 38px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(230, 57, 70, 0.15);
}

.campus-facts div {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.campus-facts strong {
    color: var(--color-text-white);
    display: block;
    margin-bottom: 2px;
}

/* Footer */
.footer {
    background-color: #030406;
    border-top: 1px solid var(--color-border);
    padding: 40px 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-disclaimer {
    max-width: 800px;
    margin: 8px auto 0;
    font-size: 0.75rem;
    line-height: 1.5;
}

/* Scroll Offset for anchors */
.scroll-offset {
    scroll-margin-top: 100px;
}

/* Helper Class */
.hidden {
    display: none !important;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(230, 57, 70, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(230, 57, 70, 0);
    }
}

@keyframes rotateSlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .form-grid, .grid-2col {
        grid-template-columns: 1fr;
    }
    
    .details-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .explorer-filters {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .header-container {
        height: auto;
        padding: 16px 0;
        flex-direction: column;
        gap: 16px;
    }
    
    .nav {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .tabs-container {
        grid-template-columns: 1fr;
        gap: 4px;
    }
    
    .results-summary-cards {
        grid-template-columns: 1fr;
    }
    
    .explorer-filters {
        grid-template-columns: 1fr;
    }
    
    .hero-section {
        padding: 30px 0 20px;
    }
    
    .glass-card {
        padding: 20px;
    }
}



/* Medium-Large Social Logo Styles */
.social-logos-container {
    display: flex;
    gap: 25px; /* Spacing between the two icons */
    justify-content: center; /* Centers them in the box */
    padding: 15px 0;
}

.social-logo-link {
    font-size: 3.5rem; /* Makes the logos medium-large (approx 56px) */
    text-decoration: none;
    transition: transform 0.2s ease, filter 0.2s ease;
    display: inline-block;
}

/* Color definitions for brand accuracy */
.logo-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-facebook {
    color: #1877F2;
}

/* Interactive touch/hover effect for mobile and web */
.social-logo-link:hover,
.social-logo-link:active {
    transform: scale(1.15); /* Slightly pops out when clicked/tapped */
    filter: brightness(1.2);
}

/* Mobile Centering Fixes */
@media (max-width: 768px) {
    /* Center the main container layout */
    .container, .main-container {
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Center text alignments for hero and cards */
    .hero-section, 
    .glass-card, 
    .about-card, 
    .campus-info-card, 
    .card-header {
        text-align: center !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    /* Center the badge and stats blocks */
    .hero-badge {
        margin: 0 auto 15px auto !important;
    }

    .stats-row {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 15px;
    }

    .stat-card {
        width: 100%;
        max-width: 280px; /* Keeps stats cards neat instead of stretching too wide */
    }

    /* Center form elements inside the grid */
    .form-grid {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .form-group {
        width: 100%;
        max-width: 400px; /* Keeps form fields clean on mobile */
        text-align: left; /* Keeps text inputs naturally left-aligned inside a centered container */
    }

    /* Center list items and social icons */
    .campus-facts {
        text-align: left; /* Keeps facts readable while the container is centered */
        padding-left: 0;
        max-width: 450px;
    }

    .helpdesk-contacts {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .contact-item {
        justify-content: center;
        text-align: center;
    }
}
