THIS_IS_TEST
* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}

html {

    scroll-behavior: smooth;

    overflow-x: hidden;

}

body {

    overflow-x: hidden;

    font-family: 'Inter', sans-serif;

}

/*========================

BELIEVE TO ACHIEVE

========================*/

:root {
--primary: #2563EB;
--secondary: #14B8A6;
--dark: #0F172A;
--text: #475569;
--light: #F8FAFC;
--border: #E2E8F0;
}

* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

html {

    scroll-behavior: smooth;

}

body {

    font-family: 'Inter', sans-serif;
    color: var(--text);
    overflow-x: hidden;
    background: #fff;

}

h1,
h2,
h3,
h4,
h5 {

    font-family: 'Poppins', sans-serif;
    color: var(--dark);

}

a {

    text-decoration: none;

}

img {

    max-width: 100%;
    display: block;

}

section {

    padding: 100px 0;

}

.container {

    max-width: 1240px;

}

/*========================

NAVBAR

========================*/

.navbar {

    padding: 18px 0;
    transition: .4s;

}

.logo {

    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;

}

.logo-text {

    margin-left: 12px;

}

.logo-text h5 {

    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #2563EB;

}

.logo-text span {

    font-size: 12px;
    color: #777;
    letter-spacing: 2px;

}

.navbar-nav {

    gap: 30px;

}

.nav-link {

    color: #222 !important;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    position: relative;
    transition: .3s;

}

.nav-link:hover {

    color: #2563EB !important;

}

.nav-link.active {

    color: #2563EB !important;

}

.nav-link::after {

    content: '';
    position: absolute;
    width: 0;
    left: 0;
    bottom: -5px;
    height: 3px;
    background: #2563EB;
    transition: .3s;

}

.nav-link:hover::after {

    width: 100%;

}

.bi-list {

    font-size: 34px;
    color: #2563EB;

}

/*========================

HERO

========================*/

.hero {

    padding-top: 170px;
    padding-bottom: 100px;
    background: linear-gradient(180deg, #ffffff, #F8FAFC);

}

.hero-tag {

    display: inline-block;
    padding: 10px 22px;
    border-radius: 40px;
    background: #EFF6FF;
    color: #2563EB;
    font-weight: 600;
    margin-bottom: 25px;

}

.hero h1 {

    font-size: 60px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 25px;

}

.hero p {

    font-size: 19px;
    line-height: 32px;
    margin-bottom: 40px;

}

.hero-btn {

    display: inline-block;
    background: #2563EB;
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    transition: .4s;

}

.hero-btn:hover {

    background: #1D4ED8;
    color: #fff;
    transform: translateY(-3px);

}

.hero-image {

    width: 100%;
    max-width: 520px;
    margin: auto;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .12);

}

/*========================

COMMON

========================*/

.section-title {

    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;

}

.card {

    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

/*=========================

ABOUT

=========================*/

.about-section {

    padding: 100px 0;

}

.about-image {

    border-radius: 25px;

    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);

}

.section-tag {

    display: inline-block;

    padding: 10px 22px;

    background: #EFF6FF;

    color: #2563EB;

    border-radius: 30px;

    font-weight: 600;

    margin-bottom: 20px;

}

.section-heading {

    font-size: 46px;

    font-weight: 700;

    margin-bottom: 25px;

}

.primary-btn {

    display: inline-block;

    margin-top: 20px;

    background: #2563EB;

    color: #fff;

    padding: 15px 35px;

    border-radius: 50px;

    transition: .3s;

    font-weight: 600;

}

.primary-btn:hover {

    background: #1D4ED8;

    color: #fff;

}


/*=========================

SUBJECTS

=========================*/

.subjects {

    background: #F8F9FC;

}

.subject-card {

    background: #fff;

    border-radius: 25px;

    overflow: hidden;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);

    transition: .4s;

    height: 100%;

}

.subject-card:hover {

    transform: translateY(-10px);

}

.subject-card img {

    width: 100%;

    height: 260px;

    object-fit: cover;

}

.subject-content {

    padding: 30px;

}

.subject-content h3 {

    font-size: 28px;

    margin-bottom: 15px;

}

.subject-content p {

    margin: 0;

    line-height: 30px;

}

/*=========================
WHY US
=========================*/

.why-us {

    padding: 100px 0;

    background: #fff;

}

.why-card {

    padding: 40px 30px;

    border-radius: 20px;

    text-align: center;

    background: #fff;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);

    transition: .4s;

    height: 100%;

}

.why-card:hover {

    transform: translateY(-10px);

}

.icon-box {

    width: 80px;

    height: 80px;

    margin: auto;

    border-radius: 50%;

    background: #EFF6FF;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 35px;

    color: #2563EB;

    margin-bottom: 25px;

}

.why-card h4 {

    margin-bottom: 15px;

}

/*=========================
PRICING
=========================*/

.pricing-preview {

    background: #F8F9FC;

    padding: 100px 0;

}

.price-card {

    background: #fff;

    padding: 45px;

    border-radius: 25px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);

    text-align: center;

    position: relative;

    height: 100%;

}

.price-card.active {
    border: 3px solid #2563EB;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(111, 45, 189, .18);
    position: relative;
}

.price-card h2 {

    font-size: 55px;

    color: #2563EB;

    margin: 20px 0;

}

.price-card ul {

    list-style: none;

    padding: 0;

    margin-top: 30px;

}

.price-card li {

    padding: 10px 0;

    border-bottom: 1px solid #eee;

}

.featured {

    border: 3px solid #2563EB;

    transform: scale(1.05);

}

.popular {

    position: absolute;

    top: -15px;

    left: 50%;

    transform: translateX(-50%);

    background: #2563EB;

    color: #fff;

    padding: 8px 20px;

    border-radius: 30px;

    font-size: 13px;

    font-weight: 600;

}

.price-heading {
    margin: 15px 0;
    text-align: center;
}

.old-price {
    display: block;
    font-size: 26px;
    color: #9CA3AF;
    text-decoration: line-through;
    font-weight: 600;
    line-height: 1.2;
}

.new-price {
    display: block;
    font-size: 58px;
    color: #2563EB;
    font-weight: 700;
    line-height: 1;
    margin-top: 5px;
}

.old-price {
    text-decoration: line-through !important;
}

/*=========================
CONTACT CTA
=========================*/

.contact-cta {

    padding: 100px 0;

    background: #fff;

}

.cta-box {

    background: linear-gradient(135deg, #2563EB, #14B8A6);

    padding: 70px;

    border-radius: 30px;

    color: #fff;

}

.cta-box h2 {

    color: #fff;

    font-size: 45px;

    margin-bottom: 20px;

}

.cta-box p {

    font-size: 18px;

    color: #eee;

    margin: 0;

}

.cta-btn {

    display: inline-block;

    background: #fff;

    color: #2563EB;

    padding: 16px 40px;

    border-radius: 50px;

    font-weight: 700;

    transition: .3s;

    margin-top: 20px;

}

.cta-btn:hover {

    background: #22C55E;

    color: #fff;

}

/*=========================
FOOTER
=========================*/

footer {

    background: #1F2937;

    padding: 90px 0 30px;

    color: #fff;

}

.footer-logo {

    width: 90px;

}

footer h4 {

    color: #fff;

    margin-bottom: 25px;

}

footer ul {

    list-style: none;

    padding: 0;

}

footer li {

    margin-bottom: 12px;

}

footer a {

    color: #ddd;

    transition: .3s;

}

footer a:hover {

    color: #22C55E;

}

footer p {

    color: #ddd;

}

footer hr {

    margin: 50px 0 30px;

    border-color: rgba(255, 255, 255, .15);

}

.copyright {

    text-align: center;

    color: #bbb;

}

.nav-buttons {

    margin-left: 30px;

}

.contact-btn {

    background: #ffffff;

    border: 2px solid #2563EB;

    color: #2563EB;

    padding: 12px 28px;

    border-radius: 50px;

    font-weight: 600;

    transition: .3s;

}

.contact-btn:hover {

    background: #2563EB;

    color: #fff;

}

.enroll-btn {

    background: #2563EB;

    color: #fff;

    padding: 12px 30px;

    border-radius: 50px;

    font-weight: 600;

    transition: .3s;

    box-shadow: 0 10px 25px rgba(106, 27, 154, .25);

}

.enroll-btn:hover {

    background: #22C55E;

    color: #fff;

    transform: translateY(-3px);

}

/*=========================
ENQUIRY FORM
=========================*/

.enquiry-section {

    padding: 100px 0;

    background: #F7F5FF;

}

.form-wrapper {

    background: #fff;

    padding: 50px;

    border-radius: 30px;

    box-shadow: 0 25px 60px rgba(0, 0, 0, .08);

}

.custom-input {

    height: 65px;

    border-radius: 18px;

    border: 1px solid #E6E6E6;

    padding: 15px 20px;

    font-size: 16px;

    box-shadow: none !important;

}

.custom-input:focus {

    border-color: #2563EB;

    box-shadow: 0 0 0 .15rem rgba(106, 27, 154, .15) !important;

}

textarea.custom-input {

    height: auto;

    resize: none;

    padding-top: 20px;

}

.submit-btn {

    background: linear-gradient(90deg, #2563EB, #3B82F6);

    color: #fff;

    border: none;

    padding: 18px 70px;

    border-radius: 50px;

    font-size: 18px;

    font-weight: 600;

    transition: .3s;

}

.submit-btn:hover {

    transform: translateY(-3px);

    box-shadow: 0 20px 40px rgba(106, 27, 154, .25);

}

/*=========================
FOOTER
=========================*/

.footer {

    background: #1F2937;

    padding: 80px 0 25px;

    color: #fff;

}

.footer-logo {

    width: 90px;

}

.footer h4 {

    color: #fff;

    margin-bottom: 25px;

    font-size: 22px;

}

.footer-text {

    line-height: 30px;

    color: #D1D5DB;

}

.footer-links {

    list-style: none;

    padding: 0;

    margin: 0;

}

.footer-links li {

    margin-bottom: 14px;

}

.footer-links a {

    color: #D1D5DB;

    transition: .3s;

    text-decoration: none;

}

.footer-links a:hover {

    color: #22C55E;

    padding-left: 6px;

}

.footer-contact {

    list-style: none;

    padding: 0;

    margin: 0;

}

.footer-contact li {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 18px;

    color: #D1D5DB;

}

.footer-contact i {

    color: #22C55E;

    font-size: 18px;

    margin-top: 3px;

}

.social-links {

    display: flex;

    gap: 15px;

}

.social-links a {

    width: 45px;

    height: 45px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #2F3B4D;

    color: #fff;

    transition: .3s;

    text-decoration: none;

}

.social-links a:hover {

    background: #2563EB;

    transform: translateY(-5px);

}

.footer hr {

    margin: 45px 0 25px;

    border-color: rgba(255, 255, 255, .15);

}

.copyright {

    margin: 0;

    color: #D1D5DB;

}

.footer-policy {

    color: #D1D5DB;

    text-decoration: none;

    transition: .3s;

}

.footer-policy:hover {

    color: #22C55E;

}

/*=========================
FOOTER
=========================*/

.footer {

    background: #1F2937;

    padding: 80px 0 25px;

    color: #fff;

}

.footer-logo {

    width: 90px;

}

.footer h4 {

    color: #fff;

    margin-bottom: 25px;

    font-size: 22px;

}

.footer-text {

    line-height: 30px;

    color: #D1D5DB;

}

.footer-links {

    list-style: none;

    padding: 0;

    margin: 0;

}

.footer-links li {

    margin-bottom: 14px;

}

.footer-links a {

    color: #D1D5DB;

    transition: .3s;

    text-decoration: none;

}

.footer-links a:hover {

    color: #22C55E;

    padding-left: 6px;

}

.footer-contact {

    list-style: none;

    padding: 0;

    margin: 0;

}

.footer-contact li {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 18px;

    color: #D1D5DB;

}

.footer-contact i {

    color: #22C55E;

    font-size: 18px;

    margin-top: 3px;

}

.social-links {

    display: flex;

    gap: 15px;

}

.social-links a {

    width: 45px;

    height: 45px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #2F3B4D;

    color: #fff;

    transition: .3s;

    text-decoration: none;

}

.social-links a:hover {

    background: #2563EB;

    transform: translateY(-5px);

}

.footer hr {

    margin: 45px 0 25px;

    border-color: rgba(255, 255, 255, .15);

}

.copyright {

    margin: 0;

    color: #D1D5DB;

}

.footer-policy {

    color: #D1D5DB;

    text-decoration: none;

    transition: .3s;

}

.footer-policy:hover {

    color: #22C55E;

}

.footer {

    width: 100%;

    background: #1F2937;

    color: #fff;

    padding: 80px 0 25px;

}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 18px;
}

.footer-contact li a,
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact li a {
    color: #D1D5DB;
    text-decoration: none;
    transition: .3s;
}

.footer-contact li a:hover {
    color: #2563EB;
}

.footer-contact li a {
    white-space: nowrap;
}

.footer-contact li i {
    color: #22C55E;
    font-size: 20px;
    min-width: 20px;
    flex-shrink: 0;
}

.contact-link {

    color: #D1D5DB;

    text-decoration: none;

    display: flex;

    align-items: center;

    gap: 10px;

    transition: .3s;

}

.contact-link:hover {

    color: #22C55E;

}

.contact-link i {

    color: #22C55E;

}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.contact-link:hover {
    color: #2563EB;
}

.footer-contact i {
    color: #22c55e;
    font-size: 20px;
    min-width: 20px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 18px;
}

.footer-contact li a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #ffffff;
}

.footer-contact li a:hover {
    color: #2563EB;
}

.footer-contact li i {
    color: #22c55e;
    font-size: 20px;
    width: 22px;
    text-align: center;
}

.footer-contact li:last-child {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
}

.popular-badge {

    position: absolute;

    top: 18px;

    left: 50%;

    transform: translateX(-50%);

    color: #2563EB;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: .5px;

    background: transparent;

}

.price-card {

    border: 3px solid transparent;

}

.price-card.active {

    border-color: #2563EB;

}

.price-card {

    position: relative;

}

.price-heading del {
    display: block;
    color: #9CA3AF;
    font-size: 26px;
    font-weight: 600;
    text-decoration: line-through;
    text-decoration-color: #9CA3AF;
    text-decoration-thickness: 2px;
    margin-bottom: 5px;
}

.price-heading .new-price {
    display: block;
    color: #2563EB;
    font-size: 58px;
    font-weight: 700;
    line-height: 1;
}









.hero-btn{
    background:red !important;
}

.enroll-btn{
    background:red !important;
}

.nav-link:hover{
    color:red !important;
}
