/* CSS */
/* Hero Section */
.hero-section {
    position: relative;
    background-color: #f8fbff; /* Light background */
    padding: clamp(40px, 5vw, 80px) clamp(16px, 5vw, 64px) 120px; /* Extra bottom padding for strip overlap */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1400px;
    width: 100%;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.hero-title .highlight {
    color: var(--primary-green);
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.6;
    color: #555;
    margin-bottom: 40px;
}

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

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-green);
    color: #ffffff;
    border: 2px solid var(--primary-green);
}

.btn-primary:hover {
    background-color: var(--secondary-green);
    border-color: var(--secondary-green);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
    background-color: rgba(46, 74, 51, 0.05);
    transform: translateY(-2px);
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.hero-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Contact Strip */
.contact-strip {
    position: absolute;
    bottom: -40px; /* Overlap nicely */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: #ffffff;
    border-radius: 100px; /* Pill shape */
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 16px 40px;
    z-index: 10;
}

.contact-strip-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-strip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-size: 15px;
    font-weight: 500;
}

.contact-strip-item .contact-icon {
    width: 20px;
    height: 20px;
    /* You might need to colorize SVGs or use filter if they are black */
}

.btn-enroll-strip {
    background-color: var(--primary-green);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s;
}

.btn-enroll-strip:hover {
    background-color: var(--secondary-green);
}

/* Welcome Section */
.welcome-section {
    padding: 140px clamp(16px, 5vw, 64px) 80px; /* Top padding accounts for contact strip overlap */
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 32px;
}

.welcome-text-container {
    max-width: 900px;
    margin: 0 auto 60px;
}

.welcome-desc {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.proprietress-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 80px;
}

.proprietress-img-wrapper {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.proprietress-img {
    width: 100%;
    height: auto;
    display: block;
}

.btn-proprietress {
    background-color: var(--primary-green);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s;
}

.btn-proprietress:hover {
    transform: translateY(-3px);
    background-color: var(--secondary-green);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.value-card {
    background: #ffffff;
    border: 1px solid #e0e0e0; /* Or green border */
    border-radius: 24px;
    padding: 40px 24px;
    text-align: center;
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 16px;
}

.value-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* Academics Section */
.academics-section {
    padding: 80px clamp(16px, 5vw, 64px);
    background-color: #f8fbff;
    text-align: center;
}

.academic-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.academic-card-new {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.academic-img-wrapper {
    width: 100%;
    aspect-ratio: 3 / 4;
}

.academic-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.academic-card-new:hover .academic-img {
    transform: scale(1.05);
}

.academic-link-btn {
    background-color: var(--accent-yellow);
    color: var(--text-dark);
    padding: 16px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
    position: relative;
    z-index: 2;
}

.academic-link-btn:hover {
    background-color: #dbe87a;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px clamp(16px, 5vw, 64px);
    background-color: #ffffff;
    text-align: center;
    overflow: hidden; /* For circular layout containment */
}

.features-circular-layout {
    position: relative;
    max-width: 1000px;
    margin: 80px auto 0;
    min-height: 600px; /* Give space for layout */
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-circle-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid var(--primary-green);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.circle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-item {
    position: absolute;
    width: 280px;
    text-align: center;
    z-index: 3;
}

.feature-icon-dot {
    width: 20px;
    height: 20px;
    background-color: var(--primary-green);
    border: 4px solid #fff;
    box-shadow: 0 0 0 2px var(--primary-green);
    border-radius: 50%;
    margin: 0 auto 12px;
}

.feature-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}

/* Positioning Features Circularly (Desktop) */
/* Top Center */
.item-1 {
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
}

/* Middle Right */
.item-2 {
    top: 20%;
    right: -20px;
}

/* Bottom Right */
.item-3 {
    bottom: 0;
    right: 0;
}

/* Bottom Left */
.item-4 {
    bottom: 0;
    left: 0;
}

/* Middle Left */
.item-5 {
    top: 20%;
    left: -20px;
}

/* Impact Section */
.impact-section {
    background-color: #0d1f12; /* Deep green from screenshot */
    padding: 80px clamp(16px, 5vw, 64px);
    color: #fff;
}

.impact-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title-light {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
    text-align: left;
}

.impact-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.impact-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.impact-card {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 140px;
    transition: background-color 0.3s;
}

.impact-card:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.impact-number {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    display: block;
}

.impact-label {
    font-size: 14px;
    color: #ccc;
}

.impact-image-wrapper {
    flex: 1;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
}

.impact-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

/* Photo Splash Section */
.photo-splash-section {
    padding: 80px clamp(16px, 5vw, 64px);
    background-color: #fff;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
}

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

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

/* Testimonials Section */
.testimonials-section {
    padding: 80px clamp(16px, 5vw, 64px);
    background-color: #f8fbff;
}

.testimonial-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-image-wrapper {
    flex: 1;
    border-radius: 24px;
    overflow: hidden;
}

.testimonial-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 24px;
}

.testimonial-content {
    flex: 1;
}

.section-title-left {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    text-align: left;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 40px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background-color: var(--accent-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.author-info span {
    font-size: 14px;
    color: #666;
}

.testimonial-nav {
    display: flex;
    gap: 16px;
}

.nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    border: none;
    background-color: var(--primary-green);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.nav-btn:hover {
    background-color: var(--secondary-green);
}

/* CTA Section (Part of footer area visually) */
.cta-section {
    background-color: #0d1f12; /* Matches footer/impact dark green */
    padding: 60px clamp(16px, 5vw, 64px) 0; /* Removed bottom padding to merge with footer */
    text-align: left;
}

.cta-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cta-title {
    font-size: clamp(24px, 3vw, 32px);
    color: #fff;
    font-weight: 700;
}

.btn-cta-enroll {
    background-color: var(--accent-yellow);
    color: var(--primary-green);
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-cta-enroll:hover {
    background-color: #dbe87a;
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-container {
        justify-content: center;
    }

    .contact-strip {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 40px;
        flex-direction: column;
        border-radius: 24px;
        padding: 24px;
    }

    .welcome-section {
        padding-top: 60px;
    }

    .values-grid,
    .academic-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-circular-layout {
        display: flex;
        flex-direction: column;
        gap: 40px;
        min-height: auto;
        margin-top: 40px;
    }

    .center-circle-image,
    .feature-item {
        position: static;
        transform: none;
        width: 100%;
        max-width: 400px;
    }

    .center-circle-image {
        margin-bottom: 40px;
    }

    .impact-content {
        flex-direction: column-reverse;
    }
    
    .testimonial-container {
        flex-direction: column;
    }
    
    .testimonial-image-wrapper {
        width: 100%;
        order: -1;
    }
}

@media (max-width: 768px) {
    .values-grid,
    .academic-cards-container,
    .impact-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .contact-strip-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-strip-item {
        justify-content: center;
    }
    
    .cta-container {
        flex-direction: column;
        align-items: flex-start;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: transform 0.6s ease, opacity 0.6s ease;
    will-change: transform, opacity;
}

.reveal.in-view {
    opacity: 1;
    transform: none;
    transition-delay: var(--delay, 0s);
}

.fade-in {
    transform: none;
}

.fade-up {
    transform: translateY(16px);
}

.slide-left {
    transform: translateX(-24px);
}

.slide-right {
    transform: translateX(24px);
}

.zoom-in {
    transform: scale(0.96);
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
