.nav-bar {
    font-family: Arial, sans-serif;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-item {
    position: relative;
}

.nav-link {
    padding: 10px 15px;
    display: block;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
}

.nav-link:hover {
    color: #007bff;
}

.dropdown-menu {
    display: none;
    position: absolute;
    /* top: 38px; */
    left: 0;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    min-width: 220px;
    z-index: 1000;
}

.dropdown-menu li {
    border-bottom: 1px solid #eee;
}

.dropdown-menu li a {
    color: #000;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
}

.dropdown-menu li a:hover {
    background-color: #f5f5f5;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.nav-res-link {
    font-weight: bold;
    margin: 0;
}

.nav-gray-link {
    font-size: 12px;
    color: gray;
    margin: 0;
}


.banner-container {
    background: linear-gradient(135deg, #8B1538, #A0243D);
    border-radius: 20px;
    padding: 40px;
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.banner-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" patternUnits="userSpaceOnUse" width="10" height="10"><circle cx="5" cy="5" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.left-content {
    flex: 1;
    z-index: 2;
    position: relative;
}

.main-title {
    color: white;
    font-size: 3.2rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.subtitle {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    color: white;
    font-size: 1.1rem;
}

.feature-icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: 1px solid red;

}

.cta-button {
    background: linear-gradient(45deg, #D4AF37, #FFD700);
    color: #8B1538;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.right-content {
    flex: 0 0 400px;
    position: relative;
    z-index: 2;
}

.promo-card {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-title {
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 15px;
}

.promo-subtitle {
    color: #FFD700;
    font-size: 1rem;
    margin-bottom: 20px;
}

.grade-button {
    background: linear-gradient(45deg, #D4AF37, #FFD700);
    color: #8B1538;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.grade-button:hover {
    transform: scale(1.05);
}

.student-image {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 200px;
    height: 250px;
    background: linear-gradient(45deg, #FFD700, #D4AF37);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8B1538;
    font-size: 48px;
    font-weight: bold;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.whatsapp-icon {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.whatsapp-icon:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .banner-container {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .right-content {
        flex: none;
        width: 100%;
        margin-top: 30px;
    }

    .student-image {
        position: static;
        margin: 20px auto 0;
        width: 150px;
        height: 180px;
    }
}


.container {
    max-width: 1200px;
    margin: 0 auto;
}

.main-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 20px;
}

.subtitle sup {
    font-size: 0.8em;
    vertical-align: super;
}

.courses-container {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
}

.course-card {
    width: 400px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.course-header {
    background: linear-gradient(135deg, #8B1538, #A0243D, #B8354F);
    color: white;
    padding: 30px;
    text-align: center;
}

.course-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.course-duration {
    font-size: 1.2rem;
    opacity: 0.9;
}

.course-body {
    padding: 40px 30px;
    text-align: center;
    background: white;
}

.delivery-mode {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 20px;
    font-weight: 500;
}

.subjects {
    font-size: 1.3rem;
    color: #e74c3c;
    font-weight: bold;
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .courses-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .course-card {
        width: 100%;
        max-width: 400px;
    }

    .course-title {
        font-size: 1.8rem;
    }

    .course-duration {
        font-size: 1.1rem;
    }

    .delivery-mode,
    .subjects {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 20px 15px;
    }

    .main-title {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .course-header {
        padding: 25px 20px;
    }

    .course-body {
        padding: 30px 20px;
    }
}

.container1 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

.main-title1 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 20px;
}

.content-section {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 20px;
}

.text-content {
    flex: 1;
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: justify;
}

.image-content {
    flex: 0 0 400px;
}

.circular-image {
    width: 400px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 3rem;
    position: relative;
}

.circular-image::before {
    content: '👩‍🏫👧';
    font-size: 4rem;
    position: absolute;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 60px;
    margin-top: 40px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.checkmark {
    width: 24px;
    height: 24px;
    background: #27ae60;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-text {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 500;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .container {
        padding: 30px 15px;
    }

    .main-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .content-section {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 40px;
    }

    .image-content {
        flex: none;
        align-self: center;
    }

    .circular-image {
        width: 300px;
        height: 225px;
    }

    .circular-image::before {
        font-size: 3rem;
    }

    .description {
        font-size: 1rem;
        text-align: left;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.5rem;
    }

    .circular-image {
        width: 250px;
        height: 190px;
    }

    .circular-image::before {
        font-size: 2.5rem;
    }

    .content-section {
        gap: 20px;
    }

    .benefits-grid {
        gap: 15px;
    }
}

.intro-text {
    text-align: center;
    font-size: 1rem;
    color: #666;
    margin-bottom: 50px;
    line-height: 1.8;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.benefit-card {
    background: white;
    border-radius: 10px;
    padding: 30px 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
}

.benefit-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    text-align: justify;
}

.second-row {
    margin-top: 30px;
}

@media (max-width: 968px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 30px 15px;
    }

    .main-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

    .intro-text {
        font-size: 0.95rem;
        margin-bottom: 40px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-card {
        padding: 25px 20px;
    }

    .benefit-title {
        font-size: 1.2rem;
    }

    .benefit-description {
        font-size: 0.9rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.5rem;
    }

    .intro-text {
        font-size: 0.9rem;
    }

    .benefit-card {
        padding: 20px 15px;
    }

    .benefit-title {
        font-size: 1.1rem;
    }
}