* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8B1538;
    --secondary-color: #A01B47;
    --accent-color: #D32F2F;
    --light-bg: #f8f9fa;
    --text-color: #333;
    --border-color: #ddd;
    --success-color: #51cf66;
    --dark-red: #5C0B25;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== NAVBAR ==================== */
.navbar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-red) 80%);
    color: white;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(139, 21, 56, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* ==================== NAVBAR LOGO WITH IMAGE ==================== */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    animation: pulse 2s infinite;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    animation: pulse 2s infinite;
}

/* Responsive logo sizing */
@media (max-width: 768px) {
    .logo-img {
        height: 40px;
    }
    
    .nav-logo span {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 35px;
    }
    
    .nav-logo span {
        font-size: 1rem;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s;
}

/* ==================== ANIMATIONS ==================== */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    75% {
        transform: translateX(5px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(211, 47, 47, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(211, 47, 47, 0.8);
    }
}

/* ==================== HERO SECTION ==================== */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 120px 20px;
    text-align: center;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Animated Background */
.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.15;
}

.floating-icon {
    position: absolute;
    font-size: 4rem;
    color: white;
    opacity: 0.6;
    animation-duration: 6s;
    animation-iteration-count: infinite;
}

.icon-1 {
    top: 10%;
    left: 5%;
    animation: float 6s ease-in-out infinite;
}

.icon-2 {
    top: 15%;
    right: 8%;
    animation: bounce 7s ease-in-out infinite;
    animation-delay: 0.5s;
}

.icon-3 {
    top: 40%;
    left: 10%;
    animation: float 8s ease-in-out infinite;
    animation-delay: 1s;
}

.icon-4 {
    top: 50%;
    right: 12%;
    animation: bounce 6.5s ease-in-out infinite;
    animation-delay: 1.5s;
}

.icon-5 {
    bottom: 20%;
    left: 15%;
    animation: float 7s ease-in-out infinite;
    animation-delay: 2s;
}

.icon-6 {
    top: 30%;
    left: 50%;
    animation: bounce 7.5s ease-in-out infinite;
    animation-delay: 0.3s;
}

.icon-7 {
    bottom: 15%;
    right: 20%;
    animation: float 6s ease-in-out infinite;
    animation-delay: 1.2s;
}

.icon-8 {
    top: 60%;
    left: 25%;
    animation: bounce 8s ease-in-out infinite;
    animation-delay: 0.8s;
}

.icon-9 {
    bottom: 25%;
    left: 8%;
    animation: float 7s ease-in-out infinite;
    animation-delay: 1.5s;
}

.icon-10 {
    top: 35%;
    right: 5%;
    animation: bounce 6.5s ease-in-out infinite;
    animation-delay: 2s;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    animation: slideInUp 1s ease;
}

/* College Logo */
.college-logo {
    margin-bottom: 2rem;
    animation: scaleIn 0.8s ease;
}

.logo-placeholder {
    width: 140px;
    height: 140px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.15);
    border: 3px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    backdrop-filter: blur(10px);
    animation: glow 2s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(211, 47, 47, 0.3);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: slideInDown 0.8s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: slideInUp 0.8s ease 0.2s both;
}

.cta-button {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
    border: 2px solid var(--accent-color);
    animation: slideInUp 0.8s ease 0.4s both;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s;
    z-index: -1;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: var(--primary-color);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.6);
}

/* ==================== SECTION STYLES ==================== */
section {
    padding: 80px 20px;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    animation: slideInDown 0.6s ease;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    animation: slideInUp 0.6s ease;
}

/* ==================== PROGRAMS SECTION ==================== */
.programs {
    background: var(--light-bg);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.program-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(139, 21, 56, 0.1);
    transition: all 0.3s;
    text-align: center;
    border-top: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.1), transparent);
    transition: left 0.3s;
    z-index: -1;
}

.program-card:hover::before {
    left: 100%;
}

.card-animate {
    animation: scaleIn 0.6s ease both;
}

.program-card:nth-child(1) {
    animation-delay: 0.1s;
}

.program-card:nth-child(2) {
    animation-delay: 0.2s;
}

.program-card:nth-child(3) {
    animation-delay: 0.3s;
}

.program-card:nth-child(4) {
    animation-delay: 0.4s;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(139, 21, 56, 0.2);
}

.program-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    animation: bounce 2s ease-in-out infinite;
}

.program-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.degree-type {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.program-details {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    text-align: left;
    font-size: 0.95rem;
    border-left: 3px solid var(--accent-color);
}

.program-details p {
    margin: 0.5rem 0;
}

.highlights {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.highlights li {
    margin: 0.5rem 0;
    color: var(--accent-color);
    font-weight: 500;
}

/* ==================== ADMISSION SECTION ==================== */
.admission {
    background: white;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: auto;
    width: calc(50% - 40px);
    text-align: right;
    padding-right: 30px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
    width: calc(50% - 40px);
    text-align: left;
    padding-left: 30px;
}

.timeline-animate {
    animation: slideInUp 0.6s ease both;
}

.timeline-item:nth-child(1) {
    animation-delay: 0.1s;
}

.timeline-item:nth-child(2) {
    animation-delay: 0.2s;
}

.timeline-item:nth-child(3) {
    animation-delay: 0.3s;
}

.timeline-item:nth-child(4) {
    animation-delay: 0.4s;
}

.timeline-item:nth-child(5) {
    animation-delay: 0.5s;
}

.timeline-item:nth-child(6) {
    animation-delay: 0.6s;
}

.timeline-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(139, 21, 56, 0.4);
    z-index: 10;
    animation: glow 2s ease-in-out infinite;
}

.timeline-content h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.timeline-content p {
    color: #666;
}

.admission-cta {
    text-align: center;
    margin-top: 3rem;
}

.apply-button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 15px 50px;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(139, 21, 56, 0.4);
    animation: slideInUp 0.8s ease;
}

.apply-button:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 21, 56, 0.6);
}

.apply-button:active {
    transform: translateY(-1px);
}

/* ==================== REQUIREMENTS SECTION ==================== */
.requirements {
    background: var(--light-bg);
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.requirement-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(139, 21, 56, 0.1);
    border-top: 3px solid var(--accent-color);
}

.item-animate {
    animation: scaleIn 0.6s ease both;
}

.requirement-item:nth-child(1) {
    animation-delay: 0.1s;
}

.requirement-item:nth-child(2) {
    animation-delay: 0.2s;
}

.requirement-item:nth-child(3) {
    animation-delay: 0.3s;
}

.requirement-item:nth-child(4) {
    animation-delay: 0.1s;
}

.requirement-item:nth-child(5) {
    animation-delay: 0.2s;
}

.requirement-item:nth-child(6) {
    animation-delay: 0.3s;
}

.requirement-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(139, 21, 56, 0.2);
}

.requirement-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    animation: bounce 2s ease-in-out infinite;
}

.requirement-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.requirement-item p {
    color: #666;
    font-size: 0.95rem;
}

/* ==================== FAQ SECTION ==================== */
.faq {
    background: white;
}

.faq-container {
    max-width: 700px;
    margin: 3rem auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    animation: slideInUp 0.6s ease both;
}

.faq-item:nth-child(1) {
    animation-delay: 0.1s;
}

.faq-item:nth-child(2) {
    animation-delay: 0.2s;
}

.faq-item:nth-child(3) {
    animation-delay: 0.3s;
}

.faq-item:nth-child(4) {
    animation-delay: 0.4s;
}

.faq-item:nth-child(5) {
    animation-delay: 0.5s;
}

.faq-item:nth-child(6) {
    animation-delay: 0.6s;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: var(--light-bg);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.3s;
}

.faq-question:hover {
    background: rgba(139, 21, 56, 0.05);
    color: var(--accent-color);
}

.faq-question i {
    transition: transform 0.3s;
    color: var(--accent-color);
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.1), transparent);
    color: var(--accent-color);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: #666;
    line-height: 1.8;
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    background: var(--light-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    transition: all 0.3s;
    border-left: 4px solid var(--accent-color);
}

.info-animate {
    animation: slideInLeft 0.6s ease both;
}

.contact-info .info-item:nth-child(1) {
    animation-delay: 0.1s;
}

.contact-info .info-item:nth-child(2) {
    animation-delay: 0.2s;
}

.contact-info .info-item:nth-child(3) {
    animation-delay: 0.3s;
}

.contact-info .info-item:nth-child(4) {
    animation-delay: 0.4s;
}

.info-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(139, 21, 56, 0.15);
}

.info-item i {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-top: 0.3rem;
    animation: bounce 2s ease-in-out infinite;
}

.info-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(139, 21, 56, 0.1);
    animation: slideInRight 0.6s ease;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.contact-form:hover {
    border-color: var(--accent-color);
    box-shadow: 0 8px 25px rgba(139, 21, 56, 0.2);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 8px rgba(139, 21, 56, 0.3);
    transform: translateY(-2px);
}

.submit-button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
}

.submit-button:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 21, 56, 0.3);
}

.submit-button:active {
    transform: translateY(-1px);
}

/* ==================== FOOTER ==================== */
.footer {
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--primary-color) 100%);
    color: white;
    padding: 3rem 20px 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    animation: slideInUp 0.6s ease;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
    animation: slideInLeft 0.6s ease;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-section a:hover {
    color: var(--accent-color);
    transform: translateX(3px);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s;
    animation: scaleIn 0.6s ease;
}

.social-links a:nth-child(1) {
    animation-delay: 0.1s;
}

.social-links a:nth-child(2) {
    animation-delay: 0.2s;
}

.social-links a:nth-child(3) {
    animation-delay: 0.3s;
}

.social-links a:nth-child(4) {
    animation-delay: 0.4s;
}

.social-links a:hover {
    background: var(--accent-color);
    transform: scale(1.2) rotate(360deg);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    animation: fadeIn 1s ease;
}

/* ==================== MODAL ==================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 10px 40px rgba(139, 21, 56, 0.3);
    max-height: 90vh;
    overflow-y: auto;
    animation: scaleIn 0.3s;
    border-top: 4px solid var(--primary-color);
}

.modal-content h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.form-group {
    margin-bottom: 1.5rem;
    animation: slideInUp 0.6s ease both;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 8px rgba(139, 21, 56, 0.3);
}

.form-group.checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group.checkbox input {
    width: auto;
}

.form-group.checkbox label {
    margin: 0;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--primary-color);
        flex-direction: column;
        gap: 0;
        animation: slideInDown 0.3s ease;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu a {
        padding: 1rem;
        display: block;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        min-height: 500px;
        padding: 80px 20px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .college-logo {
        margin-bottom: 1.5rem;
    }

    .logo-placeholder {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }

    h2 {
        font-size: 2rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: calc(100% - 80px);
        margin-left: 60px !important;
        text-align: left !important;
        padding-left: 20px !important;
        padding-right: 0 !important;
    }

    .timeline-number {
        left: 0;
        transform: translateX(-7px);
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 95%;
        margin: 20% auto;
    }

    .floating-icon {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    section {
        padding: 40px 15px;
    }

    h2 {
        font-size: 1.5rem;
    }

    .programs-grid,
    .requirements-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero {
        padding: 60px 15px;
        min-height: 400px;
    }

    .cta-button,
    .apply-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .logo-placeholder {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .floating-icon {
        font-size: 2rem;
    }
}