/* Base Styles */
:root {
    --primary-color: #5928e5;
    --secondary-color: #00a0e9;
    --accent-color: #ffd166;
    --text-color: #2c3e50;
    --light-text: #fff;
    --dark-bg: #232946;
    --light-bg: #f8f9fa;
    --gray-bg: #f0f0f0;
    --transition-speed: 0.3s;
    --transition-cubic: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    letter-spacing: 0.3px;
    padding-top: 20px; /* Reduced from 30px to make top bar more compact */
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 3px 0; /* Reduced from 5px to make it more compact */
    font-size: 0.8rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
    height: 20px; /* Added fixed height to make it more compact */
}
.top-info {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.top-info .info-item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.top-info .info-item i {
    font-size: 0.8rem;
    color: var(--accent-color);
}
/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}
a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color var(--transition-speed);
}
a:hover {
    color: var(--secondary-color);
}
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem; /* Reduced from 2rem */
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}
/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s var(--transition-cubic);
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.5px;
}
.primary-btn {
    background-color: var(--primary-color);
    color: var(--light-text);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(89, 40, 229, 0.3);
}
.primary-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: height 0.3s ease;
    z-index: -1;
}
.primary-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(89, 40, 229, 0.4);
    color: var(--light-text);
}
.primary-btn:hover::after {
    height: 100%;
}
.secondary-btn {
    background-color: transparent;
    color: var(--light-text);
    border: 2px solid var(--light-text);
}
.secondary-btn:hover {
    background-color: var(--light-text);
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}
.tertiary-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 24px;
}
.tertiary-btn:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(89, 40, 229, 0.2);
}
/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 2rem; /* Reduced from 0.8rem */
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 20px; /* Adjusted to account for smaller top bar */
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s ease;
    height: 60px; /* Added fixed height */
}
.navbar.scrolled {
    padding: 0.5rem 2rem; /* Reduced from 0.6rem */
    background-color: rgba(255, 255, 255, 0.98);
}
.logo {
    display: flex;
    align-items: center;
}
.logo img {
    height: 35px; /* Reduced from 40px */
    margin-right: 15px;
    transition: transform 0.4s var(--transition-cubic);
}
.logo:hover img {
    transform: rotate(5deg);
}
.logo h1 {
    font-size: 1.2rem; /* Reduced from 1.3rem */
    color: var(--primary-color);
    font-weight: 700;
}
.nav-links {
    display: flex;
    list-style: none;
    position: relative;
}
.nav-links li {
    margin-left: 1.5rem;
}
.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    font-size: 0.9rem;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed);
}
.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}
.nav-indicator {
    position: absolute;
    bottom: -5px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 1.5px;
}
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}
/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(89, 40, 229, 0.9), rgba(45, 21, 130, 0.9)),
                url('images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text);
    padding-top: 60px; /* Adjusted to account for navbar + top bar */
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}
.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
}
.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    opacity: 0;
    transform: translateY(-30px);
    animation: fadeInDown 1s ease forwards;
}
.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(-30px);
    animation: fadeInDown 1s ease 0.3s forwards;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.6s forwards;
    margin-bottom: 40px;
}
.scroll-indicator {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--light-text);
    opacity: 0;
    animation: fadeIn 1s ease 1.2s forwards;
}
.scroll-indicator span {
    margin-bottom: 8px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}
.scroll-indicator i {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}
/* About Section */
.about-section {
    padding: 3rem 0 2rem; /* Reduced from 5rem 0 4rem */
    background-color: var(--light-bg);
    position: relative;
}
.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px; /* Reduced from 40px */
    align-items: center;
}
.about-text {
    flex: 1;
    min-width: 300px;
}
.about-text p {
    margin-bottom: 1.2rem; /* Reduced from 1.5rem */
    font-size: 1.1rem;
    color: #4a5568;
}
.about-stats {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px; /* Reduced from 20px */
}
.stat-item {
    background-color: white;
    padding: 15px; /* Reduced from 20px */
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s var(--transition-cubic);
    border-bottom: 4px solid var(--secondary-color);
}
.stat-item:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.stat-item h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 700;
}
.stat-item p {
    color: #4a5568;
    font-weight: 500;
}
/* Academics Section */
.academics-section {
    padding: 3rem 0; /* Reduced from 5rem 0 */
    background: linear-gradient(to bottom, var(--light-bg) 0%, white 100%);
}
.academics-intro {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
    font-size: 1.1rem;
    color: #4a5568;
}
.colleges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px; /* Reduced from 25px */
    margin-bottom: 2rem;
}
.college-card {
    background-color: white;
    padding: 25px 20px; /* Reduced from 30px 25px */
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s var(--transition-cubic);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid var(--secondary-color);
    opacity: 0;
    transform: translateY(30px);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.college-card::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 40px;
    height: 40px;
    border-top: 4px solid var(--accent-color);
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
    opacity: 0;
}
.college-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.college-card:hover::before {
    opacity: 1;
    transform: translate(10px, 10px);
}
.card-icon {
    width: 65px; /* Reduced from 70px */
    height: 65px; /* Reduced from 70px */
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px; /* Reduced from 20px */
    transition: all 0.4s ease;
}
.college-card:hover .card-icon {
    transform: rotateY(180deg);
}
.card-icon i {
    font-size: 1.7rem; /* Reduced from 1.8rem */
    color: white;
}
.college-card h3 {
    margin-bottom: 10px; /* Reduced from 12px */
    font-size: 1.3rem; /* Reduced from 1.4rem */
    color: var(--text-color);
}
.college-card p {
    margin-bottom: 15px; /* Reduced from 20px */
    color: #4a5568;
    flex-grow: 1;
}
.learn-more {
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    margin-top: auto;
}
.learn-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}
.learn-more:hover {
    color: var(--secondary-color);
}
.learn-more:hover i {
    transform: translateX(5px);
}
.academics-cta {
    text-align: center;
    margin-top: 2rem;
}
/* Admissions Section */
.admissions-section {
    padding: 3rem 0; /* Reduced from 5rem 0 */
    background-color: var(--light-bg);
}
.admissions-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px; /* Reduced from 40px */
    align-items: flex-start;
}
.admissions-text {
    flex: 1;
    min-width: 300px;
}
.admissions-text h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem; /* Reduced from 1rem */
    color: var(--primary-color);
}
.admissions-text p {
    margin-bottom: 1.2rem; /* Reduced from 1.5rem */
    font-size: 1.1rem;
}
.admissions-buttons {
    display: flex;
    gap: 15px;
    margin-top: 1.2rem; /* Reduced from 1.5rem */
    flex-wrap: wrap;
}
.admissions-dates {
    flex: 1;
    min-width: 300px;
    background-color: white;
    border-radius: 16px;
    padding: 20px; /* Reduced from 25px */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.admissions-dates h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem; /* Reduced from 1.5rem */
    color: var(--primary-color);
    text-align: center;
}
.date-item {
    display: flex;
    margin-bottom: 15px; /* Reduced from 20px */
    align-items: center;
    transition: transform 0.3s ease;
}
.date-item:hover {
    transform: translateX(10px);
}
.date {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 12px; /* Reduced from 10px 15px */
    border-radius: 8px;
    font-weight: 600;
    margin-right: 15px;
    min-width: 100px;
    text-align: center;
}
.date-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}
.date-info p {
    color: #666;
    font-size: 0.9rem;
}
/* Campus Life Section */
.campus-section {
    padding: 3rem 0; /* Reduced from 5rem 0 */
    background-color: var(--light-bg);
}
.campus-slider {
    margin-bottom: 1.5rem; /* Reduced from 2rem */
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.slide {
    position: relative;
}
.slide img {
    width: 100%;
    height: 400px; /* Reduced from 450px */
    object-fit: cover;
    transition: transform 0.5s ease;
}
.slide:hover img {
    transform: scale(1.05);
}
.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px; /* Reduced from 25px */
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
}
.slide-caption h3 {
    font-size: 1.5rem; /* Reduced from 1.6rem */
    margin-bottom: 6px; /* Reduced from 8px */
}
.campus-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px; /* Reduced from 15px */
    margin-bottom: 1.5rem; /* Reduced from 2rem */
}
.campus-gallery img {
    width: 100%;
    height: 160px; /* Reduced from 180px */
    object-fit: cover;
    border-radius: 12px;
    transition: all 0.4s ease;
    cursor: pointer;
}
.campus-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.campus-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; /* Reduced from 25px */
}
.feature {
    text-align: center;
    padding: 25px 20px; /* Reduced from 30px 25px */
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s var(--transition-cubic);
}
.feature:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.feature i {
    font-size: 2rem; /* Reduced from 2.2rem */
    color: var(--primary-color);
    margin-bottom: 15px; /* Reduced from 20px */
    transition: all 0.4s ease;
}
.feature:hover i {
    transform: scale(1.2);
    color: var(--secondary-color);
}
.feature h3 {
    margin-bottom: 10px; /* Reduced from 12px */
    color: var(--text-color);
}
/* Contact Section */
.contact-section {
    padding: 3rem 0; /* Reduced from 5rem 0 */
    background: linear-gradient(to bottom, var(--light-bg) 0%, white 100%);
}
.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px; /* Reduced from 40px */
}
.contact-info {
    flex: 1;
    min-width: 300px;
}
.info-item {
    display: flex;
    margin-bottom: 20px; /* Reduced from 25px */
    transition: transform 0.3s ease;
}
.info-item:hover {
    transform: translateX(10px);
}
.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 20px;
    width: 30px;
}
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px; /* Reduced from 30px */
}
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px; /* Reduced from 40px */
    height: 38px; /* Reduced from 40px */
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    transition: all 0.4s var(--transition-cubic);
}
.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-8px) rotate(360deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.contact-form {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: 25px; /* Reduced from 30px */
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
.form-group {
    margin-bottom: 15px; /* Reduced from 20px */
}
.form-group label {
    display: block;
    margin-bottom: 6px; /* Reduced from 8px */
    font-weight: 500;
    color: var(--text-color);
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px; /* Reduced from 12px */
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(89, 40, 229, 0.1);
}
/* Footer */
footer {
    background-color: var(--dark-bg);
    color: white;
    padding: 3rem 0 1.5rem; /* Reduced from 4rem 0 2rem */
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px; /* Reduced from 40px */
    margin-bottom: 2rem; /* Reduced from 2.5rem */
}
.footer-logo {
    flex: 1;
    min-width: 250px;
}
.footer-logo img {
    height: 45px; /* Reduced from 50px */
    margin-bottom: 12px; /* Reduced from 15px */
}
.footer-logo h2 {
    font-size: 1.5rem; /* Reduced from 1.6rem */
    margin-bottom: 10px; /* Reduced from 12px */
    color: white;
}
.footer-logo p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 15px;
}
.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 25px; /* Reduced from 30px */
}
.link-column {
    flex: 1;
    min-width: 150px;
}
.link-column h3 {
    margin-bottom: 15px; /* Reduced from 20px */
    color: var(--accent-color);
    font-size: 1.1rem; /* Reduced from 1.2rem */
    position: relative;
    padding-bottom: 6px; /* Reduced from 8px */
}
.link-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent-color);
}
.link-column ul {
    list-style: none;
}
.link-column li {
    margin-bottom: 8px; /* Reduced from 10px */
}
.link-column a {
    color: #ccc;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}
.link-column a:hover {
    color: white;
    padding-left: 8px;
}
.footer-bottom {
    padding-top: 15px; /* Reduced from 20px */
    border-top: 1px solid #444;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}
.footer-bottom-links {
    display: flex;
    gap: 15px; /* Reduced from 20px */
}
.footer-bottom-links a {
    color: #ccc;
}
/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(89, 40, 229, 0.3);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}
/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
}
.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}
.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.close-lightbox {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}
.close-lightbox:hover {
    transform: rotate(90deg);
}
/* Animation Keyframes */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}
/* Fade-in animation for scroll reveal */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Responsive Styles */
@media (max-width: 1200px) {
    .colleges-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .campus-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .hero-content p {
        font-size: 1.2rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .campus-features {
        grid-template-columns: repeat(2, 1fr);
    }
    .top-info {
        justify-content: center;
    }
}
@media (max-width: 768px) {
    body {
        padding-top: 60px; /* Adjusted for stacked top bar on mobile */
    }
    .top-bar {
        padding: 6px 0;
        height: auto;
    }
    .top-info {
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
    }
    .navbar {
        top: 60px;
    }
    .menu-toggle {
        display: block;
    }
    .nav-links {
        position: fixed;
        top: 80px; /* Adjusted for top bar + navbar */
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform var(--transition-speed);
    }
    .nav-links.active {
        transform: translateY(0);
    }
    .nav-links li {
        margin: 12px 0;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .about-content,
    .contact-content {
        flex-direction: column;
    }
    .footer-content {
        flex-direction: column;
    }
    .hero {
        clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
        padding-top: 80px; /* Adjusted for top bar + navbar */
    }
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .colleges-grid {
        grid-template-columns: 1fr;
    }
    .campus-features {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 576px) {
    .navbar {
        padding: 0.6rem;
    }
    .logo h1 {
        font-size: 1rem;
    }
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .about-stats {
        grid-template-columns: 1fr;
    }
    .campus-gallery {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-bottom-links {
        justify-content: center;
    }
}
