/* ================================
   GLOBAL
================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    color: #222;
    background: #fff;
}

a {
    text-decoration: none;
}

.section-padding {
    padding: 90px 0;
}


/* ================================
   NAVBAR
================================ */

.navbar {
    background: rgba(24, 18, 75, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: 0.3s;
}

.navbar-brand {
    font-size: 24px;
}

.logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    border-radius: 12px;

    background: #ffca28;
    color: #241b64;

    margin-right: 7px;
}

.nav-link {
    color: #fff !important;
    margin: 0 8px;
    transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #ffca28 !important;
}

.nav-btn {
    color: #241b64 !important;
    font-weight: 600;
}


/* ================================
   HERO
================================ */

.hero {
    min-height: 100vh;

    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(255, 202, 40, 0.3),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #241b64,
            #5038a8
        );

    color: white;
    overflow: hidden;
}

.hero-content {
    padding-top: 70px;
}

.hero-badge {
    display: inline-block;

    padding: 8px 18px;

    border-radius: 50px;

    background: rgba(255,255,255,0.15);

    color: #ffda55;

    font-weight: 600;

    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(42px, 6vw, 72px);

    line-height: 1.1;

    font-weight: 800;

    margin-bottom: 25px;
}

.hero h1 span,
.page-header h1 span,
.section-heading h2 span,
.why-section h2 span,
.service-box h2 span,
.contact-section h2 span {
    color: #ffca28;
}

.hero p {
    font-size: 18px;

    line-height: 1.8;

    color: rgba(255,255,255,0.85);

    max-width: 580px;
}

.hero-buttons {
    margin-top: 30px;

    display: flex;

    gap: 15px;

    flex-wrap: wrap;
}

.btn-primary-custom {
    background: #ffca28;

    color: #241b64;

    border: none;

    padding: 13px 25px;

    border-radius: 50px;

    font-weight: 700;

    transition: 0.3s;
}

.btn-primary-custom:hover {
    background: #fff;

    color: #241b64;

    transform: translateY(-3px);
}

.btn-light-custom {
    background: rgba(255,255,255,0.12);

    color: #fff;

    border: 1px solid rgba(255,255,255,0.4);

    padding: 13px 25px;

    border-radius: 50px;

    font-weight: 600;
}

.btn-light-custom:hover {
    background: white;
    color: #241b64;
}

.hero-features {
    display: flex;

    gap: 20px;

    flex-wrap: wrap;

    margin-top: 30px;

    font-size: 14px;
}

.hero-features i {
    color: #ffca28;
}


/* ================================
   HERO IMAGE
================================ */

.hero-image-wrapper {
    position: relative;

    padding: 30px;
}

.hero-image {
    width: 100%;

    max-height: 530px;

    object-fit: cover;

    border-radius: 35px;

    border: 8px solid rgba(255,255,255,0.12);

    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

.floating-card {
    position: absolute;

    display: flex;

    align-items: center;

    gap: 12px;

    background: white;

    color: #241b64;

    padding: 14px 18px;

    border-radius: 15px;

    box-shadow: 0 15px 30px rgba(0,0,0,0.2);

    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 25px;
    color: #6c4ce8;
}

.floating-card small {
    display: block;
    color: #777;
}

.card-one {
    left: 0;
    top: 20%;
}

.card-two {
    right: 0;
    bottom: 15%;
    animation-delay: 1s;
}

@keyframes float {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

}


/* ================================
   SECTION HEADING
================================ */

.small-title {
    color: #6c4ce8;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2px;
}

.section-heading h2,
.why-section h2,
.contact-section h2 {
    font-weight: 800;

    font-size: 42px;

    margin-top: 10px;
}

.section-heading p,
.section-text {
    color: #777;

    max-width: 650px;

    margin: 15px auto;

    line-height: 1.8;
}


/* ================================
   COURSE CARDS
================================ */

.courses-section {
    background: #f8f7ff;
}

.course-card {
    background: white;

    border-radius: 25px;

    padding: 35px;

    height: 100%;

    position: relative;

    border: 1px solid #eee;

    transition: 0.4s;

    overflow: hidden;
}

.course-card:hover {
    transform: translateY(-10px);

    box-shadow: 0 20px 45px rgba(44, 32, 110, 0.15);
}

.featured-card {
    border: 2px solid #ffca28;
}

.popular-label {
    position: absolute;

    right: 20px;
    top: 20px;

    background: #ffca28;

    color: #241b64;

    padding: 5px 12px;

    border-radius: 50px;

    font-size: 11px;

    font-weight: 800;
}

.course-icon {
    width: 70px;
    height: 70px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 20px;

    font-size: 30px;

    margin-bottom: 25px;
}

.education-icon {
    background: #eeeaff;
    color: #6c4ce8;
}

.computer-icon {
    background: #fff4cf;
    color: #e09c00;
}

.english-icon {
    background: #e7f8f0;
    color: #159b62;
}

.course-card h3 {
    font-size: 22px;

    font-weight: 700;

    margin-bottom: 15px;
}

.course-card p {
    color: #777;

    line-height: 1.7;
}

.course-card ul {
    list-style: none;

    padding: 0;

    margin: 20px 0;
}

.course-card li {
    margin: 10px 0;

    color: #555;
}

.course-card li::before {
    content: "✓";

    color: #6c4ce8;

    font-weight: bold;

    margin-right: 10px;
}

.course-card a {
    color: #6c4ce8;

    font-weight: 700;
}


/* ================================
   WHY SECTION
================================ */

.why-section {
    background: white;
}

.feature-item {
    display: flex;

    gap: 18px;

    margin-top: 25px;
}

.feature-icon {
    min-width: 50px;
    height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background: #eeeaff;

    color: #6c4ce8;

    font-size: 20px;
}

.feature-item h5 {
    margin: 0;

    font-weight: 700;
}

.feature-item p {
    margin: 5px 0 0;

    color: #777;
}


/* ================================
   CTA
================================ */

.cta-section {
    padding: 80px 20px;

    background:
        linear-gradient(
            135deg,
            #241b64,
            #6c4ce8
        );

    color: white;
}

.cta-section h2 {
    font-size: 40px;

    font-weight: 800;
}

.cta-section p {
    color: rgba(255,255,255,0.8);

    margin: 15px 0 25px;
}


/* ================================
   PAGE HEADER
================================ */

.page-header {
    padding: 170px 20px 90px;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(255,202,40,0.3),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #241b64,
            #5038a8
        );

    color: white;
}

.page-header h1 {
    font-size: clamp(38px, 6vw, 60px);

    font-weight: 800;

    margin: 20px 0;
}

.page-header p {
    color: rgba(255,255,255,0.8);
}


/* ================================
   SERVICES
================================ */

.service-box {
    margin-bottom: 100px;
}

.service-image {
    width: 100%;

    height: 380px;

    object-fit: cover;

    transition: 0.4s;
}

.service-image:hover {
    transform: scale(1.02);
}

.service-box h2 {
    font-size: 42px;

    font-weight: 800;

    margin: 10px 0 20px;
}

.service-box p {
    color: #777;

    line-height: 1.8;
}

.service-list {
    padding: 10px 5px;

    color: #555;
}

.service-list i {
    color: #6c4ce8;

    margin-right: 7px;
}


/* ================================
   CONTACT
================================ */

.contact-section {
    background: #f8f7ff;
}

.contact-info {
    margin-top: 30px;
}

.contact-item {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 20px;
}

.contact-icon {
    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background: #eeeaff;

    color: #6c4ce8;

    font-size: 22px;
}

.contact-item small {
    color: #777;
}

.contact-item h5 {
    margin: 2px 0;

    font-weight: 700;
}

.contact-form {
    background: white;

    padding: 40px;

    border-radius: 25px;

    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.contact-form h3 {
    font-weight: 800;
}

.contact-form > p {
    color: #777;
}

.contact-form label {
    font-weight: 600;

    margin-bottom: 7px;
}

.form-control,
.form-select {
    padding: 13px;

    border-radius: 12px;

    border: 1px solid #ddd;
}

.form-control:focus,
.form-select:focus {
    border-color: #6c4ce8;

    box-shadow: 0 0 0 3px rgba(108,76,232,0.1);
}


/* ================================
   FOOTER
================================ */

footer {
    background: #18134b;

    color: white;

    padding: 45px 0;
}

footer h4 {
    font-weight: 700;
}

footer p {
    color: rgba(255,255,255,0.7);
}

.copyright {
    font-size: 13px;
}


/* ================================
   WHATSAPP FLOATING BUTTON
================================ */

.whatsapp-float {
    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 60px;

    height: 60px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #25d366;

    color: white;

    font-size: 30px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.2);

    z-index: 999;

    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);

    color: white;
}


/* ================================
   RESPONSIVE
================================ */

@media (max-width: 991px) {

    .hero {
        padding-top: 100px;
    }

    .hero-content {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .hero-image-wrapper {
        padding: 10px;
    }

    .card-one {
        left: -5px;
    }

    .card-two {
        right: -5px;
    }

    .section-heading h2,
    .why-section h2,
    .contact-section h2,
    .service-box h2 {
        font-size: 34px;
    }

}


@media (max-width: 576px) {

    .section-padding {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-features {
        display: block;
    }

    .hero-features div {
        margin: 10px 0;
    }

    .floating-card {
        padding: 10px;

        font-size: 12px;
    }

    .floating-card i {
        font-size: 20px;
    }

    .service-box {
        margin-bottom: 60px;
    }

    .service-image {
        height: 280px;
    }

    .contact-form {
        padding: 25px;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;

        right: 18px;
        bottom: 18px;
    }

}
@media (max-width: 576px) {

    .google-form-box {
        padding: 5px;
        border-radius: 12px;
    }

    .google-form-box iframe {
        height: 1000px;
    }
}
