/* === RESET & GLOBAL === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    background: #f8fafc;
    color: #1e293b;
    height: 100vh;
}

/* === NAVIGATION === */
nav {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 20px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    font-weight: 700;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .school-name {
    font-size: 20px;
    font-weight: 700;
    color: #059669;
    line-height: 1;
}

.logo-text .school-location {
    font-size: 11px;
    font-weight: 500;
    color: #64748b;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: #475569;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: all 0.3s;
    font-size: 15px;
}

.nav-links a:hover {
    color: #059669;
}

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: #059669;
}

/* === HERO SECTION === */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, #d1fae5 100%);
}

/* === DECORATIVE ELEMENTS === */
.decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.decoration-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #059669, #10b981);
    top: -250px;
    right: -200px;
    animation: float1 25s infinite ease-in-out;
}

.decoration-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #10b981, #34d399);
    bottom: -150px;
    left: -100px;
    animation: float2 20s infinite ease-in-out;
}

.decoration-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #34d399, #6ee7b7);
    top: 50%;
    left: 10%;
    animation: float3 30s infinite ease-in-out;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(50px, 80px) rotate(180deg); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-40px, -60px) rotate(-180deg); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, 40px) scale(1.1); }
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: 0 20px;
    max-width: 1100px;
}

.badge {
    display: inline-block;
    background: white;
    color: #059669;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.2);
    animation: fadeInDown 1s ease;
}

.hero h1 {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #059669;
    animation: fadeInUp 1s ease 0.2s both;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

.hero .tagline {
    font-size: 26px;
    margin-bottom: 15px;
    color: #0f766e;
    animation: fadeInUp 1s ease 0.3s both;
    font-weight: 600;
}

.hero .subtitle {
    font-size: 18px;
    margin-bottom: 45px;
    color: #475569;
    animation: fadeInUp 1s ease 0.4s both;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.5s both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 45px;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(5, 150, 105, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 45px;
    background: white;
    color: #059669;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* === INFO STATS === */
.info-stats {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 40px;
    z-index: 10;
    animation: fadeInUp 1s ease 0.7s both;
}

.stat-item {
    background: white;
    border-radius: 16px;
    padding: 25px 35px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    min-width: 140px;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(5, 150, 105, 0.15);
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #059669;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
}

/* === FOOTER INFO === */
.footer-info {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 12px;
    color: #64748b;
    z-index: 5;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero h1 { font-size: 56px; }
    .hero .tagline { font-size: 22px; }
    .hero .subtitle { font-size: 16px; }
    .info-stats { flex-wrap: wrap; max-width: 90%; gap: 20px; }
}

@media (max-width: 768px) {
    nav { padding: 18px 5%; }
    .logo-text .school-name { font-size: 16px; }
    .logo-img { width: 40px; height: 40px; font-size: 20px; }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 75%;
        background: white;
        flex-direction: column;
        padding: 100px 30px;
        transition: right 0.3s;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active { right: 0; }
    .menu-toggle { display: block; }
    .badge { font-size: 12px; padding: 8px 20px; }
    .hero h1 { font-size: 36px; }
    .hero .tagline { font-size: 18px; }
    .hero .subtitle { font-size: 14px; margin-bottom: 35px; }

    .cta-buttons { flex-direction: column; gap: 15px; }
    .btn-primary, .btn-secondary {
        padding: 16px 35px;
        font-size: 16px;
        width: 100%;
        justify-content: center;
    }

    .info-stats { flex-direction: row; gap: 15px; bottom: 100px; flex-wrap: wrap; }
    .stat-item { padding: 20px 25px; min-width: 110px; }
    .stat-number { font-size: 28px; }
    .stat-label { font-size: 11px; }
    .footer-info { font-size: 10px; bottom: 70px; }
}
