body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}

a {
    text-decoration: none;
}

header {
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    margin-top: 0.3rem;
}

.nav {
    display: flex;
    gap: 40px;
    font-family: Arial, sans-serif;
    font-size: 18px;
    margin-top: 0.3rem;
}

.nav-links {
    display: flex;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    padding: 0.5rem;
    font-weight: bold;
    position: relative;
}

.btn-nav {
    background: #0d0d0d;
    color: white !important;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: black;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.hero {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    height: 80vh;
    text-align: left;
    padding: 2rem;
    overflow: hidden;
    color: white;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.hero-text {
    position: relative;
    z-index: 2;
    margin-top: 4rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background: #1e3a8a;
    color: white;
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 1.5rem !important;
}

.partners {
    background-color: #dffffe;
    text-align: center;
    padding: 2rem;
}

.partner-logos img {
    height: 90px;
    width: auto;
    padding: 1rem;
    max-width: 150px;
    object-fit: contain; 
}

@keyframes scroll-left {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-50%);
    }
}

.clubs {
    background-color: #d21c30;
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.clubs a {
    color: #000;
}

.clubs h2 {
    margin-bottom: 2rem;
}

.club-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.club-box {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    flex: 1 1 300px;
    max-width: 500px;
    text-align: left;
}

.btn-white {
    background-color: white;
    color: #d21c30;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s, color 0.3s;
}

.btn-white:hover {
    background-color: #000000;
    color: white;
}


.translation {
  padding: 3rem 2rem;
  background-color: #f3f3f3;
}

.translation-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.translation-text {
  flex: 1 1 400px;
}

.translation-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.translation-text p {
  margin-bottom: 1.5rem;
  color: #333;
}

.translation-img {
  flex: 1 1 400px;
  max-width: 500px;
}

.translation-img img {
  width: 100%;
  border-radius: 10px;
}

.kids-section {
  padding: 3rem 2rem;
  background-color: #fff4f4;
}

.kids-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.kids-img {
  flex: 1 1 400px;
  max-width: 500px;
}

.kids-img img {
  width: 100%;
  border-radius: 10px;
}

.kids-text {
  flex: 1 1 400px;
}

.kids-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.kids-text p {
  color: #333;
}

.courses-highlight {
    background-color: #cc0000;
    color: white;
    padding: 3rem 3rem;
    text-align: left;
}

.courses-highlight h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
    text-align: center;
}

.courses-highlight a {
    color: #000;
}

.courses-highlight::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: black;
    transition: width 0.3s;
}

.course-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5rem;
}

.btn-course {
    background-color: white;
    color: #cc0000;
    border: 2px solid #ffffff;
    padding: 0.8rem 2.5rem;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-course:hover,
.btn-course.active {
    background-color: #ffffff;
    color: #b30000;
    border-color: #ffffff;
    transform: scale(1.05);
}

.faq {
    padding: 2rem;
    background-color: #f9f9f9;
}

.faq h2 {
    font-family: 'Montserrat', sans-serif;
    margin-left: 1rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.faq-columns {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.faq-columns>div {
    flex: 1 1 300px;
    max-width: 400px;
}

.faq-columns p {
    background-color: white;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgb(0 0 0 / 0.1);
    cursor: default;
    color: #444;
    transition: background-color 0.3s ease;
}

.faq-columns p:hover {
    background-color: #e53e3e;
    color: white;
}

.language-selector {
    text-align: center;
    margin: 2rem 0;
}

.language-selector select {
    padding: 0.5rem;
    font-size: 1rem;
    border-radius: 5px;
}

.language-group {
    display: none;
}

.language-group p {
    color: black;
    font-weight: bold;
}

.language-group h4 {
    color: black;
    font-weight: bold;
}

.language-group.active {
    display: block;
}

.course-category {
    margin: 2rem 0;
}

.course-card {
    background: #f0f0f0;
    padding: 1rem;
    margin: 0.5rem 0;
    border-left: 5px solid #ff0000;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
}

.exploring-courses {
    background: #d9d9d9;
    padding: 3rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    max-width: 100%;
    text-align: center;
}

.exploring-courses .page-title h1 {
    font-size: 2.5rem;
    color: black;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.exploring-courses .page-title p {
    font-size: 1.1rem;
    color: black;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 2rem;
}

.language-selector label {
    display: block;
    font-size: 1rem;
    color: black;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.language-selector select {
    padding: 0.6rem 1rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    background-color: #fff;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.language-selector select:focus {
    border-color: #0077ff;
    box-shadow: 0 0 0 3px rgba(0, 119, 255, 0.2);
    outline: none;
}

.enroll-form h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #d21c30;
    text-align: center;
}

form {
    background: white;
    padding: 2rem 2.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #444;
}

input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 0.6rem 0.75rem;
    margin-bottom: 1.5rem;
    border: 1.8px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
    resize: vertical;
}

input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
    border-color: #d21c30;
    outline: none;
}

textarea {
    min-height: 100px;
}

button.btn-primary {
    display: block;
    width: 100%;
    background-color: #d21c30;
    color: white;
    border: none;
    padding: 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button.btn-primary:hover,
button.btn-primary:focus {
    background-color: #a11722;
}

.club-section {
    padding: 3rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    background-color: #f9f9f9;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 3rem;
    transition: transform 0.3s ease;
}

.club-section:hover {
    transform: translateY(-5px);
}

.club-section h2 {
    font-size: 2rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
    border-bottom: 2px solid #1e3a8a;
    padding-bottom: 0.5rem;
}

.club-section h3 {
    font-size: 1.3rem;
    color: #0f172a;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.club-section p {
    font-size: 1rem;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.club-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.club-section ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    color: #475569;
    font-size: 1rem;
}

.club-section ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.club-section a {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
}

.club-section a:hover {
    text-decoration: underline;
}

.btn-join {
    display: inline-block;
    background-color: #2563eb;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    margin-top: 1rem;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.btn-join:hover {
    background-color: #1e40af;
    transform: scale(1.05);
}

.footer {
    background-color: #f3f3f3;
    padding: 2rem 1rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left,
.footer-center,
.footer-right {
    flex: 1;
    min-width: 200px;
}

.footer-left img {
    height: 60px;
    margin-bottom: 0.5rem;
    margin-top: 0.8rem;
}

.footer-center p {
    margin: 0.5rem 0;
    color: #555;
    font-size: 0.9rem;
    text-align: center;
}

.footer-center a {
    color: #333;
    text-decoration: none;
}

.footer-center a:hover {
    text-decoration: underline;
}

.footer-right {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    font-size: 1.5rem;
}

.footer-right a {
    color: #cc0000;
    transition: color 0.3s ease;
}

.footer-right a:hover {
    color: #1e3a8a;
}

.whatsapp-float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 30px;
    background-color: #1cb655;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float:hover {
    background-color: #128c4a;
    color: white;
    text-decoration: none;
}

.menu-toggle {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #000; 
}

@media (max-width: 480px) {

    header {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }

    .logo {
        margin-bottom: 0.5rem;
    }

    .nav {
        margin-top: 0;
        gap: 15px;
        font-size: 16px;
    }

    .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    }

    .nav-links li {
        flex: 1 1 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 0.75rem 0;
        border-bottom: 1px solid #ddd;
    }

    .menu-toggle {
    display: block;
    }

    .hero {
        height: auto;
        padding: 1rem;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    .hero-text {
        margin-top: 2rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .partner-logos img {
        height: 60px;
        max-width: 100px;
        padding: 0.5rem;
    }

    .club-content {
        flex-direction: column;
    }

    .club-box {
        max-width: 100%;
    }

    .translation-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .translation-text,
    .translation-img {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .kids-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .kids-img,
    .kids-text {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .courses-highlight {
        padding: 2rem 1rem;
        text-align: center;
    }

    .courses-highlight h2 {
        font-size: 2rem;
    }

    .course-buttons {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }

    .btn-course {
        width: 100%;
        max-width: 300px;
    }

    .faq-columns {
        flex-direction: column;
        gap: 1rem;
    }

    .faq-columns>div {
        max-width: 100%;
    }

    .footer-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-right {
        justify-content: center;
    }

    .whatsapp-float {
        width: 40px;
        height: 40px;
        font-size: 24px;
        bottom: 25px;
        right: 15px;
    }
}

@media (max-width: 768px) {

    header {
        padding: 1rem 1.5rem;
    }

    .nav {
        gap: 25px;
        font-size: 17px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .partner-logos img {
        height: 75px;
        max-width: 130px;
        padding: 0.75rem;
    }

    .club-content {
        flex-wrap: wrap;
    }

    .translation-container,
    .kids-container {
        flex-wrap: wrap;
    }

    .course-buttons {
        gap: 2rem;
    }

    .footer-container {
        flex-wrap: wrap;
    } 
}