/* Global Styles */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9f9f9;
    line-height: 1.6;
}

h1, h2, h3 {
    margin: 0 0 15px;
}

p {
    margin: 0 0 20px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Grid System */
.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.reverse {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.text-block {
    order: 1;
}

.image-block {
    order: 2;
}

.reverse .text-block {
    order: 2;
}

.reverse .image-block {
    order: 1;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #6D83F2, #A06CE3);
    color: #fff;
    padding: 100px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
}

.hero-illustration-wrapper {
    max-width: 600px;
}

.hero-illustration {
    width: 100%;
    height: auto;
}

.cta-btn {
    background-color: #FF6F61;
    color: #fff;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #e45d51;
}

/* Section Styles */
section {
    padding: 80px 0;
}
.meet-mentor{
background-color: #64f;
color: #efef;
}
.certificate {
    background-color: #fff;
}
.schedule {
     background-image: radial-gradient(circle at bottom, #64f 0, #fff 75%);
}

.schedule-format{
   background-color: lavender;
}

.section-illustration {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

/* Register Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.form-group.terms {
    display: flex;
    align-items: center;
}

.form-group.terms input[type="checkbox"] {
    width: 28px;
    margin: 0;
    padding: 0;
    margin-right: 10px;
}

.form-submit-btn {
    background-color: #6D83F2;
    color: #fff;
    padding: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit-btn:hover {
    background-color: #5a71d0;
}

/* Responsive Design */

/* Tablets and smaller */
@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 0;
    }
    .hero-content {
        flex-direction: column;
    }

    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .hero-subtitle {
        text-align: center;
        margin-bottom: 20px;
    }

    .cta-btn {
        width: 100%;
        padding: 15px 0;
        text-align: center;
    }

    .text-block, .image-block {
/*        text-align: center;*/
        text-align: left;
    }

    .section-illustration {
        margin: 0 auto;
    }
}

.faq {
    padding: 40px 20px;
    background-color: #f8f9fa;
}

.faq .container {
    max-width: 800px;
    margin: 0 auto;
}

.faq h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.faq-item {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 1.5rem;
    color: #007bff;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq h2 {
        font-size: 2rem;
    }

    .faq-item h3 {
        font-size: 1.25rem;
    }
}


.schedule-format {
    padding: 40px 20px;
    background-color: #f0f4f8;
}

.schedule .container {
    max-width: 800px;
    margin: 0 auto;
}

.schedule h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.schedule-format-item {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.schedule-format-item h3 {
    font-size: 1.5rem;
    color: #007bff;
    margin-bottom: 10px;
}

.schedule-format-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.schedule-format-item p strong {
    color: #333;
}

@media (max-width: 768px) {
    .schedule-format h2 {
        font-size: 2rem;
    }

    .schedule-format-item h3 {
        font-size: 1.25rem;
    }
}


/* Mobile devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .cta-btn {
        font-size: 1rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input {
        font-size: 0.9rem;
    }

    .form-submit-btn {
        font-size: 1rem;
    }

    .section-illustration {
        max-width: 90%;
    }
}

/* Sponsors Section */
.sponsors {
    padding: 2rem 0;
    background-color: #2f1e2e;
}

.sponsors .container {
    text-align: center;
    color: white;
}

.sponsors h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    font-family: 'Playfair Display', serif;
}

.sponsor-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.sponsor {
    flex: 1 1 150px; /* Flex items grow and shrink as needed */
    max-width: 200px; /* Set a maximum width for sponsor logos */
}

.sponsor img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.sponsor img:hover {
    transform: scale(1.05);
}


footer {
    text-align: center;
    background: linear-gradient(135deg, #6D83F2, #A06CE3);
    padding: 2rem;
}
