:root {
    --primary-color: #4169e1;
    --secondary-color: #333;
    --text-color: #666;
    --white: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    position: relative;
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #1B3058;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* Remove the hiding transition */
.navbar.hidden {
    transform: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1B3058;
    z-index: -1;
}

/* Ensure logo and text remain visible */
.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.logo img {
    height: 60px;
    width: auto;
    background: white;
    padding: 5px;
    border-radius: 4px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 2;
    background-color: #1B3058;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #FFB400;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--secondary-color);
    z-index: 2;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 5px;
    padding: 5px 10px;
}

.search input {
    border: none;
    background: none;
    outline: none;
    padding: 5px;
}

.search button {
    background: none;
    border: none;
    cursor: pointer;
}

.login-btn, .contact-btn {
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 5px;
}

.login-btn {
    color: var(--secondary-color);
}

.contact-btn {
    background: var(--primary-color);
    color: var(--white);
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    color: var(--white);
    padding: 0 5%;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 0.9rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
    color: white;
    padding: 0 1rem;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    margin-top: 2rem;
}

/* Features Section */
.features {
    padding: 5%;
    margin-top: -100px;
    position: relative;
}

.feature-card {
    background-color: #00aeef;
    border-radius: 8px;
    padding: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border-top: 4px solid #ffb400;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
}

.feature-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem;
}

.feature-item i {
    font-size: 1.8rem;
    color: #ffb400;
    margin-bottom: 0.5rem;
}

.feature-content {
    text-align: center;
    padding: 0.25rem;
}

.feature-content h3 {
    margin-bottom: 0.25rem;
    color: white;
    font-size: 1.1rem;
}

.feature-content p {
    margin-bottom: 0.25rem;
    color: white;
    font-size: 0.9rem;
    line-height: 1.4;
}

.values-list {
    margin: 0;
    padding-left: 0.5rem;
}

.values-list li {
    color: white;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.feature-divider {
    width: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 0.5rem;
}

/* About Section */
.about {
    background-color: #fff;
    padding: 0;
}

.about .container {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.about-content {
    flex: 0.8;
    padding-right: 1rem;
}

.about-content h2 {
    margin-bottom: 1.5rem;
    color: #1B3058;
}

.about-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #333;
}

.about-image {
    flex: 1.2;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.image-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(27, 48, 88, 0.9);
    color: white;
    padding: 0.75rem;
    text-align: center;
    font-weight: 500;
    border-top: 2px solid #ffb400;
}

.image-label span {
    display: block;
    font-size: 0.9rem;
    color: #ffb400;
    margin-top: 0.25rem;
}

.view-more-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #1B3058;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #1B3058;
}

.view-more-btn:hover {
    background-color: transparent;
    color: #1B3058;
}

@media (max-width: 768px) {
    .about .container {
        flex-direction: column;
        padding: 3rem 1.5rem;
    }
    
    .about-image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-content {
        padding-right: 0;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 2rem 1rem;
    }

    .about h2 {
        font-size: 1.75rem;
    }

    .about-gallery {
        height: 350px;
    }

    .gallery-image {
        width: 160px;
        height: 220px;
    }

    .gallery-image:nth-child(1) {
        top: 5%;
        left: 15%;
    }

    .gallery-image:nth-child(2) {
        top: 15%;
        left: 35%;
    }

    .gallery-image:nth-child(3) {
        top: 25%;
        left: 20%;
    }
}

/* Video Section */
.video-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: white;
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.video-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.video-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #e0e0e0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: #000;
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

/* Video Section Responsive */
@media screen and (max-width: 768px) {
    .video-section {
        padding: 4rem 1.5rem;
    }

    .video-section h2 {
        font-size: 2rem;
    }

    .video-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .video-section {
        padding: 3rem 1rem;
    }

    .video-section h2 {
        font-size: 1.75rem;
    }

    .video-wrapper {
        border-radius: 10px;
    }

    .video-wrapper iframe {
        border-radius: 10px;
    }
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, #0066cc, #004999);
    padding: 5rem 0;
    color: white;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 0 2rem;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1;
    background: linear-gradient(135deg, #ffffff, #e6e6e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

@media screen and (max-width: 768px) {
    .stats {
        padding: 3rem 0;
    }

    .stat-item {
        min-width: 150px;
        padding: 1.5rem;
    }

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

    .stat-label {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
}

/* Animation for counters */
.counter {
    display: inline-block;
    transition: all 0.2s ease;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .navbar {
        padding: 0.5rem 1rem;
    }

    .menu-toggle {
        display: block;
        margin-left: 0.5rem;
    }

    .logo-text {
        display: none;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #1B3058;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 1rem 0;
        font-size: 1.2rem;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #eee;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .logo img {
        height: 50px;
    }

    .feature-card {
        min-width: 160px;
        padding: 1rem;
    }

    .feature-card i {
        font-size: 1.75rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 480px) {
    .navbar {
        padding: 0.5rem;
    }

    .logo img {
        height: 40px;
    }

    .feature-card {
        padding: 1rem;
    }

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

    .feature-card h3 {
        font-size: 1.25rem;
    }
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .about {
        padding: 3rem 1.5rem;
    }

    .about h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .about-gallery {
        height: 400px;
        margin: 1rem auto 2rem;
    }

    .gallery-image {
        width: 200px;
        height: 280px;
    }

    .text-content p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media screen and (max-width: 480px) {
    .about {
        padding: 2rem 1rem;
    }

    .about h2 {
        font-size: 1.75rem;
    }

    .about-gallery {
        height: 350px;
    }

    .gallery-image {
        width: 160px;
        height: 220px;
    }

    .gallery-image:nth-child(1) {
        top: 5%;
        left: 15%;
    }

    .gallery-image:nth-child(2) {
        top: 15%;
        left: 35%;
    }

    .gallery-image:nth-child(3) {
        top: 25%;
        left: 20%;
    }
}

/* Staff Section */
.staff {
    padding: 5rem 0;
    background: #f8f9fa;
    overflow: hidden;
    perspective: 1000px;
}

.staff-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.staff h2 {
    text-align: center;
    color: #0066cc;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.staff-description {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    padding: 0 2rem;
}

.staff-description p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
    margin: 0;
}

.staff-track {
    display: flex;
    will-change: transform;
    position: relative;
    padding: 2rem 0;
    transition: transform 0.5s ease-out;
}

.staff-carousel {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.staff-carousel::before,
.staff-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.staff-carousel::before {
    left: 0;
    background: linear-gradient(to right, #f8f9fa 0%, transparent 100%);
}

.staff-carousel::after {
    right: 0;
    background: linear-gradient(to left, #f8f9fa 0%, transparent 100%);
}

.staff-card {
    flex: 0 0 250px;
    margin: 0 1.5rem;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    position: relative;
    opacity: 0.7;
    transform: scale(0.85) translateZ(-100px);
    filter: blur(1px);
}

.staff-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.staff-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    transition: opacity 0.5s ease;
}

.staff-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

/* Center card highlight effect */
.staff-card.center-card {
    opacity: 1;
    transform: scale(1) translateZ(0);
    filter: blur(0);
    z-index: 1;
}

.staff-card.center-card .staff-image img {
    filter: grayscale(0%);
}

.staff-card.center-card .staff-image::after {
    opacity: 0;
}

.staff-card.center-card .staff-info {
    transform: translateY(0);
}

.staff-card.center-card .staff-info h3 {
    color: #0066cc;
}

.staff-card.center-card .staff-info p {
    color: #333;
}

.staff-card.center-card .staff-info {
    transform: translateY(0);
}

.staff-info {
    padding: 1.5rem;
    text-align: center;
    background: white;
    transition: transform 0.5s ease;
}

.staff-info h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.staff-info p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    transition: color 0.3s ease;
}

.staff-navigation {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.nav-btn {
    background: #0066cc;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.nav-btn:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.nav-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.nav-btn i {
    font-size: 1.2rem;
}

/* Staff Section Responsive */
@media screen and (max-width: 768px) {
    .staff {
        padding: 4rem 0;
    }

    .staff h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .staff-description {
        margin-bottom: 2rem;
    }

    .staff-description p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .staff-card {
        flex: 0 0 220px;
        margin: 0 1rem;
    }

    .staff-image {
        height: 220px;
    }

    .staff-carousel::before,
    .staff-carousel::after {
        width: 100px;
    }
}

@media screen and (max-width: 480px) {
    .staff {
        padding: 3rem 0;
    }

    .staff h2 {
        font-size: 1.75rem;
    }

    .staff-card {
        flex: 0 0 200px;
        margin: 0 0.75rem;
    }

    .staff-image {
        height: 200px;
    }

    .staff-carousel::before,
    .staff-carousel::after {
        width: 60px;
    }
}

/* Location Section */
.location {
    padding: 5rem 0;
    background: #f8f9fa;
}

.location-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.location h2 {
    text-align: center;
    color: #0066cc;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.location-description {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.location-description p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

.map-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#map {
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 768px) {
    .location {
        padding: 3rem 0;
    }

    .location h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .location-description {
        margin-bottom: 2rem;
    }

    .location-description p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .map-container {
        height: 400px;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0066cc, #004a94);
    color: #fff;
    padding-top: 4rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
}

.footer-section p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-section i {
    margin-right: 10px;
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.newsletter h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    background: #fff;
    color: #0066cc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.footer-bottom {
    margin-top: 4rem;
    padding: 2rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.1);
}

.footer-bottom p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* Footer Responsive */
@media screen and (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 1rem;
    }
}

.staff-track.no-transition {
    transition: none;
}

.values-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.values-list li {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    padding-left: 1.2rem;
    position: relative;
}

.values-list li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.values-list li:last-child {
    margin-bottom: 0;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/school-building.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.mission-vision {
    padding: 80px 0;
    background: #f8f9fa;
}

.mission-vision .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mission-box, .vision-box, .motto-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.mission-box h2, .vision-box h2, .motto-box h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 24px;
}

.core-values {
    padding: 80px 0;
}

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

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.value-card i {
    font-size: 40px;
    color: #007bff;
    margin-bottom: 20px;
}

.value-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 20px;
}

.administration {
    padding: 80px 0;
    background: #f8f9fa;
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.admin-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.admin-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 20px;
}

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

.admin-card ul li {
    margin-bottom: 10px;
    color: #666;
}

.headteacher-message {
    padding: 80px 0;
}

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

.message-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.message-text {
    color: #666;
    line-height: 1.6;
}

.message-text .signature {
    margin-top: 30px;
    font-style: italic;
    color: #333;
}

@media (max-width: 768px) {
    .message-content {
        grid-template-columns: 1fr;
    }
    
    .message-image {
        max-width: 300px;
        margin: 0 auto;
    }
}
