:root {
    --primary_color: #26428B;
    --accent_color: #516AC8;
    --third_color: #101B3B;
    --yello_light: #E2AF63;
    --yello_dark: #7C6036;
    --dark_color: #1A1A1A;
    --white_color: #ffffff;
    --text_color: #424242;
    --bg_card: #FBF4EA;
    --radius: 10px;
    --border_color: #E2AF63;
    --heading_font: "Denton";
    --body_font: "dona";
    --transition: 0.35s ease-in-out;
    --red_color: #f7274a;
    --red_light: #ffd6dd;
    --blue_opa: #c0cbf0;
    --light_bluewhite: #eef2ff;
    --border_gray: #101B3B1F;
    --surface_color: #f8f9ff;
}

::selection {
    color: var(--white_color);
    background: var(--accent_color);
}

/* ::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    opacity: 0;
} */

* {
    padding: 0;
    margin: 0;
    list-style: none;
    transition: var(--transition);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body_font);
    color: var(--text_color);
}

a {
    text-decoration: none !important;
}

.link_abs {
    position: absolute;
    inset: 0;
    z-index: 20;
}

ul,
ol {
    list-style: none !important;
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading_font);
}

#navbar_content.collapse_content_shadow {
    display: none !important;
}

.container {
    max-width: 1520px !important;
}

section,
header,
footer, body {
    position: relative;
    z-index: 1;
    scroll-margin-top: 100px;
}

    body::before {
        content: "";
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        background: url(../../Img/body_bg.png) center center/contain repeat;
        opacity: 0.05;
        z-index: -1;
    }
/* section::before,
header::before,
footer::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: url(../../Img/body_bg.png) center center/contain repeat;
    opacity: 0.05;
    z-index: -1;
} */

/*-----------------------------*/
/*---------- NavBar -----------*/
/*-----------------------------*/
.home-navbar {
    /* background: var(--white_color); */
    padding: 1rem 1rem;
    transition: all 0.3s ease;
    z-index: 1000;
    background: transparent;
}

#home_navbar.show {
    background: var(--white_color);
    padding: 0 0.5rem;
    /* position: fixed !important;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999999999999999; */
}

.home-navbar .container {
    border-bottom: 1px solid var(--border_gray);
}

/* header {
    background: var(--white_color) !important;
} */

.home-navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 6px 30px rgba(16, 27, 59, 0.12);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary_color) !important;
}


.nav_item {
    color: #1A1A1ACC;
    font-size: 16px;
    font-weight: 300;
    padding: 0.5rem !important;
    position: relative;
    display: flex;
    align-items: center;
    transition: var(--transition);
    justify-content: center;
}

    .nav_item::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        transition: var(--transition);
        background: var(--third_color);
        border-radius: var(--radius);
    }

    .nav_item:hover::before,
    .nav_item.active::before {
        width: 100%;
    }

    .nav_item:hover,
    .nav_item.active {
        font-size: 18px;
        font-weight: 600;
        color: var(--third_color);
    }

    .nav_item i {
        line-height: 0.3rem;
        margin-top: 6px;
        margin-left: 0.2rem;
        color: var(--yello_light);
    }



.drop_menu {
    text-align: right;
    border: 1px solid var(#e5e5e5);
    border: 1px solid var(--light_bluewhite);
    border-radius: var(--radius);
    padding: 0;
    overflow: hidden;
    top: 100% !important;
    transform: translateX(-50%) !important;
    left: 50% !important;
    right: auto !important;
}

    .drop_menu.dropUser {
        left: 50% !important;
        transform: translateX(-50%) !important;
        min-width: 14rem;
        right: auto !important;
    }

.item_dropnav {
    color: var(--primary_color);
    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;
    gap: 0.3rem;
}

.drop_menu li:not(:last-child) .item_dropnav {
    border-bottom: 1px solid var(--light_bluewhite);
    /* border-bottom: 1px solid var(--bg_card); */
}

.item_dropnav i {
    line-height: 0.4rem;
    color: var(--accent_color);
}

.logout_link {
    color: var(--red_color) !important;
}

.item_dropnav:hover {
    background: #e9edff;
    color: var(--accent_color);
}

.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(--primary_color);
    padding: 8px 1rem;
}

.data_abs {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.badge_role {
    color: var(--accent_color);
}

.userinfo_item,
.badge_role {
    font-size: 13px;
    font-weight: 500;
}

.noran-logo {
    overflow: hidden;
    max-width: 130px;
}

    .noran-logo img {
        width: 100%;
        height: 100%;
    }

.btn_login {
    color: var(--third_color);
    border: 2px solid var(--third_color);
    padding: 0.5rem 1.5rem;
}

    .btn_login:hover {
        color: var(--white_color);
        background-color: var(--third_color);
    }



.topbar_section {
    background: var(--primary_color);
    min-height: 64px;
    align-content: center;
}

.topbar_media {
    color: var(--white_color);
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 2%;
    margin: 0;
}


.hero_banner {
    padding: 50px 0;
}

.subbadge_hero,
.subbadge_section {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary_color);
    text-transform: uppercase;
    gap: 16px;
    font-weight: 700;
    font-style: Bold;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.subbadge_section {
    font-size: 15px;
    gap: 7px;
    margin-bottom: 30px;
}

.hero_title {
    font-size: 63px;
    line-height: 84px;
    font-weight: 700;
    font-style: Bold;
    letter-spacing: 2px;
    color: var(--dark_color);
    margin-bottom: 30px;
}

.hero_desc {
    font-weight: 400;
    font-size: 20px;
    line-height: 36px;
    margin-bottom: 50px;
    color: var(--text_color);
    opacity: 0.9;
}

.primary_btn {
    border: none;
    padding: 23px 60px;
    color: var(--white_color);
    cursor: pointer;
    background: transparent;
    transition: var(--transition);
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    position: relative;
    z-index: 1;
    /* overflow: hidden; */
    font-weight: 700;
    white-space: nowrap;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    outline: 0;
    max-width: 272px;
    max-height: 64px;
    width: 100%;
    height: 100%;
    /* aspect-ratio: 17 / 4; */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .primary_btn::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        /* transform: translateX(-50%); */
        width: 100%;
        /* clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%); */
        height: 101%;
        /* background: linear-gradient(180deg, var(--accent_color) 0%, var(--third_color) 100%); */
        background: url(/Img/btn_bg.png) center center/cover no-repeat;
        z-index: -1;
        opacity: 1;
        transition: var(--transition);
    }

    .primary_btn::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 110%;
        clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
        height: 101%;
        background: linear-gradient(180deg, var(--yello_light) 0%, var(--yello_dark) 100%);
        z-index: -1;
        transition: var(--transition);
        opacity: 0;
    }

    .primary_btn:hover::after {
        opacity: 1;
    }

    .primary_btn:hover::before {
        opacity: 0;
    }

    .primary_btn:hover {
        overflow: hidden;
    }

.secondary_btn::before {
    background: transparent;
}

.secondary_btn:hover {
    color: var(--white_color);
}

.secondary_btn {
    color: var(--yello_light);
}

.shape_btnSec {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.secondary_btn:hover .shape_btnSec {
    opacity: 0;
}

.btn_shapeLeft {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 8px;
    z-index: 1;
    width: 50%;
}

.btn_shapeRight {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 8px;
    width: 50%;
}

/* .primary_btn::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    height: 90%;
    transform: translate(-50%,-50%);
    border: 1px solid var(--border_color);
    clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
    background: linear-gradient(180deg, var(--accent_color) 0%, var(--third_color) 100%);
    z-index: -1;
} */


.feat_section {
    padding: 50px 0 0;
}

.card_feat {
    border: 0;
    background: transparent;
    padding: 1px 21px;
}

.title_feat {
    font-size: 22px;
    line-height: 105%;
    font-weight: 900;
    font-style: Bold;
    letter-spacing: 0;
    color: var(--dark_color);
    margin-bottom: 20px;
}

.title_section {
    font-size: 32px;
    line-height: 100%;
    font-weight: 900;
    font-style: Bold;
    letter-spacing: 2px;
    color: var(--dark_color);
    margin-bottom: 20px;
}

.desc_content {
    font-weight: 400;
    font-size: 15px;
    line-height: 28px;
    color: var(--text_color);
    opacity: 0.9;
}

.top_icon {
    /* clip-path: polygon(30.5% 0%, 66.8% 0%, 100% 32.3%, 100% 70.8%, 68% 100%, 30.8% 100%, 0.3% 71%, 0% 32.3%); */
    background: url(../../Img/border_poly.png) center center/cover no-repeat;
    padding: 20px;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px auto 30px;
    position: relative;
    z-index: 4;
}

.card_feat:hover .top_icon {
    background: url(../../Img/bg_poly.png) center center/cover no-repeat;
}

.card_feat:hover #Group path {
    fill: white;
}

.cardbody_feat {
    padding: 0;
}

.about_usSection {
    padding: 40px 0;
}

.btn_vid {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.missionTab_title {
    color: var(--primary_color);
    font-weight: 700;
    font-style: Bold;
    font-size: 15px;
    line-height: 100%;
    letter-spacing: 0px;
    font-family: var(--body_font);
}

.Tabmission_image {
    background: url(../../Img/border_poly.png) center center/cover no-repeat;
    padding: 15px;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin: 15px auto 30px; */
}

.btnMissionTab {
    border: 1px solid var(--border_color);
    padding: 10px 25px;
    border-radius: var(--radius);
    color: var(--text_color);
    font-size: 15px;
    /* margin: 5px 10px; */
}

    .btnMissionTab.active {
        color: var(--white_color) !important;
        background: var(--yello_light) !important;
    }




.liveProgram_section {
    padding: 40px 0 20px;
}

.card_program {
    border: 0;
    /* background: url(../../Img/card_bgprog.png) center center/cover no-repeat; */
    padding: 20px 18px 45px;
    position: relative;
    background: transparent;
    /* clip-path: polygon(15.4% 0%, 84.6% 0%, 100% 15.3%, 100% 85%, 84.6% 100%, 15.4% 100%, 0% 85%, 0% 15.3%); */
    z-index: 2;
    max-width: 345px;
    margin: auto;
}

    .card_program:hover {
        transform: translateY(-10px) scale(1.05);
    }

.bg_carProgram {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    filter: drop-shadow(0px 0 3px #1018281a);
}

.border_carProgram {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    height: 96%;
    z-index: 2;
}

/* .card_program::before{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 92%;
    height: 95%;
    content: "";
    z-index: 2;
    background: url(../../Img/program_border.png) center center/cover no-repeat;
} */
.top_imageProgram {
    max-width: 100%;
    height: 230px;
    margin-bottom: 20px;
    position: relative;
    z-index: 3;
}

    .top_imageProgram img {
        width: 100%;
        height: 100%;
        clip-path: polygon(7% 0%, 93% 0%, 100% 9.1%, 100% 100%, 100% 100%, 0% 100%, 0% 100%, 0.3% 9.1%);
    }

.cardbody_program {
    position: relative;
    z-index: 3;
}

.title_program,
.title_diff {
    font-family: var(--body_font);
    font-weight: 700;
    font-style: Bold;
    font-size: 18px;
    line-height: 100%;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.card_program:hover .title_program {
    color: var(--accent_color);
}

.title_diff {
    color: var(--primary_color);
}

.program_link {
    font-weight: 500;
    font-style: Medium;
    font-size: 17px;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--third_color);
    position: relative;
}

    .program_link:hover {
        color: var(--accent_color);
    }

    .program_link span {
        display: inline-block;
        position: relative;
        padding-bottom: 8px;
    }

        .program_link span::before {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            border-radius: 5px;
            background: var(--dark_color);
        }

    .program_link i {
        display: inline-block;
        transform: rotate(-40deg);
        font-size: 20px;
        color: var(--primary_color);
    }

    .program_link:hover i,
    .card_program:hover .program_link i {
        transform: rotate(0);
    }


.subtitle_sectionHead {
    color: var(--accent_color);
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
    display: inline-block;
    text-transform: uppercase;
}

.title_section {
    font-size: 32px;
    font-weight: bold;
    color: var(--third_color);
    text-transform: capitalize;
    letter-spacing: 2px;
}

.section_descon {
    font-size: 16px;
    color: var(--text_color);
    font-weight: 300;
    line-height: 28px;
}

.header_sectionLight .subtitle_sectionHead {
    color: var(--yello_light);
}

.header_sectionLight .title_section,
.header_sectionLight .section_descon {
    color: var(--white_color);
}

.section_header {
    position: relative;
    z-index: 9;
}



.card_diffrent {
    border: 0;
    background: transparent;
    position: relative;
    max-width: 310px;
    margin: auto;
}

    .card_diffrent:hover {
        transform: translateY(-10px) scale(1.05) rotate(2deg);
    }

.topIMage_diff {
    width: 150px;
    height: 150px;
    margin: auto;
    position: relative;
    z-index: 3;
}

    .topIMage_diff img {
        width: 100%;
        height: 100%;
    }

.cardbody_diff {
    position: relative;
    z-index: 3;
}


.bg_cardiff {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    filter: drop-shadow(0px 0 3px #1018281a);
}

.border_cardiff {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    height: 96%;
    z-index: 2;
}

.what_diffrentSection .container {
    padding: 50px 0 20px;
    z-index: 3;
}

    .what_diffrentSection .container::before {
        background: #26428B;
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 55%;
        border-radius: 6px 6px 0 0;
        z-index: -1;
    }

    .what_diffrentSection .container::after {
        content: "";
        background: url(../../Img/body_bg.png) center center/cover;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 55%;
        border-radius: 6px 6px 0 0;
        opacity: 0.03;
        z-index: -1;
    }








/* Start Footer Section */
/* top */
footer .top .image {
    width: 300px;
    height: 200px;
}

    footer .top .image img {
        width: 100%;
        height: 100%;
    }

/* bottom */
footer .bottom {
    border-top: 1px solid var(--border_gray);
    padding: 20px 0;
}

    footer .bottom .links a {
        color: var(--text_color);
        font-size: 15px;
        font-weight: 400;
        transition: var(--transition);
        opacity: 0.8;
    }

        footer .bottom .links a:hover {
            color: var(--primary_color);
            opacity: 1;
        }

footer .social_icons a {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--yello_light);
    color: var(--white_color);
    border-radius: 6px;
    margin: 0 5px;
    transition: 0.3s;
}

    footer .social_icons a:hover {
        background: var(--primary_color);
        color: #fff;
    }

footer .copyright {
    color: #1a1a1a66;
    font-size: 14px;
    font-weight: 400;
}

/* End Footer Section */



/* Start banner Section */
.banner_section .container {
}

.banner_section .container {
    padding: 70px 0;
    z-index: 1;
    border-radius: 6px;
    position: relative;
}

    .banner_section .container::before {
        background: radial-gradient(243.27% 362.05% at 58.23% -154.75%, #516AC8 0%, #26428B 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100%;
        border-radius: 6px;
        z-index: -1;
    }

    .banner_section .container::after {
        content: "";
        background: url(../../Img/body_bg.png) center center/cover;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        border-radius: 6px;
        height: 100%;
        opacity: 0.04;
        z-index: -1;
    }


.banner_section .title_banner {
    color: var(--yello_light);
    font-size: 16px;
    font-weight: 700;
    font-family: var(--body_font);
    text-transform: uppercase;
    margin-bottom: 25px;
    display: inline-block;
}

.banner_section .subtitle_banner {
    font-size: 32px;
    font-weight: 700;
    color: var(--white_color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

/* End banner Section */
.btnTab_instartor {
    /* border: 1px solid var(--yello_light); */
    position: relative;
    border-radius: 0;
    color: var(--text_color);
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    padding: 16px 40px;
    /* clip-path: polygon(0% 0%, 79% 0%, 100% 42.3%, 100% 100%, 85% 100%, 0% 100%, 0% 85%, 0% 15%); */
    z-index: 1;
}

.btnTab_shape {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.btnTab_shapeBg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
}

.btnTab_instartor.active .btnTab_shapeBg {
    opacity: 1;
    visibility: visible;
}

.btnTab_instartor.active {
    color: var(--white_color) !important;
    background: transparent !important;
}

.testmonial_section .container {
    padding: 50px 20px;
    background: var(--primary_color);
    border-radius: 5px;
}

@media (max-width: 767px) {
    .testmonial_section .container {
        padding: 50px 5px;
    }
}

.card_testmonial {
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 40px 46px 27px 25px;
    min-height: 200px;
}

.testmonial_frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.testmonial_shapesm {
    position: absolute;
    width: auto;
    height: auto;
    top: 0;
    right: 0;
}

.UserTestINforev * {
    font-family: var(--body_font);
}

.reviewer_name {
    font-weight: 500;
    font-style: Bold;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0px;
    text-transform: capitalize;
    color: var(--white_color);
}

.reviewer_location,
.review_content {
    color: #FFFFFFCC;
    font-weight: 300;
    font-size: 14px;
    margin: 0;
    line-height: 28px;
}

    .reviewer_location i {
        color: var(--white_color);
    }

.reviewer_image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--border_color);
    object-fit: cover;
}





.btnswipCommpet {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    width: max-content !important;
    height: max-content !important;
    background: transparent !important;
    border-radius: 50% !important;
    color: var(--white_color) !important;
    margin: 0;
    font-size: 25px;
}

    .btnswipCommpet i {
        line-height: 0.3rem;
    }

.swiper_cards4 .btnswipCommpet {
    color: var(--primary_color) !important;
}

.swiper-pagination {
    position: static;
    max-width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 16px !important;
    font-weight: bold;
    display: none;
}

.swiper-pagination-bullet {
    background: var(--white_color) !important;
    opacity: 0.3 !important;
    width: 10px;
    height: 10px;
    transition: 0s;
    border-radius: 0;
    transform: rotate(-45deg);
}

.swiper_cards4 .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
    background: #e2af63d5 !important;
}

.swiper-pagination-bullet {
}

.swiper-pagination-bullet-active {
    width: 25px;
    height: auto;
    opacity: 1 !important;
    background: transparent !important;
}











/* Start stats Section */
.stats_section {
    padding: 50px 0;
}

/* .stats_section .container{
    padding: 0 30px;
} */
.container_counterBg {
    padding: 50px 30px;
}

.counter_bg {
    position: absolute;
    max-width: 100%;
    width: 100%;
    height: 100%;
    inset: 0;
}

.card_stats {
    position: relative;
    padding: 0 15px;
}

.stats_section .cardBody_stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.stats_section .title_stats {
    font-weight: 700;
    color: var(--primary_color);
    font-size: 32px;
    font-family: var(--body_font);
}

.stats_section .desc_content {
    font-weight: 500;
    font-size: 16px;
    color: var(--third_color);
}

.counter_lins {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    transform: translateX(50%);
    height: 100%;
}

@media (max-width: 991px) {

    .stats_section .title_stats {
        font-size: 26px;
    }
}

@media (max-width: 768px) {

    .stats_section .title_stats {
        font-size: 24px;
    }

    .stats_section .desc_content {
        font-size: 14px;
    }
}

/* End stats Section */



.blogDetails_section {
    padding: 50px 0 30px;
}

.blogDet_image {
    clip-path: polygon(2.4% 0%, 97.8% 0%, 100.1% 5.5%, 100.1% 94.8%, 97.8% 100.3%, 2.4% 100.3%, 0% 94.5%, 0% 5.3%);
    height: 450px;
    background: linear-gradient(270deg, rgba(38, 66, 139, 0.32) -0.09%, rgba(226, 175, 99, 0.32) 100.08%);
    border: 2px solid var(--yello_light);
}

    .blogDet_image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }



.blog_category,
.blog_date {
    color: var(--primary_color);
    font-weight: 700;
    font-style: Bold;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0px;
    text-transform: uppercase;
}

.blogDetais_content h2 {
    color: var(--dark_color);
    font-weight: 700;
    font-style: Bold;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 2px;
}

.blogDetais_content h3,
.blogDetais_content h4,
.blogDetais_content h5,
.blogDetais_content h6,
.blogDetais_content a,
.blogDetais_content li {
    color: var(--primary_color);
    font-weight: 700;
    font-style: Bold;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0px;
    text-transform: uppercase;
    font-family: var(--body_font);
    margin: 20px 0;
}

.blogDetais_content a {
    text-decoration: none !important;
}

    .blogDetais_content a:hover {
        color: var(--accent_color);
    }

.blogDetais_content img {
    max-width: 100%;
    border-radius: 5px;
    display: block;
    margin: 15px 0;
}





/* Start Contact Us Section */
.contactUs {
    padding: 50px 0;
}

    .contactUs .subbadge_contact {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--primary_color);
        text-transform: uppercase;
        gap: 16px;
        font-weight: 700;
        font-size: 17px;
        line-height: 100%;
        letter-spacing: 0px;
        text-transform: uppercase;
    }

    .contactUs .contact_title {
        font-size: 40px;
        line-height: 84px;
        font-weight: 700;
        letter-spacing: 2px;
        color: var(--dark_color);
    }

.contact_form {
    margin-top: 25px;
}

    /* label */
    .contact_form label {
        display: block;
        font-weight: 500;
        margin-bottom: 8px;
        color: #555;
    }

/* input */
.form_input {
    width: 100%;
    height: 48px;
    border-radius: 6px;
    border: 1px solid #e8a44d;
    background: transparent;
    padding: 10px 14px;
    outline: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

    .form_input:focus {
        background: var(--bg_card);
    }

/* textarea */
.textarea_field {
    height: 120px;
    resize: none;
}

/* phone */
.phone_input {
    display: flex;
    border: 1px solid #e8a44d;
    border-radius: 6px;
    background: #f7f7f7;
}

.country_dropdown {
    position: relative;
    border-right: 1px solid #ddd;
}

.selected_country {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    cursor: pointer;
}

    .selected_country img {
        width: 24px;
    }

    .selected_country .code {
        color: #777;
        font-size: 14px;
    }

.country_item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    cursor: pointer;
}

    .country_item:hover {
        background: #f3f3f3;
    }

    .country_item img {
        width: 22px;
    }

.phone_field {
    border: none;
    padding: 10px;
    flex: 1;
    background: transparent;
    outline: none;
}

.selected_country {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    cursor: pointer;
}

    .selected_country .arrow {
        margin-left: auto;
        font-size: 12px;
        color: #666;
        transition: 0.3s;
    }

    .selected_country.active .arrow {
        transform: rotate(180deg);
    }

.country_list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    max-height: 250px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #ddd;
    display: none;
    z-index: 9999;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.country_dropdown {
    position: relative;
    border-right: 1px solid #ddd;
    z-index: 1000;
}

/* End Contact Us Section */


.fillter_books .form_group {
    position: relative;
    border: 1px solid #101B3B66;
    border-radius: 12px;
    background: #101B3B08;
}

    .fillter_books .form_group .form-control {
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        color: var(--primary_color);
        padding: 15px 50px;
    }

        .fillter_books .form_group .form-control::placeholder {
            font-weight: 400;
            font-style: Regular;
            font-size: 14px;
            line-height: 100%;
            letter-spacing: 0%;
            text-transform: capitalize;
            color: #1A1A1A66;
        }

.btn_formGroupabs {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    outline: 0;
    border: 0;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary_color);
}

    .btn_formGroupabs i {
        line-height: 0.3rem;
    }

.btn_search {
    left: 10px;
}

.btn_fillter {
    right: 10px;
}


.book_price {
    color: var(--dark_color);
    font-size: 20px;
    font-weight: 600;
}

.price_value {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary_color);
}

    .price_value sup {
        font-size: 13px;
        font-weight: 300;
    }

.btnupdate_count {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white_color);
    background: var(--yello_light);
    outline: 0;
    border: 0;
    border-radius: 8px;
    width: 30px;
    height: 30px;
}

.input_updateCount {
    border: 0;
    outline: 0;
    max-width: 60px;
    height: 30px;
    color: var(--primary_color);
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}


.accordion-item {
    margin-bottom: 20px;
    background: transparent;
    border: 1px solid var(--border_gray) !important;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    background: transparent;
    box-shadow: none !important;
    padding: 20px;
    font-family: var(--body_font);
    font-weight: 600;
}

    .accordion-button:not(.collapsed) {
        background: var(--bg_card) !important;
    }


.title_package {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 30px;
    border: 1px solid var(--primary_color);
    border-radius: 4px;
    max-width: max-content;
    margin: 20px auto;
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
    font-family: var(--body_font);
}

/* Package dropdown */
.package_dropdown {
    position: relative;
    width: 100%;
}

.package_dropdown_toggle {
    width: 100%;
    border: 0;
    outline: 0;
    padding: 12px 18px;
    border-radius: 4px;
    background: linear-gradient(180deg, var(--yello_light) 0%, var(--yello_light) 100%);
    color: var(--white_color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--body_font);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

    .package_dropdown_toggle i {
        font-size: 14px;
    }

.package_dropdown_label {
    flex: 1;
    text-align: left;
}

.package_dropdown_menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: var(--white_color);
    border-radius: 6px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    padding: 4px 0;
    max-height: 230px;
    overflow-y: auto;
    z-index: 10;
    display: none;
}

.package_dropdown.open .package_dropdown_menu {
    display: block;
}

.package_dropdown_item {
    padding: 10px 16px;
    font-size: 14px;
    color: var(--third_color);
    cursor: pointer;
}

    .package_dropdown_item:hover {
        background: var(--bg_card);
    }

.package_dropdown.open .package_dropdown_toggle i {
    transform: rotate(180deg);
}

/* -------------------- */
/* ------- Cart ------- */
/* -------------------- */
.cart_section {
    padding: 40px 0;
}

.cart_itemsList {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart_itemCard {
    background: var(--white_color);
    border-radius: 10px;
    border: 1px solid var(--border_gray);
    padding: 14px 18px;
}

.cart_itemImage {
    width: 120px;
    height: 80px;
    overflow: hidden;
    border-radius: 8px;
}

    .cart_itemImage img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.cart_itemTitle {
    font-size: 16px;
    font-weight: 700;
    color: var(--third_color);
    font-family: var(--body_font);
}

.cart_itemSubtitle {
    font-size: 14px;
    color: #1a1a1a99;
}

.cart_itemPrice {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary_color);
}

.cart_itemCurrency {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.cart_itemActions {
    white-space: nowrap;
}

.cart_removeBtn {
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--primary_color);
    font-size: 18px;
    cursor: pointer;
}

.cart_sideBox {
    background: var(--white_color);
    border-radius: 10px;
    border: 1px solid var(--border_gray);
    padding: 18px 20px;
}

.cart_sideTitle {
    font-size: 16px;
    font-weight: 700;
    color: var(--third_color);
    font-family: var(--body_font);
}

.cart_couponForm {
    display: flex;
    gap: 0;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
}

.cart_couponInput {
    flex: 1;
    border: 0;
    outline: 0;
    padding: 10px 12px;
    font-size: 14px;
}

    .cart_couponInput::placeholder {
        font-size: 13px;
        color: #1a1a1a66;
    }

.cart_couponBtn {
    border: 0;
    outline: 0;
    padding: 0 18px;
    background: var(--primary_color);
    color: var(--white_color);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.cart_summaryList {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
}

.cart_summaryRow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: var(--third_color);
}

    .cart_summaryRow .value {
        font-weight: 600;
    }

.cart_summaryTotal {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #e5e5e5;
    font-weight: 700;
}

.cart_checkoutBtn {
    margin-top: 12px;
    border-radius: 30px;
    border: 0;
    outline: 0;
    padding: 14px 24px;
    background: linear-gradient(90deg, #1f3f8f 0%, #26428B 100%);
    color: var(--white_color);
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
}

@media (max-width: 991.98px) {
    .cart_itemCard {
        align-items: flex-start !important;
    }

    .cart_itemActions {
        margin-left: auto;
    }
}

@media (max-width: 767.98px) {
    .cart_itemCard {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .cart_itemImage {
        width: 100%;
        height: 160px;
    }

    .cart_itemActions {
        width: 100%;
        justify-content: space-between;
        margin-top: 10px;
    }
}
