  body {
            font-family: 'Montserrat', sans-serif;
            scroll-behavior: smooth;
        }
        .heading-font {
            font-family: 'Playfair Display', serif;
        }
        .hero-section {
            background: linear-gradient(rgba(41, 48, 71, 0.85), rgba(41, 48, 71, 0.95)), url('../Images/LandingPageBackground.jpg');
            background-size: cover;
            background-position: center;
            min-height: 75vh;
        }
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        .timeline-item:not(:last-child):after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -50px;
            width: 2px;
            height: 50px;
            background: #ffea00;
        }
        .fade-in {
            animation: fadeIn 1s ease-in;
        }
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        .slide-up {
            animation: slideUp 1s ease-out;
        }
        @keyframes slideUp {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        .program-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.8) 100%);
            pointer-events: none;
            z-index: 1;
        }
        .program-card:hover img {
            transform: scale(1.05);
        }
        .program-card img {
            transition: transform 0.5s ease;
        }
        .scrolled {
            @apply bg-white shadow-md;
        }
        .quote-carousel {
            min-height: 60px;
        }

        .gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            grid-auto-rows: minmax(200px, auto);
            grid-auto-flow: dense;
            gap: 16px;
        }
        
        .gallery-item {
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .gallery-item:hover {
            transform: translateY(-5px);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.05);
        }
        
        .wide {
            grid-column: span 2;
        }
        
        .tall {
            grid-row: span 2;
        }
        
        .large {
            grid-column: span 2;
            grid-row: span 2;
        }
        
        @media (max-width: 768px) {
            .wide, .tall, .large {
                grid-column: span 1;
                grid-row: span 1;
            }
        }

        .testimonials-section {
            position: relative;
            height: 100vh;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            color: white;
            text-align: center;
        }
        
        .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
        }
        
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(25, 118, 210, 0.7); /* Blue overlay with opacity */
            z-index: -1;
        }
        
        .content {
            max-width: 800px;
            padding: 2rem;
        }
        
        h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        
        p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            line-height: 1.6;
        }
        
        .testimonials-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .testimonial {
            background-color: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
            padding: 1.5rem;
            border-radius: 8px;
            max-width: 350px;
            transition: transform 0.3s ease;
        }
        
        .testimonial:hover {
            transform: translateY(-5px);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 1rem;
        }
        
        .student-name {
            font-weight: bold;
        }
        