/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.5;
    color: #2C2B2B;
    background-color: #ffffff;
}

/* Colors:
   Green: #2F6B3E (primary)
   White: #FFFFFF
   Yellow: #F5B041 (accent)
   Brown: #8B5A2B (secondary)
*/

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== NAVIGATION BAR - 50% TRANSPARENT ========== */
.navbar {
    background-color: rgba(47, 107, 62, 0.8);
    backdrop-filter: blur(8px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
}

.logo-icon {
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: #F5B041;
    border-bottom: 2px solid #F5B041;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
}

/* ========== SLIDESHOW SECTION ========== */
.slideshow-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: transparent;
}

/* Slide Container - All slides stacked on top of each other */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    visibility: hidden;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

/* Zooming Background Image */
.slide .slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active .slide-bg {
    animation: zoomIn 3s ease-in-out forwards;
}

/* Zoom Animation */
@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

/* Static Text Overlay (does NOT zoom) */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    text-align: center;
    z-index: 10;
}

.school-name {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    padding: 0 20px;
}

.school-tagline {
    font-size: 1.5rem;
    color: #F5B041;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    font-style: italic;
    padding: 0 20px;
}

/* Slide Background Images */
.slide-1 .slide-bg { background-image: url('images/gate.jpeg'); }
.slide-2 .slide-bg { background-image: url('images/photo2.jpeg'); }
.slide-3 .slide-bg { background-image: url('images/photo3.jpeg'); }
.slide-4 .slide-bg { background-image: url('images/photo1.jpeg'); }
.slide-5 .slide-bg { background-image: url('images/photo5.jpeg'); }

/* Next & Previous Buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -30px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: 0.3s;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background: rgba(0, 0, 0, 0.5);
    text-decoration: none;
    z-index: 15;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(47, 107, 62, 0.8);
}

/* Dots/Indicators */
.dots-container {
    text-align: center;
    position: absolute;
    bottom: 15px;
    width: 100%;
    z-index: 15;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s;
}

.dot.active, .dot:hover {
    background-color: #F5B041;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    margin-right: 1rem;
}

.btn-primary {
    background-color: #2F6B3E;
    color: white;
    border: 2px solid #2F6B3E;
}

.btn-primary:hover {
    background-color: #1F4A2C;
    transform: scale(1.02);
}

.btn-secondary {
    background-color: transparent;
    color: #2F6B3E;
    border: 2px solid #2F6B3E;
}

.btn-secondary:hover {
    background-color: #2F6B3E10;
}

.btn-small {
    background-color: #F5B041;
    color: #2C2B2B;
    padding: 8px 16px;
    font-size: 0.9rem;
    margin-top: 1rem;
    display: inline-block;
    text-decoration: none;
    border-radius: 50px;
}

/* ========== SECTIONS ========== */
.section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2rem;
    color: #2F6B3E;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #F5B041;
    margin-top: 8px;
}

/* About Grid */
.about-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.about-text {
    flex: 2;
}

.serve-box, .exclusions-box {
    background: #F5F2E8;
    padding: 1.5rem;
    border-radius: 16px;
    margin-top: 1.5rem;
    border-left: 8px solid #2F6B3E;
}

.exclusions-box {
    border-left-color: #8B5A2B;
    background: #FFF9F0;
}

.serve-box h3, .exclusions-box h3 {
    margin-bottom: 0.75rem;
    color: #2F6B3E;
}

.serve-box ul, .exclusions-box ul {
    margin-left: 1.5rem;
}

.about-quote {
    flex: 1;
}

.quote-card {
    background: #2F6B3E;
    color: white;
    padding: 1.5rem;
    border-radius: 24px;
    font-style: italic;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.quote-card p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Admissions */
.admissions-section {
    background: #F9F7F2;
}

.admissions-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.steps, .paperwork {
    flex: 1;
    background: white;
    padding: 1.8rem;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.steps h3, .paperwork h3 {
    color: #2F6B3E;
    margin-bottom: 1rem;
}

.steps ol, .paperwork ul {
    margin-left: 1.5rem;
    line-height: 1.8;
}

.admissions-contact {
    margin-top: 2rem;
    text-align: center;
    background: #F5B04120;
    padding: 1rem;
    border-radius: 50px;
}

/* ========== FOOTER ========== */
.footer {
    background-color: #2C2B2B;
    color: #DDD;
    padding: 2rem 0 1rem;
    margin-top: 2rem;
}

.footer-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.footer-grid h4 {
    color: #F5B041;
    margin-bottom: 0.5rem;
}

.footer-grid ul {
    list-style: none;
}

.footer-grid a {
    color: #DDD;
    text-decoration: none;
}

.footer-grid a:hover {
    color: #F5B041;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 1rem;
    font-size: 0.8rem;
}



/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        text-align: center;
        gap: 0;
        margin-top: 1rem;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        padding: 0.8rem 0;
        border-top: 1px solid #4B8B5A;
    }

    .slideshow-container, .slide {
        height: 350px;
    }

    .school-name {
        font-size: 2rem;
    }

    .school-tagline {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .btn {
        margin-bottom: 0.5rem;
    }
}

/* ========== OPTION 4: SIMPLE CENTERED ABOUT US ========== */
.option-4 {
    text-align: center;
}

.about-intro {
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.about-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #3A3A3A;
}

.about-centered-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.serve-centered, .exclusions-centered {
    flex: 1;
    min-width: 250px;
    max-width: 400px;
    background: #F9F7F2;
    padding: 2rem;
    border-radius: 20px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.serve-centered h3 {
    color: #2F6B3E;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.exclusions-centered h3 {
    color: #8B5A2B;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.serve-centered ul, .exclusions-centered ul {
    list-style: none;
    padding: 0;
}

.serve-centered li, .exclusions-centered li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #E0DCD3;
    position: relative;
    padding-left: 1.5rem;
}

.serve-centered li::before {
    content: "✓";
    color: #2F6B3E;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.exclusions-centered li::before {
    content: "✗";
    color: #8B5A2B;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.about-quote-centered {
    max-width: 600px;
    margin: 2rem auto 0 auto;
}

.quote-card-centered {
    background: #2F6B3E;
    color: white;
    padding: 2rem;
    border-radius: 30px;
    font-style: italic;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.quote-card-centered p {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.quote-card-centered span {
    font-size: 0.9rem;
    color: #F5B041;
    font-style: normal;
}

/* ========== TESTIMONIALS SLIDER - SMOOTH TRANSITIONS ========== */
.testimonial-slider {
    position: relative;
    min-height: 220px;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.quote-card-centered {
    background: #2F6B3E;
    color: white;
    padding: 2rem;
    border-radius: 30px;
    font-style: italic;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.quote-card-centered p {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.quote-card-centered span {
    font-size: 0.9rem;
    color: #F5B041;
    font-style: normal;
}

/* Testimonial Navigation Dots */
.testimonial-dots {
    text-align: center;
    margin-top: 1.5rem;
    padding: 0.5rem 0;
}

.testimonial-dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 6px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.testimonial-dot.active {
    background-color: #F5B041;
    transform: scale(1.2);
}

.testimonial-dot:hover {
    background-color: #2F6B3E;
}

/* ========== OPTION C: CARD TIMELINE ADMISSIONS ========== */
.option-c {
    background: #F9F7F2;
}

.admissions-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #5A4A3A;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

.timeline-cards {
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.timeline-card {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.timeline-number {
    width: 50px;
    height: 50px;
    background: #2F6B3E;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(47, 107, 62, 0.3);
}

.timeline-content {
    flex: 1;
}

.timeline-content h3 {
    color: #2F6B3E;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.timeline-content p {
    color: #4A4A4A;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.timeline-details, .timeline-time {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #F5F2E8;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-right: 1rem;
    margin-bottom: 0.5rem;
}

.detail-icon, .time-icon {
    font-size: 1rem;
}

.detail-text, .time-text {
    color: #5A4A3A;
}

/* Paperwork Section */
.paperwork-timeline {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 800px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.paperwork-timeline h3 {
    color: #2F6B3E;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.paperwork-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.paperwork-list {
    flex: 1;
    min-width: 200px;
    list-style: none;
    padding: 0;
}

.paperwork-list li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    border-bottom: 1px solid #EEE;
}

.paperwork-list li::before {
    content: "📄";
    position: absolute;
    left: 0;
}

.paperwork-download {
    text-align: center;
    margin-top: 1rem;
}

/* Contact Section */
.admissions-contact-timeline {
    text-align: center;
    background: #2F6B3E;
    color: white;
    padding: 1.5rem;
    border-radius: 20px;
    max-width: 800px;
    margin: 2rem auto 0 auto;
}

.admissions-contact-timeline p {
    margin-bottom: 0.5rem;
}

.admissions-contact-timeline p:last-child {
    margin-bottom: 0;
}

.admissions-contact-timeline strong {
    color: #F5B041;
}

/* Mobile Responsive for Option C */
@media (max-width: 768px) {
    .timeline-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.2rem;
    }
    
    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .timeline-content h3 {
        font-size: 1.1rem;
    }
    
    .timeline-details, .timeline-time {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    .paperwork-grid {
        flex-direction: column;
        gap: 0;
    }
    
    .paperwork-timeline {
        padding: 1.5rem;
    }
    
    .admissions-intro {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* Mobile Responsive for Testimonials */
@media (max-width: 768px) {
    .testimonial-slider {
        min-height: 260px;
    }
    
    .quote-card-centered p {
        font-size: 1rem;
    }
    
    .quote-card-centered {
        padding: 1.5rem;
    }
}

/* Mobile Responsive for Option 4 */
@media (max-width: 768px) {
    .about-description {
        font-size: 1rem;
    }
    
    .serve-centered h3, .exclusions-centered h3 {
        font-size: 1.3rem;
    }
    
    .quote-card-centered p {
        font-size: 1rem;
    }
    
    .about-centered-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .slideshow-container, .slide {
        height: 280px;
    }

    .school-name {
        font-size: 1.5rem;
    }

    .school-tagline {
        font-size: 0.9rem;
    }
}
/* ========== PAPERWORK SECTION - 2 ROWS, 3 COLUMNS ========== */
.paperwork-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.category-card {
    background: #F9F7F2;
    border-radius: 16px;
    padding: 1.2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #E8E4DC;
}

.category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    border-color: #2F6B3E;
}

.category-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.category-title {
    color: #2F6B3E;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    border-bottom: 2px solid #F5B041;
    display: inline-block;
    padding-bottom: 0.3rem;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.category-list li {
    padding: 0.4rem 0;
    padding-left: 1.3rem;
    position: relative;
    font-size: 0.85rem;
    color: #4A4A4A;
    border-bottom: 1px dashed #E0DCD3;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list li::before {
    content: "✓";
    color: #2F6B3E;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.paperwork-note {
    background: #F5F2E8;
    border-left: 4px solid #F5B041;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.paperwork-note p {
    margin: 0;
    font-size: 0.9rem;
    color: #5A4A3A;
}

.paperwork-download {
    text-align: center;
}

/* ========== STAGE-BASED ABOUT US SECTION - 4 COLUMNS ========== */
.stages-section {
    background: white;
    padding: 4rem 0;
}

.stages-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2.5rem auto;
    font-size: 1.1rem;
    color: #5A4A3A;
    line-height: 1.6;
}

/* 4-Column Grid */
.stages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

/* Individual Stage Cards */
.stage-card {
    background: #F9F7F2;
    border-radius: 24px;
    padding: 1.8rem 1.2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid;
}

.stage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

/* Stage Colors */
.stage-1 { border-bottom-color: #2F6B3E; }
.stage-2 { border-bottom-color: #F5B041; }
.stage-3 { border-bottom-color: #8B5A2B; }
.stage-4 { border-bottom-color: #1F4A2C; }

.stage-icon {
    font-size: 3rem;
    margin-bottom: 0.8rem;
}

.stage-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stage-1 .stage-name { color: #2F6B3E; }
.stage-2 .stage-name { color: #D4941A; }
.stage-3 .stage-name { color: #8B5A2B; }
.stage-4 .stage-name { color: #1F4A2C; }

.stage-ages {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2C2B2B;
    background: rgba(0, 0, 0, 0.05);
    display: inline-block;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.stage-skills {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.stage-skills li {
    padding: 0.4rem 0;
    padding-left: 1.3rem;
    position: relative;
    font-size: 0.85rem;
    color: #4A4A4A;
    border-bottom: 1px dashed #E0DCD3;
}

.stage-skills li:last-child {
    border-bottom: none;
}

.stage-skills li::before {
    content: "✓";
    font-weight: bold;
    position: absolute;
    left: 0;
}

.stage-1 .stage-skills li::before { color: #2F6B3E; }
.stage-2 .stage-skills li::before { color: #F5B041; }
.stage-3 .stage-skills li::before { color: #8B5A2B; }
.stage-4 .stage-skills li::before { color: #1F4A2C; }

/* Stages Footer */
.stages-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #E8E4DC;
}

.stages-note {
    font-size: 0.95rem;
    color: #5A4A3A;
    font-style: italic;
    margin-bottom: 0.8rem;
}

.stages-cta {
    font-size: 1rem;
    color: #2C2B2B;
}

.stages-cta a {
    color: #2F6B3E;
    font-weight: bold;
    text-decoration: none;
    border-bottom: 1px solid #F5B041;
}

.stages-cta a:hover {
    color: #F5B041;
}

/* ========== RESPONSIVE: 4 COLUMNS → 2 COLUMNS → 1 COLUMN ========== */

/* Tablet (768px - 1024px): 2 columns */
@media (max-width: 1024px) {
    .stages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    
    .stage-card {
        padding: 1.5rem;
    }
}

/* Mobile (below 768px): 1 column */
@media (max-width: 768px) {
    .stages-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stages-intro {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .stage-card {
        padding: 1.2rem;
        max-width: 350px;
        margin: 0 auto;
        width: 100%;
    }
    
    .stage-icon {
        font-size: 2.5rem;
    }
    
    .stage-name {
        font-size: 1.2rem;
    }
    
    .stages-note {
        font-size: 0.85rem;
        padding: 0 1rem;
    }
    
    .stages-cta {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
}


/* Mobile Responsive for 2x3 Grid */
@media (max-width: 900px) {
    .paperwork-categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 550px) {
    .paperwork-categories {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .category-card {
        padding: 1rem;
    }
    
    .category-title {
        font-size: 1rem;
    }
    
    .category-list li {
        font-size: 0.8rem;
    }
}
/* Logo Link */
.logo-link {
    text-decoration: none;
    display: inline-block;
}

/* Logo with text */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-image {
    height: 50px;
    width: auto;
    max-height: 50px;
    object-fit: contain;
}

/* If using logo only (no text) */
.logo-image-only {
    height: 50px;
    width: auto;
    max-height: 50px;
    object-fit: contain;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .logo-image, .logo-image-only {
        height: 40px;
    }
}

/* ========== ACHIEVEMENTS SECTION WITH PHOTO CARDS ========== */
.achievements-section {
    background: #F9F7F2;
    padding: 4rem 0;
}

.achievements-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    font-size: 1.1rem;
    color: #5A4A3A;
    line-height: 1.6;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.achievement-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.achievement-full {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: row;
}

.achievement-full .achievement-image {
    width: 50%;
    height: auto;
}

.achievement-full .achievement-image img {
    height: 100%;
    object-fit: cover;
}

.achievement-full .achievement-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.achievement-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.achievement-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.achievement-card:hover .achievement-image img {
    transform: scale(1.05);
}

.achievement-content {
    padding: 1.5rem 1.2rem;
    text-align: center;
}

.achievement-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.achievement-content h3 {
    color: #2F6B3E;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.achievement-content p {
    color: #5A4A3A;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
}

.achievement-tag {
    background: #2F6B3E10;
    color: #2F6B3E;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    display: inline-block;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .achievements-grid {
        gap: 1.2rem;
    }
    
    .achievement-full {
        flex-direction: column;
    }
    
    .achievement-full .achievement-image {
        width: 100%;
        height: 220px;
    }
    
    .achievement-full .achievement-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .achievement-image {
        height: 180px;
    }
    
    .achievement-content {
        padding: 1.2rem 1rem;
    }
    
    .achievement-content h3 {
        font-size: 1.1rem;
    }
    
    .achievement-full .achievement-image {
        height: 180px;
    }
}