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

body {
    font-family: 'SolaimanLipi', 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

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

.logo {
    width: 109px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
 
}

.logo img {
    width: 120px;   /* default web size */
    height: 105px;
}

/* School info */
.school-info h1 {
    font-size: 1.9rem;
    margin-bottom: 10px; /* slightly more space between h1 and p */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    font-weight: 700;
}

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

.header-graphic {
    font-size: 3rem;
    opacity: 0.8;
}
@media (max-width: 768px) {
    .logo {
    width: 110px;
    height: 80px;
    }
    .logo img {
        width: 110px; /* bigger on mobile */
        height: 93px;
    }

    .school-info h1 {
        font-size: 1.7rem; /* slightly smaller for fit */
    }

    .school-info p {
        font-size: 0.9rem;
    }
    .navbar .nav-menu > li > a {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* icon + text side by side */
    gap: 6px; /* small spacing */
  }
}
/* Navigation Styles */
.navbar {
    background: #2c3e50;
    padding: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
}

.nav-menu {
    max-width: 2400px;
    margin: 0 auto;
    display: flex;
    list-style: none;
    justify-content: space-around;
    flex-wrap: wrap;
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    display: block;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.nav-menu li a:hover {
    background: #34495e;
    transform: translateY(-2px);
}

.nav-menu li a i {
    margin-right: 5px;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown > a i.fa-chevron-down {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown:hover > a i.fa-chevron-down {
    transform: rotate(180deg);
}

/* Submenu Styles */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #34495e;
    min-width: 200px;
    list-style: none;
    padding: 0;
    margin: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border-radius: 0 0 8px 8px;
}

.dropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    position: relative;
}

.submenu li a {
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    display: block;
    border-bottom: 1px solid #2c3e50;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.submenu li:last-child a {
    border-bottom: none;
}

.submenu li a:hover {
    background: #2c3e50;
    padding-left: 25px;
}

.submenu li a i.fa-chevron-right {
    float: right;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

/* Sub-submenu Styles */
.sub-submenu {
    position: absolute;
    left: 100%;
    top: 0;
    background: #2c3e50;
    min-width: 180px;
    list-style: none;
    padding: 0;
    margin: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    border-radius: 0 8px 8px 8px;
}

.submenu-item:hover .sub-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.submenu-item:hover > a i.fa-chevron-right {
    transform: rotate(90deg);
}

.sub-submenu li a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
    border-bottom: 1px solid #34495e;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.sub-submenu li:last-child a {
    border-bottom: none;
}

.sub-submenu li a:hover {
    background: #34495e;
    padding-left: 25px;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

/* Slider Container */
.slider-container {
    width: 100%;
    max-width: 100%;
    height: 100vh;
    position: relative;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    overflow: hidden;
}


/* Slider Wrapper */
.slider-wrapper {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

/* Individual Slides */
.slide {
    flex: 0 0 100%; 
    height: 100%;
}


.slide-content {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.slide-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: none;
    transition: transform 0.3s ease;
}




.slide-image img:hover {
    transform: scale(1.02);
}

/* Slider Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.slider-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

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

.dot.active {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    animation: pulse 2s infinite;
}

/* Slider Progress Bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    z-index: 10;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    width: 0%;
    transition: width 5s linear;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 0;
    }
    
    .slider-container {
        height: 100vh;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .slider-btn.prev {
        left: 10px;
    }
    
    .slider-btn.next {
        right: 10px;
    }
    
    .slider-dots {
        bottom: 20px;
        gap: 8px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .slider-dots {
        bottom: 15px;
        gap: 6px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
}

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

.page-header-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-header-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Page Content */
.page-content {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}
.other-page-content {
    max-width: 1200px;
    margin: 20px auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    padding: 0 20px;

}

.page-content section {
    margin-bottom: 40px;
}

.page-content h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #3498db;
    font-size: 1.8rem;
}

.page-content h2 i {
    margin-right: 10px;
    color: #3498db;
}

/* Active Navigation */
.nav-menu li a.active {
    background: #34495e;
    transform: translateY(-2px);
}
.page-header {
    padding: 35px 10px; /* web header height */
    text-align: center;
}

.page-header .page-header-content h1 {
    font-size: 1.8rem; /* web heading size */
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px; /* space between icon and text */
    color: #ffffff;
}

.page-header .page-header-content p {
    font-size: 1rem; /* web subtitle */
    color: #ffffff;
    margin: 0;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .page-header {
        padding: 15px 10px; /* shorter on mobile */
    }

    .page-header .page-header-content h1 {
        font-size: 1.3rem; /* smaller heading on mobile */
    }

    .page-header .page-header-content p {
        font-size: 0.8rem; /* smaller subtitle on mobile */
    }

    .page-header .page-header-content i {
        font-size: 0.9rem; /* smaller icon on mobile */
    }
}

/* Breaking News */


.breaking-news {
    background: #e74c3c;
    color: white;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Start hidden */


.news-label {
    background: #c0392b;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
}

.news-content {
    flex: 1;
    max-width: 800px;
    overflow: hidden;
}

.news-content span {
    animation: scroll-text 60s linear infinite; /* default slower */
    display: inline-block;
    white-space: nowrap;
}

.news-separator {
    display: inline-block;
    padding: 0 50px;
    opacity: 0.7;
}

@keyframes scroll-text {
    0% { transform: translateX(20%); }
    100% { transform: translateX(-100%); }
}
@media (max-width: 768px) {
    .news-content span {
        animation: scroll-text 80s linear infinite;
    }

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

}



}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 20px auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    padding: 0 20px;
}

/* Left Column */
.left-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stats-section, .student-info, .gallery-section {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stats-section:hover, .student-info:hover, .gallery-section:hover {
    transform: translateY(-5px);
}

.stats-section h3, .student-info h3, .gallery-section h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

.stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #ecf0f1;
}

.number {
    font-weight: bold;
    color: #3498db;
}

.student-table {
    width: 100%;
    border-collapse: collapse;
}

.student-table td {
    padding: 8px;
    border-bottom: 1px solid #ecf0f1;
}

.student-table td:last-child {
    text-align: right;
    font-weight: bold;
    color: #3498db;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.gallery-item {
    text-align: center;
    padding: 15px;
    border: 1px solid #ecf0f1;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.gallery-image {
    width: 250px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: white;
    font-size: 1.5rem;
}

.gallery-item p {
    font-weight: bold;
    margin-bottom: 5px;
}

.gallery-item small {
    color: #7f8c8d;
}

/* Center Column */
.center-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.welcome-section, .principal-section, .map-section {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.welcome-section:hover, .principal-section:hover, .map-section:hover {
    transform: translateY(-5px);
}

.welcome-section h2 {
    color: #2c3e50;
    margin-bottom: 15px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

.principal-section {
    display: flex;
    gap: 20px;
    align-items: center;
}

.principal-photo {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.principal-info h3 {
    color: #2c3e50;
    margin-bottom: 5px;
}

.principal-info h4 {
    color: #3498db;
    margin-bottom: 10px;
}

.details-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.details-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.map-placeholder {
    text-align: center;
    padding: 40px;
    color: #7f8c8d;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #bdc3c7;
}

/* Right Column */

.two-column-layout {
    display: flex;
    flex-direction: row;
    gap: 25px;
}


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

.admission-section, .notice-board, .download-section, .e-service, .official-links, .emergency-hotline, .facebook-section {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.admission-section:hover, .notice-board:hover, .download-section:hover, .e-service:hover, .official-links:hover, .emergency-hotline:hover, .facebook-section:hover {
    transform: translateY(-5px);
}

.admission-btn {
    width: 100%;
    background: #e74c3c;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.notice-board h3, .download-section h3, .e-service h3, .official-links h3, .emergency-hotline h3, .facebook-section h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

.notice-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notice-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-radius: 5px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.notice-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.notice-item i {
    color: #3498db;
}

.download-list {
    list-style: none;
    margin-bottom: 15px;
}

.download-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #ecf0f1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.download-list li:hover {
    color: #3498db;
    transform: translateX(5px);
}

.download-list li i {
    color: #e74c3c;
}

.all-content-btn {
    background: #27ae60;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.all-content-btn:hover {
    background: #229954;
    transform: translateY(-2px);
}

.e-service ul, .official-links ul {
    list-style: none;
}

.e-service ul li, .official-links ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #ecf0f1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.e-service ul li:hover, .official-links ul li:hover {
    color: #3498db;
    transform: translateX(5px);
}

.e-service ul li i, .official-links ul li i {
    color: #3498db;
}

.hotline-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.hotline-item {
    text-align: center;
    padding: 15px;
    border: 1px solid #ecf0f1;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hotline-item:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hotline-item i {
    font-size: 1.5rem;
    color: #e74c3c;
    margin-bottom: 5px;
}

.hotline-item span {
    display: block;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 5px;
}

.hotline-item small {
    color: #7f8c8d;
    font-size: 0.8rem;
}

.facebook-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1877f2;
    text-decoration: none;
    padding: 10px;
    border: 2px solid #1877f2;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.facebook-link:hover {
    background: #1877f2;
    color: white;
    transform: translateY(-2px);
}

.about-section {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px 20px;
   
    
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    max-width: 800px;
}

.about-section .card {
    text-align: center;
    transition: transform 0.3s ease;
}

.about-section .card:hover {
    transform: translateY(-5px);
}

.about-section .card-img-top {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    object-fit: cover;
    height: 350px;
    width: 100%;
}

.about-section .card-body {
    padding: 20px;
}

.about-description {
  
    overflow-y: auto;
    text-align: justify;
    padding: 10px;
}




/* Administration Page Styles */
.admin-section {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    
    height: fit-content;
}

.admin-card {
    display: flex;
    gap: 30px;
    
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
}



.admin-photo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    flex-shrink: 0;
}

.admin-info h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.admin-info .designation {
    color: #3498db;
    font-weight: bold;
    margin-bottom: 5px;
}

.admin-info .qualification {
    color: #7f8c8d;
    margin-bottom: 5px;
}

.admin-info .experience {
    color: #27ae60;
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 5px;
    color: #34495e;
}

.contact-info i {
    margin-right: 8px;
    color: #3498db;
}

/* Teachers Grid */
.teachers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

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

.teacher-card:hover {
    transform: translateY(-5px);
}

.teacher-photo {
    width: 120px;
    height: 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    /* border-radius: 50%; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin: 0 auto 15px;
}



.teacher-card h3 {
    color: #2c3e50;
    margin-bottom: 8px;
}

.teacher-card .subject {
    color: #3498db;
    font-weight: bold;
    margin-bottom: 5px;
}

.teacher-card .qualification {
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* Staff Grid */
.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

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

.staff-card:hover {
    transform: translateY(-5px);
}

.staff-photo {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin: 0 auto 15px;
}

.staff-card h3 {
    color: #2c3e50;
    margin-bottom: 8px;
}

.staff-card .designation {
    color: #3498db;
    font-weight: bold;
}

/* Organization Structure */
.org-structure {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.org-level {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.org-level h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
}

.org-level ul {
    list-style: none;
}

.org-level li {
    padding: 8px 0;
    border-bottom: 1px solid #ecf0f1;
    color: #34495e;
}

.org-level li:last-child {
    border-bottom: none;
}

/* Students Page Styles */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

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

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto 20px;
}

.stat-card h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #3498db;
}

/* Class Grid */
.class-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.class-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.class-card:hover {
    transform: translateY(-5px);
}

.class-card h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.3rem;
}

.class-stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Achievement Grid */
.achievement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

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

.achievement-card:hover {
    transform: translateY(-5px);
}

.achievement-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto 20px;
}

.achievement-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.achievement-card p {
    color: #7f8c8d;
    margin-bottom: 8px;
}

/* Activity Grid */
.activity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.activity-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-5px);
}

.activity-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 20px;
}

.activity-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

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

.activity-card li {
    padding: 5px 0;
    color: #7f8c8d;
    border-bottom: 1px solid #ecf0f1;
}

.activity-card li:last-child {
    border-bottom: none;
}

/* Council Grid */
.council-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

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

.council-card:hover {
    transform: translateY(-5px);
}

.council-card h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.council-card p {
    color: #7f8c8d;
    margin-bottom: 5px;
}

/* Admission Page Styles */
.notice-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 20px;
}

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

.notice-card p {
    color: #7f8c8d;
    margin-bottom: 15px;
    line-height: 1.6;
}

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

.notice-details p {
    margin-bottom: 8px;
    color: #34495e;
}

/* Requirements Grid */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.requirement-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.requirement-card:hover {
    transform: translateY(-5px);
}

.requirement-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 20px;
}

.requirement-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

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

.requirement-card li {
    padding: 8px 0;
    border-bottom: 1px solid #ecf0f1;
    color: #7f8c8d;
}

.requirement-card li:last-child {
    border-bottom: none;
}

/* Process Steps */
.process-steps {
    margin-top: 20px;
}

.step {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateX(10px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    flex-shrink: 0;
}

.step-content h3 {
    color: #2c3e50;
    margin-bottom: 8px;
}

.step-content p {
    color: #7f8c8d;
}

/* Online Form */
.online-form {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 20px;
}

.online-form h3 {
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.5rem;
}

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

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

.form-group label {
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #ecf0f1;
    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: #3498db;
}

.submit-btn {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-top: 20px;
}

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

/* Fee Table */
.fee-table {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 20px;
    overflow-x: auto;
}

.fee-table table {
    width: 100%;
    border-collapse: collapse;
}

.fee-table th,
.fee-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #ecf0f1;
}

.fee-table th {
    background: #3498db;
    color: white;
    font-weight: bold;
}

.fee-table tr:hover {
    background: #f8f9fa;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

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

.contact-card:hover {
    transform: translateY(-5px);
}

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

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

.contact-card p {
    color: #7f8c8d;
    margin-bottom: 8px;
}

/* Notice Page Styles */
.notice-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.notice-card:hover {
    transform: translateY(-5px);
}

.notice-card.urgent {
    border-left: 5px solid #e74c3c;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe6e6 100%);
}

.notice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.notice-header h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin: 0;
}

.notice-date {
    color: #7f8c8d;
    font-size: 0.9rem;
    background: #f8f9fa;
    padding: 5px 10px;
    border-radius: 15px;
}

.notice-card p {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.notice-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.notice-type {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    color: white;
}

.notice-type.urgent {
    background: #e74c3c;
}

.notice-type.academic {
    background: #3498db;
}

.notice-type.event {
    background: #f39c12;
}

.notice-type.admin {
    background: #9b59b6;
}

/* Notice Buttons */
.read-more-btn,
.download-btn,
.view-btn,
.apply-btn,
.details-btn,
.register-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.read-more-btn {
    background: #e74c3c;
}

.download-btn {
    background: #27ae60;
}

.view-btn {
    background: #3498db;
}

.apply-btn {
    background: #f39c12;
}

.details-btn {
    background: #9b59b6;
}

.register-btn {
    background: #e67e22;
}

.read-more-btn:hover,
.download-btn:hover,
.view-btn:hover,
.apply-btn:hover,
.details-btn:hover,
.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Notices Grid */
.notices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* Archive List */
.archive-list {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 20px;
}

.archive-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #ecf0f1;
    flex-wrap: wrap;
    gap: 10px;
}

.archive-item:last-child {
    border-bottom: none;
}

.archive-date {
    color: #7f8c8d;
    font-size: 0.9rem;
    min-width: 120px;
}

.archive-title {
    color: #2c3e50;
    font-weight: bold;
    flex: 1;
}

.load-more {
    text-align: center;
    margin-top: 20px;
}

.load-more-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

/* Contact Page Styles */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

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

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-info-card .contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 20px;
}

.contact-info-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.contact-info-card p {
    color: #7f8c8d;
    margin-bottom: 8px;
}

/* Contact Form */
.contact-form-container {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 20px;
}

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

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

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

.contact-form .form-group label {
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: bold;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    padding: 12px;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.contact-form .submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
    align-self: flex-start;
}

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

/* Map Container */
.map-container {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 20px;
}

.map-placeholder {
    text-align: center;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 10px;
}

.map-placeholder i {
    font-size: 4rem;
    color: #3498db;
    margin-bottom: 20px;
}

.map-placeholder h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.map-placeholder p {
    color: #7f8c8d;
    margin-bottom: 20px;
}

.location-details {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.location-details p {
    margin-bottom: 8px;
    color: #34495e;
}

/* Emergency Grid */
.emergency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

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

.emergency-card:hover {
    transform: translateY(-5px);
}

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

.emergency-card h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.emergency-card p {
    color: #7f8c8d;
    margin-bottom: 5px;
    font-weight: bold;
}

.emergency-card small {
    color: #95a5a6;
    font-size: 0.8rem;
}

/* Social Grid */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

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

.social-card:hover {
    transform: translateY(-5px);
}

.social-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 20px;
}

.social-icon.facebook {
    background: #1877f2;
}

.social-icon.youtube {
    background: #ff0000;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.twitter {
    background: #1da1f2;
}

.social-card h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.social-card p {
    color: #7f8c8d;
    margin-bottom: 15px;
}

.social-link {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

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

/* FAQ Section */
.faq-container {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 20px;
}

.faq-item {
    border-bottom: 1px solid #ecf0f1;
    margin-bottom: 15px;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover h3 {
    color: #3498db;
}

.faq-question h3 {
    color: #2c3e50;
    margin: 0;
    font-size: 1.1rem;
}

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

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

.faq-answer {
    padding: 0 0 15px 0;
    color: #7f8c8d;
    line-height: 1.6;
    display: none;
}

.faq-answer.active {
    display: block;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0 20px;
    margin-top: 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 0 20px;
}

.footer-left h3 {
    margin-bottom: 15px;
    color: #3498db;
}

.footer-left p {
    margin-bottom: 8px;
    opacity: 0.9;
}

.footer-right {
    text-align: right;
}

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

/* Facilities Page Styles */
.facilities-section {
    margin-bottom: 40px;
}

.facilities-section h2 {
    color: #2c3e50;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.facilities-section h2 i {
    color: #667eea;
    font-size: 1.5rem;
}

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

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

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

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

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

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

/* Academics Page Styles */
.academics-section {
    margin-bottom: 40px;
}

.academics-section h2 {
    color: #2c3e50;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.academics-section h2 i {
    color: #667eea;
    font-size: 1.5rem;
}

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

.program-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.program-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: white;
}

.program-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

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

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

.program-card li {
    color: #666;
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

.program-card li:last-child {
    border-bottom: none;
}

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

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

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

.method-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
}

.method-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

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

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

.subject-category {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.subject-category h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
}

.subject-category h3 i {
    color: #667eea;
}

.subject-list {
    display: grid;
    gap: 15px;
}

.subject-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.subject-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.subject-item i {
    color: #667eea;
    font-size: 1.2rem;
    width: 20px;
}

.subject-item span {
    color: #2c3e50;
    font-weight: 500;
}

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

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

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

.assessment-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
}

.assessment-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

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

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

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

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

.activity-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
}

.activity-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

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

/* Gallery Page Styles */
.gallery-filter {
    margin-bottom: 30px;
    text-align: center;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 2px solid #667eea;
    color: #667eea;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: #667eea;
    color: white;
}


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

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

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

.gallery-image {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    overflow: hidden;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 20px;
    text-align: center;
}

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

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

.gallery-overlay p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.view-btn {
    background: #667eea;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.view-btn:hover {
    background: #5a6fd8;
    transform: scale(1.05);
}

.video-gallery {
    margin-top: 40px;
}

.video-gallery h2 {
    color: #2c3e50;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.video-gallery h2 i {
    color: #667eea;
    font-size: 1.5rem;
}

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

.video-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.video-thumbnail {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    overflow: hidden;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 20px;
    text-align: center;
}

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

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

.video-overlay p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.play-btn {
    background: #667eea;
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.play-btn:hover {
    background: #5a6fd8;
    transform: scale(1.1);
}

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

.lightbox-content {
    position: relative;
    margin: 5% auto;
    padding: 20px;
    width: 80%;
    max-width: 600px;
    background: white;
    border-radius: 15px;
    text-align: center;
}

.close-lightbox {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-lightbox:hover {
    color: #000;
}

.lightbox-image {
    margin-bottom: 20px;
    font-size: 4rem;
    color: #667eea;
}

.lightbox-info h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

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

.menu-toggle {
    display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .right-column {
        grid-column: 1 / -1;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        display: grid;
    }
}

@media (max-width: 768px) {
    /* Show toggle button */
    .menu-toggle {
        display: block;
    }
  
   

    /* Hide menu initially */
    .nav-menu {
        display: none;
        flex-direction: column;
        background: #2c3e50;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        padding: 0;
        margin: 0;
        z-index: 999;
        overflow: hidden;
    }

    /* Show menu when active */
    .nav-menu.show {
        display: flex;
    }

    /* Mobile link style */
    .nav-menu li a {
        color: #fff;
        padding: 12px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #34495e;
    }

    .nav-menu li a:hover {
        background: #1abc9c;
    }

    /* Hide submenus by default */
    .submenu, .sub-submenu {
        display: none;
        padding-left: 20px;
        background: #34495e;
    }

    /* Show submenu when active */
    .submenu.show, .sub-submenu.show {
        display: block;
        animation: fadeIn 0.3s ease-in-out;
    }

    /* Rotate arrow */
    .arrow {
        transition: transform 0.3s;
    }
    .rotate {
        transform: rotate(90deg);
    }
}

/* Animation */
@keyframes fadeIn {
    from {opacity: 0; transform: translateY(-5px);}
    to {opacity: 1; transform: translateY(0);}
}

@media (max-width: 768px) {
    /* .header-top {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .nav-menu {
        flex-direction: column;
    }
    
    
    .dropdown .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: #2c3e50;
        box-shadow: none;
        display: none;
        padding-left: 20px;
    }
    
    .dropdown:hover .submenu {
        display: block;
    }
    
    .submenu-item .sub-submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: #2c3e50;
        box-shadow: none;
        display: none;
        padding-left: 20px;
    }
    
    .submenu-item:hover .sub-submenu {
        display: block;
    }
    
    .submenu li a,
    .sub-submenu li a {
        padding: 10px 15px;
        border-bottom: 1px solid #34495e;
    }
    
    .submenu li a:hover,
    .sub-submenu li a:hover {
        padding-left: 20px;
    } */
    
    .main-content {
        grid-template-columns: 1fr;
    }
    
    .principal-section {
        flex-direction: column;
        text-align: center;
    }
    
    .hotline-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-right {
        text-align: center;
    }
    

}

@media (max-width: 480px) {
    .school-info h1 {
        font-size: 1.4rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    

} 