
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    /*background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);*/
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.container {
    background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
    width: 100%;
    max-width: 440px;
    border-radius: 20px;
    overflow: hidden;
    /*box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 3px #F7DF08;*/
}

.header {
    background-size: cover;
    background-position: center;
    padding: 40px 20px 60px 20px;
    text-align: center;
    color: white;
    position: relative;
}

.logo-container {
    margin-bottom: 20px;
}

.logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    padding: 12px;
    /*box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 0 4px #F7DF08;*/
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: contain;
}

.brand-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    color: #F7DF08;
}

.brand-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 1;
    line-height: 1.4;
    max-width: 320px;
    margin: 0 auto;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.social-section {
    padding: 28px 20px 18px 20px;
    /*background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);*/
    background-color: black;
}

.social-grid {
    display: flex;
    justify-content: center;
    gap: 12px;
    max-width: 260px;
    margin: 0 auto;
}

.social-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.social-icon:hover {
    transform: scale(1.05);
}

.whatsapp { background-color: #25D366; }
.linkedin { background-color: #0077B5; }
.facebook { background-color: #1877F2; }
.twitter { background-color: #000000; }
.youtube { background-color: #FF0000; }
.instagram { background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }
.pinterest { background-color: #BD081C; }
.snapchat { background-color: #FFFC00; color: #000; }
.tiktok { background-color: #000000; }
.website { background-color: #C72626; }

/* Course Section Styles */
.course-section {
    padding: 18px 20px 24px 20px;
    /*background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);*/
    background-color: black;
}

.course-header {
    text-align: center;
    margin-bottom: 40px;
}

.course-header h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #C72626;
    margin-bottom: 10px;
}

.course-list {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: flex-start; /* 🔥 prevents uneven height */
}

.course-item:hover .course-image img {
    transform: scale(1.05);
}

.course-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
    line-height: 1.3;
}

.course-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin-bottom: 12px;
}

.course-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.course-link:hover i {
    transform: translateX(3px);
}



.course-box {
    flex: 1; /* equal width */
    text-align: center;
    padding: 20px 7px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
}

/* Brand colors */
.course-box.red {
    background: #c72725;
}
.course-box.yellow {
    background: #F7DF08;
    color: #000;
}

/* Hover effect */
.course-box:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.course-heading {
    color: white;
    text-align: center;
    margin-bottom: 20px;
}

/* Form Section */
.form-section {
    padding: 40px 20px;
    background-color: #000;
}

.form-heading {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: #F7DF08;
    margin-bottom: 25px;
}

.program-form {
    max-width: 470px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 25px 20px;
    border: 1px solid #c72725; /* red border */
    background: #111; /* slightly lighter than black for contrast */
}

/* Input Fields */
.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"] {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 2px solid #c72725;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border 0.3s, box-shadow 0.3s;
}

.form-group input:focus {
    border-color: #F7DF08;
    box-shadow: 0 0 8px rgba(247, 223, 8, 0.6);
}

/* Radio buttons styled like checkboxes */
.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    text-align: left;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #1a1a1a;
    border: 2px solid #333;
    padding: 8px;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.checkbox-group input[type="radio"] {
    accent-color: #c72725;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group label:hover {
    border-color: #F7DF08;
    background: #222;
}

/* Submit Button */
.submit-btn {
    background: #c72725;
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #F7DF08;
    color: #000;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.footer-section {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 20px 10px;
    font-size: 0.9rem;
    border-top: 2px solid #3c3939; /* brand red accent */
}

.footer-section a {
    color: #F7DF08; /* brand yellow for email */
    text-decoration: none;
    font-weight: 600;
}

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

.extra-link {
    margin-top: 6px;
    text-align: center;
}

.extra-link a {
    font-size: 0.7rem;
    font-weight: 600;
    color: #F7DF08; /* brand yellow */
    text-decoration: none;
    transition: color 0.3s ease;
}

.extra-link a:hover {
    color: #c72725; /* brand red on hover */
    text-decoration: underline;
}
.course-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px; /* space between box and link */
}

@media (min-width: 768px) {
    body {
        padding: 20px;
    }
    .container {
        max-width: 560px;
    }

    .brand-title {
        font-size: 3rem;
    }

    .brand-subtitle {
        font-size: 1rem;
        font-weight: 600;
        max-width: 400px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .logo {
        width: 140px;
        height: 140px;
    }

    .social-grid {
        max-width: 320px;
        gap: 14px;
    }

    .social-icon {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }

    .course-header h2 {
        font-size: 2.5rem;
    }

    .course-header p {
        font-size: 1.1rem;
    }

}

/* For very small screens (like < 400px) */
@media (max-width: 400px) {
    .course-box {
        flex: 1 1 100%; /* full width per row */
    }
}

@media (max-width: 767px) {
    .course-list {
        flex-wrap: wrap;            /* allow wrapping */
        justify-content: center;    /* center items */
        gap: 25px;
    }

    .course-box {
        flex: 1 1 calc(50% - 12px); /* 2 per row */
        min-width: 140px;           /* prevent shrinking too much */
    }

    .course-extra-link {
        font-size: 0.8rem;
        margin-top: 6px;
    }
}

