        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        :root {
            --secondary: #FFC107;
            --accent: #2196F3;
            --light: #F5F5F5;
            --dark: #212121;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }
        
        body {
            background-color: #f9f9f9;
            color: #333;
            line-height: 1.6;
        }
        

        /* Hero Section */
        .hero {
            background: url('../img/p1.png');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 80px 0;
            margin-bottom: 50px;
            margin-top: 130px;
        }
        
        .hero h2 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        
.hero p {
    padding: 10px;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 25px;
    background-color: rgba(128, 128, 128, 0.5); /* grey with 30% opacity */
}
        
        .cta-button {
            display: inline-block;
            background-color: var(--accent);
            color: var(--dark);
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s;
            box-shadow: var(--shadow);
            margin-top: 250px;
        }
        
        .cta-button:hover {
            background-color: white;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }
        
        /* Main Content */
        .page-intro {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .page-intro h2 {
            color: var(--primary);
            font-size: 2.2rem;
            margin-bottom: 15px;
        }
        
        .page-intro p {
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.1rem;
            color: #555;
        }
        
        /* Programs Sections */
        .programs-section {
            margin-bottom: 60px;
        }
        
        .section-title {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 3px solid var(--secondary);
        }
        
        .section-icon {
            background-color: var(--primary);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .section-title h3 {
            color: var(--primary);
            font-size: 1.8rem;
        }
        
        /* Cards Layout */
        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
        }
        
        .program-card {
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
            flex-direction: column;
        }
        
        .program-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
        }
        
        .card-header {
            background-color: var(--primary);
            color: white;
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .card-icon {
            background-color: rgba(255, 255, 255, 0.2);
            width: 50px;
            height: 50px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            flex-shrink: 0;
        }
        
        .card-header h4 {
            font-size: 1.4rem;
            margin-bottom: 5px;
        }
        
        .card-body {
            padding: 20px;
            flex-grow: 1;
        }
        
        .card-body ul {
            list-style-position: inside;
            margin-left: 5px;
        }
        
        .card-body li {
            margin-bottom: 8px;
            padding-left: 5px;
        }
        
        .card-body li::marker {
            color: var(--secondary);
        }
        
        /* Extracurricular Styles */
        .extracurricular-card .card-header {
            background-color: var(--secondary);
        }
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero h2 {
                font-size: 2.2rem;
            }
            
            .programs-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            
            .hero {
                padding: 60px 0;
            }
               
            .hero h2 {
                font-size: 1.8rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .section-title {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .section-icon {
                margin-right: 0;
            }
        }
        
        @media (max-width: 576px) {
            .programs-grid {
                grid-template-columns: 1fr;
            }
            
            .card-header {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
             .hero {
                padding: 60px 0;
                 background: url('../img/pm.png');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            margin-bottom: 50px;
            min-height: 600px;
            max-height: 820px;
            }
             .cta-button {
            background-color: transparent;
            margin-top: 350px;
         
        }
            
        }
        .image-section {
    max-width: 1600px;
    margin: 0 auto 60px;
    padding: 30px;
    background: transparent;
    backdrop-filter: blur(10px);
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-section:hover {
    transform: translateY(-5px);
}

.image-section h2 {
    margin-bottom: 25px;
    font-size: clamp(28px, 5vw, 36px);
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

/* Modern horizontal scroll container */
.scroll-container {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 5px 20px;
    scroll-snap-type: x mandatory;
}

/* Custom scrollbar */
.scroll-container::-webkit-scrollbar {
    height: 10px;
}

.scroll-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.scroll-container::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.scroll-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

/* Modern image cards - INCREASED SIZES */
.scroll-container img {
    flex: 0 0 auto;
    width: 350px;  /* Increased from 280px */
    height: 280px; /* Increased from 220px */
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 4px solid transparent;
    scroll-snap-align: start;
}

.scroll-container img:hover {
    transform: scale(1.08) rotate(1deg);
    box-shadow: 0 30px 40px rgba(102, 126, 234, 0.4);
    border-color: white;
}

/* Add loading animation */
.scroll-container img.loading {
    animation: shimmer 2s infinite linear;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Responsive Design - UPDATED WITH LARGER SIZES */
@media (max-width: 1200px) {
    .scroll-container img {
        width: 300px;  /* Increased from 240px */
        height: 240px; /* Increased from 190px */
    }
}

@media (max-width: 992px) {
    .scroll-container img {
        width: 280px;  /* Increased from 200px */
        height: 220px; /* Increased from 160px */
    }
}

@media (max-width: 768px) {

    .image-section {
        padding: 25px;
        border-radius: 25px;
        margin-bottom: 40px;
    }

    .image-section h2 {
        font-size: clamp(24px, 5vw, 30px);
    }

    .scroll-container {
        gap: 20px;
    }

    .scroll-container img {
        width: 250px;  /* Increased from 200px */
        height: 200px; /* Increased from 160px */
    }
}

@media (max-width: 576px) {
    .scroll-container img {
        width: 220px;  /* Increased from 160px */
        height: 180px; /* Increased from 130px */
    }
}

@media (max-width: 480px) {
    body {
        padding: 20px 10px;
    }

    .image-section {
        padding: 20px;
        border-radius: 20px;
        margin-bottom: 30px;
    }

    .scroll-container {
        gap: 15px;
    }

    .scroll-container img {
        width: 200px;  /* Increased from 160px */
        height: 160px; /* Increased from 130px */
        border-radius: 15px;
    }
}

/* Optional: Add navigation hints */
.scroll-container::after {
    content: '← Scroll →';
    position: absolute;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    color: #667eea;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.image-section:hover .scroll-container::after {
    opacity: 0.9;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {

    .image-section {
        background: rgba(26, 26, 46, 0.9);
    }

    .scroll-container::-webkit-scrollbar-track {
        background: #2a2a4a;
    }

    .image-section h2 {
        background: linear-gradient(135deg, #a5b4fc 0%, #c084fc 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
}

/* For very large screens */
@media (min-width: 1800px) {
    .image-section {
        max-width: 1800px;
    }
    
    .scroll-container img {
        width: 400px;  /* Even larger for ultra-wide screens */
        height: 320px;
    }
}