* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --maingreen: #0e7725;
    --secondshade: #378e42;
    --cream: #E1EB95;
    --secondcream: #f7ecd1;
    --accent-gold: #FFD700;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-heavy: 0 8px 30px rgba(0,0,0,0.2);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lora', serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Accessibility Styles */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--maingreen);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 0 0 4px 4px;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Table of Contents */
.table-of-contents {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    box-shadow: var(--shadow-medium);
    z-index: 999;
    max-width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.table-of-contents.show {
    opacity: 1;
    visibility: visible;
}

.table-of-contents h2 {
    font-size: 1rem;
    color: var(--maingreen);
    margin-bottom: 15px;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
}

.table-of-contents ul {
    list-style: none;
}

.table-of-contents li {
    margin-bottom: 8px;
}

.table-of-contents a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.85rem;
    transition: var(--transition-smooth);
    display: block;
    padding: 5px 10px;
    border-radius: 8px;
}

.table-of-contents a:hover,
.table-of-contents a:focus {
    background: var(--maingreen);
    color: white;
    transform: translateX(5px);
}

/* Navigation Styles */
nav {
    display: flex;
    justify-content: space-between;
    box-shadow: var(--shadow-light);
    position: sticky;
    top: 0;
    align-items: center;
    padding: 0.8rem 2rem;
    background-color: rgba(250, 249, 249, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    z-index: 1000;
}

nav.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-medium);
    padding: 0.6rem 2rem;
}

.logo-header {
    display: flex;
    gap: 10px;
    align-items: center;
}

.logo-header img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.logo-header img:hover {
    transform: scale(1.1) rotate(5deg);
}

.logo-header h1 {
    font-family: "Open Sans", sans-serif;
    color: var(--maingreen);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.nav-list {
    display: flex;
    gap: 2.5rem;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    align-items: center;
}

.nav-list li {
    list-style: none;
}

.nav-list a {
    text-decoration: none;
    color: var(--text-dark);
    position: relative;
    transition: var(--transition-smooth);
    padding: 8px 0;
}

.nav-list a:hover,
.nav-list a:focus {
    color: var(--maingreen);
    transform: translateY(-2px);
}

.nav-list a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, var(--maingreen), var(--accent-gold));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-list a:hover::after,
.nav-list a:focus::after {
    width: 100%;
}

.icon {
    display: none;
}

.icon button {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--maingreen);
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.icon button:hover,
.icon button:focus {
    background: rgba(14, 119, 27, 0.1);
    transform: scale(1.1);
}

.btn {
    background: linear-gradient(135deg, var(--maingreen), var(--secondshade));
    border: none;
    border-radius: 25px;
    padding: 10px 25px;
    font-size: 0.9rem;
    color: #fff;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover,
.btn:focus {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn a {
    color: #fff;
    text-decoration: none;
}

/* Hero Carousel Styles */
.hero-carousel {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(14, 119, 27, 0.7) 0%,
        rgba(55, 142, 66, 0.5) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
}

.carousel-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    margin-left: 4rem;
    max-width: 600px;
    animation: slideInFromLeft 1s ease-out;
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.carousel-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: "Open Sans", sans-serif;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.1;
}

.carousel-content p {
    color: #fff;
    font-size: 1.3rem;
    font-family: "Lora", serif;
    font-weight: 400;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    opacity: 0.95;
}

.carousel-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Call to Action Button Styles */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--accent-gold), #FFA500);
    color: var(--text-dark);
}

.cta-button.secondary {
    background: transparent;
    color: red;
    border: 2px solid #fff;
}

.cta-button.small {
    padding: 10px 20px;
    font-size: 0.9rem;
    margin-top: 15px;
}

.cta-button:hover,
.cta-button:focus {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-heavy);
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #FFA500, var(--accent-gold));
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 3;
}

.carousel-nav:hover,
.carousel-nav:focus {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-medium);
}

.carousel-nav.prev {
    left: 30px;
}

.carousel-nav.next {
    right: 30px;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.indicator {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.indicator.active,
.indicator:hover,
.indicator:focus {
    background: white;
    border-color: white;
    transform: scale(1.2);
}

/* Utilities Section */
.utilities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin: 4rem 5rem;
    gap: 2rem;
    position: relative;
    z-index: 10;
    margin-top: -100px;
}

.container {
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-medium);
    border-radius: 20px;
    background: linear-gradient(135deg, #fff, #f8f9fa);
    text-align: center;
    transition: var(--transition-bounce);
    border: 1px solid rgba(14, 119, 27, 0.1);
    position: relative;
    overflow: hidden;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--maingreen), var(--accent-gold));
}

.container:hover,
.container:focus {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-heavy);
}

#utilities-icon {
    background: linear-gradient(135deg, var(--maingreen), var(--secondshade));
    color: #fff;
    font-size: 2.5rem;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-light);
    transition: var(--transition-bounce);
}

.container:hover #utilities-icon,
.container:focus #utilities-icon {
    transform: scale(1.1) rotate(5deg);
}

.container h3 {
    color: var(--maingreen);
    font-size: 1.5rem;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

.container p {
    font-family: "Lora", serif;
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Enhanced Video Section */
.video-section {
    margin: 4rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--maingreen) 0%, var(--secondshade) 100%);
    padding: 4rem 2rem;
    border-radius: 25px;
    box-shadow: var(--shadow-heavy);
    position: relative;
    overflow: hidden;
}

.video-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="waves" width="100" height="20" patternUnits="userSpaceOnUse"><path d="M0 10 Q25 0 50 10 T100 10 V20 H0 Z" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23waves)"/></svg>');
    animation: wave 10s linear infinite;
}

@keyframes wave {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100px); }
}

.video-section h2 {
    font-family: "Open Sans", sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.video-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), #FFA500);
    border-radius: 2px;
}

.video-container {
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
}

.video-section video {
    width: 90%;
    max-width: 1000px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 5px solid var(--white);
    transition: var(--transition-smooth);
}

.video-section video:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.video-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* Enhanced Programs Gallery */
.programs-gallery {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 80px 0;
}

.section-title-wrapper {
    margin-bottom: 60px;
    position: relative;
    text-align: center;
}

.section-title h2 {
    font-size: 2.5rem;
    font-family: "Open Sans", sans-serif;
    font-weight: 800;
    color: var(--maingreen);
    margin-bottom: 1rem;
    position: relative;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-title-wrapper::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--maingreen), var(--accent-gold));
    border-radius: 2px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-bounce);
    background: #fff;
    cursor: pointer;
}

.gallery-item.featured {
    grid-column: span 2;
}

.gallery-item:hover,
.gallery-item:focus {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-heavy);
}

.image-container {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.gallery-item.featured .image-container {
    height: 400px;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item:hover .image-container img,
.gallery-item:focus .image-container img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(14, 119, 27, 0.9),
        rgba(55, 142, 66, 0.8)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    padding: 2rem;
}

.gallery-item:hover .overlay,
.gallery-item:focus .overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: #fff;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.gallery-item:hover .overlay-content,
.gallery-item:focus .overlay-content {
    transform: translateY(0);
}

.overlay-content h3 {
    font-size: 1.8rem;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.overlay-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.program-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Statistics Section */
.clients {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin: 6rem 4rem;
    gap: 2rem;
    text-align: center;
}

.client-page {
    padding: 2rem;
    background: linear-gradient(135deg, #fff, #f8f9fa);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: var(--transition-bounce);
    border: 1px solid rgba(14, 119, 27, 0.1);
    cursor: pointer;
}

.client-page:hover,
.client-page:focus {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-medium);
}

.numbers {
    color: var(--maingreen);
    font-family: "Open Sans", sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--maingreen), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.numbers-text {
    font-size: 1rem;
    font-family: "Lora", serif;
    color: var(--text-light);
    font-weight: 600;
}

/* About Section */
.img-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin: 6rem 4rem;
    padding: 4rem;
    background: linear-gradient(135deg, #fff, #f8f9fa);
    border-radius: 20px;
    box-shadow: var(--shadow-light);
}

.img-text-left span {
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--maingreen), var(--accent-gold));
    margin-bottom: 1.5rem;
    border-radius: 2px;
}

.img-text h2 {
    font-size: 2.2rem;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--maingreen);
}

.img-text p {
    font-family: "Lora", serif;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--maingreen);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    margin-bottom: 2rem;
}

.cta-link:hover,
.cta-link:focus {
    color: var(--secondshade);
    transform: translateX(5px);
}

.about-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.child-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.child-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.child-image:hover img {
    transform: scale(1.05);
}

/* Smooth Bouncing Animation for Student Image */
.bouncing-student {
    animation: smoothBounce 3s ease-in-out infinite;
}

@keyframes smoothBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.02);
    }
}

/* School Fees Payment Section */
.fees-section {
    background: linear-gradient(135deg, #f8f9fa, var(--secondcream));
    padding: 80px 0;
    margin: 4rem 0;
}

.fees-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.fees-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.fees-info {
    background: linear-gradient(135deg, #fff, #f8f9fa);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(14, 119, 27, 0.1);
}

.fees-info h3 {
    font-family: "Open Sans", sans-serif;
    font-size: 1.8rem;
    color: var(--maingreen);
    margin-bottom: 2rem;
    font-weight: 700;
}

.fee-structure {
    margin-bottom: 2rem;
}

.fee-item {
    background: linear-gradient(135deg, var(--maingreen), var(--secondshade));
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-bounce);
}

.fee-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-medium);
}

.fee-item h4 {
    font-family: "Open Sans", sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.fee-amount {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: "Open Sans", sans-serif;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.fee-item p {
    opacity: 0.9;
    font-size: 0.95rem;
}

.payment-benefits {
    background: rgba(14, 119, 27, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--maingreen);
}

.payment-benefits h4 {
    font-family: "Open Sans", sans-serif;
    color: var(--maingreen);
    margin-bottom: 1rem;
    font-weight: 700;
}

.payment-benefits ul {
    list-style: none;
}

.payment-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
    font-family: "Lora", serif;
    color: var(--text-dark);
}

.payment-benefits i {
    color: var(--maingreen);
    font-size: 0.9rem;
}

.payment-methods {
    background: linear-gradient(135deg, #fff, #f8f9fa);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(14, 119, 27, 0.1);
}

.payment-methods h3 {
    font-family: "Open Sans", sans-serif;
    font-size: 1.8rem;
    color: var(--maingreen);
    margin-bottom: 2rem;
    font-weight: 700;
}

.bank-details {
    margin-bottom: 2rem;
}

.bank-option {
    background: linear-gradient(135deg, var(--cream), var(--secondcream));
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(14, 119, 27, 0.1);
    transition: var(--transition-smooth);
}

.bank-option:hover {
    border-color: var(--maingreen);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.bank-option h4 {
    font-family: "Open Sans", sans-serif;
    color: var(--maingreen);
    margin-bottom: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bank-info {
    display: grid;
    gap: 1rem;
}

.bank-field {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    border: 1px solid rgba(14, 119, 27, 0.1);
}

.bank-field label {
    font-weight: 600;
    color: var(--text-dark);
    font-family: "Open Sans", sans-serif;
}

.bank-field span {
    font-family: "Lora", serif;
    color: var(--text-dark);
}

.account-number {
    font-family: "Courier New", monospace !important;
    font-weight: 700;
    color: var(--maingreen);
    letter-spacing: 1px;
}

.copy-btn {
    background: var(--maingreen);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-left: 10px;
}

.copy-btn:hover,
.copy-btn:focus {
    background: var(--secondshade);
    transform: scale(1.1);
}

.payment-instructions {
    background: rgba(255, 215, 0, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--accent-gold);
    margin-bottom: 2rem;
}

.payment-instructions h4 {
    font-family: "Open Sans", sans-serif;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.payment-instructions ol {
    padding-left: 1.5rem;
}

.payment-instructions li {
    margin-bottom: 0.8rem;
    font-family: "Lora", serif;
    color: var(--text-dark);
    line-height: 1.6;
}

.fees-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Testimonials */
.testimonials {
    width: 90%;
    margin: auto;
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    margin-bottom: 4rem;
}

.testimonials h2 {
    font-family: "Open Sans", sans-serif;
    font-size: 2.5rem;
    color: var(--maingreen);
    margin-bottom: 1rem;
}

.testimonials > p {
    font-family: "Lora", serif;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-col {
    border-radius: 15px;
    background: linear-gradient(135deg, #fff, var(--secondcream));
    padding: 2rem;
    cursor: pointer;
    display: flex;
    gap: 1rem;
    box-shadow: var(--shadow-light);
    transition: var(--transition-bounce);
    border: 1px solid rgba(14, 119, 27, 0.1);
}

.testimonial-col:hover,
.testimonial-col:focus {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-medium);
}

.testimonial-col img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--maingreen);
    transition: var(--transition-smooth);
}

.testimonial-col:hover img,
.testimonial-col:focus img {
    transform: scale(1.1);
}

.testimonial-col p {
    font-family: "Lora", serif;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.testimonial-col h3 {
    font-family: "Open Sans", sans-serif;
    color: var(--maingreen);
    margin-bottom: 0.5rem;
}

.stars {
    display: flex;
    gap: 0.2rem;
}

.stars i {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

.testimonials-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Footer */
.generalfooter {
    background: linear-gradient(135deg, #04380a, var(--maingreen));
    border-radius: 40px 40px 0 0;
    margin-top: 4rem;
}

.footer-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem 2rem;
}

.footer-section h2,
.footer-section h3 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-family: "Open Sans", sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
}

.info p {
    font-size: 1.1rem;
    color: var(--cream);
    margin-bottom: 2rem;
    font-style: italic;
}

.brands {
    display: flex;
    gap: 1rem;
}

.brands a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--cream);
    transition: var(--transition-bounce);
    cursor: pointer;
    text-decoration: none;
}

.brands a:hover,
.brands a:focus {
    background: var(--cream);
    color: var(--maingreen);
    transform: translateY(-3px) scale(1.1);
}

.icon-text {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
}

.icon-text:hover {
    transform: translateX(5px);
}

.icon-text i {
    color: var(--cream);
    font-size: 0.8rem;
}

.icon-text a {
    text-decoration: none;
    color: #fff;
    font-family: "Lora", serif;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.icon-text a:hover,
.icon-text a:focus {
    color: var(--cream);
}

.contact-icon {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.contact-icon i {
    color: var(--cream);
    margin-top: 0.2rem;
}

.contact-icon p {
    color: #fff;
    font-family: "Lora", serif;
    font-size: 0.9rem;
    margin: 0;
}

.contact-icon a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-icon a:hover,
.contact-icon a:focus {
    color: var(--cream);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
}

.footer a:hover,
.footer a:focus {
    color: var(--cream);
}

.rightsreserved {
    color: var(--cream);
    font-size: 0.8rem;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: none;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--maingreen), var(--secondshade));
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-decoration: none;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-medium);
    z-index: 1000;
}

.back-to-top.show {
    display: inline-flex;
}

.back-to-top i {
    color: #fff;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.back-to-top:hover,
.back-to-top:focus {
    background: linear-gradient(135deg, var(--secondshade), var(--maingreen));
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-heavy);
}

.back-to-top:hover i,
.back-to-top:focus i {
    transform: translateY(-2px);
}

/* Enhanced Focus States for Accessibility */
*:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

button:focus,
.cta-button:focus,
.nav-list a:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .table-of-contents {
        display: none;
    }
    
    .gallery-item.featured {
        grid-column: span 1;
    }
    
    .fees-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-list {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        text-align: center;
        gap: 0;
        overflow: hidden;
        transition: var(--transition-smooth);
        box-shadow: var(--shadow-medium);
        border-radius: 0 0 15px 15px;
    }

    .nav-list li {
        padding: 1rem;
        border-bottom: 1px solid rgba(14, 119, 27, 0.1);
    }

    .nav-list li:last-child {
        border-bottom: none;
    }

    .icon {
        display: block;
    }

    .carousel-content h2 {
        font-size: 2.5rem;
    }

    .carousel-content {
        margin-left: 2rem;
        padding: 20px;
    }

    .carousel-nav {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .carousel-nav.prev {
        left: 15px;
    }

    .carousel-nav.next {
        right: 15px;
    }

    .utilities {
        grid-template-columns: 1fr;
        margin: 2rem;
        margin-top: -50px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .clients {
        grid-template-columns: repeat(2, 1fr);
        margin: 4rem 2rem;
    }

    .img-text {
        grid-template-columns: 1fr;
        margin: 4rem 2rem;
        padding: 2rem;
    }

    .row {
        grid-template-columns: 1fr;
    }

    .footer-section {
        grid-template-columns: repeat(2, 1fr);
        padding: 3rem 1rem 1rem;
    }

    .footer {
        flex-direction: column;
        text-align: center;
    }

    .carousel-buttons,
    .video-cta,
    .about-cta,
    .fees-cta,
    .testimonials-cta {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .carousel-content h2 {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .utilities {
        margin: 1rem;
        margin-top: -30px;
    }

    .clients {
        grid-template-columns: 1fr;
        margin: 3rem 1rem;
    }

    .img-text {
        margin: 3rem 1rem;
        padding: 1.5rem;
    }

    .footer-section {
        grid-template-columns: 1fr;
    }

    .video-section {
        margin: 2rem 1rem;
        padding: 2rem 1rem;
    }

    .fees-container {
        padding: 0 1rem;
    }

    .fees-info,
    .payment-methods {
        padding: 2rem 1.5rem;
    }

    .bank-option {
        padding: 1.5rem;
    }

    .bank-field {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .copy-btn {
        margin-left: 0;
        margin-top: 0.5rem;
    }
}

/* Print Styles */
@media print {
    .carousel-nav,
    .carousel-indicators,
    .back-to-top,
    .table-of-contents {
        display: none !important;
    }
    
    .carousel-slide {
        position: static !important;
        opacity: 1 !important;
    }
    
    .carousel-slide:not(.active) {
        display: none !important;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .bouncing-student {
        animation: none;
    }
    
    .video-section::before {
        animation: none;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --shadow-light: 0 2px 10px rgba(0,0,0,0.3);
        --shadow-medium: 0 4px 20px rgba(0,0,0,0.4);
        --shadow-heavy: 0 8px 30px rgba(0,0,0,0.5);
    }
    
    .carousel-overlay {
        background: rgba(0, 0, 0, 0.7);
    }
    
    .overlay {
        background: rgba(0, 0, 0, 0.8);
    }
}
