﻿body {
}
:root {
    --primary: #0d3b2c;
    --secondary: #27ae60;
    --gold: #f39c12;
    --light-bg: #f8fff9;
    --card-bg: #ffffff;
    --text: #1e1e1e;
    --text-light: #555555;
    --shadow: rgba(13, 59, 44, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--light-bg);
    color: var(--text);
    line-height: 1.8;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

/* Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--secondary);
    border-radius: 50%;
    opacity: 0.2;
    animation: float 25s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 0.2;
    }

    90% {
        opacity: 0.2;
    }

    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

.hero {
    background-color: #1A4537;
    color: white;
    padding: 180px 0 140px;
    text-align: center;
    position: relative;
    z-index: 2;
}

    .hero h1 {
        font-size: 5rem;
        font-weight: 900;
        margin-bottom: 20px;
        text-shadow: 0 6px 20px rgba(0,0,0,0.5);
        color: white;
    }

.hlo {
    font-size: 1.5rem !important;
    max-width: 900px !important;
    margin: 0 auto !important;
    opacity: 0.95 !important;
    font-weight: 500 !important;
    color: white !important;
}

.founder {
    padding: 140px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    position: relative;
    z-index: 2;
}

.founder-card {
    max-width: 1300px;
    margin: 0 auto;
    background: white;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 40px 90px var(--shadow);
    display: flex;
    flex-wrap: wrap;
}

.founder-img {
    flex: 1;
    min-width: 400px;
    overflow: hidden;
}

    .founder-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1s ease;
    }

.founder-card:hover .founder-img img {
    transform: scale(1.08);
}

.founder-content {
    flex: 1;
    padding: 90px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.founder-name {
    font-size: 2.9rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.founder-title {
    font-size: 1.7rem !important;
    color: #27AE60 !important;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: 3px;
}

.founder-message {
    font-size: 1.2rem !important;
    line-height: 2.2;
    color: #2d3748;
    margin-bottom: 35px;
}

.signature {
    margin-top: 50px;
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--primary);
}

.team {
    padding: 140px 0;
    background: white;
    position: relative;
    z-index: 2;
}

.section-title h2 {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 100px;
    color: var(--primary);
}

    .section-title h2::after {
        content: '';
        display: block;
        width: 160px;
        height: 7px;
        background: linear-gradient(90deg, var(--primary), var(--secondary));
        margin: 25px auto 0;
        border-radius: 4px;
    }

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 50px;
}

.team-member {
    background: var(--card-bg);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 50px var(--shadow);
    transition: all 0.6s ease;
    text-align: center;
}

    .team-member:hover {
        transform: translateY(-15px);
        box-shadow: 0 50px 100px rgba(13,59,44,0.25);
    }

.member-photo {
    width: 280px;
    height: 340px;
    object-fit: cover;
    margin: 40px auto 25px;
    border-radius: 24px;
    border: 7px solid #f0fdf4;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transition: all 0.7s ease;
}

.team-member:hover .member-photo {
    border-color: var(--secondary);
    transform: scale(1.001);
}

.member-name {
    font-size: 2rem;
    color: var(--primary);
    margin: 65px 0 10px;
}

.member-role {
    color: var(--secondary) !important;
    font-weight: 700;
    font-size: 1.3rem !important;
    margin-bottom: 20px;
}

.member-bio {
    padding: 0 35px 45px;
    color: var(--text-light);
    font-size: 1.1rem !important;
}

.cta {
    padding: 140px 0;
    background: linear-gradient(135deg, var(--primary), #0f4a38);
    color: white;
    text-align: center;
    position: relative;
    z-index: 2;
}

    .cta h2 {
        font-size: 3.6rem;
        margin-bottom: 25px;
        color:white !important;
    }
    .cta p {
        font-size: 1.6rem !important;
        opacity: 0.9;
        color: white !important;
    }

.btn-enroll {
    background: linear-gradient(45deg, var(--gold), #258ddc);
    color: white;
    padding: 24px 70px;
    border-radius: 60px;
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none !important;
    display: inline-block;
    margin-top: 35px;
    box-shadow: 0 20px 50px rgba(243,156,18,0.5);
    transition: all 0.5s;
}

    .btn-enroll:hover {
        background: white;
        color: var(--primary);
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(255,255,255,0.4);
    }

/* RESPONSIVE — AB BILKUL PERFECT */
/* RESPONSIVE FIXES - Mobile + Tablet Perfect */
@media (max-width: 1200px) {
  

    .member-photo {
        width: 240px;
        height: 300px;
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.8rem;
    }

    .hero p {
        font-size: 1.3rem;
    }

    .founder-card {
        flex-direction: column;
    }

    .founder-img {
        min-width: 100%;
    }

    .founder-content {
        padding: 60px 40px;
        text-align: center;
    }

    .founder-name {
        font-size: 3rem;
    }

    .founder-title {
        font-size: 1.4rem;
    }

    .founder-message {
        font-size: 1.25rem;
    }

    .signature {
        font-size: 2.2rem;
    }
    .member-photo {
        width: 220px;
        height: 280px;
        margin: 30px auto 20px;
    }

    .member-name {
        font-size: 1.7rem;
    }

    .member-role {
        font-size: 1.15rem;
    }

    .member-bio {
        font-size: 1rem;
        padding: 0 25px 35px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 140px 0 100px;
    }

        .hero h1 {
            font-size: 3.2rem;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.2rem;
            padding: 0 20px;
        }

    .founder {
        padding: 100px 0;
    }

    .founder-content {
        padding: 50px 30px;
    }

    .founder-name {
        font-size: 2.6rem;
    }

    .founder-title {
        font-size: 1.3rem;
    }

    .founder-message {
        font-size: 1.18rem;
        line-height: 1.9;
    }

    .signature {
        font-size: 2rem;
    }

    .team {
        padding: 100px 0;
    }

    .section-title h2 {
        font-size: 3rem;
    }

        .section-title h2::after {
            width: 120px;
            height: 6px;
        }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 25px;
    }

    .team-member {
        max-width: 380px;
        margin: 0 auto;
    }

    .member-photo {
        width: 240px;
        height: 300px;
        margin: 30px auto 20px;
        border-width: 8px;
    }

    .member-name {
        font-size: 1.8rem;
    }

    .member-role {
        font-size: 1.2rem;
    }

    .member-bio {
        font-size: 1.05rem;
        padding: 0 30px 40px;
    }

    .cta {
        padding: 100px 0;
    }

        .cta h2 {
            font-size: 2.8rem;
        }

    .btn-enroll {
        padding: 20px 50px;
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.7rem;
    }

    .hero p {
        font-size: 1.1rem !important;
    }

    .founder-name {
        font-size: 2.4rem;
    }

    .founder-title {
        font-size: 1.2rem !important;
    }

    .founder-message {
        font-size: 1.12rem;
    }

    .signature {
        font-size: 1.8rem;
    }

    .section-title h2 {
        font-size: 2.6rem;
    }

    .member-photo {
        width: 210px;
        height: 270px;
        border-width: 7px;
    }

    .member-name {
        font-size: 1.6rem;
    }

    .member-role {
        font-size: 1.1rem;
    }

    .member-bio {
        font-size: 1rem;
    }

    .cta h2 {
        font-size: 2.5rem;
    }

    .btn-enroll {
        padding: 18px 45px;
        font-size: 1.3rem;
    }
}




html {
    scroll-behavior: smooth;
}
.member-photo {
    width: 100%;
    max-width: 280px;
    height: 340px;
    object-fit: cover;
    margin: 0 auto;
    display: block;
}
.team-member {
    padding: 30px 25px 40px;
}
