body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* HEADER */
.main-header {
    background: #143a66;
    padding: 15px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header {
    position: sticky;
    transition: 0.3s ease;
    top: 0;
    z-index: 1000;
}

header.scrolled {
    background: #002B5B;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* BRAND SECTION */
.brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* ICON */
.logo-icon {
    height: 50px;
    width: auto;
}

/* TEXT LOGO */
.logo-text {
    font-family: 'Brush Script MT', cursive;
    font-size: 40px;
    color: #ff4d4d;
    display: flex;
    align-items: flex-start;
}

/* REGISTERED SYMBOL */
.registered {
    font-size: 14px;
    margin-left: 2px;
    margin-top: 0px;
    color: white;
}

/* NAVIGATION */
nav a {
    color: white;
    text-decoration: none;
    margin-left: 30px;
    font-size: 16px;
}

nav a:hover {
    color: orange;
}

/* HERO SECTION */

.hero-matheng {
    height: 100vh;
    width: 92%;
    background-image: url("images/hero.png"); /* make sure path is correct */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 8%;
}

/* Dark overlay */
.hero-matheng::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(78, 118, 166, 0.65);
}

/* Text content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    color: white;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 30px;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: #f7b500;
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
}

.btn-primary:hover {
    background: #ff9900;
}

.btn-secondary {
    color: white;
    margin-top: 15px;
    text-decoration: none;
}

.btn-secondary:hover{
    color: orange;
}

/* Optional subtle zoom animation */
.hero-matheng {
    animation: heroZoom 15s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { background-size: 100%; }
    to { background-size: 110%; }
}

/* ULTIMATE ELITE VISION */

.vision-elite-ultimate {
    position: relative;
    padding: 160px 100px 120px;
    background: linear-gradient(to bottom, #ffffff, #f9fbff);
    overflow: hidden;
}

/* Floating Background Shape */
.vision-bg-shape {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(197,157,61,0.15), transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
    z-index: 0;
}

/* Layout */
.vision-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 120px;
    align-items: center;
}

/* Text */
.vision-content {
    flex: 1;
}

.vision-content h2 {
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 25px;
}

.vision-content h3 {
    font-size: 36px;
    line-height: 1.4;
    color: #0f2d52;
    margin-bottom: 30px;
}

.vision-content p {
    font-size: 18px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 20px;
}

.vision-content span {
    background: linear-gradient(90deg, #c59d3d, #f1d27c);

    background-clip: text;              /* Standard property */
    -webkit-background-clip: text;      /* Chrome/Safari */

    color: transparent;                 /* Standard */
    -webkit-text-fill-color: transparent;

    font-weight: 600;
}

.vision-highlight {
    margin-top: 40px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #c59d3d;
}

/* Image */
.vision-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.1);
}

/* Stats Section */
.vision-stats {
    margin-top: 100px;
    display: flex;
    justify-content: center;
    gap: 100px;
    text-align: center;
}

.stat h4 {
    font-size: 40px;
    color: #0f2d52;
    margin-bottom: 10px;
}

.stat p {
    font-size: 16px;
    color: #666;
}

/* Fade Animation */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1.2s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* SUBJECTS SECTION */
.subjects-modern {
    padding: 100px 20px;
    background: #ffffff;
    text-align: center;
}

.subjects-modern h2 {
    font-size: 40px;
    color: #002B5B;
    margin-bottom: 60px;
}

.subjects-container {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

/* FLIP CARD */
.flip-card {
    background: transparent;
    width: 280px;
    height: 320px;
    perspective: 1000px;
}

.flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-inner {
    transform: rotateY(180deg);
}

.flip-front, .flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    backface-visibility: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* FRONT */
.flip-front {
    background: #f8faff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.flip-front img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.flip-front h3 {
    font-size: 26px;
    color: #002B5B;
}

/* BACK */
.flip-back {
    background: linear-gradient(135deg, #002B5B, #004e92);
    color: white;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
}

.flip-back h3 {
    margin-bottom: 15px;
}

.flip-back p {
    font-size: 14px;
    margin-bottom: 20px;
}

.enroll-btn {
    background: orange;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    color: white;
    font-weight: bold;
}

/* Why Different */
/* SECTION */
.why-modern {
    background: #f9fbff;
    padding: 120px 0;
}

/* CENTER WRAPPER */
.why-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

/* LEFT IMAGE */
.why-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.why-image img {
    width: 100%;
    max-width: 480px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

/* RIGHT CONTENT */
.why-content {
    flex: 1;
    max-width: 550px;
}

.why-content h2 {
    font-size: 40px;
    color: #002B5B;
    margin-bottom: 40px;
}

.why-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 80px;
    color: #002B5B;
}

/* GLASS CARD */
.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(14px);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.06);
}

/* FEATURES */
.feature {
    padding: 14px 0;
    font-size: 18px;
    color: #002B5B;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s ease;
}

.feature:not(:last-child) {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.feature:hover {
    color: #f7b500;
    transform: translateX(6px);
}

.testimonials {
    background: #002B5B;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.testimonials h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.slider {
    max-width: 700px;
    margin: auto;
    position: relative;
}

.slide {
    display: none;
    font-size: 20px;
}

.slide span {
    display: block;
    margin-top: 15px;
    font-size: 16px;
    color: #ffc107;
}

.slide.active {
    display: block;
}

.cta {
    background: #002B5B;
    color: white;
}

footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 20px;
}

/* PROGRAM HERO SECTION */

.program-hero {
    height: 70vh;
    width: 100%;
    background-image: url("images/program.png"); /* your image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Dark overlay for readability */
.program-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 43, 91, 0.85) 0%,
        rgba(0, 43, 91, 0.75) 40%,
        rgba(0, 43, 91, 0.55) 70%,
        rgba(0, 43, 91, 0.4) 100%
    );
}

/* Text content */
.program-hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.program-hero-content h1 {
    font-size: 64px;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 0 4px 25px rgba(0,0,0,0.6);
}

.gold-line {
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #f7b500, #ffcc33);
    margin: 20px auto 25px;
    border-radius: 5px;
}

.hero-subtitle span {
    color: #f7b500;
    font-weight: 600;
}

.program-hero-content p {
    font-size: 22px;
    text-shadow: 0 3px 15px rgba(0,0,0,0.5);
}

.program-hero {
    animation: heroZoom 15s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { background-size: 100%; }
    to { background-size: 110%; }
}

/* PROGRAM CARDS */
.programs-section {
    padding: 100px 80px;
    display: flex;
    gap: 50px;
    justify-content: center;
}

.program-card {
    background: white;
    text-align: center;
    padding: 40px;
    border-radius: 20px;
    width: 450px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.program-card h2 {
    color: #002B5B;
    text-align: center;
    margin-bottom: 20px;
}

.program-card ul {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    width: fit-content;      /* makes list only as wide as content */
    text-align: left;        /* keeps text straight */
}

.program-card li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    line-height: 1.6;
}

/* Checkmark circle */
.program-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    background: #f7b500;
    color: white;
    width: 18px;
    height: 18px;
    font-size: 12px;
    text-align: center;
    line-height: 18px;
    border-radius: 50%;
}

.program-card .btn-primary {
    display: inline-block;
    width: fit-content;
    margin: 10px auto 0;
    text-align: center;
}

/* PREMIUM WORKSHEETS SECTION */

.worksheets-section {
    padding: 120px 60px;
    background: linear-gradient(180deg, #f9fbff 0%, #eef2f8 100%);
}

.worksheets-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.worksheets-header h2 {
    font-size: 44px;
    color: #002B5B;
    margin-bottom: 10px;
}

.gold-line {
    width: 80px;
    height: 4px;
    margin: 0 auto 50px;
    background: linear-gradient(90deg, #f7b500, #ffcc33);
    border-radius: 5px;
}

/* Card */
.worksheets-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    padding: 60px 50px;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

.worksheets-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

/* Highlight Numbers */
.worksheets-highlight {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
}

.highlight-box span {
    font-size: 48px;
    font-weight: 700;
    color: #f7b500;
}

.highlight-box p {
    font-size: 16px;
    margin-top: 5px;
    color: #002B5B;
    font-weight: 600;
}

.worksheets-description {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
}

.worksheets-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.worksheets-list li {
    font-size: 18px;
    margin-bottom: 12px;
    color: #002B5B;
}

/* Button already styled from hero */

.emotion-section {
    display: flex;
    height: 550px;
    overflow: hidden;
}

/* Base Box */
.emotion-box {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Images */
.problem {
    background-image: url("images/sad_child.png");
    background-position: center 40%;
}

.solution {
    background-image: url("images/happy_child.png");
    background-position: center 40%;
}

/* Dark overlay by default */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    transition: 0.6s ease;
}

/* Make solution slightly brighter initially */
.solution .overlay {
    background: rgba(0,43,91,0.55);
}

/* Text */
.text-content {
    color: white;
    text-align: center;
    max-width: 500px;
    opacity: 0;
    transform: translateY(30px);
    transition: 0.6s ease;
}

.text-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.text-content p {
    font-size: 18px;
    line-height: 1.6;
}

/* Hover Effects */
.emotion-box:hover {
    transform: scale(1.05);
}

/* Brighten on hover */
.problem:hover .overlay {
    background: rgba(0,0,0,0.45);
}

.solution:hover .overlay {
    background: rgba(0,43,91,0.35);
}

/* Animated Gold Underline */
.gold-line {
    display: block;
    width: 0;
    height: 4px;
    margin: 15px auto 0;
    background: linear-gradient(90deg, #f7b500, #ffcc33);
    transition: width 0.6s ease;
    border-radius: 5px;
}

/* Underline Animation */
.emotion-box:hover .gold-line {
    width: 120px;
}


/* Text fades in on hover */
.emotion-box:hover .text-content {
    opacity: 1;
    transform: translateY(0);
}

/* CTA */

/* White Section */
.cta-white {
    background: #ffffff;
    padding: 120px 20px;
    display: flex;
    justify-content: center;
}

/* Centered Card Box */
.cta-box {
    text-align: center;
    max-width: 700px;
    padding: 60px 50px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    position: relative;
}

/* Heading */
.cta-box h2 {
    font-size: 42px;
    color: #002B5B;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Gold Accent Line */
.gold-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f7b500, #ffcc33);
    margin: 15px auto 25px;
    border-radius: 10px;
}

/* Subtext */
.cta-box p {
    font-size: 18px;
    color: #555;
    margin-bottom: 35px;
}

/* Button */
.cta-btn {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #f7b500, #ffcc33);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(247, 181, 0, 0.4);
}

/* Shimmer layer */
.cta-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.2),
        rgba(255,255,255,0.6),
        rgba(255,255,255,0.2)
    );
    transform: skewX(-20deg);
}

/* Animate shimmer */
.cta-btn:hover::before {
    animation: shimmer 0.8s forwards;
}

@keyframes shimmer {
    100% {
        left: 125%;
    }
}

/* Hover lift */
.cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(247, 181, 0, 0.6);
}

/* Contact Page */

.contact-page {
    background: #ffffff;
    padding: 120px 20px;
    text-align: center;
}

.contact-container {
    max-width: 900px;
    margin: auto;
}

.contact-page h1 {
    font-size: 42px;
    color: #002B5B;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 60px;
}

.contact-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.contact-card {
    background: #f9fbff;
    padding: 40px;
    border-radius: 20px;
    width: 300px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.contact-card h3 {
    color: #002B5B;
    margin-bottom: 15px;
}

.contact-card p {
    color: #555;
    line-height: 1.6;
}

/* Buttons */
.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* Call Button */
.call-btn {
    background: #002B5B;
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.call-btn:hover {
    background: #003e80;
    transform: translateY(-4px);
}

/* WhatsApp Button */
.whatsapp-btn {
    background: #25D366;
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

/* Google Maps */
.map-section {
    padding: 100px 20px;
    text-align: center;
    background: #f9fbff;
}

.map-section h2 {
    font-size: 36px;
    color: #002B5B;
    margin-bottom: 40px;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.pdf-btn {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, #f7b500, #ff9900);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.pdf-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

/* About Page */

/* HERO */
.about-hero {
    height: 70vh;
    width: 100%;
    background: url("images/center.png") center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Dark professional overlay */
.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(21, 73, 130, 0.85),
        rgba(143, 185, 230, 0.65)
    );
}

/* Content styling */
.hero-content {
    position: relative;
    color: white;
    text-align: center;
    z-index: 2;
}

.hero-content h1 {
    font-size: 52px;
    margin-bottom: 15px;
    animation: fadeUp 1s ease forwards;
}

.hero-content p {
    font-size: 20px;
    opacity: 0.9;
    animation: fadeUp 1.5s ease forwards;
}

/* Smooth fade animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* STORY */
.journey-section {
    padding: 100px 10%;
    background: #f8f9fb;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 38px;
    color: #0b3c6f;
    margin-bottom: 70px;
    position: relative;
}

/* Gold underline */
.section-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f7b500, #ff9900);
    display: block;
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Timeline Line */
.timeline {
    position: relative;
    max-width: 1100px;
    margin: auto;
    padding: 50px 0;
}

/* Center Line */
.timeline::after {
    content: "";
    position: absolute;
    width: 4px;
    background: #0b3c6f;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

/* Timeline Items */
.timeline-item {
    position: relative;
    z-index: 2;
    width: 50%;
    padding: 40px 60px;
    box-sizing: border-box;
    opacity: 1;
    transform: translateY(60px);
    transition: all 0.8s ease;
}

.timeline-item .content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

.timeline-item .content:hover {
    transform: translateY(-8px);
}

.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 50%;
}

.timeline-item::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    background: #f7b500;
    border-radius: 50%;
    top: 60px;
    z-index: 2;
    box-shadow: 0 0 0 rgba(247,181,0, 0.7);
    animation: pulse 2s infinite;
}

/* Positioning */
.timeline-item.left::before {
    right: -9px;
}

.timeline-item.right::before {
    left: -9px;
}

.timeline-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 80px;
}

.timeline-image {
    width: 450px;
    z-index: 0;
}

.timeline-image img {
    width: 100%;
    z-index: 0;
    border-radius: 25px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.18);
    transition: 0.4s ease;
}

.timeline-image img:hover {
    transform: scale(1.03);
}

@media (max-width: 1000px) {
    .timeline-row {
        flex-direction: column;
    }

    .timeline-image {
        width: 100%;
    }
}

/* Glow animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(247,181,0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(247,181,0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(247,181,0, 0);
    }
}

/* Visible state */
.timeline-item.show {
    opacity: 1;
    transform: translateY(0);
}

/* Year Style */
.year {
    font-weight: bold;
    color: #f7b500;
    font-size: 20px;
    display: block;
    margin-bottom: 10px;
}

/* MISSION */
.mission {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 80px 10%;
}

.mission-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    width: 400px;
    text-align: center;
}

.mission-box h3 {
    color: #0b3c6f;
}

/* TRUST */
.trust {
    padding: 80px 10%;
    text-align: center;
}

.trust h2 {
    color: #0b3c6f;
}

.trust-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    font-size: 18px;
}

/* Founders */
.founder-section{
padding:100px 0;
}

.section-title{
text-align:center;
font-size:34px;
color:#0b3c6f;
margin-bottom:60px;
}

.leader-container{
max-width:1100px;
margin:auto;
display:flex;
flex-direction:column;
gap:70px;
}

.leader-card{
display:flex;
align-items:center;
gap:60px;
}

.leader-card.reverse{
flex-direction:row-reverse;
}

.leader-image img{
width:300px;
border-radius:20px;
box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.leader-text h3{
font-size:26px;
margin-bottom:5px;
}

.role{
color:#f7b500;
font-weight:600;
margin-bottom:15px;
}

.leader-text p{
line-height:1.6;
color:#444;
}
