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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img, .schoolname-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: #e74c3c;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e74c3c;
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Announcement Bar */
.announcement-bar {
    background: linear-gradient(90deg, #e74c3c, #c0392b);
    color: white;
    padding: 10px 0;
    margin-top: 70px;
    overflow: hidden;
}

.announcement-content {
    display: flex;
    align-items: center;
    gap: 15px;
    animation: scroll-left 20s linear infinite;
}

.announcement-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.announcement-text {
    display: flex;
    gap: 50px;
    white-space: nowrap;
}

.announcement-text span {
    font-weight: 500;
}

@keyframes scroll-left {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Video Section */
.video-section {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.video-content {
    color: white;
    max-width: 600px;
    padding: 20px;
}

.video-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    animation: fadeInUp 1s ease;
}

.video-subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.3s both;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.6s both;
}

.cta-button:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    animation: fadeInLeft 1s ease;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
    animation: fadeInLeft 1s ease 0.2s both;
}

.hero-description {
    margin-bottom: 30px;
    line-height: 1.8;
    animation: fadeInLeft 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInLeft 1s ease 0.6s both;
}

.btn {
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #e74c3c;
    color: white;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn:hover {
    transform: translateY(-2px);
}

.hero-image {
    animation: fadeInRight 1s ease;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Digital Panel Section */
.digital-panel-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.digital-panel-section::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    animation: fadeInUp 1s ease;
}

.section-header .section-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.digital-panel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.panel-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.panel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.panel-card:hover::before {
    left: 100%;
}

.panel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.panel-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.panel-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.panel-card p {
    opacity: 0.9;
    line-height: 1.6;
}

.digital-panel-showcase {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 60px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.showcase-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.showcase-text h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #f39c12;
}

.showcase-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.showcase-features {
    display: grid;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.feature-item i {
    color: #f39c12;
    font-size: 1.2rem;
}

.feature-item span {
    font-weight: 500;
}

.showcase-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.digital-board {
    position: relative;
    animation: float 3s ease-in-out infinite;
}

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

.board-screen {
    width: 280px;
    height: 180px;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.board-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 15px 15px 0 0;
}

.screen-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.app-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
    animation: glow 2s ease-in-out infinite alternate;
}

.app-icon:nth-child(1) { animation-delay: 0s; }
.app-icon:nth-child(2) { animation-delay: 0.5s; }
.app-icon:nth-child(3) { animation-delay: 1s; }
.app-icon:nth-child(4) { animation-delay: 1.5s; }

@keyframes glow {
    from { box-shadow: 0 0 5px rgba(255, 255, 255, 0.3); }
    to { box-shadow: 0 0 20px rgba(255, 255, 255, 0.6); }
}

.board-stand {
    width: 30px;
    height: 120px;
    background: linear-gradient(135deg, #34495e, #2c3e50);
    margin: 0 auto;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Leadership Section */
.leadership-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.leadership-section::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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(0,0,0,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.leadership-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.leadership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.leadership-card:hover::before {
    transform: scaleX(1);
}

.leadership-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.leadership-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.leadership-card:hover .leadership-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);
}

.leadership-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.leadership-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.leadership-features {
    list-style: none;
    text-align: left;
}

.leadership-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #555;
    font-size: 0.95rem;
}

.leadership-features i {
    color: #27ae60;
    font-size: 0.9rem;
}

.leadership-highlight {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    border-radius: 30px;
    padding: 60px;
    color: white;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.highlight-content {
    max-width: 800px;
    margin: 0 auto;
}

.highlight-text h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #f39c12;
}

.highlight-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.9;
}

.highlight-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f39c12;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sports Section */
.sports-section {
    padding: 80px 0;
}

.sports-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.indoor-games h3, .outdoor-sports h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #333;
}

.games-grid, .sports-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.game-item, .sport-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.game-item:hover, .sport-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.game-item i, .sport-item i {
    font-size: 1.5rem;
    color: #e74c3c;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 50px 0 20px;
}

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

.footer-section h3 {
    margin-bottom: 20px;
    color: #e74c3c;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #e74c3c;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .digital-panel-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin-bottom: 50px;
    }

    .panel-card {
        padding: 30px 20px;
    }

    .panel-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .panel-card h3 {
        font-size: 1.3rem;
    }

    .digital-panel-showcase {
        padding: 40px 30px;
    }

    .showcase-content {
        text-align: center;
    }

    .showcase-text h3 {
        font-size: 1.5rem;
    }

    .board-screen {
        width: 250px;
        height: 160px;
    }

    .screen-content {
        gap: 15px;
        margin-top: 30px;
    }

    .app-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 50px;
    }

    .leadership-card {
        padding: 30px 25px;
    }

    .leadership-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .leadership-card h3 {
        font-size: 1.3rem;
    }

    .leadership-highlight {
        padding: 40px 30px;
    }

    .highlight-text h3 {
        font-size: 2rem;
    }

    .highlight-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .sports-content {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .video-title {
        font-size: 2rem;
    }

    /* Video section mobile improvements */
    .video-section {
        height: 50vh;
    }

    .hero-video {
        object-fit: contain;
        object-position: center;
    }

    .video-content {
        max-width: 90%;
        padding: 15px;
    }

    .video-subtitle {
        font-size: 1rem;
    }

    .cta-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .video-title {
        font-size: 1.5rem;
    }

    /* Additional video improvements for very small screens */
    .video-section {
        height: 40vh;
    }

    .video-content {
        max-width: 95%;
        padding: 10px;
    }

    .video-title {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    .video-subtitle {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .cta-button {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    animation: fadeInUp 1s ease;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

/* About Page Styles */
.school-overview {
    padding: 80px 0;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.overview-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.overview-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #666;
}

.overview-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.leadership-section-about {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.leadership-section-about::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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(0,0,0,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.leadership-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 1;
}

.leadership-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

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

.leadership-image-container {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    background: white;
}

.leadership-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.leadership-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: all 0.3s ease;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.leadership-card:hover .leadership-img {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.leadership-info {
    padding: 40px;
}

.leadership-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.leadership-info h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 700;
}

.designation {
    color: #e74c3c;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.leadership-message {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #e74c3c;
}

.leadership-message p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    font-size: 1rem;
}

.leadership-message p:last-child {
    margin-bottom: 0;
}

.vision-mission-section {
    padding: 80px 0;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.vision-card, .mission-card, .values-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.vision-card:hover, .mission-card:hover, .values-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.card-icon {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 20px;
}

.values-card ul {
    list-style: none;
    text-align: left;
}

.values-card ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.values-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

.we-adopt-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.adopt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.adopt-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.adopt-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.adopt-icon {
    font-size: 2.5rem;
    color: #e74c3c;
    margin-bottom: 20px;
}

.adopt-item h3 {
    margin-bottom: 15px;
    color: #333;
}

.adopt-item p {
    color: #666;
    line-height: 1.6;
}

.partners-section {
    padding: 80px 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.partner-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.partner-logo {
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.partner-logo.navneet { background: linear-gradient(135deg, #3498db, #2980b9); }
.partner-logo.schoolnet { background: linear-gradient(135deg, #2c3e50, #34495e); }
.partner-logo.universal { background: linear-gradient(135deg, #e74c3c, #c0392b); }
.partner-logo.weforesee { background: linear-gradient(135deg, #27ae60, #229954); }
.partner-logo.viswam { background: linear-gradient(135deg, #9b59b6, #8e44ad); }

.partner-logo h3, .partner-logo p {
    color: white;
    margin: 0;
}

/* Gallery Page Styles */
.gallery-slider-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    height: 400px;
}

.slider-item {
    min-width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.slider-item:hover img {
    transform: scale(1.05);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(231, 76, 60, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: rgba(231, 76, 60, 1);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #e74c3c;
    transform: scale(1.2);
}

.gallery-section {
    padding: 60px 0;
}

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

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.gallery-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    text-align: center;
    color: white;
    padding: 20px;
}

.gallery-info h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.gallery-info p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Mockup styles for gallery */
.digital-panel-mockup, .activity-mockup {
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.activity-mockup.chess { background: linear-gradient(135deg, #8B4513, #A0522D); }
.activity-mockup.lego { background: linear-gradient(135deg, #FF6B35, #F7931E); }

.activity-mockup.yoga { background: linear-gradient(135deg, #9B59B6, #8E44AD); }
.activity-mockup.lab { background: linear-gradient(135deg, #3498DB, #2980B9); }
.activity-mockup.library { background: linear-gradient(135deg, #E67E22, #D35400); }
.activity-mockup.meditation { background: linear-gradient(135deg, #34495E, #2C3E50); }
.activity-mockup.trip { background: linear-gradient(135deg, #E74C3C, #C0392B); }
.activity-mockup.meeting { background: linear-gradient(135deg, #16A085, #1ABC9C); }
.activity-mockup.cycling { background: linear-gradient(135deg, #F39C12, #E67E22); }

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

.modal-content {
    background: white;
    border-radius: 10px;
    max-width: 90%;
    max-height: 90%;
    overflow: hidden;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: white;
    z-index: 2001;
}

.modal-image {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
}

.modal-info {
    padding: 20px;
}

.modal-info h3 {
    margin-bottom: 10px;
    color: #333;
}

.modal-info p {
    color: #666;
    line-height: 1.6;
}

/* Curriculum Page Styles */
.curriculum-overview {
    padding: 80px 0;
}

.curriculum-intro {
    text-align: center;
    margin-bottom: 50px;
}

.curriculum-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.curriculum-intro p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.curriculum-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.curriculum-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.curriculum-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.curriculum-card.primary {
    border-left: 5px solid #e74c3c;
}

.curriculum-card.secondary {
    border-left: 5px solid #3498db;
}

.card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.card-header i {
    font-size: 2rem;
}

.card-header h3 {
    font-size: 1.5rem;
    margin: 0;
}

.card-content {
    padding: 30px;
}

.card-content h4 {
    color: #e74c3c;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.card-content ul {
    list-style: none;
}

.card-content ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.card-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

.foundation-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.foundation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.foundation-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.foundation-text p {
    margin-bottom: 30px;
    line-height: 1.8;
    opacity: 0.9;
}

.foundation-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-item i {
    font-size: 1.5rem;
    color: #e74c3c;
}

.foundation-mockup {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.mockup-content i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #e74c3c;
}

.mockup-content h3 {
    font-size: 1.5rem;
    margin: 0;
}

.methodology-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.methodology-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.methodology-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.methodology-icon {
    font-size: 2.5rem;
    color: #e74c3c;
    margin-bottom: 20px;
}

.methodology-item h3 {
    margin-bottom: 15px;
    color: #333;
}

.methodology-item p {
    color: #666;
    line-height: 1.6;
}

.subjects-section {
    padding: 80px 0;
}

.subjects-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.academic-subjects h3, .co-curricular h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #333;
}

.subjects-grid, .activities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.subject-item, .activity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.subject-item:hover, .activity-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.subject-item i, .activity-item i {
    font-size: 1.5rem;
    color: #e74c3c;
}

.assessment-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.assessment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.assessment-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.assessment-icon {
    font-size: 2.5rem;
    color: #e74c3c;
    margin-bottom: 20px;
}

.assessment-card h3 {
    margin-bottom: 15px;
    color: #333;
}

.assessment-card p {
    color: #666;
    line-height: 1.6;
}

.infrastructure-section {
    padding: 80px 0;
}

.infrastructure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.infrastructure-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.infrastructure-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.infrastructure-icon {
    font-size: 2.5rem;
    color: #e74c3c;
    margin-bottom: 20px;
}

.infrastructure-item h3 {
    margin-bottom: 15px;
    color: #333;
}

.infrastructure-item p {
    color: #666;
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-info-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.contact-icon {
    font-size: 2.5rem;
    color: #e74c3c;
    margin-bottom: 20px;
}

.contact-card h3 {
    margin-bottom: 15px;
    color: #333;
}

.contact-card p {
    color: #666;
    line-height: 1.6;
}

.contact-form-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form-container h2, .contact-map-container h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    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: #e74c3c;
}

.submit-btn {
    background: #e74c3c;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.map-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background: white;
    transition: all 0.3s ease;
}

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

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 20px;
}

.map-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.location-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 30px;
    color: white;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.location-card::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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.location-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
}

.location-details h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.location-details p {
    margin-bottom: 5px;
    opacity: 0.9;
    font-size: 0.95rem;
}

.directions-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.directions-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.directions-card h4 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.directions-card h4 i {
    color: #e74c3c;
}

.directions-card ul {
    list-style: none;
}

.directions-card ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.directions-card ul li:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.directions-card ul li i {
    color: #27ae60;
    font-size: 0.9rem;
    min-width: 16px;
}

.directions-card ul li:last-child {
    margin-bottom: 0;
}

.admission-section {
    padding: 80px 0;
}

.admission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.admission-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.admission-info p {
    margin-bottom: 30px;
    line-height: 1.8;
    color: #666;
}

.admission-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature i {
    font-size: 1.5rem;
    color: #e74c3c;
}

.admission-cta {
    text-align: center;
}

.admission-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
}

.admission-cta p {
    margin-bottom: 30px;
    color: #666;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-btn {
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-btn.primary {
    background: #e74c3c;
    color: white;
}

.cta-btn.secondary {
    background: #27ae60;
    color: white;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.quick-contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.quick-contact-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.quick-contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.quick-icon {
    font-size: 2.5rem;
    color: #e74c3c;
    margin-bottom: 20px;
}

.quick-contact-item h3 {
    margin-bottom: 15px;
    color: #333;
}

.quick-contact-item p {
    color: #666;
    line-height: 1.6;
}

/* Social Media Links */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link.facebook {
    background: linear-gradient(135deg, #1877f2, #0d6efd);
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.social-link.facebook:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
}

.social-link.instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.3);
}

.social-link.instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 39, 67, 0.4);
}

.social-link i {
    font-size: 1.2rem;
    min-width: 20px;
}

.social-link span {
    font-weight: 500;
    font-size: 0.95rem;
}

/* Additional Mobile Responsiveness */
@media (max-width: 768px) {
    .overview-content, .foundation-content, .contact-content, .admission-content {
        grid-template-columns: 1fr;
    }
    
    .leadership-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .leadership-card {
        border-radius: 15px;
    }

    .leadership-image-container {
        height: 280px;
    }

    .leadership-info {
        padding: 25px;
    }

    .leadership-info h3 {
        font-size: 1.5rem;
    }

    .leadership-message {
        padding: 20px;
    }
    
    .vision-mission-grid {
        grid-template-columns: 1fr;
    }
    
    .adopt-grid, .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .foundation-features {
        grid-template-columns: 1fr;
    }
    
    .subjects-content {
        grid-template-columns: 1fr;
    }
    
    .subjects-grid, .activities-grid {
        grid-template-columns: 1fr;
    }
    
    .admission-features {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .slider-container {
        max-width: 100%;
        height: 300px;
    }
    
    .slider-wrapper {
        height: 300px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .gallery-item {
        height: 120px;
    }
    
    .gallery-img {
        height: 120px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .contact-form, .map-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .map-container iframe {
        height: 300px;
    }

    .location-card {
        padding: 25px;
    }

    .location-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .location-details h3 {
        font-size: 1.2rem;
    }

    .directions-card {
        padding: 25px;
    }

    .directions-card h4 {
        font-size: 1.1rem;
    }

    .social-links {
        gap: 12px;
    }

    .social-link {
        padding: 10px 14px;
    }

    .social-link i {
        font-size: 1.1rem;
    }

    .social-link span {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .slider-container {
        height: 250px;
    }
    
    .slider-wrapper {
        height: 250px;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }
    
    .gallery-item {
        height: 100px;
    }
    
    .gallery-img {
        height: 100px;
    }
    
    .leadership-info, .card-content {
        padding: 20px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .admission-info h3 {
        font-size: 1.5rem;
    }
} 