@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

@font-face {
    font-display: swap;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/dm-sans-v17-latin-regular.woff2') format('woff2'),
    url('../fonts/dm-sans-v17-latin-regular.ttf') format('truetype');
}

@font-face {
    font-display: swap;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/dm-sans-v17-latin-500.woff2') format('woff2'),
    url('../fonts/dm-sans-v17-latin-500.ttf') format('truetype');
}

@font-face {
    font-display: swap;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/dm-sans-v17-latin-600.woff2') format('woff2'),
    url('../fonts/dm-sans-v17-latin-600.ttf') format('truetype');
}

@font-face {
    font-display: swap;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/dm-sans-v17-latin-700.woff2') format('woff2'),
    url('../fonts/dm-sans-v17-latin-700.ttf') format('truetype');
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    font-style: normal;
    color: var(--primery);
}

:root {
    --primery: #002242;
    --seconder: #000000;
    --body-text: #8A8C94;
    --text: #ffffff;
    /*--icon-color: #787878;*/
}

a {
    text-decoration: none;
}

/* ===================================================== Start Header ===================================================== */
.social {
    background-color: var(--primery);
}

.social_icon {
    color: var(--text);
    padding: 0 10px;
}

.menu_bar li {
    padding: 0 10px;
}

.menu_bar li a {
    color: var(--primery);
    font-size: 16px;
    font-weight: 500;
}

.login_btn {
    background-color: var(--primery);
    padding: 4px 4px 4px 10px;
    border-radius: 10px;
    width: fit-content;
}

.login_btn a {
    color: var(--text);
}

/* ===================================================== End Header ===================================================== */
/* ===================================================== Start Home ===================================================== */
/* Rectangle 7 */
.carousel-item {
    position: relative;
}

.carousel-item:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 34, 66, 0.5) 65.87%);
}

.apply_btn {
    border-radius: 10px;
    border: 1px solid #FFFFFF;
    width: fit-content;
    text-align: center;
    padding: 8px;
}

.services {
    box-shadow: 0 0 9px 0 #0F35670D;
    padding: 20px 40px 0 40px;
    border-radius: 31px;
}

.service {
    text-align: center;
    display: flex;
    justify-content: center;
}

.service div {
    width: 70%;
}

.service h2 {
    font-size: 45px;
    font-weight: 700;
}

.service p {
    color: var(--body-text);
    font-size: 14px;
    font-weight: 400;
}

.service_crad {
    border: 1px solid #9190903D;
    border-radius: 16px;
    padding: 10px;
}

.service_crad h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--seconder);
    margin: 10px 0;
}

.service_crad p {
    font-size: 14px;
    font-weight: 400;
    color: var(--body-text);
}

.help_img {
    background-image: url("../images/home/help_img.webp");
    background-position: center;
    height: 448px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.help_img h3 {
    font-size: 40px;
    font-weight: 700;
    color: var(--text);
}

.help_img p {
    color: var(--text);
    font-size: 16px;
    font-weight: 400;
}

.our_services {
    background-image: url("../images/home/our_services_img.webp");
    background-position: center;
}

.our_services h2 {
    font-size: 45px;
    font-weight: 700;
    color: var(--text);
}

.our_services p {
    color: var(--text);
    font-size: 14px;
    font-weight: 400;
}

.effectivee {
    max-width: 1073px;
    margin: 0 auto;
}

.effective {
    background: #FFFFFF69;
    padding: 20px;
    border-radius: 36px;
}

.effective h5 {
    font-size: 30px;
    font-weight: 700;
    color: var(--text);
    margin: 10px 0;
}

.effective p {
    font-size: 16px;
    font-weight: 400;
}

.partner {
    text-align: center;
    background-image: url("../images/home/map.svg");
    background-repeat: no-repeat;
    background-position: center;
    height: 513px;
}

.partners_img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}

/* ===================================================== End Home ===================================================== */
/* ===================================================== Start Footer ===================================================== */
.footer {
    background-color: #020001;
    color: var(--text);
}

.subscribe_box {
    display: flex;
    justify-content: center;
    align-items: end;
}

.subscribe_box input {
    width: 459px;
    height: 47px;
    margin-right: 10px;
    padding: 0 10px;
    border-radius: 7px;
    outline: none;
    border: none;
}

.subscribe_box a {
    color: var(--text);
    background-color: var(--primery);
    text-align: center;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 7px;
    height: 48px;
}

.logo_footer p {
    color: var(--body-text);
    font-size: 16px;
    font-weight: 400;
}

.logo_footer h2 {
    font-size: 20px;
    color: var(--text);
    font-weight: 600;
}

.logo_footer ul {
    font-size: 16px;
    font-weight: 400;
    list-style: none;
    padding: 0;
}

.logo_footer ul li {
    padding: 10px 0;
}

.logo_footer ul li a {
    color: var(--text);
}

.copyright {
    background-color: var(--primery);
    color: var(--text);
    padding: 10px 0;

}

.copyright p {
    color: var(--text);
    font-size: 16px;
    font-weight: 600;
}

/* ===================================================== End Home ===================================================== */
/* ===================================================== Start Company ===================================================== */
.banner {
    position: relative;
}

.banner:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #0022429C;
    z-index: 2;
    border-radius: 24px;
}

.banner_text {
    position: absolute;
    top: 50%;
    left: 2%;
    transform: translateY(-50%);
    z-index: 2;
}

.banner_text h2 {
    font-size: 45px;
    font-weight: 700;
    color: var(--text);
}

.banner_text a {
    font-size: 14px;
    font-weight: 400;
    color: var(--text);
    text-transform: uppercase;
}

/* ===================================================== End Company ===================================================== */
/* ===================================================== Start Meta Membership Card ===================================================== */
.card_details h4 {
    font-size: 36px;
    font-weight: 700;
}

.card_details p {
    font-size: 14px;
    font-weight: 400;
    color: var(--body-text);
}

.card_details span {
    font-size: 24px;
    font-weight: 700;
    color: var(--primery);
}

.card_details span del {
    color: #DB1313;
}

.card_details .pric {
    color: #0DAC54;
}

.about_box {
    position: relative;
}

.about_text {
    position: absolute;
    top: 3%;
    left: 26%;
    width: 50%;
}

.about_text h5 {
    font-size: 18px;
    font-weight: 700;
}

.about_text p {
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}

.card_details_bg {
    background-image: url("../images/home/map.svg");
    background-position: center;
    background-repeat: no-repeat;
}

/* ===================================================== End Meta Membership Card ===================================================== */
/* ===================================================== Start Contact ===================================================== */
.contact_detail h6 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
}

.contact_detail h2 {
    font-size: 48px;
    font-weight: 700;
}

.contact_detail p {
    font-size: 16px;
    font-weight: 400;
    color: var(--body-text);
}

.contact_detail h5 {
    font-size: 20px;
    font-weight: 600;
}

.contact_icon svg {
    margin-right: 8px;
    margin-bottom: 10px;
}

.contact_form {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.form_container {
    background: #F8F8F8;
    padding: 30px;
    border-radius: 6px;
    max-width: 500px;
    width: 100%;
}

.form_container h2 {
    font-size: 24px;
    margin-bottom: 8px;
}

.form_container p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.form_groupp {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #D7D7D7;
    margin-bottom: 20px;
    padding: 8px 0;
}

.form_groupp input,
.form_groupp textarea {
    border: none;
    outline: none;
    flex: 1;
    font-size: 14px;
    padding: 6px;
    background: transparent;
}

.form_groupp textarea {
    resize: none;
    height: 100px;
}

.btn_submit {
    background: var(--primery);
    color: var(--text);
    border: none;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    transition: background 0.3s ease;
}

.btn_submit i {
    margin-right: 8px;
}

.btn_submit:hover {
    background: #054a91;
}

/* ===================================================== End Contact ===================================================== */
/* ===================================================== Start Privacy ===================================================== */
.privacy h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primery);
}

.privacy h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primery);
}

.privacy p {
    font-size: 16px;
    font-weight: 400;
    color: var(--primery);
}

.privacy ul {
    font-size: 16px;
    font-weight: 400;
    color: var(--primery);
}

/* ===================================================== End Privacy ===================================================== */
/* ===================================================== Start About ===================================================== */
.about_img {
    position: relative;
    text-align: center;
}

.about_img img {
    position: relative;
}

.about_img img:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border: 5px solid var(--primery);
    width: 100%;
    height: 100%;
}

.about_img .about_shap {
    position: absolute;
    bottom: -7%;
    left: 8%;
}

.about_detail h6 {
    font-size: 14px;
    font-weight: 500;
}

.about_detail h2 {
    font-size: 45px;
    font-weight: 700;
}

.about_detail h5 {
    font-size: 18px;
    font-weight: 700;
}

.about_detail p {
    font-size: 16px;
    font-weight: 400;
    color: var(--body-text);
}

.progressbar-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

/* Progress bar container */
.progressbar {
    margin-bottom: 20px;
}

.progressbar h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    color: #111;
}

.progressbar .bar {
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
    height: 8px;
    margin-top: 6px;
}

.progressbar .bar-fill {
    background: #062a4d; /* dark navy */
    height: 100%;
    width: 0;
    transition: width 1s ease-in-out;
}

/* Bullet points */
.progress-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.progress-list li {
    margin: 10px 0;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.progress-list li i {
    color: #062a4d;
    font-size: 13px;
}

/* Video/Image box */
.progress-video {
    position: relative;
    max-width: 300px;
}

.progress-video img {
    width: 100%;
    border-radius: 6px;
    display: block;
}

.progress-video .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #062a4d;
    color: #fff;
    font-size: 20px;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.experiance {
    color: var(--text);
    position: absolute;
    bottom: 0;
    left: 12%;
    font-size: 60px;
    text-align: start;
    font-weight: 800;
    line-height: 30px;
}

.experiance span {
    font-size: 18px;
    font-weight: 800;
}

.quick_loans {
    background: var(--primery);
}

.quick_loans_content h5 {
    font-size: 40px;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}

.quick_loans_content a {
    background: var(--text);
    color: var(--primery);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    padding: 8px 20px;
}

.our_company {
    max-width: 1160px;
    margin: auto;
}

.team {
    width: 370px;
}

.team_detail {
    background: #F2EDE9;
    padding: 20px 20px;
    border-left: 4px solid var(--primery);
    width: 90%;
}

.team_detail h4 {
    font-size: 20px;
    font-weight: 700;
}

.team_detail span {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.company {
    background-image: url("../images/career/company_bg.webp");
}

.talking {
    background-image: url("../images/career/talking_bg.webp");
    padding: 60px 20px;
}

/*.counter_section {*/
/*    background-color: #12121a;*/
/*    padding: 60px 20px;*/
/*}*/

.counter_container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.counter_item {
    color: white;
}

.counter_number {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
}

.counter_label {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #fff;
    border-radius: 4px;
    font-size: 14px;
    color: white;
    background: transparent;
    text-transform: capitalize;
}

/* ===================================================== End About ===================================================== */
/* ===================================================== Start Faq ===================================================== */

.accordion-button .icon {
    font-size: 1.2rem;
}

.accordion-button.collapsed .bi-plus {
    display: inline;
}

.accordion-button:not(.collapsed) .bi-plus {
    display: none;
}

.accordion-button:not(.collapsed)::after {
    content: '';
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
}

.accordion-button {
    position: relative;
}

.accordion-button .icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}
/* ===================================================== End Faq ===================================================== */
/* ===================================================== Start Login ===================================================== */
.login_bg img{
    height: 100vh;
    position: relative;
}
.login {
    padding: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 633px;
}

.login_box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

/* Title */
.login_box h2 {
    margin-bottom: 25px;
    font-size: 38px;
    font-weight: 600;
    color: #0d2340;
}
.login_box p{
    text-align: start;
    font-size: 14px;
    font-weight: 500;
    color: var(--primery);
}
/* Input Box */
.input_box {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    border-bottom: 1px solid #ddd;
    padding: 8px 0;
}

.input_box i {
    margin-right: 10px;
    color: #444;
}

.input_box input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 14px;
    color: #333;
}

/* Button */
.btnn {
    width: 100%;
    background: #0d2340;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

.btnn:hover {
    background: #001f4d;
    color: #fff;
}

/* Extra Links */
.extra_links {
    margin-top: 12px;
    text-align: right;
}

.extra_links a {
    color: #0d2340;
    font-size: 13px;
    text-decoration: none;
}

.extra_links a:hover {
    text-decoration: underline;
}

/* Signup text */
.signup {
    margin-top: 18px;
    font-size: 14px;
    color: #333;
}

.signup a {
    color: #000;
    font-weight: 600;
    text-decoration: underline;
}
/* ===================================================== End Login ===================================================== */
/* ===================================================== Start Raise a Request ===================================================== */
.request {
    padding: 40px 15px;
}

.request_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    max-width: 1100px;
    margin: auto;
}

/* ---- Form ---- */
.request_form {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #ECECEC;
    box-shadow: 0 0 35px 0 #9AA1AB26;
}

.request_form p {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}

.radio_group {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
}

.radio_group label {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #111827;
    cursor: pointer;
}

.radio_group input {
    margin-right: 8px;
    accent-color: #0d2340;
}

.form_group {
    margin-bottom: 16px;
}

.form_group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #111827;
}

.form_group input,
.form_group textarea {
    width: 100%;
    padding: 12px 14px;
    border-bottom: 1px solid #D7D7D7;
    border-left:none;
    border-right:none;
    border-top:none;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
    background: #fff;
}

.form_group input:focus,
.form_group select:focus {
    border-color: #0d2340;
    box-shadow: 0 0 0 2px rgba(13, 35, 64, 0.1);
}

.request_btn {
    width: 100%;
    background: #0d2340;
    color: #fff;
    padding: 13px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.request_btn:hover {
    background: #001a38;
}

/* ---- FAQs ---- */
.request_faq h2 {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 700;
    color: #111827;
}

.faq_item {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px 18px;
    margin-bottom: 14px;
    cursor: pointer;
    background: #fff;
    transition: 0.3s;
}

.faq_item:hover {
    border-color: #0d2340;
}

.faq_question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 15px;
    color: #111827;
}

.faq_answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    font-size: 14px;
    color: #4b5563;
    margin-top: 10px;
}

.faq_item.active .faq_answer {
    max-height: 250px;
}

.faq_item i {
    font-size: 14px;
    color: #111827;
    transition: 0.3s;
}
.celebrate{
    background-image: url("../images/celebrate/celebrate.webp");
    background-repeat: no-repeat;
    height: 410px;
    margin: 40px auto;
}
.celebrate_text{
    width: 50%;
    margin-left: auto;
    padding: 3% 0;
}
.form_container ul{
    color: #5E5F63;
    font-size: 16px;
    font-weight: 400;
}
.paperwork{
    border: 1px solid #002242;
    text-align:center;
    padding: 20px;
    margin-bottom: 30px;
}
.paperwork h6{
    margin-bottom: 0;
    color: var(--primery);
    font-weight: 600;
    font-size: 19px;
}
.nbfc{
    background: #002242;
    color: #fff;
}
.salaried  h4{
    text-align: center;
    font-weight: 600;
    font-size: 32px;
    padding: 10px;
}
.salaried .salary{
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.salaried .salary p {
    list-style-type: disc;
    color: #fff;
}
.how_works h5{
    background: #fff;
    border: 1px solid #002242
}
.step{
    display: flex;
    align-items: center;
}
.step h3{
    font-weight: 600;
    font-size: 48px;
    width: 80px;
    height: 68px;
    border: 1px solid var(--primery);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
}
.step p{
    font-size: 20px;
    font-weight: 600;
}
.select-option .option-btn {
    padding: 15px 30px;
    border-radius: 8px;
    border: 1px solid #0a2a4a;
    background-color: #fff;
    color: #0a2a4a;
    font-weight: 500;
    min-width: 180px;
    text-align: center;
    transition: 0.3s;
}
.select-option .option-btn.active {
    background-color: #0a2a4a;
    color: #fff;
}
/* ===================================================== End Raise a Request ===================================================== */
.application {
    padding: 50px 0;
}
.application .card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    background: #fff;
    max-width: 540px;
}
.application h4 {
    font-weight: 600;
    color: #222;
}
.application p {
    color: #666;
    font-size: 14px;
}
.application .form-control,
.application select {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    padding: 10px 12px;
}
.application .btn-primary {
    background-color: #001f3f;
    border: none;
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 6px;
}
.application .btn-primary:hover {
    background-color: #002b5c;
}
.application .progress {
    height: 5px;
    border-radius: 5px;
}
.application .progress-bar {
    background-color: #001f3f;
}
.suitable {
    padding: 50px 0;
}

.suitable .card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    background: #fff;
    padding: 30px;
}

.suitable h6 {
    color: #28a745;
    font-weight: 500;
    font-size: 15px;
}

.suitable h5 {
    font-weight: 600;
    color: #222;
    margin-top: 20px;
}

.suitable .emi-option {
    border: 2px solid #28a745;
    border-radius: 10px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.suitable .emi-option:hover {
    background: #e9f9ec;
}

.suitable input[type="radio"] {
    accent-color: #28a745;
    transform: scale(1.2);
}

.suitable label {
    flex-grow: 1;
    margin-left: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: #28A745;
}

.suitable label span {
    color: #28a745;
    font-weight: 600;
}

.suitable .btn-primary {
    background-color: #001f3f;
    border: none;
    padding: 10px 25px;
    font-size: 14px;
    border-radius: 6px;
}

.suitable .btn-primary:hover {
    background-color: #002b5c;
}

.suitable .note {
    font-size: 13px;
    color: #666;
    border-top: 1px solid #ddd;
    padding-top: 15px;
    margin-top: 20px;
    line-height: 1.5;
}

.ziploan {
    padding: 50px 0;
}

.ziploan .card {
    border-radius: 10px;
    background: #fff;
    text-align: center;
    padding: 17px;
    transition: all 0.3s ease;
    border: 1px solid #ECECEC;
}

.ziploan .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.08);
}

.ziploan img {
    width:200px !important;
    height: 100px;
    object-fit: contain;
}

.ziploan .card p {
    margin: 0;
    font-size: 14px;
    color: #333;
    text-align: left;
}

.ziploan .card p strong {
    color: #000;
    font-weight: 600;
}

.owl-nav {
    text-align: center;
    margin-top: 20px;
}

.owl-nav button {
    background: #001f3f !important;
    color: #fff !important;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    border: none;
    margin: 0 5px;
    font-size: 18px !important;
    transition: all 0.3s ease;
}

.owl-nav button:hover {
    background: #002b5c !important;
}
.cardfees {
    max-width: 400px;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin: auto;
    text-align: center;
}

.cardfees h2 {
    color: #444;
    margin-bottom: 15px;
}

.cardfees .price {
    font-size: 24px;
    font-weight: bold;
}

.cardfees .old-price {
    text-decoration: line-through;
    color: red;
    margin-right: 10px;
}

.cardfees .new-price {
    color: green;
}

.cardfees .note {
    font-size: 14px;
    color: #888;
    margin-top: 10px;
}

.cardfees .btn {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #002d72;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.cardfees .countdown {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.cardfees .time-box {
    background: #f2f2f2;
    border-radius: 8px;
    padding: 10px;
    flex: 1;
}

.cardfees .time-box strong {
    font-size: 20px;
    display: block;
}

@media (max-width: 500px) {
    .cardfees {
        padding: 15px;
    }
    .cardfees .countdown {
        flex-direction: column;
        gap: 5px;
    }
}
.back_to_top {
    position: fixed;
    bottom: 2%;
    left: 50%;
    transform: translateX(-50%);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--primery);
    cursor: pointer;
    display: none;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1100;
    border: 3px solid #fff;
}

