:root {
    --primary: #0a7c3a;
    --secondary: #6a1b7b;
    --accent: #f5a623;
    --light-bg: #f7f9f8;
    --dark-text: #222;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: "Chelsea Market", system-ui;
    background: white;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.logostyle {
    width: 70px;
    height: 70px;
}

/* SWIRL BACKGROUND LAYER */
.swirl-bg {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 128, 0, 0.4), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 128, 0, 0.35), transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.95), transparent 60%);
    background-size: 200% 200%;
    animation: swirlFlow 20s linear infinite;
    background-attachment: fixed;
}

@keyframes swirlFlow {
    0% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 100%;
    }
}

/* HEADER */
.coverDiv .mainHeader {
    width: 100%;
    height: 85px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.4);
    padding-inline: max(5%, 50px);
    padding-top: 10px;
}

.logoSec {
    display: flex;
    align-items: center;
    color: white;
    font-weight: bold;
}

.logoSec span {
    padding-left: 10px;
    font-size: 1.2rem;
}

.navItems {
    display: flex;
    gap: 20px;
}

.navItems span a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    padding: 5px 0;
}

.navItems span a.active::after,
.navItems span a:hover::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
}

.hamburgerIcon {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* SECTIONS BASE */
section {
    padding: 80px 10%;
    position: relative;
}

h1,
h2,
h3 {
    color: #222;
}

p {
    line-height: 1.6;
    color: #444;
    font-size: 1.1rem;
}

.highlight {
    color: var(--primary);
}

/* ABOUT CIRCLE SECTION (NEW CONSOLIDATED) */
.test {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 80px 5%;
    flex-wrap: nowrap;
    /* Keep them side-by-side on desktop */
    min-height: 700px;
}

.circle-text {
    background: white;
    border: 12px solid var(--primary);
    width: clamp(350px, 40vw, 550px);
    height: clamp(350px, 40vw, 550px);
    border-radius: 50% !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    z-index: 2;
    overflow: hidden !important;
    /* NO SCROLLBARS */
    position: relative;
}

.circle-text * {
    overflow: hidden !important;
    /* FORCE NO INNER SCROLLBARS */
}

.side-images {
    display: flex;
    flex-direction: column;
    /* Stack vertically beside the circle by default */
    gap: 25px;
    justify-content: center;
}

/* On wider screens, maybe they can be horizontal if preferred, 
   but stacked beside a large circle usually looks more balanced. 
   However, user said "side by side", which often means horizontal. 
   Let's try horizontal first to match "side by side". */

.side-images {
    flex-direction: row;
    align-items: center;
}

.side-images img {
    width: clamp(150px, 15vw, 220px);
    height: clamp(150px, 15vw, 220px);
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 6px solid white;
    transition: transform 0.4s ease;
}

.side-images img:hover {
    transform: scale(1.05);
    overflow: hidden !important;
}

.circle-text h1 {
    font-size: clamp(1.4rem, 2.5vw, 2.8rem);
    margin-bottom: 15px;
    line-height: 1.1;
    font-weight: 700;
}

.circle-text p {
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    margin-bottom: 12px;
    line-height: 1.5;
    max-width: 95%;
}


/* MISSION/VISION CARDS */
.course-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.courseSec {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.courseSec:hover {
    transform: translateY(-10px);
}

.courseSec h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* HERO (PARTNERING WITH PARENTS) */
.hero {
    display: flex;
    align-items: center;
    gap: 60px;
    background: #fdfdfd;
}

.heroText {
    flex: 1;
}

.heroImages {
    flex: 1;
    display: flex;
    gap: 20px;
}

.heroImages img {
    width: 50%;
    border-radius: 100px 100px 0 0;
    aspect-ratio: 1/1.2;
    object-fit: cover;
    border-bottom: 8px solid var(--primary);
}

/* REGULAR SCHOOL */
.regularSchool {
    display: flex;
    align-items: center;
    gap: 60px;
    background: var(--light-bg);
    border-radius: 40px;
}

.imageBox {
    flex: 1;
}

.imageBox img {
    width: 100%;
    border-radius: 30px;
}

.textBox {
    flex: 1;
}

.textBox h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* FEATURES */
.whyLoveUs {
    background: linear-gradient(135deg, #0a7c3a, #078b07);
    color: white;
    text-align: center;
}

.whyLoveUs h2 {
    color: white;
}

.whyLoveUs .subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

/* VALUES */
.values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.value .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* FOOTER */
/* FOOTER */
.site-footer {
    width: 100%;

    color: #333;
    font-family: "Chelsea Market", system-ui;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding: 60px 8%;
    flex-wrap: wrap;
}

.footer-left {
    flex: 1;
    min-width: 280px;
}



.footer-left p {
    line-height: 1.7;
    font-size: 0.95rem;
    color: #555;
    max-width: 600px;
}

.social-icons {
    margin-top: 20px;
    display: flex;
    gap: 14px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: background 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    background: #1a73e8;
    color: #fff;
}

/* RIGHT SIDE */
.footer-right {
    flex: 1;
    min-width: 260px;
}

.footer-right h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-right h3::before {
    content: "";
    width: 60px;
    height: 4px;
    background: #fbbc05;
    position: absolute;
    top: -10px;
    left: 0;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;

    display: grid;
    grid-template-rows: repeat(3, auto);
    row-gap: 20px;
}

.contact-list li {
    display: grid;
    grid-template-columns: 30px 1fr;
    column-gap: 15px;
    align-items: start;
}

.contact-list i {
    font-size: 18px;
    color: rgb(7, 139, 7);
}

/* BOTTOM BAR */
.footer-bottom {
    background: #000;
    padding: 18px 8%;
    text-align: center;
}

.footer-bottom p {
    color: #fff;
    font-size: 0.9rem;
}

.footer-bottom span {
    color: #2ecc71;
}

/* ANIMATIONS */
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: 1s;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}