@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&family=Amiri:wght@400;700&display=swap');


:root {
    --middle_blue: #26428b;
    --light_blue: #516ac8;
    --blue_opa: #c0cbf0;
    --light_bluewhite: #eef2ff;
    --dark_blue: #101b3b;
    --page_yellow: #e3af64;
    --light_yellow: #faebd7;
    --white_color: #ffffff;
    --dark_color: #000000;
    --red_color: #f7274a;
    --red_light: #ffd6dd;
    --border_color: #eee;
    --border_radius: 10px;
    --primary_font: "Tajawal", sans-serif;
    --sidebar_width: 290px;
    --surface_color: #f8f9ff;
    --muted_text: #6b7280;
    --glow_blue: rgba(81, 106, 200, 0.35);
    --glow_dark: rgba(16, 27, 59, 0.08);
    --transition: 0.35s ease-in-out;
    --Amiri_font: "Amiri", serif;
    --linear_yellow: linear-gradient(135deg, var(--page_yellow), var(--light_yellow));
    --linear_blue: linear-gradient(135deg, var(--middle_blue), var(--light_blue));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: var(--primary_font);
    list-style: none !important;
}

a{
    text-decoration: none !important;
}
ol , ul,
ul li , ol li{
    list-style: none !important;
}


#navbar_content.collapse_content_shadow{
    display: none !important;
}

.primary-btn ,.secondary-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, var(--middle_blue), var(--light_blue));
    border-radius: calc(var(--border_radius) * 1.5);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
    color: var(--white_color) !important;
    box-shadow: 0 15px 30px rgba(81, 106, 200, 0.3);
}
.secondary-btn{
    color: var(--dark_blue) !important;
    background: linear-gradient(135deg, var(--page_yellow), var(--page_yellow));
}
.primary-btn i{
    line-height: 0.4rem;
}
.primary-btn::before{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 200%;
    background: var(--linear_blue);
    height: 100%;
    transition: var(--transition);
    z-index: -1;
}
.secondary-btn::before{
    background: var(--linear_yellow);
}
.primary-btn:hover::before{
    left: -200%;
}
.home-navbar {
    background: var(--white_color);
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(16, 27, 59, 0.05);
}

header {
    background: var(--white_color) !important;
}


.home-navbar.scrolled {
    padding: 0.25rem 0;
    box-shadow: 0 6px 30px rgba(16, 27, 59, 0.12);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--dark_blue) !important;
}

.brand-text {
    font-family: var(--primary_font);
    color: var(--dark_blue);
}

.nav_item {
    color: var(--dark_blue);
    font-size: 15px;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
    display: flex;
    align-items: center;
    transition: var(--transition);
    justify-content: center;
}
.nav_item:hover{
    color: var(--light_blue);
}
.nav_item i {
    line-height: 0.3rem;
    margin-top: 6px;
    margin-right: 0.2rem;
    color: var(--page_yellow);
}

.nav_item.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: var(--middle_blue);
    border-radius: 20px;
}
.drop_menu{
    text-align: right;
    border: 1px solid var(--border_color);
    border-radius: var(--border_radius);
    padding: 0;
    overflow: hidden;
    top: 100% !important;
    transform: none !important;
    left: auto !important;
    right: 0 !important;
}
.drop_menu.dropUser{
    left: 50% !important;
    transform: translateX(-50%) !important;
    min-width: 14rem;
    right: auto !important;
}
.item_dropnav{
    color: var(--dark_blue);
    transition: var(--transition);
    text-decoration: none;
    padding: 8px 1rem;
    position: relative;
    background: transparent;
    overflow: hidden;
    margin: 0;
    z-index: 1;
    font-size: 14px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border_color);
    gap: 0.3rem;
}
.item_dropnav i{
    line-height: 0.4rem;
    color: var(--light_blue);
}
.logout_link{
    color: var(--red_color) !important;
}

.item_dropnav:hover{
    background: #e9edff;
    color: var(--light_blue);
}
.logout_link:hover{
    opacity: 0.8;
    background: var(--red_light);
}

.user_info{
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 0.7rem;
}
.user_data{
    transition: var(--transition);
    border-bottom: 1px solid var(--border_color);
    overflow: hidden;
    position: relative;
    margin: 0;
    color: var(--dark_blue);
    padding: 8px 1rem;
}
.data_abs{
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.badge_role{
    color: var(--light_blue);
}
.userinfo_item  ,.badge_role{
    font-size: 13px;
    font-weight: 500;
}
.noran-logo {
    overflow: hidden;
    width: 120px;
    border-radius: 10px;
}

.noran-logo img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}


.banner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 110px;
    padding: 100px 0;
    background: url(/Img/Mosque.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom 30% right 0;
    position: relative;
}

.banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.banner-text {
    text-align: center;
    z-index: 2;
}

.banner-text h1 {
    font-size: 4rem;
    color: var(--page_yellow);
    font-weight: 600;
}

.banner-text h5 {
    margin: 0;
}

.banner-text p {
    font-size: 1.3rem;
    margin: 5px 0;
    color: #fff;
}

.banner-text span {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    flex-direction: row-reverse;
    color: #fff;
}

.banner-text a {
    font-size: 1.2rem;
    color: #fff;
    transition: all 0.3s ease;
}

.banner-text a:hover {
    color: var(--page_yellow);
}

/* Footer */
.footer-section {
    background: var(--dark_blue);
    color: var(--white_color);
    text-align: right;
    padding: 50px 0 30px 0 !important;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 1rem 0;
    color: var(--white_color);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white_color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--page_yellow);
    padding-right: 0.5rem;
}
.copyright_link{
    color: var(--page_yellow);
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white_color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--page_yellow);
    color: var(--dark_blue);
    transform: translateY(-5px);
}

.contact-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info i {
    color: var(--page_yellow);
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    padding-top: 2rem;
    margin: 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* home page */

/* Navigation - Minimal Design */
.navbar-minimal {
    background: var(--white_color);
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(16, 27, 59, 0.1);
    transition: all 0.3s ease;
}

.navbar-minimal.scrolled {
    padding: 0.75rem 0;
    box-shadow: 0 2px 10px rgba(16, 27, 59, 0.05);
}

.logo-minimal {
    width: 80px;
    border-radius: 12px;
}

.nav-link-minimal {
    color: var(--dark_blue) !important;
    font-weight: 500;
    padding: 0.5rem 1.25rem !important;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link-minimal::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 0;
    height: 2px;
    background: var(--page_yellow);
    transition: width 0.3s ease;
}

.nav-link-minimal:hover::before,
.nav-link-minimal.active::before {
    width: 60%;
}

.btn-cta {
    background: var(--dark_blue);
    color: var(--white_color);
    border: none;
    padding: 0.6rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: var(--middle_blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(38, 66, 139, 0.3);
    color: var(--white_color);
}

/* Hero Section - Split Screen Design */
/*.islamic_shape {
    position: absolute;
    background: url('/Img/shape_5.png');
    background-size: contain;
    background-repeat: repeat-x;
    bottom: -40px;
    width: 100%;
    height: 80px;
    z-index: 1;
}*/
.islamic_shape {
    position: absolute;
    background-image: url('/Img/shape_5.png');
    background-repeat: repeat-x;
    background-size: calc(100% / 1) 100%;
    background-position: center bottom;
    bottom: -40px;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 397px;
    margin: auto;
    height: 80px;
    z-index: 1;
}


.hero-split {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    position: relative;
}

.hero-left {
    background: linear-gradient( 135deg, var(--dark_blue) 0%, var(--middle_blue) 100% );
    color: var(--white_color);
    padding: 5rem 3rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

    .hero-left::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url(/Img/download.jpg) no-repeat;
        background-size: cover;
        opacity: 0.1;
    }

.hero-left-content {
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    background: rgba(227, 175, 100, 0.2);
    color: var(--page_yellow);
    padding: 0.4rem 1.2rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(227, 175, 100, 0.3);
}

.hero-title-split {
    font-size: 3.1rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white_color);
}

    .hero-title-split .highlight {
        color: var(--page_yellow);
        position: relative;
    }

        .hero-title-split .highlight::after {
            content: "";
            position: absolute;
            bottom: 5px;
            right: 0;
            width: 100%;
            height: 8px;
            background: rgba(227, 175, 100, 0.3);
            z-index: -1;
        }

.hero-desc-split {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary-split {
    background: var(--page_yellow);
    color: var(--dark_blue);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

    .btn-primary-split:hover {
        background: #f4c430;
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(227, 175, 100, 0.4);
        color: var(--dark_blue);
    }

.btn-outline-split {
    background: transparent;
    color: var(--white_color);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

    .btn-outline-split:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: var(--white_color);
        color: var(--white_color);
    }

.hero-right {
    background: var(--light_yellow);
    padding: 5rem 3rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-image-split {
    position: relative;
    z-index: 2;
}

    .hero-image-split img {
        width: 100%;
        max-width: 500px;
        border-radius: 20px;
    }

.floating-stats {
    position: absolute;
    background: var(--white_color);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(16, 27, 59, 0.15);
    z-index: 3;
}

    .floating-stats .number {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--middle_blue);
        display: block;
    }

    .floating-stats .label {
        font-size: 0.9rem;
        color: var(--muted_text);
    }

.stat-1 {
    top: 15%;
    left: -5%;
    animation: floatStat 4s ease-in-out infinite;
}

.stat-2 {
    bottom: 20%;
    right: -5%;
    animation: floatStat 5s ease-in-out infinite;
}

@keyframes floatStat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Features - Timeline Style */
.features-timeline {
    padding: 70px 0 0;
    background: var(--white_color);
    position: relative;
}

.section-header-minimal {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title-minimal {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--dark_blue);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title-minimal::after {
    content: "";
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--page_yellow), var(--light_blue));
    border-radius: 2px;
}

.section-subtitle-minimal {
    font-size: 1.2rem;
    color: var(--muted_text);
    max-width: 600px;
    margin: 1rem auto 0;
}

.timeline-container {
    position: relative;
    padding: 1rem 0;
}

.timeline-line {
    position: absolute;
    right: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--middle_blue), var(--light_blue));
    transform: translateX(50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 1.2rem;
}

.timeline-content {
    background: var(--page_yellow);
    border: 0 solid var(--light_yellow);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(16, 27, 59, 0.08);
    transition: all 0.4s ease;
    position: relative;
    clip-path: polygon(6.9% 0%, 94% 0%, 100% 14.3%, 100% 86.3%, 93.6% 100%, 6.8% 100%, 0.2% 84.8%, 0% 16.3%);
}

.timeline-content:hover {
    transform: translateX(-10px);
    border-color: var(--middle_blue);
    box-shadow: 0 20px 40px rgba(16, 27, 59, 0.15);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 50%;
    padding-right: 3rem;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 50%;
    padding-left: 3rem;
}

.timeline-icon {
    position: absolute;
    right: 50%;
    transform: translateX(50%);
    width: 70px;
    height: 70px;
    /*background: linear-gradient(135deg, var(--middle_blue), var(--light_blue));*/
    /*border-radius: 50%;*/
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white_color);
    font-size: 2rem;
    /*box-shadow: 0 10px 25px rgba(81, 106, 200, 0.3);*/
    z-index: 2;
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--dark_blue);
    margin-bottom: 0;
}

.timeline-content p {
    color: var(--muted_text);
    line-height: 1.8;
    font-size: 1.05rem;
    display: none;
}

/* Stats - Horizontal Cards */
.stats-horizontal {
    padding: 80px 0;
    background: linear-gradient(135deg,
            var(--surface_color),
            var(--light_yellow));
}

.stat-card-horizontal {
    background: var(--white_color);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(16, 27, 59, 0.1);
    transition: all 0.4s ease;
    border-top: 4px solid var(--middle_blue);
    height: 100%;
}

.stat-card-horizontal:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(16, 27, 59, 0.15);
    border-top-color: var(--page_yellow);
}

.stat-icon-horizontal {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--middle_blue), var(--light_blue));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white_color);
    font-size: 2rem;
}

.stat-number-horizontal {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark_blue);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label-horizontal {
    font-size: 1.1rem;
    color: var(--muted_text);
    font-weight: 500;
}

/* Courses - Masonry Style */
.courses-masonry {
    padding: 100px 0;
    background: var(--white_color);
}

.course-card-masonry {
    background: var(--white_color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(16, 27, 59, 0.1);
    transition: all 0.4s ease;
    margin-bottom: 2rem;
    border: 1px solid rgba(16, 27, 59, 0.05);
    height: 100%;
}

.course-card-masonry:hover {
    transform: scale(1.03);
    box-shadow: 0 25px 50px rgba(16, 27, 59, 0.2);
}

.course-image-masonry {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.course-image-masonry::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(16, 27, 59, 0.7), transparent);
}

.course-badge-masonry {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--linear_yellow);
    color: var(--dark_blue);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 2;
}

.course-content-masonry {
    padding: 2rem;
}

.course-content-masonry h3 {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--dark_blue);
    margin-bottom: 1rem;
}

.course-content-masonry p {
    color: var(--muted_text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.course-footer-masonry {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light_yellow);
}

.course-meta-masonry {
    display: flex;
    gap: 1.5rem;
    color: var(--muted_text);
    font-size: 0.9rem;
}

.course-meta-masonry i {
    color: var(--middle_blue);
}

.btn-course {
    background: var(--dark_blue);
    color: var(--white_color);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-course:hover {
    background: var(--middle_blue);
    color: var(--white_color);
    transform: translateY(-2px);
}

/* Testimonials - Grid with Quotes */
.testimonials-grid {
    padding: 80px 0 30px;
    background: linear-gradient(135deg, var(--dark_blue), var(--middle_blue));
    color: var(--white_color);
}

.testimonial-card-grid {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
}

.testimonial-card-grid::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 6rem;
    color: rgba(227, 175, 100, 0.3);
    font-family: serif;
    line-height: 1;
}

.testimonial-card-grid:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--page_yellow);
}

.testimonial-rating-grid {
    color: var(--page_yellow);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.testimonial-text-grid {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.testimonial-author-grid {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.author-avatar-grid {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--page_yellow);
    object-fit: cover;
}

.author-info-grid strong {
    display: block;
    color: var(--white_color);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info-grid span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* CTA - Minimal Design */
.cta-minimal {
    padding: 100px 0;
    background: var(--light_yellow);
    text-align: center;
    /* background: linear-gradient(135deg, var(--surface_color), var(--white_color)); */

}

.cta-content-minimal {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content-minimal h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark_blue);
    margin-bottom: 1.5rem;
}

.cta-content-minimal p {
    font-size: 1.3rem;
    color: var(--muted_text);
}

.verse-minimal {
    background: var(--white_color);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    border-right: 4px solid var(--page_yellow);
    margin-bottom: 2rem;
    display: inline-block;
}

.verse-minimal .verse-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark_blue);
    margin-bottom: 0.5rem;
}

.verse-minimal .verse-ref {
    color: var(--muted_text);
    font-size: 0.95rem;
    margin: 0;
}

.footer-minimal {
    background: var(--dark_blue);
    color: var(--white_color);
    padding: 60px 0 30px;
    position: relative;
    z-index: 1;
}

.footer_shadow {
    position: absolute;
    left: 0;
    top: 0;
    width: 190px;
    height: 100%;
    z-index: -1;
}

    .footer_shadow img {
        width: 100%;
        height: 400px;
        object-fit: cover;
    }

.footer_shadow2 {
    position: absolute;
    right: 0;
    top: 0;
    width: 190px;
    height: 100%;
    z-index: -1;
}

    .footer_shadow2 img {
        width: 100%;
        height: 400px;
        object-fit: cover;
    }

.footer-minimal h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--page_yellow);
}

.footer-links-minimal {
    list-style: none;
    padding: 0;
}

.footer-links-minimal li {
    margin-bottom: 0.75rem;
}

.footer-links-minimal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links-minimal a:hover {
    color: var(--page_yellow);
    padding-right: 0.5rem;
}

.social-minimal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-link-minimal {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white_color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}
.social-link-minimal i{
    line-height: 0.4rem;
}
.social-link-minimal:hover {
    background: var(--page_yellow);
    color: var(--dark_blue);
    transform: translateY(-5px);
}

.copyright-minimal {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */

/*------------------------------*/
/*---------courses page---------*/
/*------------------------------*/

/* courses section */
.nav-pills {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.tab-content {
    display: flex;
    justify-content: center;
}

.courses-link {
    position: relative;
    font-size: 1.2rem;
    background-color: transparent;
    padding: 5px 15px;
    transition: all ease 0.3s;
    font-weight: 500;
    color: var(--dark_blue);
    border: none;
    box-shadow: 0 0 0 4px #516ac81a !important;
}

.courses-link.active {
    color: var(--white_color);
    transition: all ease 0.3s;
    
}

.courses-link.active::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--light_blue);
    z-index: -1;
    transition: all ease 0.3s;
}

.courses-item {
    position: relative;
    overflow: hidden;
    border: solid 1px var(--light_blue);
    border-radius: 10px;
    box-shadow: 0 0 0 4px #516ac81a !important;
    z-index: 1;
}

/* الدائرة قبل الظهور */
.courses-item::after {
    content: "";
    position: absolute;

    /* نخليها دايرة صغيرة في نص العنصر */
    width: 20px;
    height: 20px;
    background: var(--linear_blue);
    border-radius: 50%;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);

    transition: transform 0.8s ease;
    z-index: -1;
    /* تحت المحتوى */
}

/* عند الـ hover الدائرة تكبر */
.courses-item:hover::after {
    /* تكبير كبير كفاية لتغطية العنصر كله */
    transform: translate(-50%, -50%) scale(10);
}

.courses-item:hover button {
    color: #fff;
}

.courses-box {
    padding: 50px 0;
    /* background: linear-gradient(135deg, rgba(217, 225, 255, 0.611) 0%, #fff 100%); */
}

.courses-box .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.header_box{
    border: 1px solid var(--page_yellow);
    background: linear-gradient(135deg, rgba(255, 246, 217, 0.611) 0%, #fff 100%);
    box-shadow: 0 0 0 4px #e3af641a !important;
    border-radius: calc(var(--border_radius) *2);
    padding: 20px;
}


















.course-card {
    background: var(--white_color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    /* border: 1px solid rgba(16, 27, 59, 0.05); */
    box-shadow: 0 10px 30px rgba(16, 27, 59, 0.08);
    height: 100%;
    display: flex;
    border: 1px solid var(--blue_opa);
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(16, 27, 59, 0.15);
}

.course-image {
    height: 200px;
    background: linear-gradient(135deg, var(--middle_blue), var(--light_blue));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.course-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(38, 66, 139, 0.8),
            rgba(81, 106, 200, 0.8));
    z-index: 0;
}

.course-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent 50%);
    animation: shimmer 3s linear infinite;
}

.course-icon {
    font-size: 4rem;
    color: var(--white_color);
    opacity: 0.95;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.course-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--linear_yellow);
    color: var(--dark_blue);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.course-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    /* background: linear-gradient(135deg, rgba(217, 225, 255, 0.611) 0%, #fff 100%); */
    background: var(--white_color);
}

.course-content h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--dark_blue);
    margin-bottom: 0.75rem;
}

.course-content p {
    color: var(--muted_text);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.course-meta {
    font-size: 0.9rem;
    color: var(--muted_text);
    margin-bottom: 1rem;
}

.course-meta i {
    color: var(--middle_blue);
    margin-left: 0.3rem;
}














.page_title_kids{
    padding: 190px 0 20px;
    align-content: center;
    min-height: 25vh;
    position: relative;
    text-align: center;
    background: url(/Img/page_title.jpg) center center/cover no-repeat ;
}
.page_title_kids::before{
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(45deg , var(--dark_blue) 10% , #516ac8d0 90%);
}
.page_title_kids *{
    z-index: 1;
}
.page_title_row{
    max-width: 650px;
    margin: auto;
    position: relative;
    z-index: 2;
}
.page_title_text{
    color: var(--white_color);
    font-weight: 600;
    transition: var(--transition);
}
.page_description{
    font-size: 20px;
    font-weight: 400;
    color: var(--white_color);
}













/* ===== Contact Section ===== */
.contact_sec {
    padding: 50px 0;
    background: var(--white_color);
    /* background: linear-gradient(135deg, rgba(217, 225, 255, 0.611) 0%, #fff 100%); */
    position: relative;
    overflow: hidden;
}

/* .contact_sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(73, 187, 117, 0.05) 0%, rgba(0, 135, 52, 0.05) 100%);
    z-index: 0;
} */

.contact_sec .container {
    position: relative;
    z-index: 1;
}


.header_subtitle{
    background: var(--linear_yellow);
    color: var(--dark_blue);
    padding: 10px 18px;
    border-radius: calc(var(--border_radius) * 1.3);
    display: inline-block;
    margin: 10px;
}
.header_title{
    font-size: 30px;
    line-height: 2;
    font-weight: 500;
    color: transparent;
    background: var(--linear_blue);
    -webkit-background-clip: text;
}
.header_desc{
    color: var(--muted_text);
    font-size: 18px;
    font-weight: 500;
}


/* Contact Info Cards */
.contact_info_card {
    background: linear-gradient(135deg, rgba(217, 225, 255, 0.611) 0%, #fff 100%);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--blue_opa);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.contact_info_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--linear_blue);
    transition: transform 0.3s ease;
}

.contact_info_card:hover {
    transform: translateY(-8px);
    border-color: var(--light_blue);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}
.contact_info_card:hover::before{
    background: var(--linear_blue);
}

.contact_info_icon {
    width: 70px;
    height: 70px;
    background: var(--linear_blue);
    border-radius: calc(var(--border_radius) * 1.5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.contact_info_icon::before{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 200%;
    background: var(--linear_blue);
    height: 100%;
    transition: var(--transition);
    z-index: -1;
    opacity: 0;
}

.contact_info_icon i {
    font-size: 30px;
    line-height: 0.5rem;
    color: var(--white_color);
    transition: var(--transition);
}

.contact_info_card:hover .contact_info_icon{
    border-color: var(--light_blue);
    transform: scale(1.06);
}
.contact_info_card:hover .contact_info_icon::before {
    opacity: 1;
    left: -100%;
}

.contact_info_title {
    font-size: 20px;
    font-weight: 500;
    color: var(--light_blue);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.contact_info_card:hover .contact_info_title {
    color: var(--page_yellow);
}

.contact_info_desc {
    font-size: 20px;
    color: var(--muted_text);
    line-height: 1.6;
    margin-bottom: 8px;
}

.contact_info_desc:last-child {
    margin-bottom: 0;
}

.contact_link {
    color: var(--primary_color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact_link:hover {
    color: var(--light_blue);
    text-decoration: none;
}
.title_contactinfo{
    font-size: 20px;
    font-weight: 500;
    color: var(--page_yellow);
    border-bottom: 1px solid var(--blue_opa);
    padding-bottom: 15px;
}
.title_contactinfo .title_coninf{
    font-size: 14px;
    display: block  ;
    margin-top: 8px;
}
.image_contact{
    overflow: hidden;
    border-radius: calc(var(--border_radius) * 2);
}
/* Contact Form */
.contact_form_wrapper {
    background: var(--white_color);
    background: linear-gradient(135deg, rgba(255, 246, 217, 0.611) 0%, #fff 100%);
    border-radius: 20px;
    padding: 20px 30px 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--page_yellow);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.contact_form_wrapper:hover{
    border-color: var(--page_yellow);
}
.contact_form_wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--leaner_primary_color);
}

.form_label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--muted_text);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.form_group:focus-within .form_label {
    color: var(--primary_color);
}

.form-control,
.form_textarea,
.custom-select {
    width: 100%;
    padding: 8px 18px;
    border: 1px solid var(--light_yellow);
    border-radius: calc(var(--border_radius) * 1.2);
    font-size: 16px;
    box-shadow: none !important;
    font-weight: 500;
    font-family: var(--arabic-font);
    background: var(--white_color);
    transition: all 0.3s ease;
    color: var(--muted_text);
}

.form-control:focus,
.form_textarea:focus,
.custom-select:focus {
    outline: none;
    border-color: var(--page_yellow);
    background: var(--white_color);
    box-shadow: 0 0 0 4px #c8ac511a !important;
}

.form-control::placeholder,
.form_textarea::placeholder {
    color: var(--light_blue);
    font-size: 14px;
    font-weight: 500;
}

.form_textarea {
    resize: vertical;
    min-height: 120px;
}


.contact_form .btn_default i {
    margin-right: 8px;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .contact_sec {
        padding: 60px 0;
    }
    
    .contact_form_wrapper {
        padding: 30px 25px;
    }
    
    .contact_info_card {
        padding: 25px 20px;
    }
    
    .contact_info_icon {
        width: 60px;
        height: 60px;
    }
    
    .contact_info_icon i {
        font-size: 24px;
    }
}

@media (max-width: 767.98px) {
    .contact_info_card {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    .contact_sec {
        padding: 40px 0;
    }
    
    .contact_form_wrapper {
        padding: 25px 20px;
    }
    
  
}

@media (max-width: 575.98px) {
    .contact_form_wrapper {
        padding: 20px 15px;
    }
    
    .contact_info_card {
        padding: 20px 15px;
    }
    
    .contact_info_icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    
}








/* faq */
.faq-section {
    background: var(--white_color);
}

.faq-badge {
    display: inline-block;
    background: rgba(227, 175, 100, 0.18);
    color: var(--page_yellow);
    padding: 8px 18px;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid rgba(227, 175, 100, 0.4);
}

.faq-title {
    color: var(--dark_blue);
    font-weight: 800;
    margin: 16px 0 10px;
}

.faq-subtitle {
    color: var(--muted_text);
    max-width: 600px;
    margin: 0 auto;
}

.faq-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border_color);
    padding: 20px;
}

.faq-card-header {
    padding: 10px 14px;
    border-radius: 12px;
    background: linear-gradient(135deg,
            var(--light_yellow),
            rgba(81, 106, 200, 0.08));
    color: var(--dark_blue);
    margin-bottom: 15px;
}
.faq-card-header h4{
    font-size: 18px;
    font-weight: 500;
}
.accordion-item {
    border: 1px solid var(--border_color) !important;
    border-radius: 12px !important;
    overflow: hidden;
    margin-bottom: 10px;
}

.accordion-button {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark_blue);
    background: var(--white_color);
}

.accordion-button:not(.collapsed) {
    color: var(--dark_blue);
    background: rgba(81, 106, 200, 0.08);
    box-shadow: none;
}

.accordion-button::after {
    margin-left: 0;
    margin-right: auto;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(81, 106, 200, 0.25);
    border-color: var(--light_blue);
}

.accordion-body {
    color: var(--muted_text);
    line-height: 1.7;
}




















/* course details */

.course-details {
    padding: 80px 0;
    background-color: var(--bg-color-1);
}

.course-details-right {
    border: solid 1px var(--blue_opa);
    padding: 20px;
    border-radius: var(--border_radius);
    background-color: var(--white_color);
}

.course-details-right figure {
    width: 100%;
    overflow: hidden;
    border-radius: var(--border_radius);
}

.course-details-right img {
    width: 100%;
}

.course-details-right p {
    font-size: 1.1rem;
}

.btn_default {
    background-color: var(--dark_blue);
    overflow: hidden;
    position: relative;
    display: inline-block;
    z-index: 1;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 16px;
    margin: 8px;
    letter-spacing: 0px;
    padding: 17px 30px 14px 30px;
    border-style: solid;
    border-width: 0px 0px 3px 0px;
    border-color: #c39537;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
}

.anothe_Courses {
    list-style: none;
    padding: 10px;
    border-radius: calc(var(--border_radius) * 1.5);
    border: 1px solid var(--blue_opa);
}

.anothe_Courses li {
    font-size: 16px;
    font-weight: 500;
    padding: 10px;
}

.anothe_Courses li:not(:last-child) {
    border-bottom: solid 1px var(--blue_opa);
}

.anothe_Courses a {
    text-decoration: none;
    display: inline-block;
    width: 100%;
    color: var(--page_yellow);
    transition: ease 0.3s all;
}

.anothe_Courses a:hover {
    color: var(--dark_blue);
}

.Course_contect_det h2 , 
.Course_contect_det h1 , 
.Course_contect_det h3 , 
.Course_contect_det h4 , 
.Course_contect_det h5 , 
.Course_contect_det h6{
    font-size: 20px;
    font-weight: 500;
    color: var(--light_blue);
}
.Course_contect_det p ,
.Course_contect_det a{
    font-size: 16px;
    font-weight: 500;
    color: var(--dark_blue);
}
.Course_contect_det li{
    font-size: 16px;
    font-weight: 500;
    color: var(--dark_blue);
}
.Course_contect_det li:not(:last-child){
    border-bottom: 1px solid var(--border_color);
}
.Course_contect_det img{
    max-width: 100%;
}
















/* about us  */

.section-gap {
  padding: 90px 0;
}

.section-title {
  font-weight: 800;
  color: var(--dark_blue);
  margin-bottom: 18px;
  text-align: center;
}

.section-subtitle {
  color: var(--muted_text);
  max-width: 720px;
  text-align: center;
}

.about-hero {
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(16, 27, 59, 0.08);
  padding: 40px;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 20% 20%,
      var(--glow_blue),
      transparent 45%
    ),
    radial-gradient(
      circle at 80% 10%,
      rgba(227, 175, 100, 0.2),
      transparent 40%
    );
  z-index: 0;
}

.about-hero .content {
  position: relative;
  z-index: 1;
}

.about-hero h2 {
  color: var(--dark_blue);
  font-weight: 800;
}

.about-hero p {
  color: #000;
}
.stat-card p {
  color: #fff;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--light_yellow);
  color: var(--dark_blue);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 16px;
}

.pill i {
  color: var(--page_yellow);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.about-card {
  background: var(--white_color);
  border: 1px solid var(--border_color);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 16px 30px rgba(16, 27, 59, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 40px rgba(16, 27, 59, 0.09);
}

.about-card i {
  font-size: 1.6rem;
  color: var(--middle_blue);
  background: rgba(81, 106, 200, 0.08);
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.about-card h5 {
  color: var(--dark_blue);
  font-weight: 700;
  margin-bottom: 10px;
}

.about-card p {
  color: var(--muted_text);
  line-height: 1.7;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  margin-top: 24px;
}

.stat-card {
  background: linear-gradient(135deg, var(--middle_blue), var(--light_blue));
  color: var(--white_color);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 20px 30px rgba(81, 106, 200, 0.28);
  text-align: center;
  z-index: 1;
}

.stat-card h3 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.feature-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  border: 1px solid var(--border_color);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: 0 16px 30px rgba(16, 27, 59, 0.06);
}

.feature-card .icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(227, 175, 100, 0.15);
  color: var(--page_yellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.cta-section {
  background: linear-gradient(120deg, var(--dark_blue), var(--middle_blue));
  color: var(--white_color);
  border-radius: 18px;
  padding: 40px 30px;
  box-shadow: 0 25px 40px rgba(16, 27, 59, 0.14);
}

.cta-section .btn {
  background: var(--page_yellow);
  color: var(--dark_blue);
  font-weight: 700;
  border: none;
}

.cta-section .btn:hover {
  background: #f0c07b;
}

.team-card {
  text-align: center;
  background: #fff;
  border: 1px solid var(--border_color);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 16px 30px rgba(16, 27, 59, 0.06);
}

.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 12px auto;
  background: rgba(81, 106, 200, 0.12);
  display: grid;
  place-items: center;
  font-size: 2rem;
  color: var(--middle_blue);
  font-weight: 800;
}
.about-us-our-message figure {
  overflow: hidden;
  border-radius: 15px;
}
.about-us-our-message img {
  object-fit: cover;
  width: 100%;
  height: 550px;
  object-position: center;
}

.section-gap {
  padding: 90px 0;
}

.section-title {
  font-weight: 800;
  color: var(--dark_blue);
  margin-bottom: 18px;
}

.section-subtitle {
  color: var(--muted_text);
  max-width: 720px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.about-card {
  background: var(--white_color);
  border: 1px solid var(--border_color);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 12px 25px rgba(16, 27, 59, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(16, 27, 59, 0.08);
}

.about-card i {
  font-size: 1.5rem;
  color: var(--middle_blue);
  background: rgba(81, 106, 200, 0.08);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.about-card h5 {
  color: var(--dark_blue);
  font-weight: 700;
  margin-bottom: 8px;
}

.about-card p {
  color: var(--muted_text);
  line-height: 1.7;
  margin-bottom: 0;
}

.team-card {
  text-align: center;
  background: #fff;
  border: 1px solid var(--border_color);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 16px 30px rgba(16, 27, 59, 0.06);
  height: 100%;
}

.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 12px auto;
  background: rgba(81, 106, 200, 0.12);
  display: grid;
  place-items: center;
  font-size: 2rem;
  color: var(--middle_blue);
  font-weight: 800;
}

/* Swiper for team section */
.team-swiper {
  padding-bottom: 36px;
}
.team-swiper .swiper-wrapper {
  align-items: stretch;
}
.team-swiper .swiper-slide {
  height: auto;
}
.team-swiper .swiper-pagination-bullet {
  background: var(--middle_blue);
  opacity: 0.4;
}
.team-swiper .swiper-pagination-bullet-active {
  background: var(--page_yellow);
  opacity: 1;
}









/* pricing */

/* Pricing page styles (kept locally as requested) */
.pricing-hero {
  background: linear-gradient(
      135deg,
      rgba(16, 27, 59, 0.65),
      rgba(81, 106, 200, 0.55)
    ),
    url("/Image/Mosque.jpg");
  background-size: cover;
  background-position: center;
  padding: 140px 0 110px;
  margin-top: 96px;
  position: relative;
  color: var(--white_color);
}
.pricing-hero .hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 600;
}
.pricing-hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin: 18px 0 12px;
}
.pricing-hero p {
  max-width: 620px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}
.pricing-section {
  background: var(--bg-color-1);
  padding: 80px 0;
}
.pricing-section .section-head {
  text-align: center;
  margin-bottom: 50px;
}
.pricing-section .section-head h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--dark_blue);
  margin-bottom: 12px;
}
.pricing-section .section-head p {
  color: var(--muted_text);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.8;
}
.pricing-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 20px 45px rgba(16, 27, 59, 0.12);
  border: 1px solid rgba(16, 27, 59, 0.08);
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 55px rgba(16, 27, 59, 0.16);
}
.pricing-card .badge-popular {
  position: absolute;
  top: 18px;
  left: 18px;
  background: linear-gradient(135deg, var(--page_yellow), #f4c430);
  color: var(--dark_blue);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
}
.pricing-card h3 {
  font-weight: 800;
  color: var(--dark_blue);
  margin-bottom: 10px;
  font-size: 1.4rem;
}
.pricing-price {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--middle_blue);
  margin: 10px 0 6px;
}
.pricing-price span {
  font-size: 1rem;
  color: var(--muted_text);
  font-weight: 500;
}
.pricing-desc {
  color: var(--muted_text);
  line-height: 1.7;
  margin-bottom: 20px;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark_blue);
  font-weight: 600;
}
.pricing-features li i {
  color: var(--page_yellow);
  font-size: 1.1rem;
}
.pricing-btn {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: none;
  font-weight: 700;
  font-size: 1rem;
  background: linear-gradient(135deg, var(--middle_blue), var(--light_blue));
  color: #fff;
  box-shadow: 0 15px 30px rgba(81, 106, 200, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pricing-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(81, 106, 200, 0.35);
}
.feature-grid {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(217, 225, 255, 0.45), #fff);
}
.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  border: 1px solid rgba(16, 27, 59, 0.08);
  box-shadow: 0 15px 40px rgba(16, 27, 59, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(16, 27, 59, 0.16);
}
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--middle_blue), var(--light_blue));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
}



/* =========================== */
/* policy and terms */
/* =========================== */
.policy-section {
    background: #f7f9fc;
    padding: 60px 0;
    display: flex;
    justify-content: center;
}

.policy-container {
    width: 90%;
    max-width: 900px;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.policy-title {
    font-size: 30px;
    color: #005bbf;
    margin-bottom: 25px;
    text-align: center;
}

.policy-container h3 {
    color: #0b63c9;
    margin-top: 30px;
    font-size: 22px;
}

.policy-container p {
    font-size: 17px;
    color: #333;
    margin: 10px 0 20px;
    line-height: 1.9;
}

.policy-container ul {
    padding-right: 25px;
    margin: 10px 0 25px;
}

    .policy-container ul li {
        margin-bottom: 10px;
        font-size: 16px;
        line-height: 1.7;
        color: #444;
    }



/* ========================== */
/* teachers */
/* ========================== */

.teachers-section {
    background: var(--surface_color);
    font-family: var(--primary_font);
}

.teachers-title {
    font-size: 32px;
    color: var(--middle_blue);
    font-weight: 700;
}

.teachers-desc {
    font-size: 17px;
    color: var(--muted_text);
}

/* Card */
.teacher-card {
    background: var(--white_color);
    border-radius: var(--border_radius);
    box-shadow: 0 8px 20px var(--glow_dark);
    transition: var(--transition);
    cursor: pointer;
}

    .teacher-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 10px 25px var(--glow_blue);
    }

/* Image circle */
.teacher-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--blue_opa);
}

    .teacher-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.teacher-name {
    font-size: 22px;
    color: var(--dark_blue);
    margin-bottom: 5px;
}

.teacher-subject {
    font-size: 16px;
    color: var(--light_blue);
    font-weight: 600;
}

/* card teacher modal */
.btn-primary {
    background: var(--middle_blue);
    border: none;
    padding: 10px 18px;
    border-radius: var(--border_radius);
    transition: var(--transition);
}

    .btn-primary:hover {
        background: var(--light_blue);
        transform: translateY(-2px);
    }
