* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ELECTRONICS HERO */
.electronics-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 90px 120px;
    min-height: 750px;
    background:
        linear-gradient(135deg, #f8fbff, #eef6ff);
}

.electronics-left {
    flex: 1;
    max-width: 700px;
}

.hero-tag {
    display: inline-block;
    padding: 10px 20px;
    background: #dbeafe;
    color: #2563eb;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 28px;
}

.electronics-left h1 {
    font-size: 64px;
    line-height: 1.15;
    color: #111827;
    font-family: 'Nunito', sans-serif;
    margin-bottom: 30px;
}

.electronics-left h1 span {
    color: #2563eb;
    font-family: 'Nunito', sans-serif;
}

.electronics-left p {
    font-size: 21px;
    color: #64748b;
    line-height: 1.9;
    margin-bottom: 40px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    font-family: 'Nunito', sans-serif;
    margin-bottom: 45px;
}

.hero-features div {
    background: #ffffff;
    padding: 18px 20px;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 600;
    color: #111827;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.primary-btn {
    padding: 18px 38px;
    background: #2563eb;
    color: #fff;
    border-radius: 10px;
    font-family: 'Nunito', sans-serif;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

.primary-btn:hover {
    background: #1d4ed8;
}

.secondary-btn {
    padding: 18px 38px;
    border: 2px solid #2563eb;
    color: #2563eb;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    transition: .3s;
}

.secondary-btn:hover {
    background: #2563eb;
    color: #fff;
}

.electronics-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.electronics-right img {
    width: 100%;
    max-width: 600px;
    border-radius: 4%;
}

@media(max-width:768px) {
    .electronics-hero {
        flex-direction: column;
        padding: 70px 20px;
        text-align: center;
        gap: 50px;
        min-height: auto;
    }

    .electronics-left h1 {
        font-size: 40px;
    }

    .electronics-left p {
        font-size: 17px;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        justify-content: center;
    }

    .electronics-right img {
        max-width: 320px;
        border-radius: 20px;
    }
}

/* WHY LEARN ELECTRONICS */
.electronics-benefits {
    padding: 100px 120px;
    background: #ffffff;
}

.benefits-heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 70px;
}

.benefits-heading span {
    color: #2563eb;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.benefits-heading h2 {
    font-size: 48px;
    color: #111827;
    margin: 20px 0;
    font-family: 'Nunito', sans-serif;
}

.benefits-heading p {
    font-size: 20px;
    color: #64748b;
    line-height: 1.8;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.benefit-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 35px;
    text-align: center;
    border: 1px solid #edf2f7;
    transition: .35s;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(37, 99, 235, .15);
}

.benefit-card img {
    width: 90px;
    margin-bottom: 25px;
}

.benefit-card h3 {
    font-size: 28px;
    color: #111827;
    margin-bottom: 18px;
    font-family: 'Nunito', sans-serif;
}

.benefit-card p {
    color: #64748b;
    font-size: 17px;
    line-height: 1.8;
}

@media(max-width:768px) {
    .electronics-benefits {
        padding: 70px 20px;
    }

    .benefits-heading h2 {
        font-size: 34px;
    }

    .benefits-heading p {
        font-size: 17px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* ELECTRONICS PROJECTS */
.electronics-projects {
    padding: 100px 120px;
    background: #f8fbff;
}

.projects-headings {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 70px;
}

.projects-headings span {
    color: #2563eb;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.projects-headings h2 {
    font-size: 48px;
    color: #111827;
    margin: 18px 0;
    font-family: 'Nunito', sans-serif;
}

.projects-headings p {
    font-size: 20px;
    color: #64748b;
    line-height: 1.8;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.project-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .06);
    transition: .35s;
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.project-card h3 {
    text-align: center;
    padding: 22px;
    font-size: 24px;
    color: #111827;
    font-family: 'Nunito', sans-serif;
}

@media(max-width:768px) {
    .electronics-projects {
        padding: 70px 20px;
    }

    .projects-heading h2 {
        font-size: 34px;
    }

    .projects-heading p {
        font-size: 17px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .project-card img {
        height: 220px;
    }
}

/* STEM KIT */

.stem-kit {
    padding: 100px 120px;
    background: #ffffff;
}

.kit-heading {
    max-width: 850px;
    text-align: center;
    margin: 0 auto 70px;
}

.kit-heading span {
    color: #2563eb;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.kit-heading h2 {
    font-size: 48px;
    margin: 18px 0;
    color: #111827;
    font-family: 'Nunito', sans-serif;
}

.kit-heading p {
    font-size: 20px;
    color: #64748b;
    line-height: 1.8;
}

.kit-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.kit-image {
    text-align: center;
}

.kit-image img {
    width: 100%;
    max-width: 520px;
}

.kit-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.kit-card {
    background: #f8fbff;
    border-radius: 18px;
    padding: 25px;
    text-align: center;
    transition: .3s;
}

.kit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, .12);
}

.kit-card img {
    width: 80px;
    margin-bottom: 18px;
}

.kit-card h3 {
    font-size: 20px;
    color: #111827;
    font-family: 'Nunito', sans-serif;
}

@media(max-width:768px) {
    .stem-kit {
        padding: 70px 20px;
    }

    .kit-heading h2 {
        font-size: 34px;
    }

    .kit-heading p {
        font-size: 17px;
    }

    .kit-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .kit-items {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .kit-card {
        padding: 18px;
    }

    .kit-card img {
        width: 60px;
    }

    .kit-card h3 {
        font-size: 16px;
    }
}

/* LEARNING JOURNEY */
.learning-journey {
    padding: 100px 120px;
    background: #f8fbff;
}

.journey-heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 80px;
}

.journey-heading span {
    color: #2563eb;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.journey-heading h2 {
    font-size: 48px;
    margin: 18px 0;
    color: #111827;
    font-family: 'Nunito', sans-serif;
}

.journey-heading p {
    font-size: 20px;
    color: #64748b;
    line-height: 1.8;
}

.journey-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
}

.journey-step {
    flex: 1;
    text-align: center;
}

.step-icon {
    width: 120px;
    height: 120px;
    margin: auto;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    margin-bottom: 25px;
}

.step-icon img {
    width: 65px;
}

.journey-step h3 {
    font-size: 24px;
    color: #111827;
    margin-bottom: 12px;
    font-family: 'Nunito', sans-serif;
}

.journey-step p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
}

.journey-arrow {
    font-size: 34px;
    color: #2563eb;
    margin-top: 45px;
}

@media(max-width:768px) {
    .learning-journey {
        padding: 70px 20px;
    }

    .journey-heading h2 {
        font-size: 34px;
    }

    .journey-heading p {
        font-size: 17px;
    }

    .journey-timeline {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .journey-arrow {
        transform: rotate(90deg);
        margin: 0;
    }

    .step-icon {
        width: 100px;
        height: 100px;
    }

    .step-icon img {
        width: 55px;
    }
}

/* MENTOR */
.mentor {
    padding: 100px 120px;
    background: #ffffff;
}

.mentor-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

.mentor-heading span {
    color: #2563eb;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
}

.mentor-heading h2 {
    font-size: 48px;
    margin: 18px 0;
    color: #111827;
    font-family: 'Nunito', sans-serif;
}

.mentor-heading p {
    font-size: 20px;
    color: #64748b;
    line-height: 1.8;
}

.mentor-container {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 70px;
    align-items: center;
}

.mentor-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

.mentor-content h3 {
    font-size: 42px;
    color: #111827;
    margin-bottom: 10px;
    font-family: 'Nunito', sans-serif;
}

.mentor-content h4 {
    color: #2563eb;
    font-size: 22px;
    margin-bottom: 25px;
    font-family: 'Nunito', sans-serif;
}

.mentor-content p {
    font-size: 19px;
    line-height: 1.9;
    color: #64748b;
}

.mentor-stats {
    display: flex;
    gap: 40px;
    margin-top: 45px;
}

.mentor-stats div {
    background: #f8fbff;
    padding: 25px;
    border-radius: 18px;
    min-width: 170px;
    text-align: center;
}

.mentor-stats h2 {
    font-size: 36px;
    color: #2563eb;
    margin-bottom: 10px;
    font-family: 'Nunito', sans-serif;
}

.mentor-stats span {
    color: #64748b;
}

@media(max-width:768px) {
    .mentor {
        padding: 70px 20px;
    }

    .mentor-heading h2 {
        font-size: 34px;
    }

    .mentor-heading p {
        font-size: 17px;
    }

    .mentor-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .mentor-image {
        max-width: 320px;
        margin: auto;
    }

    .mentor-content h3 {
        font-size: 32px;
    }

    .mentor-content h4 {
        font-size: 20px;
    }

    .mentor-content p {
        font-size: 17px;
    }

    .mentor-stats {
        flex-direction: column;
        gap: 20px;
    }

    .mentor-stats div {
        width: 100%;
    }
}

/* STUDENT GALLERY */
.student-gallery {
    padding: 100px 120px;
    background: #f8fbff;
}

.gallery-heading {
    max-width: 850px;
    text-align: center;
    margin: 0 auto 70px;
}

.gallery-heading span {
    color: #2563eb;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.gallery-heading h2 {
    font-size: 48px;
    margin: 20px 0;
    color: #111827;
    font-family: 'Nunito', sans-serif;
}

.gallery-heading p {
    font-size: 20px;
    color: #64748b;
    line-height: 1.8;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item.large {
    grid-row: span 2;
}

@media(max-width:768px) {
    .student-gallery {
        padding: 70px 20px;
    }

    .gallery-heading h2 {
        font-size: 34px;
    }

    .gallery-heading p {
        font-size: 17px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.large {
        grid-row: auto;
    }

    .gallery-item img {
        height: 280px;
    }
}

/* PARENT TESTIMONIALS */
.parent-testimonials {
    padding: 100px 120px;
    background: #ffffff;
}

.testimonial-heading {
    max-width: 850px;
    margin: 0 auto 70px;
    text-align: center;
}

.testimonial-heading span {
    color: #2563eb;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.testimonial-heading h2 {
    font-size: 48px;
    margin: 20px 0;
    color: #111827;
    font-family: 'Nunito', sans-serif;
}

.testimonial-heading p {
    font-size: 20px;
    color: #64748b;
    line-height: 1.8;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.testimonial-card {
    background: #f8fbff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .06);
    transition: .35s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.stars {
    font-size: 24px;
    color: #fbbf24;
    margin-bottom: 20px;
}

.testimonial-card p {
    color: #475569;
    line-height: 1.9;
    margin-bottom: 30px;
    font-size: 17px;
}

.parent-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.parent-info img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
}

.parent-info h4 {
    font-size: 20px;
    color: #111827;
    margin-bottom: 5px;
    font-family: 'Nunito', sans-serif;
}

.parent-info span {
    color: #64748b;
    font-size: 15px;
}

@media(max-width:768px) {
    .parent-testimonials {
        padding: 70px 20px;
    }

    .testimonial-heading h2 {
        font-size: 34px;
    }

    .testimonial-heading p {
        font-size: 17px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .testimonial-card {
        padding: 25px;
    }
}

/* CERTIFICATE */
.certificate-section {
    padding: 100px 120px;
    background: #f8fbff;
}

.certificate-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.certificate-content span {
    color: #2563eb;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.certificate-content h2 {
    font-size: 48px;
    margin: 20px 0;
    color: #111827;
    font-family: 'Nunito', sans-serif;
}

.certificate-content p {
    font-size: 20px;
    line-height: 1.9;
    color: #64748b;
    margin-bottom: 40px;
}

.certificate-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.certificate-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 18px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
}

.certificate-feature i {
    font-size: 24px;
    color: #2563eb;
}

.certificate-feature span {
    color: #111827;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0;
}

.certificate-image {
    text-align: center;
}

.certificate-image img {
    width: 100%;
    max-width: 500px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
    border-radius: 20px;
}

@media(max-width:768px) {
    .certificate-section {
        padding: 70px 20px;
    }

    .certificate-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .certificate-content {
        text-align: center;
    }

    .certificate-content h2 {
        font-size: 34px;
    }

    .certificate-content p {
        font-size: 17px;
    }

    .certificate-features {
        grid-template-columns: 1fr;
    }

    .certificate-image img {
        max-width: 320px;
    }
}

/* FAQS */
.electronics-faqs {
    padding: 100px 120px;
    background: #ffffff;
}

.faqs-heading {
    max-width: 850px;
    text-align: center;
    margin: 0 auto 70px;
}

.faqs-heading span {
    color: #2563eb;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.faqs-heading h2 {
    font-size: 48px;
    margin: 18px 0;
    color: #111827;
    font-family: 'Nunito', sans-serif;
}

.faqs-heading p {
    font-size: 20px;
    color: #64748b;
    line-height: 1.8;
    font-family: 'Nunito', sans-serif;
}

.faqs-container {
    max-width: 900px;
    margin: auto;
}

.faqs-item {
    background: #f8fbff;
    border-radius: 18px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.faqs-question {
    width: 100%;
    border: none;
    background: none;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    text-align: left;
}

.faqs-question span {
    flex: 1;
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    line-height: 1.5;
    font-family: 'Nunito', sans-serif;
}

.faqs-question i {

    color: #2563eb;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
    font-size: 18px;
}

.faqs-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.faqs-answer p {
    padding: 0 30px 25px;
    color: #64748b;
    line-height: 1.8;
    font-family: 'Nunito', sans-serif;
    font-size: 17px;
}

.faqs-item.active .faqs-answer {
    max-height: 250px;
}

@media(max-width:768px) {
    .electronics-faqs {
        padding: 70px 20px;
    }

    .faqs-heading h2 {
        font-size: 34px;
    }

    .faqs-heading p {
        font-size: 17px;
    }

    .faqs-question {
        padding: 20px;
    }

    .faqs-question span {
        font-size: 17px;
    }

    .faqs-answer p {
        padding: 0 20px 20px;
        font-size: 16px;
    }
}

/* FINAL CTA */
.electronics-cta {
    padding: 100px 120px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    overflow: hidden;
}

.cta-container {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 80px;
    align-items: center;
}

.cta-content span {
    color: #bfdbfe;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cta-content h2 {
    font-size: 54px;
    color: #fff;
    margin: 20px 0;
    line-height: 1.2;
    font-family: 'Nunito', sans-serif;
}

.cta-content p {
    font-size: 20px;
    color: #dbeafe;
    line-height: 1.9;
    margin-bottom: 45px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.cta-primary {
    background: #fff;
    color: #2563eb;
    padding: 18px 38px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

.cta-primary:hover {
    transform: translateY(-4px);
}

.cta-secondary {
    border: 2px solid #fff;
    color: #fff;
    padding: 18px 38px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

.cta-secondary:hover {
    background: #fff;
    color: #2563eb;
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 600;
}

.feature i {
    font-size: 20px;
}

.cta-image {
    text-align: center;
}

.cta-image img {
    width: 100%;
    max-width: 520px;
}

@media(max-width:768px) {
    .electronics-cta {
        padding: 70px 20px;
    }
    .cta-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    .cta-content h2 {
        font-size: 36px;
    }
    .cta-content p {
        font-size: 17px;
    }
    .cta-buttons {
        justify-content: center;
    }
    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }
    .cta-image img {
        max-width: 320px;
    }
}