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

:root {
    --primary-blue: #1e3a8a;
    --secondary-blue: #3b82f6;
    --accent-red: #dc2626;
    --light-red: #fef2f2;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --dark-gray: #1f2937;
    --text-gray: #6b7280;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-secondary {
    background: var(--accent-red);
    color: var(--white);
}

.btn-secondary:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navbar-brand img {
    height: 60px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-gray);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: var(--white);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.hero-image img {
    max-width: 400px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    animation: float 6s ease-in-out infinite;
}

.hero-photo {
    width: 100%;
    max-width: 500px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(30,58,138,0.15);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 900px) {
    .hero-photo {
        max-width: 100%;
        height: 250px;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Sections */
.section {
    padding: 80px 0;
}

/* Add top padding to account for fixed navbar */
.section:first-of-type {
    padding-top: 120px;
}

/* Specific fix for application form page */
.bg-light.section {
    padding-top: 120px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.bg-light.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-red));
}

/* Modern Policy Pages Styling */
.policy-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.policy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.policy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e5e7eb;
    position: relative;
}

.policy-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 2px;
}

.policy-section {
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.policy-section:nth-child(1) { animation-delay: 0.1s; }
.policy-section:nth-child(2) { animation-delay: 0.2s; }
.policy-section:nth-child(3) { animation-delay: 0.3s; }
.policy-section:nth-child(4) { animation-delay: 0.4s; }
.policy-section:nth-child(5) { animation-delay: 0.5s; }
.policy-section:nth-child(6) { animation-delay: 0.6s; }
.policy-section:nth-child(7) { animation-delay: 0.7s; }
.policy-section:nth-child(8) { animation-delay: 0.8s; }
.policy-section:nth-child(9) { animation-delay: 0.9s; }
.policy-section:nth-child(10) { animation-delay: 1.0s; }
.policy-section:nth-child(11) { animation-delay: 1.1s; }
.policy-section:nth-child(12) { animation-delay: 1.2s; }
.policy-section:nth-child(13) { animation-delay: 1.3s; }
.policy-section:nth-child(14) { animation-delay: 1.4s; }
.policy-section:nth-child(15) { animation-delay: 1.5s; }

.policy-section h4 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.policy-section h4 i {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.25rem;
}

.policy-section h5 {
    color: var(--dark-gray);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem 0;
    padding-left: 1rem;
    border-left: 3px solid var(--primary-blue);
}

.policy-section ul, .policy-section ol {
    margin-left: 1.5rem;
}

.policy-section li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    position: relative;
    padding-left: 0.5rem;
}

.policy-section ul li::before {
    content: '•';
    color: var(--primary-blue);
    font-weight: bold;
    position: absolute;
    left: -1rem;
}

.policy-section ol li {
    counter-increment: policy-counter;
}

.policy-section ol li::before {
    content: counter(policy-counter) '.';
    color: var(--primary-blue);
    font-weight: bold;
    position: absolute;
    left: -1.5rem;
}

.policy-alert {
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
    border: none;
    position: relative;
    overflow: hidden;
}

.policy-alert::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
}

.policy-alert.info {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-left: 4px solid #3b82f6;
}

.policy-alert.warning {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 4px solid #f59e0b;
}

.policy-alert h5 {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.policy-alert h5 i {
    font-size: 1.1rem;
}

.policy-contact {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid #e2e8f0;
}

.policy-contact h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    text-align: center;
}

.policy-contact ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.policy-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.policy-contact li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.policy-contact li i {
    color: var(--primary-blue);
    width: 20px;
    text-align: center;
}

/* Modern animations */
@keyframes fadeInUp {
    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 pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.policy-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    color: white;
    margin-right: 0.75rem;
    animation: pulse 2s infinite;
}

/* Responsive design for policy pages */
@media (max-width: 768px) {
    .policy-card {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .policy-section h4 {
        font-size: 1.25rem;
    }
    
    .policy-section h5 {
        font-size: 1rem;
    }
    
    .policy-contact {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .policy-card {
        padding: 1.5rem;
    }
    
    .policy-section h4 {
        font-size: 1.1rem;
    }
    
    .policy-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

.section-title {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-red));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--dark-gray);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Grid System */
.row {
    display: grid;
    gap: 2rem;
}

.col-1 { grid-column: span 1; }
.col-2 { grid-column: span 2; }
.col-3 { grid-column: span 3; }
.col-4 { grid-column: span 4; }
.col-6 { grid-column: span 6; }
.col-12 { grid-column: span 12; }

/* Cards */
.card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

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

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.card h4 {
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 1rem;
}

.card p {
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Programme Cards */
.programme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.programme-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.programme-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    padding: 1.5rem;
    text-align: center;
}

.programme-body {
    padding: 1.5rem;
}

.programme-duration {
    background: var(--light-red);
    color: var(--accent-red);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Mission & Vision */
.mission-vision {
    background: var(--light-gray);
}

.mission-card, .vision-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    height: 100%;
    border-left: 5px solid var(--accent-red);
}

/* Mobile responsive for mission-vision */
@media (max-width: 768px) {
    .mission-vision .row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mission-card, .vision-card {
        padding: 1.5rem;
    }
    
    .mission-card h3, .vision-card h3 {
        font-size: 1.25rem;
    }
}

.mission-card h3, .vision-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mission-card h3::before {
    content: '🎯';
    font-size: 1.5rem;
}

.vision-card h3::before {
    content: '👁️';
    font-size: 1.5rem;
}

/* Announcements */
.announcement-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.announcement-date {
    background: var(--accent-red);
    color: var(--white);
    text-align: center;
    padding: 1rem;
}

.announcement-date .day {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.announcement-date .month {
    font-size: 0.9rem;
    text-transform: uppercase;
}

.announcement-content {
    padding: 1.5rem;
}

.announcement-content h5 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

/* Contact Info */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* Mobile responsive improvements for contact grid */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .contact-item {
        padding: 1.5rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .contact-item h5 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .contact-item p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-item {
        padding: 1.25rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.contact-item h5 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: var(--white);
}

.cta-section .hero-buttons {
    justify-content: center;
}

.cta-section .btn-primary {
    background: var(--accent-red);
    color: var(--white);
}

.cta-section .btn-primary:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.cta-section .btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.cta-section .btn-outline:hover {
    background: var(--white);
    color: var(--primary-blue);
    border-color: var(--white);
}

/* FAQ Section */
.faq-section {
    background: var(--light-gray);
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

/* Mobile responsive improvements for FAQ */
@media (max-width: 768px) {
    .faq-grid {
        gap: 1rem;
    }
    
    .faq-item {
        margin-bottom: 0.75rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1rem 1rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding: 0 0.875rem 0.875rem;
        font-size: 0.9rem;
    }
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary-blue);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
}

/* Footer */
.footer {
    background: #000;
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h6 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-red);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
}

/* Timeline */
.timeline-container {
    max-width: 800px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-blue);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--accent-red);
    border-radius: 50%;
    transform: translateX(-50%);
    border: 4px solid var(--white);
    box-shadow: var(--shadow);
}

.timeline-content {
    width: 45%;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
}

.timeline-content h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

/* Leadership */
.leadership-container {
    max-width: 800px;
    margin: 0 auto;
}

.leadership-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.leadership-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    padding: 2rem;
}

.leadership-photo {
    text-align: center;
    color: var(--primary-blue);
}

.leadership-text h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.leadership-title {
    color: var(--accent-red);
    font-weight: 600;
    margin-bottom: 1rem;
    font-style: italic;
}

/* Programme Details */
.programme-details {
    margin: 1.5rem 0;
}

.programme-details h5 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.programme-details ul {
    list-style: none;
    padding: 0;
}

.programme-details ul li {
    padding: 0.25rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.programme-details ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: bold;
}

/* Requirements */
.requirements-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.requirements-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent-red);
}

.requirements-card h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.requirements-card ul {
    list-style: none;
    padding: 0;
}

.requirements-card ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.requirements-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Gallery Styles */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--primary-blue);
    background: transparent;
    color: var(--primary-blue);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    aspect-ratio: 1;
    width: 100%;
}

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

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    margin: 0 0 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.gallery-overlay p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.gallery-placeholder {
    padding: 2rem;
    text-align: center;
    color: var(--primary-blue);
}

.gallery-placeholder h4 {
    margin: 1rem 0 0.5rem;
    color: var(--primary-blue);
}

.gallery-placeholder p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Virtual Tour */
.virtual-tour-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tour-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

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

.tour-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.tour-card h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

/* Student Life */
.student-life-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.life-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

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

.life-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-red), #b91c1c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.life-card h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
}

/* Contact Form Styles */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

/* Mobile responsive styles for contact container */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-section,
    .contact-info-section {
        padding: 1.5rem;
    }
    
    .contact-form-section h2 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-form-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .contact-info-section h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-info-section p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    /* Make map responsive */
    .contact-info-section iframe {
        min-height: 250px;
        border-radius: 12px;
        width: 100%;
    }
    
    .map-wrapper {
        position: relative;
        width: 100%;
        height: 250px;
        border-radius: 12px;
        overflow: hidden;
    }
    
    .map-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }
    
    /* Improve form spacing and readability */
    .contact-form-section {
        background: var(--white);
        border-radius: 15px;
        box-shadow: var(--shadow);
    }
    
    /* Better touch targets for mobile */
    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
    
    /* Improve select dropdown on mobile */
    .form-group select {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
        background-position: right 0.75rem center;
        background-repeat: no-repeat;
        background-size: 1.5em 1.5em;
        padding-right: 2.5rem;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
}

@media (max-width: 480px) {
    .contact-container {
        gap: 1.5rem;
    }
    
    .contact-form-section,
    .contact-info-section {
        padding: 1rem;
    }
    
    .contact-form-section h2 {
        font-size: 1.5rem;
    }
    
    .contact-info-section h3 {
        font-size: 1.25rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
    }
    
    .btn-lg {
        padding: 12px 24px;
        font-size: 1rem;
        width: 100%;
    }
    
    /* Adjust map height for very small screens */
    .contact-info-section iframe {
        min-height: 200px;
        width: 100%;
    }
    
    .map-wrapper {
        height: 200px;
    }
    
    /* Improve contact info section styling */
    .contact-info-section {
        background: var(--white);
        border-radius: 15px;
        box-shadow: var(--shadow);
    }
    
    /* Better spacing for contact info text */
    .contact-info-section p {
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    /* Ensure proper container padding on mobile */
    .container {
        padding: 0 1rem;
    }
    
    /* Improve overall page spacing on mobile */
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
        text-transform: uppercase;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    }
    
    .section-title::after {
        width: 60px;
        height: 3px;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        font-weight: 500;
    }
}

.contact-form-container h3,
.map-container h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-group small {
    display: block;
    margin-top: 0.25rem;
    color: var(--text-gray);
    font-size: 0.85rem;
}

.contact-link {
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #b91c1c;
}

/* Map Styles */
.map-container {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.map-placeholder {
    background: var(--light-gray);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    color: var(--primary-blue);
}

.map-content h4 {
    margin: 1rem 0 0.5rem;
    color: var(--primary-blue);
}

.map-info h5 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.map-info ul {
    list-style: none;
    padding: 0;
}

.map-info ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.map-info ul li i {
    color: var(--accent-red);
    margin-right: 0.5rem;
    width: 20px;
}

/* Department Styles */
.department-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.department-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

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

.department-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.department-card h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.department-contact {
    margin-top: 1.5rem;
    text-align: left;
}

.department-contact p {
    margin: 0.5rem 0;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.department-contact p i {
    color: var(--accent-red);
    margin-right: 0.5rem;
    width: 20px;
}

/* Application Form Styles */
.progress-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.progress-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border-color);
    z-index: 1;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    background: var(--white);
    padding: 0 1rem;
}

.progress-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--border-color);
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.progress-step.active .progress-number {
    background: var(--primary-blue);
    color: var(--white);
}

.progress-step span {
    font-size: 0.85rem;
    color: var(--text-gray);
    text-align: center;
}

.progress-step.active span {
    color: var(--primary-blue);
    font-weight: 600;
}

.application-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-step {
    display: none;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-step.active {
    display: block;
}

.form-step h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.form-step p {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

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

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

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

/* Payment Styles */
.payment-summary {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.payment-summary h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.summary-item.total {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-blue);
    border-bottom: none;
}

.payment-methods {
    margin-bottom: 2rem;
}

.payment-methods h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.payment-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option:hover {
    border-color: var(--primary-blue);
}

.payment-option input[type="radio"] {
    margin-right: 1rem;
}

.payment-option label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
}

.payment-option label i {
    margin-right: 0.5rem;
    color: var(--primary-blue);
}

.card-payment-form {
    margin-bottom: 2rem;
}

.terms-checkbox {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.terms-checkbox input[type="checkbox"] {
    margin-right: 0.5rem;
    margin-top: 0.25rem;
}

.terms-checkbox label {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Tips Styles */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tip-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

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

.tip-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-red), #b91c1c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.tip-card h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

/* Process Styles */
.process-container {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.process-content h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

/* Dates Styles */
.dates-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Important Dates Card with Red Border */
.date-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 6px solid var(--accent-red);
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
}

.date-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-left: 8px solid var(--accent-red);
}

.date-icon {
    color: var(--accent-red);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.date-card h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.date-card .date {
    font-weight: 600;
    color: var(--accent-red);
    margin-bottom: 0.5rem;
}

/* Fees Styles */
.fees-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.fees-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

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

.fees-card h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.fee-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-red);
    margin-bottom: 1rem;
}

.payment-info {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
}

.payment-info h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.payment-info ul {
    list-style: none;
    padding: 0;
}

.payment-info ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.payment-info ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: bold;
}

/* Programme Grid - Four Equal Cards for Why Choose Our Programs */
.why-choose .programme-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .why-choose .programme-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .why-choose .programme-grid {
        grid-template-columns: 1fr;
    }
}

/* Core Values Grid - Four Equal Cards */
.core-values .programme-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .core-values .programme-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .core-values .programme-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
    }

    .navbar-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .navbar-toggle {
        display: block;
        z-index: 1001;
    }
    
    /* Ensure navbar container has proper layout on mobile */
    .navbar-container {
        position: relative;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image img {
        max-width: 300px;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

    .section {
        padding: 60px 0;
    }
    
    /* Adjust top padding for mobile to account for fixed navbar */
    .section:first-of-type,
    .bg-light.section {
        padding-top: 100px;
    }

    .container {
        padding: 0 1rem;
    }

    /* Timeline responsive */
    .timeline::before {
        left: 20px;
    }

    .timeline-marker {
        left: 20px;
    }

    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        margin-right: 0 !important;
    }

    /* Leadership responsive */
    .leadership-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Gallery responsive */
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-image {
        height: 200px;
    }
    
    .gallery-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    
    .gallery-overlay h4 {
        font-size: 1.1rem;
    }
    
    .gallery-overlay p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .card {
        padding: 1.5rem;
    }
    
    /* Further adjust top padding for very small screens */
    .section:first-of-type,
    .bg-light.section {
        padding-top: 90px;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.py-1 { padding: 0.5rem 0; }
.py-2 { padding: 1rem 0; }
.py-3 { padding: 1.5rem 0; }
.py-4 { padding: 2rem 0; }
.py-5 { padding: 3rem 0; }

.px-1 { padding: 0 0.5rem; }
.px-2 { padding: 0 1rem; }
.px-3 { padding: 0 1.5rem; }
.px-4 { padding: 0 2rem; }
.px-5 { padding: 0 3rem; }

.bg-primary { background: var(--primary-blue); }
.bg-secondary { background: var(--secondary-blue); }
.bg-accent { background: var(--accent-red); }
.bg-light { background: var(--light-gray); }
.bg-white { background: var(--white); }

.text-primary { color: var(--primary-blue); }
.text-secondary { color: var(--secondary-blue); }
.text-accent { color: var(--accent-red); }
.text-white { color: var(--white); }
.text-gray { color: var(--text-gray); }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
} 

.hero .btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.hero .btn-outline:hover {
    background: var(--white);
    color: var(--primary-blue);
    border-color: var(--white);
} 

/* Admission Requirements Grid Responsive Layout */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 1024px) {
    .requirements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .requirements-grid {
        grid-template-columns: 1fr;
    }
}

.requirement-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 280px;
}

.requirement-icon {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.requirement-card h4 {
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.requirement-card ul {
    margin-left: 1.5rem;
    margin-bottom: 0;
}

.requirement-card ul li {
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
} 

/* Four-column grid for Why Choose Our Programs section */
.programme-grid.four-col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 1024px) {
    .programme-grid.four-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .programme-grid.four-col {
        grid-template-columns: 1fr;
    }
} 

/* Admin Sidebar and Main Content Layout */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 220px;
    background: #1e3a8a;
    color: #fff;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    z-index: 100;
}
.sidebar a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 1.5rem;
    display: block;
}
.sidebar a.active, .sidebar a:hover {
    background: #fff;
    color: #1e3a8a;
    border-radius: 6px;
    padding: 0.5rem 1rem;
}
.main-content {
    margin-left: 240px;
    padding: 2rem;
}
@media (max-width: 900px) {
    .sidebar {
        position: static;
        width: 100%;
        flex-direction: row;
        padding: 1rem;
        min-height: unset;
    }
    .sidebar a {
        margin: 0 1rem 0 0;
        display: inline-block;
    }
    .main-content {
        margin-left: 0;
        padding: 1rem;
    }
} 