/* Reset */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

header {
    background: #0059b3;
    color: #fff;
    padding: 20px 50px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    font-size: 1.8em;
    font-weight: 700;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #ff9933;
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/hero.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 150px 20px;
}

.hero-content {
    max-width: 700px;
    margin: auto;
    animation: fadeIn 1s ease forwards;
}

.hero-content h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: background 0.3s ease, color 0.3s ease;
}

.btn-primary {
    background: #3385ff;
    color: #fff;
}

.btn-primary:hover {
    background: #060061;
}

.btn-secondary {
    background: #0059b3;
    color: #fff;
}

.btn-secondary:hover {
    background: #004499;
}

.about-preview {
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
    background: #252525cc;
}

.about-preview h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.about-preview p {
    max-width: 800px;
    margin: auto;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
}


/* WhatsApp Floating Button */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.whatsapp-float:hover {
    background: #1ebe57;
}


/* Responsive */

@media (max-width: 768px) {
    nav {
        flex-direction: column;
    }
    .nav-links {
        flex-direction: column;
        margin-top: 10px;
    }
    .nav-links li {
        margin: 10px 0;
    }
    .hero-content h1 {
        font-size: 1.8em;
    }
}


/* Animations */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-section,
.classes-section,
.contact-section {
    padding: 80px 20px;
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.about-section p,
.classes-section p,
.contact-section p {
    margin-top: 20px;
}

.class-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.class-cards .card {
    background: #0000005d;
    border-radius: 8px;
    padding: 30px;
    width: 280px;
    box-shadow: 0 5px 20px rgb(255, 255, 255);
    transition: transform 0.3s ease;
}

.class-cards .card:hover {
    transform: translateY(-10px);
}

.contact-info {
    list-style: none;
    text-align: left;
    color: #f7c319e5;
    max-width: 600px;
    margin: 20px auto;
}

.contact-info li {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.logo-img {
    height: 50px;
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/hero.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 150px 20px;
}

.about-img {
    width: 100%;
    max-width: 100px;
    border-radius: 10px;
    margin: 20px 0;
}

.page-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/hero.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 150px 20px;
}

.page-hero h1 {
    font-size: 50px;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 20px;
}

.director {
    padding: 40px 20px;
    text-align: center;
}

.director p {
    max-width: 800px;
    margin: 10px auto;
    font-style: italic;
}

.director strong {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-weight: bold;
    color: #0059b3;
}