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

:root {
    --primary-yellow: #FFD700;
    --dark-yellow: #E6C200;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: var(--white);
    padding: 20px 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
}

.logo i {
    color: var(--primary-yellow);
    font-size: 32px;
}

.hero-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    padding: 80px 0;
}

.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: var(--primary-yellow);
    text-shadow: 2px 2px 4px rgba(255, 215, 0, 0.3);
}

.rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 18px;
    color: var(--primary-yellow);
}

.rating i {
    font-size: 24px;
}

.subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.boards-section {
    margin: 30px 0;
}

.boards-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.boards-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.board-badge {
    background: var(--primary-yellow);
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--text-dark);
}

.indicator i {
    color: #4CAF50;
    font-size: 20px;
}

.form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-container h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.form-subtitle {
    color: var(--text-light);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--primary-yellow);
    color: var(--text-dark);
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-submit:hover {
    background: var(--dark-yellow);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.section-title {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px; margin-top: 50px; 
    color: var(--text-dark);
}

.subjects-section {
    padding: 30px 0;
    background: var(--white);
}

.subjects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.subject-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.subject-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.subject-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--text-dark);
}

.subject-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.subject-card p {
    color: var(--text-light);
    font-size: 15px;
}

.students-love-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.counter-section-inner {
    margin-bottom: 60px;
}

.flags-slider {
    overflow: hidden;
    margin: 40px 0 60px;
    position: relative;
}

.flags-track {
    display: flex;
    gap: 30px;
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.flag-img {
    height: 50px;
    width: auto;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-box {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--text-dark);
}

.feature-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-box p {
    color: var(--text-light);
    font-size: 15px;
}

.testimonials-section {
    padding: 80px 0;
    background: #000000;
    color: var(--white);
}

.testimonials-section .section-title {
    color: var(--white);
}

.testimonials-slider {
    position: relative;
    margin: 50px 0;
}

.testimonials-wrapper {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
}

.testimonials-wrapper::-webkit-scrollbar {
    height: 8px;
}

.testimonials-wrapper::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.testimonials-wrapper::-webkit-scrollbar-thumb {
    background: var(--primary-yellow);
    border-radius: 10px;
}

.testimonial-card {
    flex: 0 0 calc(50% - 15px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    scroll-snap-align: start;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-yellow);
    transform: translateY(-5px);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

.testimonial-footer {
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    padding-top: 20px;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-yellow);
}

.testimonial-country {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-yellow);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-control:hover {
    background: var(--dark-yellow);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: -80px;
}

.next-btn {
    right: -80px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-yellow);
    width: 36px;
    border-radius: 6px;
}

.counter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.counter-box {
    text-align: center;
}

.counter-icon {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.counter-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.counter-label {
    font-size: 16px;
    opacity: 0.9;
}

.highlights-section {
    padding: 80px 0;
    background: var(--white);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.highlight-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.highlight-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--text-dark);
}

.highlight-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.highlight-card p {
    color: var(--text-light);
    font-size: 15px;
}

.footer {
    background: #2c3e50;
    color: var(--white);
    padding: 40px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer-contact p {
    margin: 10px 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.footer-contact i {
    color: var(--primary-yellow);
}

.footer-copyright {
    margin-top: 10px;
    opacity: 0.8;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: var(--shadow-hover);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 32px;
    }

    .subjects-grid,
    .features-grid,
    .highlights-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .counters-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .form-container {
        padding: 30px 20px;
    }

    .testimonial-card {
        flex: 0 0 calc(75% - 22.5px);
    }

    .prev-btn,
    .next-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .prev-btn {
        left: -60px;
    }

    .next-btn {
        right: -60px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 40px 0;
    }

    .hero-text h1 {
        font-size: 26px;
    }

    .subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .subjects-grid,
    .features-grid,
    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .counters-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }

    .boards-list {
        gap: 8px;
    }

    .board-badge {
        font-size: 12px;
        padding: 6px 12px;
    }

    .testimonials-section {
        padding: 60px 0;
    }

    .testimonial-card {
        flex: 0 0 100%;
        padding: 30px 20px;
    }

    .prev-btn,
    .next-btn {
        display: none;
    }

    .testimonials-wrapper {
        gap: 20px;
    }

    .slider-dots {
        margin-top: 30px;
    }.stars i {
    color: green;
    font-size: 20px; /* optional */
    margin-right: 4px; /* spacing between stars */
  }
}
