/* --- Global Variables --- */
:root {
    --bg-color: #365765;       /* Dark slate blue */
    --bg-alt: #2b4854;         /* Slightly darker for contrast sections */
    --accent-color: #d89b88;   /* Dusty rose/peach */
    --text-light: #ffffff;
    --text-muted: #b8cdd6;
    --font-heading: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-light);
    font-family: var(--font-sans);
    overflow-x: hidden;
}

/* --- Typography --- */
h2 {
    font-family: var(--font-heading);
    font-size: 45px;
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 1.2;
}

.subtitle {
    color: var(--accent-color);
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 500;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.text-center { text-align: center; }

/* --- Buttons --- */
.btn-primary, .btn-secondary, .btn-nav {
    display: inline-block;
    padding: 15px 35px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #fff;
    border: 2px solid var(--accent-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--bg-color);
}

.button-group {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-nav {
    padding: 10px 20px;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-nav:hover {
    background-color: var(--accent-color);
    color: #fff;
}

/* --- Top Bar & Navigation --- */
.top-bar {
    background-color: var(--accent-color);
    text-align: center;
    padding: 12px 0;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 500;
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 5%;
    gap: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-left, .nav-right {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 1px;
    background-color: var(--accent-color);
}

.logo {
    text-align: center;
}

.logo-icon {
    font-size: 24px;
    color: var(--accent-color);
    line-height: 1;
}

.logo-text {
    font-size: 22px;
    letter-spacing: 5px;
    margin-top: 5px;
    font-family: var(--font-heading);
}

/* --- Hero Section --- */
.hero {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 0 10%; 
    min-height: 85vh;
    position: relative;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    background-color: var(--bg-alt); 
    border-radius: 50%;
    z-index: 0;
}

.shape-1 {
    width: 800px; height: 800px;
    left: -200px; top: -100px;
    transform: rotate(30deg);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}

.shape-2 {
    width: 600px; height: 600px;
    left: 10%; bottom: -300px;
    transform: rotate(-15deg);
    border-radius: 50% 50% 30% 70% / 50% 50% 70% 50%;
}

.hero-content {
    flex: 0 0 45%;
    max-width: 600px;
    z-index: 2;
    position: relative;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 65px;
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 30px;
}

.hero-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: var(--text-muted);
}

.signature {
    font-family: 'Alex Brush', cursive;
    color: var(--accent-color);
    font-size: 55px;
    line-height: 1;
    transform: rotate(-3deg);
}

.hero-visual {
    flex: 0 0 55%;
    min-height: 85vh;
    position: relative;
    z-index: 2;
}

.image-ring {
    width: 700px; height: 700px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%); 
}

.image-inner {
    width: 96%; height: 96%;
    border-radius: 50%;
    overflow: hidden;
}

.image-inner img {
    width: 100%; height: 100%;
    object-fit: cover;
}

/* --- Dual Section (Problem & About) --- */
.dual-section {
    display: flex;
    padding: 100px 10%;
    gap: 60px;
    background-color: var(--bg-alt);
}

.problem-box, .about-box {
    flex: 1;
    padding: 50px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    background-color: var(--bg-color);
}

.checklist {
    list-style: none;
    margin-bottom: 30px;
}

.checklist li {
    font-size: 18px;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-family: var(--font-heading);
}

.checklist li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.problem-text {
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.8;
}

.about-box p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* --- Services Grid --- */
.services-section {
    padding: 100px 10%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background-color: rgba(255,255,255,0.03);
    padding: 40px 30px;
    border-radius: 15px;
    border-top: 3px solid var(--accent-color);
    transition: 0.3s ease;
}

.service-card:hover {
    background-color: rgba(255,255,255,0.08);
    transform: translateY(-5px);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 500;
}

.service-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* --- Process Timeline --- */
.process-section {
    padding: 100px 10%;
    background-color: var(--bg-alt);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
}

.step {
    text-align: center;
    flex: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-family: var(--font-heading);
    margin: 0 auto 20px auto;
}

.step h4 {
    font-size: 16px;
    font-weight: 500;
}

.step-line {
    flex: 1;
    height: 2px;
    background-color: rgba(255,255,255,0.2);
    margin: -40px 20px 0 20px;
}

/* --- Final CTA --- */
.cta-section {
    text-align: center;
    padding: 120px 10%;
}

.cta-section h2 {
    font-size: 55px;
    margin-bottom: 40px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .hero, .dual-section { flex-direction: column; text-align: center; }
    .hero-content, .hero-visual { flex: 1; max-width: 100%; }
    .image-ring { position: relative; right: 0; transform: none; top: 40px; width: 400px; height: 400px; margin: 0 auto; }
    .checklist li { text-align: left; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-timeline { flex-direction: column; gap: 40px; }
    .step-line { display: none; }
}
@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
    .header { flex-direction: column; gap: 20px; }
}

/* --- New Layout Utilities --- */
.padded-section {
    padding: 100px 10%;
}

.bg-alt {
    background-color: var(--bg-alt);
}

/* --- 3-Column Grid for Services & Why Choose Us --- */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

/* --- Counters Section --- */
.counter-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 80px 10%;
    background-color: var(--bg-color);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.counter-item {
    text-align: center;
    margin: 20px;
}

.counter-item h3 {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.counter-item p {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-light);
}

/* --- Split Sections (Founder, Parents, Schools, Mentors) --- */
.split-section {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 100px 10%;
}

.split-content {
    flex: 1;
}

.split-image {
    flex: 1;
    border-radius: 20px 100px 20px 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-circle-small {
    border-radius: 50%;
    width: 450px;
    height: 450px;
    margin: 0 auto;
}

/* --- Footer --- */
.footer {
    text-align: center;
    padding: 80px 10%;
    background-color: #1c2e36; /* Deepest shade for footer */
}

/* --- Responsive Adjustments for New Elements --- */
@media (max-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .split-section, .split-section[style*="row-reverse"] { flex-direction: column !important; text-align: center; gap: 40px; }
    .checklist li { text-align: left; }
    .image-circle-small { width: 300px; height: 300px; }
}

@media (max-width: 768px) {
    .grid-3 { grid-template-columns: 1fr; }
    .counter-wrapper { flex-direction: column; }
}