/* 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;
}

/* Announcement Bar */
.announcement-bar {
    background: linear-gradient(90deg, #2c5aa0, #4a90e2);
    color: white;
    padding: 10px 0;
    overflow: hidden;
    position: relative;
}

.announcement-content {
    display: flex;
    animation: scrollAnnouncement 30s linear infinite;
    white-space: nowrap;
}

.announcement-item {
    display: flex;
    align-items: center;
    margin-right: 50px;
    min-width: max-content;
}

.announcement-item i {
    margin-right: 10px;
    color: #ffd700;
}

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

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: none;
}

.header:hover {
    transform: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    transition: none;
    cursor: default;
}

.logo:hover {
    transform: none;
    opacity: 1;
}

.school-name h1 {
    color: #2c5aa0;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    transition: none;
    cursor: default;
}

.school-name h1:hover {
    color: #2c5aa0;
    transform: none;
}

.school-name p {
    color: #666;
    font-size: 0.9rem;
    transition: none;
    cursor: default;
}

.school-name p:hover {
    color: #666;
    transform: none;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 8px;
    background: transparent;
}

.nav-list a:hover {
    color: #2c5aa0;
    background: rgba(44, 90, 160, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.2);
}

.nav-list a.active {
    color: #2c5aa0;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.15), rgba(74, 144, 226, 0.1));
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
}

/* Desktop navigation - underline effect */
.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2c5aa0, #4a90e2);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 1px;
}

.nav-list a:hover::after {
    width: 80%;
}

.nav-list a.active::after {
    width: 80%;
    background: linear-gradient(90deg, #2c5aa0, #4a90e2);
}

/* Additional hover effects */
.nav-list a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.05), rgba(74, 144, 226, 0.05));
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-list a:hover::before {
    opacity: 1;
}

/* Pulse animation for active page */
@keyframes activePulse {
    0%, 100% { 
        box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
    }
    50% { 
        box-shadow: 0 4px 20px rgba(44, 90, 160, 0.5);
    }
}

.nav-list a.active {
    animation: activePulse 2s ease-in-out infinite;
}

/* Hover scale effect */
.nav-list a:hover {
    transform: translateY(-2px) scale(1.02);
}

/* Focus states for accessibility */
.nav-list a:focus {
    outline: 2px solid rgba(44, 90, 160, 0.5);
    outline-offset: 2px;
}

/* Glow effect on hover */
.nav-list a:hover {
    text-shadow: 0 0 8px rgba(44, 90, 160, 0.3);
}

/* Active page glow */
.nav-list a.active {
    text-shadow: 0 0 12px rgba(44, 90, 160, 0.5);
}

/* Smooth color transition */
.nav-list a {
    background: linear-gradient(135deg, transparent, transparent);
    background-size: 200% 200%;
    transition: all 0.3s ease, background-position 0.3s ease;
}

.nav-list a:hover {
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.1), rgba(74, 144, 226, 0.1));
    background-size: 200% 200%;
    background-position: 100% 100%;
}

/* Mobile navigation - show arrows */
@media (max-width: 768px) {
    .nav-list a::after {
        display: block !important;
        content: '→';
        position: static;
        bottom: auto;
        left: auto;
        width: auto;
        height: auto;
        background: none;
        transition: all 0.3s ease;
        font-size: 1.2rem;
        opacity: 0.7;
    }
    
    .nav-list a:hover::after,
    .nav-list a.active::after {
        display: block !important;
        width: auto;
        transform: translateX(5px);
        opacity: 1;
    }
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 15px;
    padding: 12px;
    justify-content: center;
    align-items: center;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-btn:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.3);
}

.mobile-menu-btn span {
    width: 24px;
    height: 3px;
    background: linear-gradient(90deg, #ffffff, #e0e0e0);
    margin: 3px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px;
    box-shadow: none;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    color: white;
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.page-header::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="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 80px 0;
    background: linear-gradient(135deg, #2c5aa0 0%, #4a90e2 50%, #6ba3e8 100%);
    color: white;
    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="hero-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="white" opacity="0.1"/><circle cx="80" cy="80" r="2" fill="white" opacity="0.1"/><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23hero-pattern)"/></svg>');
}

.hero-content, .hero-image {
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInLeft 1s ease-out;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
    max-width: 36em;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(44, 90, 160, 0.3);
}

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

.btn-secondary:hover {
    background: #2c5aa0;
    color: white;
    transform: translateY(-3px);
}

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

.student-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.student-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.student-image:hover img {
    transform: scale(1.05);
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2c5aa0, #4a90e2);
    border-radius: 2px;
}

/* Circle shadow effect removed - keeping mobile version intact */

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 50%, #bbdefb 100%);
    position: relative;
}

.features::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="features-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%232c5aa0" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23features-pattern)"/></svg>');
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

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

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2c5aa0, #4a90e2);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

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

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

/* Leadership Section */
.leadership {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 50%, #ffcc80 100%);
    position: relative;
}

.leadership::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="leadership-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><rect x="0" y="0" width="30" height="30" fill="%23ff9800" opacity="0.03"/><rect x="30" y="30" width="30" height="30" fill="%23ff9800" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23leadership-pattern)"/></svg>');
}

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

.leader-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 152, 0, 0.1);
    position: relative;
}

.leader-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff9800, #ffb74d);
    z-index: 1;
}

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

.leader-image {
    height: 350px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.leader-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 152, 0, 0.1), rgba(255, 183, 77, 0.1));
    z-index: 1;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
    border-radius: 0 0 20px 20px;
    background: #f8f9fa;
}

.leader-card:hover .leader-image img {
    transform: scale(1.1);
}

.leader-info {
    padding: 35px;
    position: relative;
    background: linear-gradient(135deg, #fff, #fafafa);
}

.leader-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2c5aa0, #4a90e2);
}

.leader-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.leader-info h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ff9800, #ffb74d);
    border-radius: 2px;
}

.designation {
    color: #ff9800;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.message {
    color: #555;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
    padding: 20px;
    background: rgba(255, 152, 0, 0.05);
    border-radius: 10px;
    border-left: 4px solid #ff9800;
}

.leader-qualifications {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.leader-qualifications p {
    margin-bottom: 10px;
    color: #555;
}

/* Activities Section */
.activities {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 50%, #a5d6a7 100%);
    position: relative;
}

.activities::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="activities-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><polygon points="20,0 25,15 40,15 30,25 35,40 20,30 5,40 10,25 0,15 15,15" fill="%234caf50" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23activities-pattern)"/></svg>');
}

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

.activity-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.activity-card.no-image {
    grid-template-columns: 1fr;
}

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

.activity-image {
    height: 300px;
    overflow: hidden;
}

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

.activity-card:hover .activity-image img {
    transform: scale(1.1);
}

.activity-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.activity-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 15px;
}

.activity-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.activity-content li {
    color: #555;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.activity-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: bold;
}

/* About Content */
.about-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 50%, #90caf9 100%);
    position: relative;
}

.about-content::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="about-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="%232c5aa0" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23about-pattern)"/></svg>');
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 30px;
}

.about-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c5aa0;
    margin: 30px 0 15px;
}

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

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: min(520px, 58vh);
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* Values Section */
.values {
    padding: 80px 0;
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 50%, #ce93d8 100%);
    position: relative;
}

.values::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="values-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><polygon points="25,0 30,20 50,20 35,35 40,50 25,40 10,50 15,35 0,20 20,20" fill="%239c27b0" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23values-pattern)"/></svg>');
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

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

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

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 15px;
}

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

/* Stats Section */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    animation: fadeInUp 1s ease-out;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffd700;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Photo Slider Styles */
.photo-slider-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 50%, #90caf9 100%);
    position: relative;
}

.photo-slider-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="slider-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="%232c5aa0" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23slider-pattern)"/></svg>');
}

.slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    z-index: 1;
}

.slider-wrapper {
    overflow: hidden;
    border-radius: 20px;
    width: 100%;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 4300%; /* 43 slides * 100% */
}

.slide {
    width: 2.325581395%; /* 100% / 43 slides */
    flex-shrink: 0;
}

.slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(44, 90, 160, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 2;
}

.slider-btn:hover {
    background: rgba(44, 90, 160, 1);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Gallery Grid Section */
.gallery-grid-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 50%, #a5d6a7 100%);
    position: relative;
}

.gallery-grid-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="gallery-grid-pattern" width="35" height="35" patternUnits="userSpaceOnUse"><circle cx="17.5" cy="17.5" r="3" fill="%234caf50" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23gallery-grid-pattern)"/></svg>');
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

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

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

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

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

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

.gallery-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

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

/* Gallery Styles */
.gallery-filter {
    padding: 40px 0;
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 50%, #ffe082 100%);
    position: relative;
}

.gallery-filter::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="gallery-filter-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><rect x="0" y="0" width="15" height="15" fill="%23ff9800" opacity="0.05"/><rect x="15" y="15" width="15" height="15" fill="%23ff9800" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23gallery-filter-pattern)"/></svg>');
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.filter-btn {
    padding: 12px 25px;
    border: 2px solid #2c5aa0;
    background: transparent;
    color: #2c5aa0;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: #2c5aa0;
    color: white;
}

.gallery {
    padding: 60px 0;
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 50%, #a5d6a7 100%);
    position: relative;
}

.gallery::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="gallery-pattern" width="35" height="35" patternUnits="userSpaceOnUse"><circle cx="17.5" cy="17.5" r="3" fill="%234caf50" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23gallery-pattern)"/></svg>');
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

.gallery-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

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

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    margin-top: 5%;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.3);
    color: white;
    padding: 16px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
}

.prev-btn { left: 20px; }
.next-btn { right: 20px; }

.modal-caption {
    text-align: center;
    color: white;
    padding: 20px;
    font-size: 1.1rem;
}

/* Recent Events */
.recent-events {
    padding: 80px 0;
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 50%, #f48fb1 100%);
    position: relative;
}

.recent-events::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="events-pattern" width="45" height="45" patternUnits="userSpaceOnUse"><path d="M22.5,0 L30,15 L45,15 L33.75,25 L37.5,40 L22.5,30 L7.5,40 L11.25,25 L0,15 L15,15 Z" fill="%23e91e63" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23events-pattern)"/></svg>');
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

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

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

.event-image {
    height: 200px;
    overflow: hidden;
}

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

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-content {
    padding: 25px;
}

.event-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 10px;
}

.event-date {
    color: #4a90e2;
    font-weight: 500;
    margin-bottom: 15px;
}

.event-content p {
    color: #666;
    line-height: 1.6;
}

/* Academic Programs */
.academic-programs {
    padding: 80px 0;
    background: linear-gradient(135deg, #e0f2f1 0%, #b2dfdb 50%, #80cbc4 100%);
    position: relative;
}

.academic-programs::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="academic-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><rect x="0" y="0" width="20" height="20" fill="%23009688" opacity="0.05"/><rect x="20" y="20" width="20" height="20" fill="%23009688" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23academic-pattern)"/></svg>');
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.program-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2c5aa0, #4a90e2);
}

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

.program-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 2rem;
}

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

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

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

.program-card li {
    color: #555;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

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

/* Curriculum Activities */
.curriculum-activities {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 50%, #ffcc80 100%);
    position: relative;
}

.curriculum-activities::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="curriculum-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><polygon points="25,0 35,15 50,15 40,25 45,40 25,30 5,40 10,25 0,15 15,15" fill="%23ff5722" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23curriculum-pattern)"/></svg>');
}

.activity-section {
    background: white;
    border-radius: 20px;
    margin-bottom: 40px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.activity-header {
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    color: white;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.activity-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.activity-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

.activity-content {
    padding: 30px;
}

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

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

.activity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
}

.activity-item i {
    color: #2c5aa0;
    font-weight: bold;
}

/* Facilities */
.facilities {
    padding: 80px 0;
    background: linear-gradient(135deg, #f1f8e9 0%, #dcedc8 50%, #c5e1a5 100%);
    position: relative;
}

.facilities::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="facilities-pattern" width="55" height="55" patternUnits="userSpaceOnUse"><circle cx="27.5" cy="27.5" r="4" fill="%238bc34a" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23facilities-pattern)"/></svg>');
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

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

.facility-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2c5aa0, #4a90e2);
}

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

.facility-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.facility-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 15px;
}

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

/* Teaching Methodology */
.teaching-methodology {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8eaf6 0%, #c5cae9 50%, #9fa8da 100%);
    position: relative;
}

.teaching-methodology::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="methodology-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><polygon points="30,0 40,20 60,20 45,35 50,50 30,40 10,50 15,35 0,20 20,20" fill="%233f51b5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23methodology-pattern)"/></svg>');
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

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

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

.methodology-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.methodology-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 15px;
}

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

/* Contact Styles */
.contact-info {
    padding: 60px 0;
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 50%, #f48fb1 100%);
    position: relative;
}

.contact-info::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="contact-info-pattern" width="45" height="45" patternUnits="userSpaceOnUse"><path d="M22.5,0 L30,15 L45,15 L33.75,25 L37.5,40 L22.5,30 L7.5,40 L11.25,25 L0,15 L15,15 Z" fill="%23e91e63" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-info-pattern)"/></svg>');
}

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

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

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

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 15px;
}

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

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e0f2f1 0%, #b2dfdb 50%, #80cbc4 100%);
    position: relative;
}

.contact-form-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="contact-form-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><rect x="0" y="0" width="20" height="20" fill="%23009688" opacity="0.05"/><rect x="20" y="20" width="20" height="20" fill="%23009688" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-form-pattern)"/></svg>');
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-form h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 15px;
}

.contact-form p {
    color: #666;
    margin-bottom: 30px;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    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: #2c5aa0;
}

.contact-details h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 15px;
}

.contact-details p {
    color: #666;
    margin-bottom: 30px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.method-content {
    flex: 1;
    min-width: 0; /* Allows flex item to shrink below content size */
}

.method-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 8px;
}

.method-content p {
    color: #666;
    margin-bottom: 8px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.contact-link {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 500;
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: inline-block;
    max-width: 100%;
}

.contact-link:hover {
    text-decoration: underline;
}

.address {
    color: #666;
    font-style: italic;
}

.social-contact {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.social-contact h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid transparent;
    border-radius: 15px;
    text-decoration: none;
    color: #666;
    transition: all 0.3s ease;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.social-link i {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

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

.social-link:hover {
    background: linear-gradient(135deg, #2c5aa0 0%, #4a90e2 100%);
    color: white;
    transform: translateY(-5px);
    border-color: #2c5aa0;
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.3);
}

/* WhatsApp specific styling */
.social-link[href*="wa.me"]:hover {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-color: #25d366;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

/* Instagram specific styling */
.social-link[href*="instagram"]:hover {
    background: linear-gradient(135deg, #e4405f 0%, #c13584 100%);
    border-color: #e4405f;
    box-shadow: 0 8px 25px rgba(228, 64, 95, 0.3);
}

/* YouTube specific styling */
.social-link[href*="youtube"]:hover {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    border-color: #ff0000;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
}

/* Map Section */
.map-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 50%, #ffcc80 100%);
    position: relative;
}

.map-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="map-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><polygon points="25,0 35,15 50,15 40,25 45,40 25,30 5,40 10,25 0,15 15,15" fill="%23ff5722" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23map-pattern)"/></svg>');
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8eaf6 0%, #c5cae9 50%, #9fa8da 100%);
    position: relative;
}

.faq-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="faq-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><polygon points="30,0 40,20 60,20 45,35 50,50 30,40 10,50 15,35 0,20 20,20" fill="%233f51b5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23faq-pattern)"/></svg>');
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

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

.faq-question {
    padding: 25px 30px;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c5aa0;
}

.faq-question i {
    color: #2c5aa0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px 30px 30px;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

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

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #ffd700;
}

.footer-section p {
    margin-bottom: 10px;
    opacity: 0.9;
    word-break: break-word;
    overflow-wrap: break-word;
}

.footer-section p.email-address,
.contact-link.email-address {
    word-break: break-all;
    overflow-wrap: anywhere;
    hyphens: none;
}

.contact-card p.email-address {
    word-break: break-all;
    overflow-wrap: anywhere;
    hyphens: none;
}

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

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

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

.footer-section ul li a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ffd700;
    color: #2c5aa0;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.8;
}

/* 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) {
    .container {
        padding: 0 15px;
    }
    
    .logo {
        width: 70px;
        height: 70px;
    }
    
    /* Mobile Navigation - Hide desktop nav and show mobile button */
    .nav-list {
        display: none !important;
    }
    
    .mobile-menu-btn {
        display: flex !important;
        position: relative;
        width: 45px;
        height: 45px;
        background: linear-gradient(135deg, #2c5aa0, #4a90e2);
        border-radius: 8px;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        transition: all 0.3s ease;
        border: none;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .mobile-menu-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    .mobile-menu-btn.active {
        background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    }
    
    .mobile-menu-btn span {
        width: 24px;
        height: 3px;
        background: white;
        margin: 2px 0;
        transition: all 0.3s ease;
        border-radius: 2px;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Mobile Menu Overlay */
    .nav-list.mobile-active {
        display: flex !important;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        padding: 40px 20px;
        overflow-y: auto;
    }
    
    .nav-list.mobile-active li {
        margin: 8px 0;
        opacity: 1;
        width: 100%;
        max-width: 320px;
        animation: slideInFromTop 0.3s ease forwards;
    }
    
    .nav-list.mobile-active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-list.mobile-active li:nth-child(2) { animation-delay: 0.2s; }
    .nav-list.mobile-active li:nth-child(3) { animation-delay: 0.3s; }
    .nav-list.mobile-active li:nth-child(4) { animation-delay: 0.4s; }
    .nav-list.mobile-active li:nth-child(5) { animation-delay: 0.5s; }
    
    .nav-list.mobile-active a {
        color: white !important;
        font-size: 1.2rem;
        font-weight: 600;
        padding: 18px 25px 18px 70px;
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.15);
        border: 2px solid rgba(255, 255, 255, 0.25);
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        position: relative;
        text-decoration: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    /* Add icons to mobile navigation */
    .nav-list.mobile-active a::before {
        content: '';
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        width: 35px;
        height: 35px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        transition: all 0.3s ease;
    }
    
    .nav-list.mobile-active li:nth-child(1) a::before { content: '🏠'; }
    .nav-list.mobile-active li:nth-child(2) a::before { content: 'ℹ️'; }
    .nav-list.mobile-active li:nth-child(3) a::before { content: '📸'; }
    .nav-list.mobile-active li:nth-child(4) a::before { content: '📚'; }
    .nav-list.mobile-active li:nth-child(5) a::before { content: '📞'; }
    
    .nav-list.mobile-active a:hover::before {
        background: rgba(255, 255, 255, 0.4);
        transform: translateY(-50%) scale(1.2);
    }
    
    .nav-list.mobile-active a::after {
        content: '✦';
        font-size: 1.4rem;
        opacity: 0.8;
        transition: all 0.3s ease;
        animation: pulse 2s infinite;
    }
    
    .nav-list.mobile-active a:hover,
    .nav-list.mobile-active a.active {
        background: rgba(255, 255, 255, 0.25);
        transform: translateY(-3px) scale(1.02);
        border-color: rgba(255, 255, 255, 0.5);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }
    
    .nav-list.mobile-active a:hover::after {
        transform: rotate(360deg) scale(1.2);
        opacity: 1;
        animation: none;
    }
    
    /* Active page indicator for mobile */
    .nav-list.mobile-active a.active {
        background: rgba(255, 255, 255, 0.35);
        border-color: rgba(255, 255, 255, 0.7);
        font-weight: 700;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    

    
    /* Menu Close Button */
    .mobile-menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        font-size: 20px;
        color: white;
        transition: all 0.3s ease;
        z-index: 10000;
    }
    
    .mobile-menu-close:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.1);
    }
    
    /* Animations */
    @keyframes slideInFromTop {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes pulse {
        0%, 100% { 
            transform: scale(1);
            opacity: 0.8;
        }
        50% { 
            transform: scale(1.1);
            opacity: 1;
        }
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden !important;
        position: fixed;
        width: 100%;
    }
    
    /* Header adjustments for mobile */
    .header .container {
        padding: 10px 15px;
    }
    
    .school-name h1 {
        font-size: 1.2rem;
    }
    
    .school-name p {
        font-size: 0.8rem;
    }
    

    
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
    }
    
    .activity-card {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
    
    .gallery-item img {
        height: 120px;
    }
    
    .gallery-item {
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    
    .gallery-item:hover {
        transform: scale(1.02);
        box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    }
    
    .gallery-overlay {
        padding: 10px;
        font-size: 0.8rem;
    }
    
    .gallery-overlay p {
        font-size: 0.7rem;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .facilities-grid {
        grid-template-columns: 1fr;
    }
    
    .methodology-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .filter-buttons {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Contact Method Mobile Styles */
    .contact-method {
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .method-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .method-content h3 {
        font-size: 1.1rem;
    }
    
    .method-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .contact-link {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    /* Social Contact Mobile Styles */
    .social-contact {
        margin-top: 25px;
        padding-top: 25px;
    }
    
    .social-contact h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .social-links {
        gap: 15px;
        justify-content: center;
    }
    
    .social-link {
        padding: 12px 15px;
        min-width: 80px;
    }
    
    .social-link i {
        font-size: 1.3rem;
    }
    
    .social-link span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 60px;
        height: 60px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .activity-list {
        grid-template-columns: 1fr;
    }
    
    /* Gallery Grid for very small screens */
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }
    
    .gallery-item img {
        height: 100px;
    }
    
    .gallery-overlay {
        padding: 8px;
    }
    
    .gallery-overlay p {
        font-size: 0.6rem;
    }
    
    /* Photo Slider Mobile Styles */
    .slider-container {
        max-width: 100%;
        margin: 0 15px;
    }
    
    .slide img {
        height: 300px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
    
    /* Contact Method Very Small Screen Styles */
    .contact-method {
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .method-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .method-content h3 {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .method-content p {
        font-size: 0.85rem;
        line-height: 1.3;
        margin-bottom: 6px;
    }
    
    .contact-link {
        font-size: 0.85rem;
        line-height: 1.2;
        word-break: break-all;
    }
    
    /* Social Contact Very Small Screen Styles */
    .social-contact {
        margin-top: 20px;
        padding-top: 20px;
    }
    
    .social-contact h3 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .social-links {
        gap: 10px;
        flex-direction: row;
        justify-content: center;
    }
    
    .social-link {
        padding: 10px 12px;
        min-width: 70px;
    }
    
    .social-link i {
        font-size: 1.2rem;
        margin-bottom: 3px;
    }
    
    .social-link span {
        font-size: 0.7rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }
    
    .gallery-item img {
        height: 100px;
    }
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-in-out;
}

.lightbox.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.close-btn {
    position: absolute;
    top: -50px;
    right: 0;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    z-index: 10000;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Mobile Lightbox Styles */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }
    
    .close-btn {
        top: -40px;
        right: 10px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }
} 