* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #0A2463;
    --royal-blue: #1E3A8A;
    --bright-blue: #3B82F6;
    --gold: #FFD700;
    --dark-gold: #DAA520;
    --white: #FFFFFF;
    --light: #F3F4F6;
    --text-dark: #1F2937;
    --text-gray: #6B7280;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--white);
}
/* --- Navigation Core Styles --- */
nav {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(10, 36, 99, 0.06);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.95);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.6rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

/* Logo Section */
.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    z-index: 1002; /* Stay above the menu */
}

.logo-img { height: 50px; width: auto; }

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }

.logo-text-top {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--navy);
    text-transform: uppercase;
}

.logo-text-bottom {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-gray);
    text-transform: uppercase;
}

/* Desktop Navigation (Horizontal) */
.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.88rem;
    transition: 0.3s;
}

/* Mobile Menu Button */
.mobile-menu {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1002;
}

.mobile-menu span {
    width: 28px;
    height: 3px;
    background: var(--navy);
    border-radius: 2px;
    transition: 0.3s;
}

/* --- THE REPAIR: Tablet & Mobile Vertical Logic --- */
@media (max-width: 1024px) {
    .mobile-menu {
        display: flex; /* Show the hamburger button */
    }

    .nav-links {
        /* This transforms the menu into a vertical sidebar */
        position: fixed;
        top: 0;
        right: -100%; /* Start off-screen */
        width: 280px; /* Width of the vertical menu */
        height: 100vh;
        background: var(--white);
        flex-direction: column; /* FORCES VERTICAL LAYOUT */
        padding-top: 100px; /* Space for the logo at top */
        gap: 1.5rem;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 1001;
    }

    /* This class is added by JS to show the vertical menu */
    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 10px 30px;
        width: 100%;
        display: block;
    }
}
.hero {
    background-image: url('knust.jpg');
    background-size: cover; /* Back to cover */
    background-position: center 40%; /* Adjust this % to show the best part */
    background-repeat: no-repeat;
    color: var(--white);
    padding: 160px 2rem 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 650px; /* Taller section = less cropping */
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* This uses a deep navy blue with 50% transparency */
    background: rgba(10, 30, 60, 0.5);
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    animation: fadeInUp 0.8s ease;
    letter-spacing: -0.02em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.35rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s backwards;
    line-height: 1.7;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.btn {
    padding: 1.1rem 2.8rem;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    background: var(--dark-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* Stats Section */
.stats {
    background: var(--white);
    padding: 3rem 2rem;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(10, 36, 99, 0.12);
    border-top: 4px solid var(--gold);
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--navy), var(--royal-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
}

.stat-label {
    color: var(--text-gray);
    font-size: 1rem;
    margin-top: 0.8rem;
    font-weight: 500;
}

/* Aggregate Calculator */
.calculator {
    padding: 100px 2rem;
    background: var(--white);
}

.calculator-container {
    max-width: 900px;
    margin: 0 auto;
}

.calculator-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(10, 36, 99, 0.12);
    border: 2px solid rgba(10, 36, 99, 0.08);
}

.calculator-label {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

.course-type {
    margin-bottom: 3rem;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 600;
    padding: 0.5rem;
}

.radio-label input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--royal-blue);
}

.subjects-section {
    margin-bottom: 3rem;
}

.subjects-section h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
    font-weight: 800;
    border-bottom: 3px solid var(--gold);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.elective-note {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.subjects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.subject-input {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.subject-input label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.grade-select {
    padding: 0.9rem;
    border: 2px solid rgba(10, 36, 99, 0.15);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    background: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.grade-select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.grade-select:focus {
    outline: none;
    border-color: var(--royal-blue);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.grade-select:hover:not(:disabled) {
    border-color: var(--royal-blue);
}

.calculate-btn {
    width: 100%;
    margin-top: 2rem;
    font-size: 1.15rem;
    padding: 1.3rem;
}

.result-box {
    margin-top: 3rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
    border-radius: 12px;
    text-align: center;
    border: 3px solid var(--gold);
    animation: fadeInUp 0.5s ease;
}

.result-box h3 {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.aggregate-score {
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--navy), var(--royal-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.subjects-used {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: left;
    border-left: 4px solid var(--gold);
}

.subjects-used strong {
    color: var(--navy);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.subjects-used p {
    color: var(--text-gray);
    margin: 0.3rem 0;
    font-size: 0.95rem;
}

.result-info {
    color: var(--text-gray);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Cut-Off Points Teaser Section */
.cutoff-teaser {
    padding: 80px 2rem;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.cutoff-teaser::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
}

.cutoff-teaser-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cutoff-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.cutoff-teaser h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.cutoff-teaser p {
    font-size: 1.25rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.cutoff-highlights {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(10, 36, 99, 0.08);
    min-width: 150px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(10, 36, 99, 0.12);
}

.highlight-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--navy), var(--royal-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.highlight-text {
    font-size: 0.95rem;
    color: var(--text-gray);
    font-weight: 600;
}

.cutoff-btn {
    font-size: 1.15rem;
    padding: 1.2rem 3rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cutoff-btn:hover {
    gap: 1rem;
}

/* Services Section */
.services {
    padding: 100px 2rem;
    background: var(--light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(10, 36, 99, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(10, 36, 99, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), var(--dark-gold));
    border-radius: 12px 12px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(10, 36, 99, 0.15);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, var(--navy), var(--royal-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(10, 36, 99, 0.2);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--navy);
    font-weight: 800;
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.8rem;
    font-size: 1.05rem;
}

.service-card .learn-more {
    color: var(--royal-blue);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.service-card .learn-more:hover {
    gap: 1rem;
    color: var(--navy);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--royal-blue) 100%);
    padding: 90px 2rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    top: -150px;
    left: -150px;
    border-radius: 50%;
}

.cta-content {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.cta-section > p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-box {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    display: inline-block;
    margin-top: 1rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 100%;
}

.cta-box h3 {
    color: var(--navy);
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    font-weight: 800;
}

.cta-price {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--navy), var(--royal-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.8rem;
    line-height: 1;
}

.cta-price span {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-weight: 600;
    display: block;
    margin-top: 0.5rem;
}

.cta-description {
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Testimonials */
.testimonials {
    padding: 100px 2rem;
    background: var(--white);
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: var(--light);
    padding: 2.5rem;
    border-radius: 12px;
    position: relative;
    border-left: 5px solid var(--gold);
    box-shadow: 0 4px 15px rgba(10, 36, 99, 0.06);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(10, 36, 99, 0.12);
}

.stars {
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.testimonial-card p {
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1.8rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.testimonial-author {
    font-weight: 700;
    color: var(--navy);
    font-style: normal;
}

/* Footer */
footer {
    background: var(--navy);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    margin-bottom: 1.2rem;
    color: var(--gold);
    font-weight: 800;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    display: block;
    margin-bottom: 0.7rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav-container {
        padding: 1rem 1.5rem;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .logo-img {
        height: 40px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    /* Hero */
    .hero {
        padding: 140px 1.5rem 80px;
        min-height: 500px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 100%;
        padding: 1rem 2rem;
    }

    /* Stats */
    .stats {
        padding: 2rem 1rem;
        margin-top: -40px;
    }

    .stats-container {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    /* Calculator */
    .calculator {
        padding: 60px 1rem;
    }

    .calculator-card {
        padding: 2rem 1.5rem;
    }

    .radio-group {
        gap: 0.8rem;
    }

    .radio-label {
        font-size: 0.95rem;
    }

    .subjects-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .aggregate-score {
        font-size: 3.5rem;
    }

    /* Cut-off Teaser */
    .cutoff-teaser {
        padding: 60px 1.5rem;
    }

    .cutoff-teaser h2 {
        font-size: 2rem;
    }

    .cutoff-teaser p {
        font-size: 1.05rem;
    }

    .cutoff-highlights {
        gap: 1.5rem;
    }

    /* Sections */
    .services,
    .testimonials {
        padding: 60px 1.5rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .section-header p {
        font-size: 1.05rem;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* CTA */
    .cta-section {
        padding: 60px 1.5rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section > p {
        font-size: 1.1rem;
    }

    .cta-box {
        padding: 2rem 1.5rem;
    }

    .cta-price {
        font-size: 3rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Cut-off Points Tables */
    .cutoff-table {
        font-size: 0.85rem;
    }

    .cutoff-table th,
    .cutoff-table td {
        padding: 0.8rem 0.6rem;
    }

    .program-name {
        font-size: 0.95rem;
    }

    .cutoff {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .btn {
        font-size: 0.95rem;
        padding: 0.9rem 1.5rem;
    }
}


/* Cut-Off Points Page Styles */
.cutoff-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--royal-blue) 100%);
    color: var(--white);
    padding: 140px 2rem 80px;
    text-align: center;
}

.cutoff-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cutoff-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.search-section {
    padding: 80px 2rem;
    background: var(--light);
}

.search-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.search-container h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 1rem;
}

.search-container p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

.search-box {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.search-box input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    border: 2px solid rgba(10, 36, 99, 0.2);
    border-radius: 8px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--royal-blue);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.search-box button {
    padding: 1.2rem 2.5rem;
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-box button:hover {
    background: var(--dark-gold);
    transform: translateY(-2px);
}

.search-results {
    margin-top: 2rem;
    text-align: left;
}

.result-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(10, 36, 99, 0.08);
    border-left: 4px solid var(--gold);
}

.result-card h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 800;
}

.result-universities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.uni-cutoff {
    background: var(--light);
    padding: 1rem;
    border-radius: 8px;
}

.uni-cutoff strong {
    color: var(--navy);
    display: block;
    margin-bottom: 0.3rem;
}

.uni-cutoff span {
    font-size: 2rem;
    font-weight: 900;
    color: var(--royal-blue);
}

.featured-courses {
    padding: 80px 2rem;
    background: var(--white);
}

.featured-container {
    max-width: 1200px;
    margin: 0 auto;
}

.featured-container h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 1rem;
    text-align: center;
}

.featured-container > p {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.course-table-wrapper {
    overflow-x: auto;
    margin-bottom: 2rem;
}

.cutoff-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(10, 36, 99, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.cutoff-table thead {
    background: linear-gradient(135deg, var(--navy), var(--royal-blue));
    color: var(--white);
}

.cutoff-table th {
    padding: 1.2rem 1.5rem;
    text-align: left;
    font-weight: 800;
    font-size: 1.1rem;
}

.cutoff-table tbody tr {
    border-bottom: 1px solid rgba(10, 36, 99, 0.1);
    transition: background 0.3s ease;
}

.cutoff-table tbody tr:hover {
    background: var(--light);
}

.cutoff-table td {
    padding: 1.2rem 1.5rem;
}

.program-name {
    font-weight: 700;
    color: var(--navy);
    font-size: 1.05rem;
}

.cutoff {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--royal-blue);
}

.table-note {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.table-note p {
    color: var(--text-gray);
    margin: 0;
}

.cutoff-cta {
    padding: 80px 2rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--royal-blue) 100%);
    text-align: center;
    color: var(--white);
}

.cutoff-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.cutoff-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Course Finder Teaser Section - Add this to your existing styles.css */
.course-finder-teaser {
    padding: 80px 2rem;
    background: var(--white);
}

.course-finder-teaser-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.course-finder-left {
    text-align: left;
}

.course-finder-left h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.course-finder-left p {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.course-finder-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.finder-stat {
    flex: 1;
    min-width: 120px;
}

.finder-stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--navy), var(--royal-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
}

.finder-stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 600;
    margin-top: 0.5rem;
}

.course-finder-btn {
    font-size: 1.1rem;
    padding: 1.1rem 2.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.course-finder-btn:hover {
    gap: 1rem;
}

.course-finder-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.program-preview-card {
    background: var(--light);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.program-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(10, 36, 99, 0.12);
    border-color: var(--gold);
    background: var(--white);
}

.program-preview-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.program-preview-card h4 {
    font-size: 1.1rem;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.program-preview-card p {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin: 0;
}

@media (max-width: 968px) {
    .course-finder-teaser-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .course-finder-left {
        text-align: center;
    }

    .course-finder-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .course-finder-teaser {
        padding: 60px 1.5rem;
    }

    .course-finder-left h2 {
        font-size: 2.2rem;
    }

    .course-finder-left p {
        font-size: 1.05rem;
    }

    .course-finder-right {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .program-preview-card {
        padding: 1.5rem 1rem;
    }

    .program-preview-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .course-finder-right {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   UNIVERSITIES PAGE STYLES
   Add this to the end of your styles.css file
   ============================================ */

/* Active nav link */
.nav-links a.active {
    color: var(--royal-blue);
    font-weight: 700;
}

.nav-links a.active::after {
    width: 100%;
}

/* Universities Hero Section */
.universities-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--royal-blue) 100%);
    color: var(--white);
    padding: 160px 2rem 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.universities-hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
}

.universities-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.universities-hero h1 {
    font-size: 3.8rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease;
}

.universities-hero p {
    font-size: 1.35rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s backwards;
    line-height: 1.7;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 3rem;
    font-weight: 900;
    display: block;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hero-stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 600;
}

/* University Category Sections */
.university-category {
    padding: 100px 2rem;
    background: var(--white);
}

.university-category.private-section {
    background: var(--light);
}

.category-container {
    max-width: 1400px;
    margin: 0 auto;
}

.category-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.category-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

.category-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.category-header p {
    font-size: 1.25rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Universities Grid */
.universities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2.5rem;
}

/* University Card */
.university-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(10, 36, 99, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid rgba(10, 36, 99, 0.05);
    display: flex;
    flex-direction: column;
}

.university-category.private-section .university-card {
    background: var(--white);
}

.university-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), var(--dark-gold));
    border-radius: 16px 16px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.university-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(10, 36, 99, 0.15);
}

.university-card:hover::before {
    opacity: 1;
}

/* University Logo Container */
.university-logo-container {
    width: 100%;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: var(--light);
    border-radius: 12px;
    padding: 1.5rem;
}

.university-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.university-card:hover .university-logo {
    transform: scale(1.05);
}

/* University Card Content */
.university-card h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 0.8rem;
    font-weight: 800;
    line-height: 1.3;
}

.university-location {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.university-description {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.8rem;
    font-size: 1rem;
    flex-grow: 1;
}

.university-btn {
    width: 100%;
    text-align: center;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    margin-top: auto;
}

/* Universities CTA Section */
.universities-cta {
    background: linear-gradient(135deg, var(--navy) 0%, var(--royal-blue) 100%);
    padding: 90px 2rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.universities-cta::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    border-radius: 50%;
}

.universities-cta .cta-content {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.universities-cta h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.universities-cta p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.05rem;
}

/* Responsive Design for Universities Page */
@media (max-width: 1200px) {
    .universities-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .universities-hero {
        padding: 140px 1.5rem 80px;
    }

    .universities-hero h1 {
        font-size: 2.5rem;
    }

    .universities-hero p {
        font-size: 1.1rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .hero-stat-number {
        font-size: 2.5rem;
    }

    .university-category {
        padding: 60px 1.5rem;
    }

    .category-header h2 {
        font-size: 2.2rem;
    }

    .category-header p {
        font-size: 1.05rem;
    }

    .universities-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .university-card {
        padding: 2rem 1.5rem;
    }

    .universities-cta {
        padding: 60px 1.5rem;
    }

    .universities-cta h2 {
        font-size: 2rem;
    }

    .universities-cta p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .universities-hero h1 {
        font-size: 2rem;
    }

    .universities-hero p {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .category-header h2 {
        font-size: 1.8rem;
    }

    .university-card h3 {
        font-size: 1.3rem;
    }

    .university-logo-container {
        height: 120px;
        padding: 1rem;
    }
}

/* ============================================
   UNIVERSITIES TEASER SECTION (for Homepage)
   Add this CSS to your styles.css file
   ============================================ */

/* Universities Teaser Section */
.universities-teaser {
    padding: 80px 2rem;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.universities-teaser::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    border-radius: 50%;
}

.universities-teaser-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.universities-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: bounce 2s infinite;
}

.universities-teaser h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.universities-teaser p {
    font-size: 1.25rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Universities Preview Cards */
.universities-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.uni-type-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(10, 36, 99, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.uni-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(10, 36, 99, 0.12);
    border-color: var(--gold);
}

.uni-type-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.uni-type-card h4 {
    font-size: 1.3rem;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.uni-type-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
}

.universities-teaser-btn {
    font-size: 1.15rem;
    padding: 1.2rem 3rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.universities-teaser-btn:hover {
    gap: 1rem;
}

/* Responsive Design for Universities Teaser */
@media (max-width: 768px) {
    .universities-teaser {
        padding: 60px 1.5rem;
    }

    .universities-teaser h2 {
        font-size: 2.2rem;
    }

    .universities-teaser p {
        font-size: 1.05rem;
    }

    .universities-preview {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .uni-type-card {
        padding: 1.5rem;
    }

    .universities-teaser-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .universities-teaser h2 {
        font-size: 1.8rem;
    }

    .universities-icon {
        font-size: 3rem;
    }

    .uni-type-icon {
        font-size: 2.5rem;
    }

    .uni-type-card h4 {
        font-size: 1.1rem;
    }
}



.uni-detail-hero{background:linear-gradient(135deg,var(--navy) 0%,var(--royal-blue) 100%);color:var(--white);padding:160px 2rem 100px;text-align:center;position:relative;overflow:hidden}.uni-hero-overlay{position:absolute;top:0;left:0;right:0;bottom:0;background:radial-gradient(circle at 30% 50%,rgba(255,215,0,0.1) 0%,transparent 50%);z-index:0}.uni-detail-hero-content{max-width:900px;margin:0 auto;position:relative;z-index:1}.uni-logo-large{width:120px;height:120px;margin:0 auto 2rem;background:var(--white);border-radius:50%;padding:1.5rem;box-shadow:0 10px 40px rgba(0,0,0,0.2)}.uni-logo-large img{width:100%;height:100%;object-fit:contain}.uni-detail-hero h1{font-size:3.5rem;font-weight:900;margin-bottom:1rem;line-height:1.15;letter-spacing:-0.02em}.uni-tagline{font-size:1.4rem;opacity:0.95;margin-bottom:2rem;font-weight:600}.uni-quick-info{display:flex;justify-content:center;gap:2rem;flex-wrap:wrap;font-size:1.05rem;font-weight:600}.program-search-bar{background:var(--light);padding:2rem;position:sticky;top:70px;z-index:100;box-shadow:0 2px 10px rgba(0,0,0,0.05)}.search-bar-container{max-width:800px;margin:0 auto}#programSearch{width:100%;padding:1.2rem 1.5rem;border:2px solid rgba(10,36,99,0.2);border-radius:8px;font-size:1.1rem;transition:all 0.3s ease}#programSearch:focus{outline:none;border-color:var(--royal-blue);box-shadow:0 0 0 3px rgba(30,58,138,0.1)}.uni-overview{padding:80px 2rem;background:var(--white)}.uni-overview-container{max-width:1200px;margin:0 auto}.uni-overview h2{font-size:2.8rem;font-weight:900;color:var(--navy);margin-bottom:1.5rem;text-align:center}.uni-overview>.uni-overview-container>p{font-size:1.15rem;color:var(--text-gray);line-height:1.8;margin-bottom:3rem;text-align:center;max-width:900px;margin-left:auto;margin-right:auto}.uni-strengths{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:2rem;margin-bottom:4rem}.strength-card{background:var(--light);padding:2.5rem;border-radius:12px;text-align:center;border:2px solid transparent;transition:all 0.3s ease}.strength-card:hover{border-color:var(--gold);transform:translateY(-5px);box-shadow:0 8px 25px rgba(10,36,99,0.12)}.strength-icon{font-size:3.5rem;margin-bottom:1rem}.strength-card h3{font-size:1.4rem;color:var(--navy);font-weight:700;margin-bottom:0.8rem}.strength-card p{color:var(--text-gray);line-height:1.7}.uni-admission-info{background:linear-gradient(135deg,var(--navy),var(--royal-blue));color:var(--white);padding:3rem;border-radius:12px;margin-top:3rem}.uni-admission-info h3{font-size:1.8rem;margin-bottom:1.5rem;font-weight:800}.uni-admission-info ul{list-style:none;margin-bottom:1.5rem}.uni-admission-info li{font-size:1.1rem;margin-bottom:0.8rem;padding-left:0.5rem}.uni-admission-info .note{background:rgba(255,255,255,0.15);padding:1rem;border-radius:8px;font-size:1rem;margin:0}.uni-programs{padding:80px 2rem;background:var(--light)}.programs-container{max-width:1400px;margin:0 auto}.programs-header{text-align:center;margin-bottom:3rem}.programs-header h2{font-size:2.8rem;font-weight:900;color:var(--navy);margin-bottom:1rem}.programs-header p{font-size:1.2rem;color:var(--text-gray)}.college-tabs{display:flex;gap:1rem;flex-wrap:wrap;justify-content:center;margin-bottom:3rem}.college-tab{padding:1rem 1.8rem;background:var(--white);border:2px solid rgba(10,36,99,0.1);border-radius:8px;font-size:1rem;font-weight:700;color:var(--text-dark);cursor:pointer;transition:all 0.3s ease}.college-tab:hover{border-color:var(--gold);transform:translateY(-2px)}.college-tab.active{background:var(--navy);color:var(--white);border-color:var(--navy)}.college-content{display:none}.college-content.active{display:block}.college-content h3{font-size:2.2rem;font-weight:900;color:var(--navy);margin-bottom:2rem;padding-bottom:1rem;border-bottom:4px solid var(--gold)}.programs-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(380px,1fr));gap:2rem}.program-item{background:var(--white);padding:2rem;border-radius:12px;box-shadow:0 4px 15px rgba(10,36,99,0.08);border:2px solid transparent;transition:all 0.3s ease}.program-item:hover{border-color:var(--gold);transform:translateY(-3px);box-shadow:0 8px 25px rgba(10,36,99,0.12)}.program-header{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:1rem;gap:1rem}.program-header h4{font-size:1.3rem;color:var(--navy);font-weight:800;line-height:1.3;flex:1}.cutoff{background:var(--gold);color:var(--navy);padding:0.5rem 1rem;border-radius:8px;font-size:1.5rem;font-weight:900;min-width:50px;text-align:center;flex-shrink:0}.cutoff.hot{background:linear-gradient(135deg,#FF6B6B,#FF8E53);color:var(--white);animation:pulse 2s infinite}@keyframes pulse{0%,100%{transform:scale(1)}50%{transform:scale(1.05)}}.program-brief{color:var(--text-gray);line-height:1.6;margin-bottom:1rem;font-size:1.05rem}.expand-btn{background:transparent;border:2px solid var(--royal-blue);color:var(--royal-blue);padding:0.8rem 1.5rem;border-radius:8px;font-size:0.95rem;font-weight:700;cursor:pointer;transition:all 0.3s ease;width:100%}.expand-btn:hover{background:var(--royal-blue);color:var(--white)}.program-full-details{display:none;margin-top:1.5rem;padding-top:1.5rem;border-top:2px solid var(--light)}.program-full-details.active{display:block;animation:slideDown 0.3s ease}@keyframes slideDown{from{opacity:0;transform:translateY(-10px)}to{opacity:1;transform:translateY(0)}}.detail-section{margin-bottom:1.5rem}.detail-section strong{display:block;color:var(--navy);font-size:1.1rem;margin-bottom:0.5rem;font-weight:800}.detail-section p{color:var(--text-gray);line-height:1.7;margin:0}@media (max-width:768px){.uni-detail-hero{padding:140px 1.5rem 80px}.uni-detail-hero h1{font-size:2.2rem}.uni-tagline{font-size:1.1rem}.uni-quick-info{gap:1rem;font-size:0.95rem}.program-search-bar{top:60px}.programs-grid{grid-template-columns:1fr}.college-tabs{flex-direction:column}.college-tab{width:100%}}
  