.logo-link,
.social-icons a {
    text-decoration: none;
    display: flex
}

.contact-info span,
.logo-main,
.logo-sub,
.nav-link {
    white-space: nowrap
}

.nav-link.active,
.navbar {
    border-bottom: 3px solid var(--primary-color)
}

.dropdown-menu,
.mobile-menu {
    visibility: hidden;
    opacity: 0
}

.courses-grid,
.features-grid,
.fees-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr))
}

.features-list,
.footer-col ul,
.mobile-nav,
.module ul,
.nav-menu {
    list-style: none
}

@font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-regular-400.woff2) format('woff2')
}

@font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-solid-900.woff2) format('woff2')
}

@font-face {
    font-family: 'Font Awesome 6 Brands';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-brands-400.woff2) format('woff2')
}

* {
    font-display: swap;
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --primary-color: #1a5f7a;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --gold-color: #f1c40f;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ffffff;
    --bg-dark: #f8f9fa;
    --border-color: #eaeaea;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    --border-radius: 10px;
    --nav-height: 85px
}

body {
    font-family: Poppins, Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    padding-top: var(--nav-height)
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem
}

.top-bar {
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    color: #fff;
    font-size: .85rem;
    position: sticky;
    z-index: 1000
}

.dropdown-menu,
.navbar {
    left: 0;
    background-color: var(--bg-light);
    box-shadow: var(--shadow)
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap
}

.contact-info {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px
}

.contact-info i {
    font-size: .9rem;
    color: var(--gold-color)
}

.social-icons {
    display: flex;
    gap: 1rem
}

.social-icons a {
    color: #fff;
    border-radius: 50%;
    background: rgb(255 255 255 / .1);
    align-items: center;
    justify-content: center;
    transition: var(--transition)
}

.social-icons a:hover {
    background: var(--gold-color);
    color: var(--secondary-color);
    transform: translateY(-2px)
}

.navbar {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%
}

.logo-link {
    color: var(--text-dark);
    align-items: center;
    gap: 10px;
    height: 70px;
    flex-shrink: 0
}

.logo-img {
    height: 60px;
    width: 60px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--gold-color);
    padding: 2px;
    transition: transform .3s
}

.btn-login,
.dropdown-menu,
.nav-link {
    border-radius: var(--border-radius)
}

.kids-img:hover,
.logo-img:hover {
    transform: scale(1.05)
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center
}

.nav-item,
.nav-menu {
    display: flex;
    align-items: center;
    height: 100%
}

.logo-main {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.1;
    margin: 0;
    font-family: Poppins, sans-serif;
    letter-spacing: -.5px
}

.btn-login,
.logo-sub,
.mobile-nav a,
.nav-link {
    font-weight: 500
}

.logo-sub {
    font-size: .7rem;
    color: var(--text-light);
    margin-top: 2px;
    font-family: Roboto, sans-serif
}

.nav-menu {
    gap: .2rem;
    margin: 0;
    padding: 0
}

.nav-item {
    position: relative
}

.dropdown-menu a,
.nav-link {
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    display: flex
}

.nav-link {
    font-size: .85rem;
    padding: .5rem .7rem;
    gap: 5px;
    height: 40px
}

.nav-link.active,
.nav-link:hover {
    color: var(--primary-color);
    background-color: rgb(26 95 122 / .1)
}

.nav-link.active {
    font-weight: 600
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    min-width: 250px;
    padding: 1rem 0;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1001;
    border: 1px solid var(--border-color)
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.dropdown-menu a {
    gap: 12px;
    padding: .9rem 1.5rem;
    font-size: .9rem
}

.btn-login,
.dropdown-menu a i,
.dropdown-menu a:hover,
.mobile-user-text h4 {
    color: var(--primary-color)
}

.dropdown-menu a:hover {
    background-color: var(--bg-dark);
    padding-left: 2rem
}

.dropdown-menu a i {
    width: 18px
}

.dropdown-icon {
    font-size: .8rem;
    margin-left: 5px;
    transition: var(--transition)
}

.dropdown:hover .dropdown-icon,
.faq-item.active .faq-question i.fa-chevron-down,
.mobile-dropdown.active .dropdown-toggle i.fa-chevron-down {
    transform: rotate(180deg)
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem
}

.btn-login,
.btn-primary {
    transition: var(--transition);
    display: flex;
    gap: 8px;
    white-space: nowrap;
    text-decoration: none
}

.btn-login {
    padding: .6rem 1.2rem;
    border: 2px solid var(--primary-color);
    align-items: center;
    font-size: .9rem
}

.btn-login:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px)
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    font-weight: 600;
    padding: .7rem 1.5rem;
    border-radius: var(--border-radius);
    align-items: center;
    box-shadow: 0 4px 15px rgb(26 95 122 / .3)
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgb(26 95 122 / .4);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color))
}

.hamburger {
    display: none;
    flex-direction: column;
    background: 0 0;
    border: none;
    cursor: pointer;
    padding: 10px;
    gap: 6px;
    position: relative;
    z-index: 1001;
    align-items: center;
    justify-content: center;
    margin-left: 15px
}

.mobile-actions,
.mobile-contact {
    border-top: 1px solid var(--border-color)
}

.mobile-menu-header,
.mobile-user-info {
    border-bottom: 1px solid var(--border-color)
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: .3s;
    display: block
}

.hamburger.active .bar:first-child {
    transform: rotate(45deg) translate(6px, 6px);
    background-color: #e74c3c
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px)
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background-color: #e74c3c
}

.hamburger:hover .bar {
    background-color: var(--secondary-color)
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background-color: #fff;
    box-shadow: -5px 0 25px rgb(0 0 0 / .15);
    transition: .4s cubic-bezier(.68, -.55, .265, 1.55);
    z-index: 1002;
    overflow-y: auto
}

.mobile-menu.active {
    right: 0;
    visibility: visible;
    opacity: 1
}

body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    position: sticky;
    top: 0;
    z-index: 1
}

.close-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition)
}

.close-menu:hover {
    background: rgb(255 255 255 / .3);
    transform: rotate(90deg)
}

.mobile-user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgb(26 95 122 / .05)
}

.mobile-user-avatar {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.mobile-user-text h4 {
    margin: 0
}

.mobile-nav a {
    display: flex;
    align-items: center;
    color: var(--text-dark);
    border-left: 4px solid #fff0;
    transition: .3s;
    font-size: 1rem
}

.mobile-nav a.active,
.mobile-nav a:hover {
    background-color: var(--bg-dark);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    padding-left: 25px
}

.mobile-nav a i {
    text-align: center;
    font-size: 1.1rem;
    width: 24px
}

.mobile-dropdown-menu {
    background: rgb(0 0 0 / .02);
    animation: .3s fadeIn
}

.mobile-dropdown-menu a {
    color: var(--text-light);
    border-left: 2px solid #fff0
}

.mobile-dropdown-menu a:hover {
    color: var(--primary-color);
    background: rgb(26 95 122 / .05);
    border-left-color: var(--gold-color)
}

.mobile-dropdown .dropdown-toggle i.fa-chevron-down {
    transition: transform .3s;
    margin-left: auto
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.mobile-btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    transition: .3s;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    text-align: center
}

.mobile-btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgb(0 0 0 / .1)
}

.mobile-contact {
    background-color: var(--bg-dark)
}

.mobile-contact h4 {
    color: var(--primary-color);
    display: flex;
    align-items: center;
    font-size: 1.2rem
}

.mobile-contact p {
    display: flex;
    align-items: center;
    color: var(--text-light)
}

.mobile-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.mobile-logo,
.mobile-social a {
    display: flex;
    align-items: center
}

.mobile-social a {
    background: var(--primary-color);
    justify-content: center;
    transition: .3s;
    font-size: 1rem
}

.btn-hero-primary,
.btn-hero-secondary,
.close-menu,
.course-card,
.course-link,
.mobile-nav a,
.mobile-social a {
    transition: var(--transition)
}

.mobile-social a:hover {
    background: var(--secondary-color);
    box-shadow: 0 5px 10px rgb(0 0 0 / .1)
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background-color: var(--primary-color);
    color: #fff
}

.mobile-logo {
    font-size: 1.3rem;
    font-weight: 700;
    gap: 10px
}

.close-menu {
    background: 0 0;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%
}

.mobile-search,
.mobile-user-info {
    border-bottom: 1px solid var(--border-color);
    display: flex
}

.close-menu:hover {
    background-color: rgb(255 255 255 / .1)
}

.mobile-user-info {
    align-items: center;
    padding: 1.5rem;
    gap: 1rem;
    background: linear-gradient(135deg, rgb(26 95 122 / .1), rgb(44 62 80 / .1))
}

.mobile-user-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem
}

.mobile-user-text p {
    color: var(--text-light);
    font-size: .9rem;
    margin-bottom: 5px
}

.mobile-user-text h4 {
    color: var(--primary-color);
    font-size: 1.2rem
}

.mobile-search {
    padding: 1rem;
    gap: .5rem
}

.mobile-search-input {
    flex: 1;
    padding: .8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem
}

.mobile-search-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    width: 50px;
    border-radius: var(--border-radius);
    cursor: pointer
}

.mobile-nav {
    margin: 0;
    padding: 1rem 0
}

.mobile-nav li {
    margin: 0
}

.mobile-nav a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: var(--text-dark);
    border-left: 4px solid #fff0
}

.mobile-nav a.active,
.mobile-nav a:hover {
    background-color: var(--bg-dark);
    color: var(--primary-color);
    border-left-color: var(--primary-color)
}

.mobile-dropdown-menu {
    padding-left: 3rem;
    display: none
}

.mobile-dropdown-menu a {
    padding: .8rem 1.5rem;
    font-size: .9rem
}

.mobile-dropdown.active .mobile-dropdown-menu {
    display: block
}

.mobile-actions {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-top: 1px solid var(--border-color)
}

.mobile-btn-login,
.mobile-btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 1rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition)
}

.mobile-btn-login {
    border: 2px solid var(--primary-color);
    color: var(--primary-color)
}

.mobile-btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff
}

.mobile-contact {
    padding: 1.5rem;
    background-color: var(--bg-dark);
    border-top: 1px solid var(--border-color)
}

.mobile-contact h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px
}

.footer-col ul li,
.mobile-contact p {
    margin-bottom: .8rem
}

.mobile-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: .9rem
}

.mobile-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem
}

.mobile-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none
}

.mobile-social a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px)
}

.hero-section {
    position: relative;
    color: #fff;
    padding: 5rem 0;
    margin: 2rem auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    max-width: 1920px;
    min-height: 600px
}

.hero-bg-img,
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0
}

.feature i,
.hero-badge,
.hero-title span,
.stat h3 {
    color: var(--gold-color)
}

.feature,
.hero-badge {
    border-radius: 50px;
    backdrop-filter: blur(10px)
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1
}

.hero-overlay {
    right: 0;
    bottom: 0;
    background: linear-gradient(rgb(0 0 0 / .3), rgb(0 0 0 / .5));
    z-index: 0
}

.fee-card,
.hero-content {
    position: relative;
    text-align: center
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    margin: 0 auto
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgb(241 196 15 / .2);
    padding: .6rem 1.5rem;
    font-size: .9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    border: 1px solid
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2
}

.hero-title span {
    display: inline-block
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.3rem);
    color: rgb(255 255 255 / .9);
    margin-bottom: 3rem;
    line-height: 1.6
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2.5rem 0;
    flex-wrap: wrap
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgb(255 255 255 / .1);
    padding: .8rem 1.5rem;
    border: 1px solid
}

.feature i {
    font-size: 1.1rem
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 3rem 0;
    flex-wrap: wrap
}

.btn-hero-primary,
.btn-hero-secondary {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    box-shadow: 0 8px 25px rgb(26 95 122 / .4)
}

.btn-hero-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgb(26 95 122 / .6)
}

.btn-hero-secondary {
    background: rgb(255 255 255 / .1);
    color: #fff;
    border: 2px solid #fff;
    backdrop-filter: blur(10px)
}

.btn-hero-secondary:hover {
    background: rgb(255 255 255 / .2);
    transform: translateY(-5px)
}

.course-card:hover,
.fee-card:hover,
.teacher-card:hover {
    transform: translateY(-10px)
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    flex-wrap: wrap
}

.info-box,
.stat {
    text-align: center
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: .5rem
}

.stat p {
    font-size: .9rem;
    color: rgb(255 255 255 / .8);
    text-transform: uppercase;
    letter-spacing: 1px
}

@media (max-width:1024px) {
    .hero-section {
        min-height: 500px;
        padding: 4rem 0
    }

    .hero-title,
    .stat h3 {
        font-size: 2rem
    }

    .hero-stats {
        gap: 2rem
    }
}

@media (max-width:768px) {
    .hero-bg-img {
        object-fit: cover !important;
        background-color: #1a5f7a
    }

    .hero-section {
        min-height: 450px;
        padding: 3rem 0
    }

    .hero-title {
        font-size: 1.8rem
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem
    }

    .hero-features {
        gap: 1rem;
        margin: 1.5rem 0
    }

    .feature {
        padding: .6rem 1rem;
        font-size: .9rem
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center
    }

    .hero-stats {
        gap: 1.5rem;
        margin-top: 2rem
    }

    .stat h3 {
        font-size: 1.5rem
    }

    .stat p {
        font-size: .8rem
    }
}

@media (max-width:480px) {
    .hero-section {
        min-height: 400px;
        padding: 2rem 0
    }

    .hero-title {
        font-size: 1.5rem
    }

    .hero-badge {
        font-size: .8rem;
        padding: .5rem 1rem
    }

    .feature {
        width: 100%;
        justify-content: center
    }
}

.section-header {
    text-align: center;
    margin-bottom: 3rem
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem
}

.section-header h2 span,
.teacher-qualification i {
    color: var(--primary-color)
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto
}

.courses-section,
.features-section {
    padding: 5rem 0
}

.courses-grid,
.features-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem
}

.course-card {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    text-align: center
}

.course-card:hover {
    box-shadow: 0 15px 30px rgb(0 0 0 / .15);
    border-color: var(--primary-color)
}

.course-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #fff;
    font-size: 1.8rem
}

.course-link,
.features-list li {
    display: flex;
    align-items: center
}

.course-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--secondary-color)
}

.course-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6
}

.course-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    justify-content: center;
    gap: 8px
}

.course-link:hover {
    color: var(--secondary-color);
    gap: 12px
}

.fees-section,
.teachers-section {
    padding: 80px 0;
    background: #f8f9fa
}

.fees-section .section-header {
    text-align: center;
    margin-bottom: 50px
}

.fees-section .section-header h2 {
    color: #00404d;
    font-size: 2.5rem;
    margin-bottom: 15px
}

.fees-section .section-header p {
    color: #666;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto
}

.fees-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 60px
}

.fee-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgb(0 0 0 / .1);
    transition: transform .3s
}

.fee-card.recommended {
    border: 3px solid #ffd166;
    background: linear-gradient(135deg, #fff, #f9f9f9)
}

.fee-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffd166;
    color: #00404d;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: .9rem
}

.fee-header {
    margin-bottom: 25px
}

.fee-header h3 {
    color: #00404d;
    font-size: 1.8rem;
    margin-bottom: 5px
}

.fee-header p,
.fee-price .period {
    color: #666;
    font-size: 1rem
}

.fee-price {
    margin: 25px 0;
    color: #00404d
}

.fee-price .currency {
    font-size: 1.5rem;
    vertical-align: top
}

.fee-price .amount {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1
}

.features-list {
    padding: 0;
    margin: 30px 0;
    text-align: left
}

.age-card,
.course-pricing,
.courses-hero,
.faq-contact,
.feature-card,
.footer-bottom,
.form-note,
.teacher-info h3,
.trial-banner,
.trial-image,
.view-all-teachers {
    text-align: center
}

.features-list li {
    margin-bottom: 15px;
    gap: 10px;
    color: #333
}

.features-list i {
    font-size: 1.2rem
}

.features-list .fa-check-circle {
    color: #06d6a0
}

.features-list .fa-times-circle {
    color: #ef476f;
    opacity: .7
}

.fee-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: #00404d;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: .3s;
    border: 2px solid #00404d;
    margin-top: 20px
}

.fee-btn:hover {
    background: #fff0;
    color: #00404d
}

.fee-btn.primary {
    background: #ffd166;
    color: #00404d;
    border-color: #ffd166
}

.fee-btn.primary:hover {
    background: #fff0;
    color: #ffd166
}

.fees-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgb(0 0 0 / .1)
}

.info-box i {
    font-size: 2.5rem;
    color: #00404d;
    margin-bottom: 15px
}

.info-box h4 {
    color: #00404d;
    margin-bottom: 10px;
    font-size: 1.2rem
}

.info-box p {
    color: #666;
    font-size: .9rem
}

@media (max-width:992px) {
    .fees-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:768px) {
    .fees-section .section-header h2 {
        font-size: 2rem
    }

    .fees-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 50px
    }

    .fees-info {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px 20px
    }
}

.feature-card {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color)
}

.teacher-card,
.testimonial-card {
    box-shadow: 0 10px 30px rgb(0 0 0 / .08)
}

.feature-card:hover {
    transform: translateY(-5px)
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgb(26 95 122 / .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    font-size: 1.5rem
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color)
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6
}

.footer {
    background: var(--secondary-color);
    color: #fff;
    padding: 4rem 0 2rem;
    margin-top: 4rem
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem
}

.footer-logo i {
    font-size: 2.5rem;
    color: var(--gold-color)
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 5px
}

.footer-logo p {
    color: rgb(255 255 255 / .7);
    font-size: .9rem
}

.footer-about {
    color: rgb(255 255 255 / .8);
    line-height: 1.6;
    margin-bottom: 1.5rem
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--gold-color);
    position: relative;
    padding-bottom: 10px
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color)
}

.footer-col ul li,
.footer-col ul li a {
    color: rgb(255 255 255 / .8);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px
}

.faq-contact a:hover,
.trial-content h3 span {
    text-decoration: underline
}

.footer-col ul li a:hover {
    color: var(--gold-color);
    padding-left: 5px
}

.contact-info li i {
    color: var(--gold-color);
    width: 20px
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid;
    color: rgb(255 255 255 / .6);
    font-size: .9rem
}

@media (max-width:1200px) {
    .logo-main {
        font-size: 1.6rem
    }

    .nav-link {
        padding: .8rem;
        font-size: .9rem
    }

    .search-input {
        width: 150px
    }

    .hero-title {
        font-size: 2.8rem
    }

    .hero-subtitle {
        font-size: 1.2rem
    }
}

@media (max-width:992px) {
    .top-bar-content {
        justify-content: center;
        text-align: center
    }

    .contact-info {
        justify-content: center;
        flex-wrap: wrap
    }

    .social-icons {
        display: none
    }

    .hamburger {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative;
        z-index: 1001;
        margin-left: auto
    }

    .nav-actions,
    .nav-menu {
        display: none !important
    }

    .nav-menu {
        visibility: hidden !important;
        height: 0 !important;
        overflow: hidden !important
    }

    .logo-img {
        height: 50px;
        width: 50px
    }

    .logo-main {
        font-size: 1.5rem
    }

    .hero-title {
        font-size: 2.3rem
    }

    .hero-subtitle {
        font-size: 1.1rem
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: .9rem 1.8rem;
        font-size: 1rem
    }

    .mobile-menu {
        width: 85%;
        max-width: 350px
    }
}

@media (max-width:768px) {
    :root {
        --nav-height: 75px
    }

    .navbar {
        height: var(--nav-height)
    }

    .top-bar {
        padding: .2rem 0;
        font-size: .65rem
    }

    .top-bar-content {
        display: flex;
        flex-direction: column;
        gap: 4px;
        justify-content: center;
        text-align: center
    }

    .contact-info {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px
    }

    .contact-info span:nth-child(2),
    .contact-info span:nth-child(3) {
        display: none
    }

    .contact-info::after {
        content: "📧 info@shiaquranpakacademy.com  📞 +923117480165";
        display: block;
        font-size: .65rem;
        margin-top: 2px
    }

    .social-icons {
        display: none !important
    }

    .logo-link {
        gap: 8px
    }

    .logo-img {
        height: 40px;
        width: 40px
    }

    .logo-main {
        font-size: 1.1rem
    }

    .logo-sub,
    .stat p {
        font-size: .65rem
    }

    .container {
        padding: 0 1rem
    }

    .hero-section {
        padding: 1.5rem 0;
        margin: 1rem auto;
        min-height: auto
    }

    .hero-title {
        font-size: 1.6rem;
        margin-bottom: .8rem
    }

    .hero-subtitle {
        font-size: .9rem;
        margin-bottom: 1rem
    }

    .hero-badge {
        font-size: .7rem;
        padding: .4rem 1rem;
        margin-bottom: 1rem
    }

    .hero-features {
        gap: .6rem;
        margin: 1rem 0
    }

    .feature {
        padding: .4rem .8rem;
        font-size: .75rem;
        gap: 6px
    }

    .feature i {
        font-size: .8rem
    }

    .hero-buttons {
        gap: .8rem;
        margin: 1.2rem 0
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: .6rem 1.2rem;
        font-size: .85rem;
        white-space: nowrap
    }

    .hero-stats {
        gap: 1rem;
        margin-top: 1rem
    }

    .stat h3 {
        font-size: 1.3rem;
        margin-bottom: .2rem
    }

    .section-header h2 {
        font-size: 1.6rem;
        margin-bottom: .5rem
    }

    .section-header p {
        font-size: .85rem
    }

    .courses-section,
    .features-section {
        padding: 1.5rem 0
    }

    .hero-bg-img {
        object-fit: cover !important;
        background-color: #1a5f7a
    }
}

@media (max-width:480px) {
    .top-bar {
        padding: .15rem 0
    }

    .contact-info span,
    .stat p {
        font-size: .6rem
    }

    .logo-main {
        font-size: .9rem
    }

    .logo-sub {
        display: none
    }

    .hero-title {
        font-size: 1.3rem
    }

    .hero-subtitle {
        font-size: .8rem
    }

    .hero-badge {
        font-size: .65rem;
        padding: .3rem .8rem
    }

    .feature {
        padding: .3rem .6rem;
        font-size: .7rem
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: .5rem 1rem;
        font-size: .8rem
    }

    .stat h3 {
        font-size: 1.1rem
    }

    .section-header h2 {
        font-size: 1.4rem
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center
    }

    .footer-logo {
        justify-content: center
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%)
    }
}

.top-bar {
    padding: .2rem 0
}

.contact-info span {
    font-size: .65rem
}

.social-icons a {
    width: 24px;
    height: 24px;
    font-size: .7rem
}

.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0, #e9ecef 100%)
}

.teachers-grid,
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px
}

.testimonial-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    transition: transform .3s;
    border: 1px solid
}

.author-avatar,
.quote-icon {
    border-radius: 50%;
    display: flex
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgb(0 0 0 / .12)
}

.testimonial-content {
    position: relative;
    margin-bottom: 25px
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
    padding-left: 20px
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #eee
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem
}

.image-content,
.trial-form {
    border-radius: 15px;
    backdrop-filter: blur(10px)
}

.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary-color)
}

.author-info p,
.rating {
    font-size: .9rem
}

.author-info p {
    color: var(--text-light);
    margin-bottom: 8px
}

.benefit i,
.rating,
.trial-content h3 span {
    color: var(--gold-color)
}

.free-trial-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: #fff;
    position: relative;
    overflow: hidden
}

.form-input,
.trial-form {
    background: rgb(255 255 255 / .1)
}

.trial-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2
}

.trial-content h2 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    font-weight: 700
}

.trial-content h3 {
    font-size: 2.2rem;
    margin-bottom: 20px
}

.trial-subtitle {
    font-size: 1.1rem;
    color: rgb(255 255 255 / .9);
    margin-bottom: 30px
}

.trial-benefits {
    margin-bottom: 30px;
    color: #f5eeee
}

.benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1.1rem
}

.form-group,
.image-content i {
    margin-bottom: 20px
}

.benefit i {
    font-size: 1.2rem
}

.trial-form {
    padding: 30px;
    border: 1px solid
}

.form-input {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid;
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    transition: .3s
}

.form-input:focus {
    outline: 0;
    border-color: var(--gold-color);
    background: rgb(255 255 255 / .15)
}

.form-input::placeholder {
    color: rgb(255 255 255 / .7)
}

.form-input option {
    color: var(--text-dark);
    background: #fff
}

.btn-trial-submit {
    width: 100%;
    padding: 16px;
    background: var(--gold-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: .3s;
    margin-top: 10px
}

.btn-trial-submit:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgb(0 0 0 / .2)
}

.form-note {
    font-size: .9rem;
    color: rgb(255 255 255 / .7);
    margin-top: 15px
}

.trial-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.teacher-avatar,
.teacher-badge {
    align-items: center;
    display: flex
}

.image-content {
    background: rgb(255 255 255 / .1);
    padding: 40px;
    border: 2px solid
}

.image-content i {
    font-size: 4rem;
    color: var(--gold-color)
}

.image-content h4 {
    font-size: 1.8rem;
    margin-bottom: 10px
}

.image-content p {
    color: rgb(255 255 255 / .8);
    font-size: 1.1rem
}

.teacher-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: transform .3s;
    border: 1px solid #eee
}

.teacher-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 30px;
    position: relative;
    color: #fff
}

.teacher-avatar {
    width: 100px;
    height: 100px;
    background: rgb(255 255 255 / .2);
    border-radius: 50%;
    justify-content: center;
    margin: 0 auto;
    font-size: 3rem;
    border: 5px solid
}

.teacher-avatar.female {
    background: rgb(255 182 193 / .3)
}

.teacher-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold-color);
    color: var(--secondary-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: .85rem;
    font-weight: 600;
    gap: 5px
}

.teacher-info {
    padding: 30px
}

.teacher-info h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px
}

.teacher-experience,
.teacher-qualification,
.teacher-specialization {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: .95rem
}

.teacher-experience i {
    color: #e74c3c
}

.teacher-specialization i {
    color: var(--gold-color)
}

.teacher-languages {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap
}

.language-tag {
    background: var(--bg-dark);
    color: var(--text-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: .85rem;
    font-weight: 500
}

.view-all-teachers {
    margin-top: 50px
}

.btn-view-teachers {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: #fff;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: .3s
}

.btn-view-teachers:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgb(0 0 0 / .15)
}

.course-detail-section,
.faq-section {
    padding: 80px 0
}

.faq-container {
    max-width: 900px;
    margin: 40px auto 0
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgb(0 0 0 / .05);
    border: 1px solid #eee;
    overflow: hidden
}

.faq-question:hover,
.kids-section {
    background: #f8f9fa
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background .3s
}

.kids-img,
.kids-wrapper,
img {
    display: block
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0
}

.faq-question h3 i {
    color: var(--primary-color);
    font-size: 1.1rem
}

.faq-question i.fa-chevron-down {
    color: var(--primary-color);
    transition: transform .3s
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s, padding .3s
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 500px
}

.faq-answer p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0
}

.faq-contact {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee
}

.faq-contact p {
    font-size: 1.1rem;
    color: var(--text-dark)
}

.faq-contact a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 10px
}

.kids-badge,
.kids-content h2 {
    color: var(--secondary-color)
}

.kids-section {
    position: relative;
    padding: 4rem 0
}

.kids-wrapper {
    max-width: 800px;
    margin: 0 auto
}

.kids-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgb(0 0 0 / .15);
    border: 8px solid #fff
}

.kids-badge,
.kids-content h2 span::after {
    position: absolute;
    background: var(--gold-color)
}

.kids-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform .5s
}

.kids-badge {
    top: 20px;
    right: 20px;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 20px rgb(0 0 0 / .2);
    z-index: 3
}

.kids-content h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 700
}

.kids-content h2 span {
    color: var(--primary-color);
    display: inline-block;
    position: relative
}

.kids-content h2 span::after {
    content: '';
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    border-radius: 2px
}

.kids-description {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 35px;
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgb(0 0 0 / .05);
    border-left: 5px solid var(--primary-color)
}

.age-card,
.kids-feature {
    background: #fff;
    box-shadow: 0 5px 15px rgb(0 0 0 / .05);
    padding: 20px
}

.age-groups,
.kids-features {
    margin-bottom: 40px
}

.kids-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
    border-radius: 12px;
    transition: transform .3s
}

.kids-feature:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgb(0 0 0 / .1)
}

.kids-feature i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 5px;
    background: rgb(26 95 122 / .1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

.kids-feature h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 8px
}

.kids-feature p {
    color: var(--text-light);
    line-height: 1.5
}

.age-groups h4 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px
}

.age-groups h4::before {
    content: '';
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px
}

.age-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px
}

.age-card {
    border-radius: 10px;
    border-top: 4px solid var(--primary-color)
}

.age-card h5 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 8px
}

.age-card p {
    color: var(--text-light);
    font-size: .9rem;
    line-height: 1.4
}

.kids-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap
}

.btn-kids-primary,
.btn-kids-secondary {
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 1.1rem;
    gap: 10px;
    display: flex;
    font-weight: 600;
    text-decoration: none;
    transition: .3s
}

.btn-kids-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    align-items: center;
    box-shadow: 0 10px 20px rgb(26 95 122 / .2)
}

.btn-kids-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgb(26 95 122 / .3)
}

.btn-kids-secondary {
    background: #fff;
    color: var(--primary-color);
    align-items: center;
    border: 2px solid var(--primary-color);
    box-shadow: 0 5px 15px rgb(0 0 0 / .05)
}

.btn-kids-secondary:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgb(26 95 122 / .2)
}

@media (max-width:992px) {

    .kids-wrapper,
    .trial-wrapper {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .trial-content h2 {
        font-size: 2.2rem
    }

    .trial-content h3 {
        font-size: 1.8rem
    }

    .age-cards {
        grid-template-columns: repeat(2, 1fr)
    }
}

.courses-hero {
    position: relative;
    color: #fff;
    padding: 120px 0 80px;
    overflow: hidden;
    margin-top: 0
}

.courses-hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1
}

.courses-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgb(0 0 0 / .5), rgb(0 0 0 / .8));
    z-index: 0
}

.courses-hero .container {
    position: relative;
    z-index: 2
}

.courses-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: Amiri, serif
}

.courses-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6
}

.courses-hero .hero-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px
}

.courses-hero .stat {
    background: rgb(255 255 255 / .15);
    padding: 20px;
    border-radius: 10px;
    min-width: 150px;
    text-align: center;
    backdrop-filter: blur(10px)
}

.courses-hero .stat h3 {
    font-size: 2.5rem;
    margin-bottom: 5px;
    color: #ffd166
}

.courses-hero .stat p {
    font-size: .9rem;
    opacity: .9
}

@media (max-width:768px) {

    .age-cards,
    .teachers-grid,
    .testimonials-grid {
        grid-template-columns: 1fr
    }

    .faq-question h3 {
        font-size: 1.1rem
    }

    .trial-form {
        padding: 20px
    }

    .kids-content h2 {
        font-size: 2.2rem
    }

    .kids-actions {
        flex-direction: column
    }

    .btn-kids-primary,
    .btn-kids-secondary {
        width: 100%;
        justify-content: center
    }

    .courses-hero {
        padding: 60px 0 40px;
        min-height: auto
    }

    .courses-hero h1 {
        font-size: 1.8rem !important;
        margin-bottom: 12px
    }

    .courses-hero p {
        font-size: .9rem !important;
        margin-bottom: 20px;
        padding: 0 15px
    }

    .courses-hero .hero-stats {
        gap: 12px !important;
        margin-top: 20px !important
    }

    .courses-hero .stat {
        min-width: calc(50% - 20px) !important;
        padding: 10px 8px !important
    }

    .courses-hero .stat h3 {
        font-size: 1.2rem !important;
        margin-bottom: 2px !important
    }

    .courses-hero .stat p {
        font-size: .65rem !important;
        line-height: 1.3 !important
    }

    .courses-hero-bg-img {
        object-fit: cover !important;
        background-color: #1a5f7a
    }

    .trial-banner {
        padding: 25px 20px !important;
        margin: 30px 15px !important;
        border-radius: 12px !important
    }

    .trial-banner h3 {
        font-size: 1.2rem !important;
        margin-bottom: 10px !important
    }

    .trial-banner p {
        font-size: .8rem !important;
        margin-bottom: 15px !important;
        line-height: 1.4 !important
    }

    .trial-banner .enroll-btn {
        padding: 10px 18px !important;
        font-size: .85rem !important
    }
}

@media (max-width:576px) {
    .fees-section {
        padding: 60px 0
    }

    .fees-info {
        grid-template-columns: 1fr
    }

    .fee-price .amount {
        font-size: 3rem
    }

    .courses-hero {
        padding: 50px 0 30px
    }

    .courses-hero h1 {
        font-size: 1.5rem !important
    }

    .courses-hero .hero-stats {
        gap: 8px !important
    }

    .courses-hero .stat {
        min-width: calc(50% - 10px) !important;
        padding: 6px 5px !important
    }

    .courses-hero .stat h3,
    .trial-banner h3 {
        font-size: 1rem !important
    }

    .courses-hero .stat p {
        font-size: .55rem !important
    }

    .trial-banner {
        padding: 20px 15px !important;
        margin: 25px 10px !important
    }

    .trial-banner p {
        font-size: .75rem !important
    }

    .trial-banner .enroll-btn {
        padding: 8px 15px !important;
        font-size: .8rem !important
    }

    .course-header {
        padding: 30px 20px
    }

    .course-badge {
        position: relative;
        top: 0;
        right: 0;
        margin-bottom: 15px;
        display: inline-block
    }

    .price {
        font-size: 2.5rem
    }
}

.course-category-nav {
    background: #f8f9fa;
    padding: 20px 0;
    position: static !important;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgb(0 0 0 / .1)
}

.course-category-nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0
}

.course-category-nav a {
    padding: 10px 25px;
    background: #fff;
    border-radius: 30px;
    color: #00404d;
    text-decoration: none;
    font-weight: 500;
    transition: .3s;
    border: 2px solid #fff0
}

.course-category-nav a.active,
.course-category-nav a:hover {
    background: #00404d;
    color: #fff;
    border-color: #ffd166
}

.course-detail-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgb(0 0 0 / .1);
    margin-bottom: 60px;
    scroll-margin-top: 100px
}

.course-header {
    background: linear-gradient(135deg, #00404d 0, #002a33 100%);
    padding: 40px;
    color: #fff;
    position: relative
}

.course-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ffd166;
    color: #00404d;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: .9rem
}

.course-icon-large {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #ffd166
}

.course-duration {
    display: inline-block;
    background: rgb(255 255 255 / .1);
    padding: 8px 20px;
    border-radius: 20px;
    margin-top: 15px
}

.course-features,
.module {
    background: #f8f9fa
}

.course-content {
    padding: 40px
}

.course-modules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0
}

.module {
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #00404d
}

.course-features,
.course-pricing {
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0
}

.module h4 {
    color: #00404d;
    margin-bottom: 10px
}

.module ul {
    padding: 0;
    margin: 0
}

.module li {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef
}

.module li:last-child {
    border-bottom: none
}

.module li i {
    color: #06d6a0;
    margin-right: 10px
}

.course-features h4,
.course-pricing h4 {
    color: #00404d;
    margin-bottom: 20px
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px
}

.feature-item i {
    color: #ffd166;
    font-size: 1.2rem
}

.course-pricing {
    background: linear-gradient(135deg, #ffd166 0, #ffc043 100%)
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #00404d;
    margin: 20px 0
}

.price span {
    font-size: 1rem;
    color: #666
}

.enroll-btn {
    display: inline-block;
    background: #00404d;
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: .3s;
    margin-top: 20px
}

.enroll-btn:hover {
    background: #002a33;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgb(0 0 0 / .2)
}

.trial-banner {
    background: linear-gradient(135deg, #06d6a0 0, #04b486 100%);
    padding: 60px 40px;
    border-radius: 15px;
    color: #fff;
    margin: 80px 0
}

.trial-banner h3 {
    font-size: 2.5rem;
    margin-bottom: 20px
}

.trial-banner p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto
}

@media (max-width:576px) {
    .course-header {
        padding: 30px 20px
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgb(37 211 102 / .4);
    z-index: 1000;
    transition: .3s;
    animation: 3s ease-in-out infinite float
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgb(37 211 102 / .6)
}

.whatsapp-float i {
    animation: 2s infinite pulse
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.1)
    }
}

@media (max-width:768px) {
    .course-category-nav ul {
        flex-direction: column;
        align-items: center
    }

    .course-category-nav a {
        width: 90%;
        text-align: center
    }

    .course-content {
        padding: 20px
    }

    .course-modules {
        grid-template-columns: 1fr
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 26px
    }
}

@media (max-width:480px) {
    .teacher-info {
        padding: 20px
    }

    .faq-question {
        padding: 15px 20px
    }

    .faq-question h3 {
        font-size: 1rem
    }

    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 24px
    }
}

img {
    max-width: 100%;
    height: auto
}

img[loading=lazy] {
    background: #f0f0f0
}
/* --- Mobile Optimization for Hero Section --- */
@media (max-width: 768px) {
    /* Hero section ki faltu padding khatam karne ke liye */
    .hero-section {
        padding: 40px 10px !important;
    }

    /* Trust features ko buttons ki bajaye simple rows mein dikhane ke liye */
    .hero-features {
        display: flex;
        flex-direction: column; /* Ya 'row' agar icons chote hain */
        gap: 8px;
        margin-bottom: 20px;
    }

    .feature {
        background: rgba(255, 255, 255, 0.1) !important; /* Heavy background khatam */
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
        padding: 8px !important;
        min-height: auto !important;
        width: 100% !important;
    }

    .feature i {
        font-size: 14px !important;
    }

    .feature span {
        font-size: 13px !important;
    }

    /* Stats ko mobile par chupa dena behtar hai taake CTA button upar aa jaye */
    .hero-stats {
        display: none !important;
    }
}