:root {
    --primary-color: #056674;
    --primary-dark: #66bebf;
    --secondary-bg: #e1ece4;
    --accent-color: #ff4b5c;
    --text-dark: #2d3436;
    --price-red: #ff4b5c;
}
@font-face {
    font-family: 'Yekta';
    src: url(assets/fonts/yekta/yekta.ttf) format("truetype"),
    url(assets/fonts/yekta/yekta.woff) format("woff"),
    url(assets/fonts/yekta/yekta.woff2) format("woff2");
}

@font-face {
    font-family: 'Peyda';
    src: url(assets/fonts/peyda/light.ttf);
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Peyda';
    src: url(assets/fonts/peyda/regular.ttf);
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Peyda';
    src: url(assets/fonts/peyda/bold.ttf);
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Peyda';
    src: url(assets/fonts/peyda/black.ttf);
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Peyda';
    src: url(assets/fonts/peyda/black.ttf);
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: estedad;
    src: url(assets/fonts/estedad/light.ttf) format("truetype"),
    url(assets/fonts/estedad/light.ttf) format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: estedad;
    src: url(assets/fonts/estedad/regular.ttf) format("truetype"),
    url(assets/fonts/estedad/regular.woff2) format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: estedad;
    src: url(assets/fonts/estedad/bold.ttf) format("truetype"),
    url(assets/fonts/estedad/bold.woff2) format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: estedad;
    src: url(assets/fonts/estedad/extra-bold.ttf) format("truetype"),
    url(assets/fonts/estedad/extra-bold.woff2) format("woff");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: estedad;
    src: url(assets/fonts/estedad/black.ttf) format("truetype"),
    url(assets/fonts/estedad/black.woff2) format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

.f-peyda {
    font-family: 'Peyda', sans-serif;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Yekta, serif;
    direction: rtl;
    width: 100%;
}

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

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

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

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

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

.fw-medium {
    font-weight: 600 !important;
}

.flash-nav {
    background-color: #056674;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    padding: 4px 30px;
    height: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.flash-nav span {
    color: #fff;
    font-weight: 120;
    font-size: 16px;
}

.flash-content {
    display: flex;
    align-items: center;
    gap: 20px;
    white-space: nowrap;
    position: absolute;
    will-change: transform;
    animation: scroll-right 24s linear infinite;
}

.flash-content img {
    height: 33px;
    width: auto;
}

@keyframes scroll-right {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.header {
    height: 64px;
    background-color: #fff;
    padding: 0px;
    margin: 0px;
}

.mobile-nav {
    width: 100%;
    background: #fff;
    transition: top 0.3s;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        box-shadow: none;
    }
    to {
        transform: translateY(0);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }
}

.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    animation: slideDown 0.8s ease forwards;
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}


.toggle-wrapper {
    display: inline-flex;
    align-items: center;
    background: #e0e0e0;
    border-radius: 50px;
    width: 50px;
    height: 30px;
    padding: 3px;
    cursor: pointer;
    transition: background 0.3s;
}

.toggle-circle {
    background: #fff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle-wrapper.active {
    background: #333;
}

.toggle-wrapper.active .toggle-circle {
    background: #474747;
}

.toggle-wrapper.active .toggle-circle {
    transform: translateX(-20px);
}

.toggle-circle i {
    font-size: 15px;
    color: #535353;
    transition: transform 0.3s ease, color 0.3s ease;
    line-height: 1;
}

.toggle-theme-icon {
    width: 100%;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.toggle-wrapper.active .toggle-circle i {
    transform: rotate(259deg);
    color: #f3f2f2;
}

.header-last {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 0px;
}

.head-logo {
    height: 54px;
}

.navbar-nav .nav-link {
    color: #000 !important;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
    padding-right: 13px !important;
    padding-left: 13px !important;
    cursor: pointer;
}

.navbar-nav .nav-link:hover {
    color: #056674 !important;
    background-color: #e1ece4;
    border-radius: 15px;
    font-weight: bold;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.header-first {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-direction: row-reverse;
    margin-inline-end: 0;
    margin-inline-start: auto;
    margin-right: auto;
    margin-left: 0;
}

.enter {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    background-color: #056674;
    padding: 5px 10px;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    height: 36px;
}

.enter-left {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 2px;
    padding-left: 10px;
    border-left: #fff 1px solid;
}

.enter-left img {
    height: 22px;
}

.enter-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-right: 5px;
}

.download {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 5px;
    padding: 10px;
    border-radius: 8px;
    height: 36px;
    background-color: #98b8e0;
    text-decoration: none;
    color: #eaeaea;
    font-size: 16px;
    font-weight: 400;
}

.download img {
    height: 22px;
}

.language {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    padding: 5px;
    border-radius: 5px;
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    height: 30px;
    border: 1px solid #444;
    background-color: #fff;
}

.language svg,
.language i {
    height: 20px;
    flex-shrink: 0;
    font-size: 18px;
    color: #000;
    line-height: 1;
}

.mobile-menu {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.3s ease;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.mobile-menu.show {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu.collapsing {
    transform: translateX(100%);
    opacity: 0.35;
    visibility: visible;
    pointer-events: none;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 12px;
    background: #e1ece4;
    color: #102f79;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-inline-start: auto;
    margin-inline-end: 4px;
    margin-bottom: 6px;
    transition: all 0.2s ease;
}

.mobile-menu-close:hover {
    background: #e2ebff;
    color: #0a3aa3;
}

.mobile-menu-close i {
    transition: transform 0.25s ease;
}

.mobile-menu-close:hover i {
    transform: rotate(90deg);
}

.mobile-settings-wrap {
    position: relative;
}

.mobile-settings-trigger {
    border: 1px solid #66bebf;
    background: #fff;
    border-radius: 12px;
    color: #1d3f82 !important;
    width: 40px;
    height: 40px;
    min-width: 40px;
    padding: 0;
    box-shadow: 0 6px 18px rgba(12, 43, 129, 0.12);
}

.mobile-settings-trigger:hover,
.mobile-settings-trigger:focus {
    background: #e1ece4;
    color: #0d2f7e !important;
}

.mobile-settings-menu {
    border-radius: 16px;
    border: 1px solid #66bebf;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 24px rgba(17, 33, 89, 0.16);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.98);
    transform-origin: top right;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transition-delay: 0s;
    inset: auto 0 auto auto;
    min-width: 210px;
    width: 210px;
    display: block;
}

.mobile-settings-wrap.show .mobile-settings-menu,
.mobile-settings-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.mobile-settings-item {
    border-radius: 12px;
    padding: 10px 12px;
    color: #27408f;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.mobile-settings-item:hover,
.mobile-settings-item:focus {
    background: #e1ece4;
    color: #0c2e80;
}

.mobile-menu-actions {
    margin-top: 16px;
    padding: 14px 6px 0;
    border-top: 1px dashed #cfdbf7;
}

.mobile-profile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px;
    border-radius: 14px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    background: linear-gradient(135deg, #056674 0%, #1235b3 100%);
    box-shadow: 0 8px 18px rgba(10, 84, 190, 0.22);
}

.mobile-profile-btn i {
    font-size: 18px;
}
.theme img {
    height: 40px;
}

.hero-background {
    display: block;
    background: #e1ece4 no-repeat center;
    background-size: cover;
}

.hero {
    background: linear-gradient(to left, #056674 22%, rgba(0, 100, 225, 0) 50%);
    color: #ffffff;
    padding: 170px 80px;
}

.hero-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 10px;
}

.hero-links a {
    text-decoration: none;
    color: #ffffff;
    font-size: 18px;
    font-weight: 24;
    border: #fff 1px solid;
    border-radius: 10px;
    padding: 6px 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.hero-links a:hover {
    background: #ff4b5c;
    color: #000000;
}

.hero img {
    /*height: 222px;*/
    margin-right: 10px;
}

.btn-options {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    box-shadow: 0 7px 11px rgba(0, 0, 0, 0.3);
    border-radius: 22px;
    height: 85px;
    margin-top: -22px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1100px;
    background: #ffffff;
}

.btn-options.option {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    padding: 22px 20px;
    text-align: center;
}

.btn-options .option:hover {
    background: #ff4b5c;
    padding: 13px 3px;
    border-radius: 13px;
    cursor: pointer;
}

.option span {
    padding: 8px 8px;
    font-weight: 400;
    font-size: 18px;
}

.option svg {
    height: 24px;
    width: 24px;
    flex-shrink: 0;
}

.option i {
    font-size: 24px;
    color: #056674;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 1;
    flex-shrink: 0;
}

.btn-more i {
    margin-inline-start: 6px;
    font-size: 20px;
    line-height: 1;
}

.services {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 15px 50px;
    justify-content: center;
    gap: 20px;
    position: relative;
}

.service {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
    text-decoration: none;
    color: #000;
    transition: 0.2s all;
    padding: 10px 0;
    height: 147px;
}

.service > img {
    height: 60px;
    filter: invert(27%) sepia(87%) saturate(6604%) hue-rotate(236deg) brightness(90%) contrast(100%);
}

.service .img-low {
    padding-top: 13px;
}

.service p {
    text-decoration: none;
    color: #056674;
    font-size: 14px;
    margin-top: -10px;
}

.service span {
    font-weight: 400;
    font-size: 16px;
}

.service-hover {
    display: none;
    flex-direction: row;
    align-items: center;
}

.service-hover span {
    color: #056674;
    font-size: 14px;
    font-weight: 500;
}

.service-hover svg {
    height: 20px;
    width: 20px;
    flex-shrink: 0;
    fill: #056674;
}

.service:hover {
    background: #fff;
    border-radius: 18px;
    transition: 0s all;
}

.service:hover .service-hover {
    display: flex;
}

.btn-contact-service {
    position: absolute;
    bottom: -10px;
    left: 10px;
}

.about {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    /*margin-top: 70px;*/
    padding: 10px;
    background: #e1ece4;
}

.about-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px;
    justify-content: center;
}

.about-top > img {
    height: 500px;
    width: 500px;
}

.about-left {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
    justify-content: center;
    padding: 10px;
}

.al-top {
    /*display: flex;*/
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 10px;
}

.al-top span {
    font-size: 20px;
    font-weight: normal;
    color: #1a1d20;
}

.al-top h2 {
    font-weight: bold;
    color: #056674;
}

.al-top p {
    justify-content: flex-end;
    /*width: 500px;*/
    line-height: 30px;
    font-size: 18px;
    text-align: right;
}

.alt-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    justify-content: start;
}

.btn-more {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    width: auto;
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    border: 1px solid #000000;
    border-radius: 11px;
    padding: 6px 12px;
    min-height: 34px;
}

.btn-more:hover {
    color: #ff4b5c;
    border: 1px solid #ea4252;
}

.btn-more svg {
    height: 28px;
    width: 30px;
    flex-shrink: 0;
}

.btn-blue {
    display: inline-flex;
    align-items: center;
    width: auto;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    background-color: #056674;
    border-radius: 11px;
    padding: 6px 12px;
    min-height: 34px;
}

.btn-blue:hover {
    color: #7f8bf5;
    background-color: #1c1c72;
}

.al-bottom {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 2px;
    padding: 6px;
    justify-content: center;
    margin-top: 30px;
}

.alb {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}

.albr {
    gap: 5px;
    padding: 5px;
}

.albr b {
    font-weight: bold;
    font-size: 18px;
}

.alb img {
    height: 80px;
    width: 80px;
}

.video {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.social-media {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    justify-content: center;
    background: #ffffff;
}

.sct {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    justify-content: center;
    margin-top: 40px;
}

.sc-top {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    justify-content: center;
    background: #056674;
    padding: 40px 20px;
    border-radius: 22px;
    position: relative;
    width: 100%;
}

.sc-top > img {
    width: 136px;
    position: absolute;
    top: -30px;
    left: 30px;
}

.sc-s a img {
    height: 48px;
}

.sc-top span {
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
}

.sc-s {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.sc {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    justify-content: center;
    margin: 30px 0;
}

.sc b {
    font-weight: 1000;
    font-size: 24px;
}

.scf {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.scs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.scl {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.sc img {
    border-radius: 10px;
}

.sc-more {
    text-decoration: none;
    color: #444444;
    font-size: 16px;
    box-shadow: 1px 0 2px rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 4px 14px;
    background-color: #ffffffa3;
}

.sponsers {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding-top: 30px;
}

.sponsers-titr {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    justify-content: center;
    margin-bottom: 30px;
}

.sponsers-titr b {
    font-weight: 1000;
    font-size: 24px;
}

.sponser-img {
    height: auto;
    width: 160px;
}

.sponsers-img {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.lisence {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding-top: 30px;
}

.lisence-titr {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    justify-content: center;
    margin-bottom: 30px;
}

.lisence-titr b {
    font-weight: 1000;
    font-size: 24px;
}

.lisence img {
    height: auto;
    width: 150px;
}

.lisence-img {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

footer {
    background-color: #e1ece4;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    justify-content: center;
    padding: 20px;
}

.footer {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 45px;
    justify-content: center;
}

.footer-first {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    justify-content: flex-end;
}

.footer-first img {
    width: 220px;
    margin-right: 11px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    justify-content: flex-end;
}

.footer .info {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 5px;
    justify-content: flex-end;
}

.footer .info img {
    width: 32px;
}

.footer-second {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    justify-content: flex-end;
    margin-top: 45px;
}

.footer-second .input-group-prepend span {
    font-size: 16px;
    font-weight: 600;
    background: #056674;
    border-radius: 15px;
    color: #fff;
}

.newsletter-input {
    border: 1px solid #056674;
    border-radius: 0 15px 15px 0 !important;
    border-left: none;
}

.newsletter {
    border: 1px solid #056674;
    border-radius: 15px;
}

.fs-first {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    justify-content: flex-end;
}

.fs-first p {
    font-weight: 400;
    font-size: 16px;
}

.fsf-links {
    display: flex;
    flex-direction: row-reverse;
    align-items: self-start;
    gap: 15px;
    justify-content: flex-end;
}

.fsf-links img {
    width: 32px;
    margin-left: 11px;
}

.fs-second {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    justify-content: flex-end;
}

.fss-links {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 11px;
    justify-content: flex-end;
}

.fss-links img {
    width: 24px;
    margin-left: 11px;
}

.footer-third {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    justify-content: flex-end;
    margin-top: 45px;
}

.ft-titr {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-bottom: 2px #056674 solid;
    padding: 2px 0;
}

.ft-titr b {
    font-weight: 600;
    font-size: 16px;
}

.ft-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    justify-content: flex-end;
}

.ft-links a {
    text-decoration: none;
    color: #000000;
    display: flex;
    justify-content: flex-end;
}

.footer-last {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.about-input {
    display: flex;
    align-items: center;
    justify-content: center;
}

.a-input {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
    background-image: url("assets/img/input.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    padding: 20px 40px 20px 300px;
    width: 800px;
}

.a-input > span {
    color: #ffffff;
}

.about .input-group {
    display: flex;
    width: 400px;
    border: 1px #ffffff solid;
    border-radius: 16px;
    background: #056674;
}

.about .input-group-prepend {
    display: flex;
    background: #f1f1f1;
    align-items: center;
    border-radius: 16px;
}

.about .input-group-prepend span {
    font-size: 14px;
    font-weight: 600;
    color: #056674;
}

.about .input-group input {
    border-radius: 16px;
    border: none;
    background: #056674;
    fill: #fff;
    padding: 11px;
}

.parts {
    overflow-x: hidden;
    background: #ffffff;
}

.parts-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    justify-content: center;
    padding: 50px 20px 200px;
}

.parts-top span {
    font-size: 20px;
    font-weight: 400;
}

.parts-top b {
    font-weight: 1000;
    font-size: 24px;
}

.parts-top p {
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    /*width: max(400px, 800px);*/
    line-height: 2;
}

.parts-bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    justify-content: center;
    background: none;
    margin-top: -150px;
}

@media (min-width: 1000px) {
    .parts-bottom {
        transform: translateX(-11%);
    }
}

@media (min-width: 1200px) {
    .parts-bottom {
        transform: translateX(-12%);
    }
}

@media (min-width: 1400px) {
    .parts-bottom {
        transform: translateX(-13%);
    }
}

@media (min-width: 1600px) {
    .parts-bottom {
        transform: translateX(-13%);
    }
}

@media (min-width: 2000px) {
    .parts-bottom {
        transform: translateX(-15%);
    }
}

.dr-bottom {
    margin-top: 33px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dr-bottom span {
    font-size: 10px;
}

.part {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
    padding: 10px 10px 15px;
    background: #f1f2f3;
    border-radius: 20px;
    z-index: 3;
    position: relative;
}

.part-img {
    width: 99%;
}

.part span {
    font-size: 18px;
    font-weight: 600;
}

.part .border-line {
    position: absolute;
    right: 20px;
    bottom: 20px;
}

.parts-bottom .part span {
    padding: 20px 2px;
    font-size: 23px;
}

.downloads {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    justify-content: center;
    padding-top: 300px;
    margin-top: -160px;
    background: #ffffff;
}

.downloads-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.downloads-left img {
    width: 500px;
}

.downloads-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    justify-content: center;
    width: 500px;
}

.dr-top {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: flex-end;
}

.swiper {
    width: 100%;
}

.text-justify {
    text-align: justify !important;
}

.fs-5-5 {
    font-size: 1.1rem !important;
}

.bg-input {
    background: #056674;
    border-radius: 35px;
}

.placeholder-light::placeholder {
    color: #737fa0 !important;
}

.w-35 {
    width: 35% !important
}

.w-40 {
    width: 40% !important
}

.w-45 {
    width: 45% !important
}

.news-background {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 60px;
    justify-content: center;
}

.news-top {
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-top b {
    font-weight: 1000;
    font-size: 24px;
}

.news-bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.news-part {
    padding: 10px;
    background: #ffffff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    justify-content: center;
    position: relative;
}

.np-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    justify-content: center;
    width: 100%;
    padding: 4px;
}

.np-top img {
    width: 100%;
    border-radius: 12px;
}

.np-bottom {
    padding: 4px 8px;
    text-align: justify;
}

.news-part > img {
    position: absolute;
    right: 30px;
    bottom: 212px;
}

.projects-background {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #056674;
    padding: 60px 20px 40px;
}

.projects-top {
    display: flex;;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.projects-top h2 {
    font-size: 26px;
    font-weight: bolder;
    color: #ffffff;
}

.projects-bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.projects-part {
    padding: 20px;
    background: #ffffff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    justify-content: center;
    max-width: 360px !important;
}

.projects-part .img {
    min-width: 320px;
}

.projects-part h5 {
    text-align: center;
    font-weight: bolder;
    margin-top: 15px;
    margin-bottom: 15px;
}

.projects-part .buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.projects-part .buttons a {
    text-decoration: none;
    padding: 5px 25px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.projects-part .buttons .more {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #66bebf;
    color: #fff;
    box-shadow: inset 0 0 6px 2px #c7dcf9
}

.projects-part .buttons .invest {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ff4b5c;
    color: #000;
    box-shadow: inset 0px 0px 6px 3px #f8f3d7;
    text-decoration: none;
    padding: 5px 25px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.projects-p {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.projects-p .p {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
    gap: 5px;
}

.projects-more {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.projects-more a {
    background: #fff;
}

.projects-part .progress {
    height: 10px;
}

.projects-part .progress-bar {
    background-color: #056674;
    height: 6px;
    margin-top: 2px;
    margin-bottom: 2px;
    border-radius: 5px;
}

.projects-part .p-circle {
    background: #056674;
    padding: 2px 5px;
    border-radius: 50%;
    margin-left: -4px;
    box-shadow: inset 0 0 0 2px #5477ee;
}

.equal-height {
    display: flex;
}

.equal-height > [class*='col-'] {
    display: flex;
    align-items: stretch;
}

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

.side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    justify-content: center;
    width: 100%;
    background-color: #e1ece4;
    margin-top: 60px;
}

.side-top {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.side-top b {
    font-weight: 600;
    font-size: 18px;
}

.side-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.sb {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 20px 24px;
    border-radius: 10px;
    gap: 7px;
    min-width: 220px;
    max-width: 200px;
}

.sb:hover {
    background: #056674;
}

.sb:hover .img {
    background-color: #ffffff;
}

.sb:hover span {
    color: #ffffff;
}

.sb span {
    text-align: center;
    margin-top: 8px;
}

.sb .img {
    padding: 5px;
    background: rgba(0, 100, 225, 0.2);
    border-radius: 12px;
}

.sb .img svg {
    width: 40px;
    height: 40px;
}

.internal-pages {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-p {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.contact-p h1, .internal-pages h1 {
    font-weight: 1000 !important;
    font-size: 36px;
    color: #056674;
}

.contact-p p {
    color: #303030;
    font-size: 15px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #056674;
    min-width: 250px;
    padding: 40px 10px 10px;
    border-radius: 20px;
    position: relative;
    color: #ffffff;
    gap: 5px;
    justify-content: center;
    height: 130px;
}

.internal-pages .content {
    font-size: 19px;
    letter-spacing: 2px;
    line-height: 30px;
    width: 100%;
}

.internal-pages .content p {
    padding-top: 2px;
}

.site-page {
    padding: 26px 0 60px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.page-hero {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(130deg, #056674 0%, #66bebf 48%, #66bebf 100%);
    color: #ffffff;
    padding: 28px 30px;
    box-shadow: 0 22px 45px rgba(12, 27, 79, 0.25);
}

.page-hero::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    top: -100px;
    right: -45px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
}

.page-hero::after {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    left: -180px;
    bottom: -90px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
}

.page-hero .hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.hero-tag {
    color: #10206f;
    background: #ffffff;
    border-radius: 100px;
    padding: 4px 14px;
    font-size: 13px;
    font-weight: 600;
}

.page-hero h1 {
    color: #010101;
    font-size: clamp(1.5rem, 3.2vw, 2.5rem);
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.page-hero p {
    color: #000000;
    margin: 0;
    max-width: 780px;
    position: relative;
    z-index: 2;
}
body.dark-mode .page-hero p,body.dark-mode .page-hero h1{
    color: #ffffff;
}
.page-hero .btn {
    margin-top: 18px;
    position: relative;
    z-index: 2;
}

.panel {
    background: #ffffff;
    border: 1px solid #66bebf;
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(6, 17, 66, 0.08);
}

.panel.p-md {
    padding: 22px;
}

.panel-title {
    color: #0a1278;
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 16px;
}

.panel-subtitle {
    color: #4f5e7e;
    margin-bottom: 16px;
}

.content-shell {
    padding: 22px;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.filter-chip {
    padding: 6px 14px;
    border-radius: 14px;
    background: #e1ece4;
    color: #2d3d86;
    border: 1px solid #dde5ff;
    text-decoration: none;
    transition: all 0.25s ease;
    font-size: 14px;
}

.filter-chip.active,
.filter-chip:hover {
    color: #fff;
    background: #056674;
    border-color: #056674;
}

.blog-grid,
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
}

.blog-card,
.shop-card,
.order-list-item {
    background: #fff;
    border: 1px solid #e1ece4;
    border-radius: 18px;
    box-shadow: 0 10px 26px rgba(18, 40, 89, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover,
.shop-card:hover,
.order-list-item:hover,
.product-preview:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(18, 40, 89, 0.16);
}

.blog-card-image,
.shop-card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.blog-card-content,
.shop-card-content {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.post-meta,
.shop-meta {
    color: #6272a0;
    font-size: 12px;
}

.post-meta i,
.shop-meta i {
    margin-left: 4px;
}

.blog-card h3,
.shop-card h3 {
    color: #0f1f6b;
    font-size: 18px;
    margin-bottom: 2px;
}

.blog-card p,
.shop-card p {
    color: #5e6b8a;
    line-height: 1.95rem;
    margin-bottom: 6px;
    flex-grow: 1;
}

.shop-card .price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
}

.shop-card .price-main {
    color: #0b2a85;
    font-weight: 700;
    font-size: 1.25rem;
}

.shop-card .price-main span {
    color: #7b8399;
    font-size: 14px;
    text-decoration: line-through;
    margin-right: 6px;
}

.product-preview {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-gallery {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #66bebf;
    background: #fff;
    padding: 12px;
}

.product-gallery img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.product-gallery-wrap {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.product-main-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #66bebf;
    background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
    padding: 12px;
}

.product-main-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.product-main-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(120deg, #f85d4c 0%, #fd8c7c 100%);
    color: #fff;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 999px;
    z-index: 1;
}

.product-thumbs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.product-thumb-btn {
    padding: 0;
    border: 1px solid #d7def6;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    cursor: pointer;
}

.product-thumb-btn img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.product-thumb-btn.active {
    border-color: #1e45c8;
    box-shadow: 0 8px 18px rgba(30, 60, 173, 0.22);
}

.product-title {
    color: #04166f;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 2.2rem;
}

.product-rating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #5e6d96;
    margin-top: 8px;
    font-size: 14px;
}

.product-rating i {
    color: #ffb400;
}

.product-price-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 16px 0;
    flex-wrap: wrap;
}

.product-price-main {
    color: #041c8a;
    font-size: 2rem;
    font-weight: 800;
}

.product-price-off {
    color: #7b8399;
    font-size: 1rem;
    text-decoration: line-through;
}

.product-save {
    background: #e5efff;
    color: #0846b8;
    border-radius: 999px;
    padding: 5px 10px;
    font-weight: 600;
    font-size: 12px;
}

.product-trust-points {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0 12px;
}

.product-trust-points .badge {
    background: #ecf1ff;
    color: #2d3f79;
    border: 1px solid #d8e2fb;
    border-radius: 10px;
    padding: 6px 10px;
    font-size: 12px;
}

.product-buy-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.product-buy-actions .amount-control {
    width: 136px;
    margin: 0;
}

.product-buy-actions .amount-control button {
    width: 36px;
    height: 38px;
    border-radius: 12px;
    font-size: 22px;
    line-height: 1;
}

.product-buy-actions .amount-control input {
    width: 50px;
    height: 38px;
    border-radius: 12px;
}

.product-buy-button {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    min-width: 170px;
    height: 42px;
    padding: 0 16px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(120deg, #056674 0%, #1648c3 100%);
}

.product-buy-button.secondary {
    color: #172b70;
    background: #ffffff;
    border: 1px solid #c8d5f1;
}

.product-tab-nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 8px 0 16px;
}

.product-tab-btn {
    border-radius: 999px;
    border: 1px solid #d4dcf4;
    background: #fff;
    color: #3b4b7c;
    padding: 7px 14px;
    font-size: 14px;
    min-height: 36px;
}

.product-tab-btn.active,
.product-tab-btn:hover {
    color: #fff;
    background: #056674;
    border-color: #056674;
}

.product-tab-content > .tab-pane {
    display: none;
}

.product-tab-content > .tab-pane.show {
    display: block;
}

.product-tab-content > .tab-pane p {
    margin-bottom: 12px;
    line-height: 2rem;
    color: #4b587f;
}

.product-highlights,
.product-specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.product-highlights li,
.product-specs li {
    list-style: none;
    margin: 0;
    color: #4c5883;
}

.product-highlights li::before,
.product-specs li::before {
    content: "✓";
    color: #056674;
    margin-left: 8px;
}

.product-related-section {
    margin-top: 22px;
}

.product-related-section .section-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #101f73;
    margin-bottom: 14px;
}

.product-related-grid {
    display: grid;
    gap: 16px;
}

.product-related-grid .shop-card .btn {
    font-size: 14px;
    padding: 5px 14px;
}

.shop-card {
    position: relative;
}

.shop-card-media {
    position: relative;
}

.shop-card-media img {
    width: 100%;
    aspect-ratio: 16 / 16;
    object-fit: contain;
    border: 2px solid #f5f5f5;
    border-radius: 12px;
}
body.dark .shop-card-media img {
    border: 2px solid #333333;
}
.shop-card-badges {
    position: absolute;
    top: 10px;
    inset-inline-start: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.shop-card-badge {
    font-size: 11px;
    border-radius: 999px;
    padding: 4px 10px;
    color: #fff;
    font-weight: 600;
}

.shop-card-badge.new {
    background: #1ea8ff;
}

.shop-card-badge.sale {
    background: #ff5f5f;
}

.shop-card-badge.hit {
    background: #f59f00;
}

.shop-card-category {
    font-size: 12px;
    color: #6373a1;
}

.shop-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #586a95;
    gap: 8px;
}

.shop-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.shop-card-meta .shop-meta i {
    color: #ffbe2f;
}

.shop-card-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
    align-items: stretch;
}

.shop-card-actions .btn-soft,
.shop-card-actions .btn-blue {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    padding: 8px 14px;
    min-height: 38px;
    line-height: 1.2;
    border-radius: 10px;
}

.shop-card-actions .btn-soft {
    background: #fff;
    border: 1px solid #d2ddf7;
    color: #1a2f72;
}

.shop-card-actions .btn-soft:hover {
    background: #e1ece4;
    color: #0f2a8d;
}

.shop-card .price-row {
    margin-top: 12px;
}

.home-shop-section {
    padding: 46px 0 18px;
    background: linear-gradient(180deg, #f1f5ff 0%, #fff 28%, #fff 100%);
}

.home-shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.home-shop-segment {
    display: inline-flex;
    background: #f2f7ff;
    border: 1px solid #dbe6ff;
    border-radius: 999px;
    padding: 4px;
}

.shop-segment-btn {
    border: none;
    border-radius: 999px;
    padding: 8px 18px;
    font-size: 14px;
    background: transparent;
    color: #36497a;
    transition: all 0.25s ease;
}

.shop-segment-btn:hover,
.shop-segment-btn.active {
    color: #fff;
    background: linear-gradient(120deg, #0a45b8 0%, #193a98 100%);
}

.shop-segment-btn i {
    font-size: 14px;
}

.home-shop-heading {
    color: #0b1f78;
    font-size: 1.65rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
}

.home-shop-subtitle {
    text-align: center;
    color: #5d6c8f;
    margin: -6px 0 18px;
    max-width: 720px;
    margin-inline: auto;
}

.home-shop-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.home-shop-grid .shop-card {
    border-radius: 20px;
}

.home-shop-grid .shop-card-content {
    padding: 12px;
}

.home-shop-grid .shop-card h3 {
    margin-bottom: 2px;
}

.home-shop-grid .shop-card-content > p {
    font-size: 15px;
    line-height: 2rem;
}

.home-shop-panels {
    margin-top: 6px;
}

.home-shop-panel {
    display: none;
}

.home-shop-panel.is-active {
    display: grid;
}

.home-shop-panels .shop-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.product-grid.home-shop-grid.home-shop-panel {
    transition: opacity 0.25s ease;
}

.home-shop-grid .shop-card-actions .btn {
    justify-content: center;
    gap: 8px;
}

.blog-card .btn-more {
    font-size: 13px;
    padding: 8px 14px;
    min-height: 38px;
    line-height: 1.2;
    align-self: flex-start;
    border-radius: 10px;
}

.shop-card-actions .btn-blue {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.feature-list {
    margin-top: 12px;
    display: grid;
    gap: 8px;
    z-index:2;
}

.product-breadcrumb {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    color: #63739f;
    font-size: 14px;
}

.product-breadcrumb a {
    color: #273b80;
    text-decoration: none;
}

.product-breadcrumb a:hover {
    text-decoration: underline;
}

.product-meta-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 14px 0;
}

.product-meta-strip .meta-chip {
    background: #eef3ff;
    color: #28408f;
    border-radius: 999px;
    padding: 6px 12px;
    border: 1px solid #d8e4ff;
    font-size: 13px;
}

.product-buy-sticky {
    position: sticky;
    top: 82px;
    z-index: 5;
}

.product-mobile-cta {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.12);
    padding: 10px 14px;
    z-index: 3;
    border-top: 1px solid #d8e2f8;
}

.product-mobile-cta .product-buy-button {
    width: 100%;
}

.product-trust-points .shop-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    background: #e1ece4;
    border-radius: 999px;
    padding: 6px 10px;
    border: 1px solid #d8e7ff;
}

.shop-toolbar {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.shop-toolbar-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.shop-toolbar-top h2 {
    margin: 0;
    color: #101e73;
}

.shop-sort-select {
    max-width: 260px;
    border: 1px solid #d6e2fa;
    border-radius: 12px;
    height: 42px;
}

.feature-list li {
    list-style: none;
    color: #5a688f;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-list li::before {
    content: "✓";
    color: #056674;
    font-weight: 700;
}

.amount-control {
    width: 120px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.amount-control button {
    width: 32px;
    height: 32px;
    border: 1px solid #cfdbf8;
    border-radius: 10px;
    background: #f2f7ff;
    color: #0b3da8;
}

.amount-control input {
    width: 42px;
    border: 1px solid #d3ddf6;
    text-align: center;
    border-radius: 10px;
    height: 32px;
}

.checkout-form .form-control,
.checkout-form .form-select,
.checkout-form textarea {
    border: 1px solid #c9d8f4;
    border-radius: 12px;
}

.order-summary {
    position: sticky;
    top: 110px;
}

.summary-lines {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.summary-line,
.summary-total {
    display: flex;
    justify-content: space-between;
    color: #374b79;
}

.summary-total {
    color: #061b71;
    font-size: 1.25rem;
    padding-top: 8px;
    border-top: 1px dashed #c4d0ee;
}

.cart-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.cart-table thead th {
    color: #69789f;
    font-weight: 500;
    background: none;
}

.cart-table tbody tr {
    background: #fff;
    border: 1px solid #dce3f7;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(13, 30, 67, 0.06);
}

.cart-table td,
.cart-table th {
    vertical-align: middle;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-item img {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    object-fit: cover;
}

.cart-item-title {
    display: inline-block;
    color: #0e2b8b;
    font-weight: 700;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 10px;
}

.payment-method {
    border: 1px solid #d8e0f5;
    border-radius: 12px;
    padding: 12px 14px;
    color: #475c92;
    transition: all 0.2s ease;
    cursor: pointer;
}

.payment-method.active,
.payment-method:hover {
    border-color: #056674;
    color: #056674;
    background: #edf4ff;
}



body.dark-mode .main {
    background-color: #0b1220;
    color: #e2e8f0;
    padding-top: 12px;
    padding-bottom: 56px;
}

body.dark-mode .main > .container,
body.dark-mode .main > .container-fluid,
body.dark-mode .main > .container-sm,
body.dark-mode .main > .container-md,
body.dark-mode .main > .container-lg,
body.dark-mode .main > .container-xl,
body.dark-mode .main > .container-xxl {
    background: transparent;
}

body.dark-mode .flash-nav {
    background-color: #020617;
    border-bottom: 1px solid #1e293b;
}

body.dark-mode .header,
body.dark-mode .mobile-nav {
    background-color: #0f172a !important;
    border-bottom: none;
}

body.dark-mode #header {
    box-shadow: none;
}

body.dark-mode .sticky-header {
    background: #0f172a;
    border-bottom: none;
    box-shadow: none;
}

body.dark-mode .header-buttons {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    gap: 10px;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
}

body.dark-mode .header-buttons::-webkit-scrollbar {
    display: none;
}

body.dark-mode .header-buttons .toggle-wrapper,
body.dark-mode .header-buttons .language,
body.dark-mode .header-buttons .download,
body.dark-mode .header-buttons .enter {
    flex-shrink: 0;
}

@media (min-width: 992px) {
    .header-buttons {
        max-width: 100%;
        flex-wrap: nowrap;
    }

    .header .col-2.d-flex {
        justify-content: flex-end;
        overflow: visible;
    }
}

body.dark-mode .navbar-nav .nav-link {
    color: #e5e7eb !important;
}

body.dark-mode .navbar-nav .nav-link:hover {
    color: #f8fafc !important;
    background-color: rgba(148, 163, 184, 0.18);
}

body.dark-mode .mobile-menu {
    background-color: #111827;
}

body.dark-mode .hero-background {
    background: linear-gradient(180deg, #0f172a 0%, #101827 100%);
}

body.dark-mode .hero {
    background: linear-gradient(to left, #1d4ed8 22%, rgba(15, 23, 42, 0.2) 50%);
}

body.dark-mode .btn-options {
    background: #1e293b;
}

body.dark-mode .btn-more {
    color: #e2e8f0;
    border-color: #94a3b8;
}

body.dark-mode .btn-blue {
    background-color: #e1ece4;
}

body.dark-mode .services,
body.dark-mode .about,
body.dark-mode .social-media,
body.dark-mode .lisence,
body.dark-mode .sponsers,
body.dark-mode .downloads,
body.dark-mode .projects,
body.dark-mode .project,
body.dark-mode .home-shop-section,
body.dark-mode .contact-us,
body.dark-mode .founds,
body.dark-mode .page-hero,
body.dark-mode .internal-pages,
body.dark-mode footer {
    background-color: #0b1220 !important;
}

body.dark-mode .service {
    color: #cbd5e1;
}

body.dark-mode .main > h5.text-center,
body.dark-mode .option span,
body.dark-mode .al-top span,
body.dark-mode .al-top h2,
body.dark-mode .albr b,
body.dark-mode .albr span {
    color: #f8fafc !important;
}

body.dark-mode .option i {
    color: #93c5fd;
}

body.dark-mode .service:hover {
    background: #1f2937;
}

body.dark-mode .service span {
    color: #e2e8f0;
}

body.dark-mode .service-hover span,
body.dark-mode .service-hover svg {
    color: #93c5fd;
    fill: #93c5fd;
}

body.dark-mode .sc-top {
    background: #1e3a8a;
}

body.dark-mode footer {
    background-color: #0f172a;
    border-top: 1px solid #1e293b;
}

body.dark-mode .footer-last,
body.dark-mode .footer .info,
body.dark-mode .footer a,
body.dark-mode .ft-links a,
body.dark-mode .footer-first p,
body.dark-mode .footer-first b,
body.dark-mode .footer-second p,
body.dark-mode .footer-third a {
    color: #cbd5e1 !important;
}

body.dark-mode .footer .input-group-prepend span {
    background: #1e40af;
}

body.dark-mode .newsletter-input {
    background: #111827;
    border-color: #334155;
    color: #f8fafc;
}

body.dark-mode .newsletter-input::placeholder {
    color: #94a3b8;
}

body.dark-mode .language,
body.dark-mode .download,
body.dark-mode .enter,
body.dark-mode .mobile-settings-trigger,
body.dark-mode .mobile-profile-btn {
    background-color: #1e293b;
    border-color: #334155;
    color: #f8fafc;
}

body.dark-mode .language,
body.dark-mode .download,
body.dark-mode .enter,
body.dark-mode .mobile-settings-trigger,
body.dark-mode .mobile-profile-btn,
body.dark-mode .language i,
body.dark-mode .language span,
body.dark-mode .download i,
body.dark-mode .download span,
body.dark-mode .enter span,
body.dark-mode .enter i {
    color: #f8fafc;
}

body.dark-mode .toggle-wrapper {
    background: #0b1220;
    border: 1px solid #475569;
}

body.dark-mode .toggle-wrapper .toggle-circle {
    background: #1e293b;
    border: 1px solid #334155;
}

body.dark-mode .toggle-wrapper.active {
    background: #1e293b;
    border-color: #60a5fa;
}

body.dark-mode .toggle-wrapper .toggle-circle i {
    color: #f8fafc;
}

body.dark-mode .toggle-wrapper.active .toggle-circle i {
    color: #f8fafc;
}

body.dark-mode .mobile-theme-toggle {
    background: #1e293b;
    border: 1px solid #334155;
    color: #f8fafc;
}

body.dark-mode .mobile-theme-toggle:hover,
body.dark-mode .mobile-theme-toggle:focus {
    background: #334155;
    color: #ffffff;
}

body.dark-mode .header .bi,
body.dark-mode .mobile-settings-item i,
body.dark-mode .mobile-settings-trigger i,
body.dark-mode .mobile-theme-toggle i,
body.dark-mode .toggle-theme-icon {
    color: #f8fafc !important;
}

body.dark-mode .mobile-settings-menu {
    background: #111827;
    border-color: #334155;
}

body.dark-mode .mobile-settings-item {
    color: #e2e8f0;
}

body.dark-mode .mobile-settings-item:hover,
body.dark-mode .mobile-settings-item:focus {
    background: #1e293b;
    color: #f8fafc;
}

body.dark-mode .bg-white,
body.dark-mode .content-white,
body.dark-mode .about,
body.dark-mode .downloads,
body.dark-mode .project,
body.dark-mode .services,
body.dark-mode .parts,
body.dark-mode .news-background,
body.dark-mode .projects-background,
body.dark-mode .timeline-item .timeline-content,
body.dark-mode .timeline-item::after,
body.dark-mode .timeline::before {
    background-color: #0b1220 !important;
}

body.dark-mode .timeline-item::after {
    color: #f8fafc;
    border-color: #475569;
}

body.dark-mode .timeline-item .timeline-content p {
    color: #cbd5e1;
}

body.dark-mode .text-secondary,
body.dark-mode .timeline-item h5 {
    color: #93c5fd !important;
}

body.dark-mode .btn-light,
body.dark-mode .btn-light:hover,
body.dark-mode .btn-light:focus,
body.dark-mode .btn-light:active,
body.dark-mode .btn-light.dropdown-toggle {
    background-color: #1e293b !important;
    color: #f8fafc !important;
    border-color: #334155 !important;
}

body.dark-mode .btn-light:hover {
    background-color: #334155 !important;
}

body.dark-mode .btn-light i {
    color: #f8fafc;
}

body.dark-mode .btn-support {
    background: #1f2937;
    border-color: #334155;
    color: #f8fafc;
}

body.dark-mode .btn-support:hover {
    background: #334155;
}

body.dark-mode .blog-card,
body.dark-mode .shop-card,
body.dark-mode .product-preview,
body.dark-mode .cart-table,
body.dark-mode .checkout-form,
body.dark-mode .contact-p,
body.dark-mode .panel,
body.dark-mode .page-hero,
body.dark-mode .internal-pages {
    background-color: #111827;
    border: 1px solid #334155;
    color: #e5e7eb;
}

body.dark-mode .blog-card:hover,
body.dark-mode .shop-card:hover,
body.dark-mode .product-preview:hover {
    box-shadow: 0 16px 24px rgba(0, 0, 0, 0.38);
}

body.dark-mode .blog-card h3,
body.dark-mode .shop-card h3,
body.dark-mode .product-preview h3 {
    color: #f8fafc;
}

body.dark-mode .blog-card p,
body.dark-mode .shop-card p,
body.dark-mode .product-preview p,
body.dark-mode .al-top p,
body.dark-mode .contact-info p,
body.dark-mode .product-description p,
body.dark-mode .product-feature {
    color: #cbd5e1;
}

body.dark-mode .shop-card-category,
body.dark-mode .shop-card-meta,
body.dark-mode .post-meta {
    color: #94a3b8;
}

body.dark-mode .shop-card .price-main {
    color: #f8fafc;
}

body.dark-mode .shop-card .price-main span {
    color: #94a3b8;
}

body.dark-mode .post-meta,
body.dark-mode .product-meta-strip,
body.dark-mode .product-tab-btn,
body.dark-mode .shop-card-meta,
body.dark-mode .product-highlights li,
body.dark-mode .product-specs li {
    color: #94a3b8;
}

body.dark-mode .btn-soft {
    background: #0f172a;
    border-color: #475569;
    color: #e2e8f0;
}

body.dark-mode .btn-soft:hover {
    background: #1e293b;
    color: #ffffff;
}

body.dark-mode .btn-more {
    background: #0f172a;
    border-color: #475569;
    color: #e2e8f0;
}

body.dark-mode .btn-more:hover {
    background: #1e293b;
    border-color: #64748b;
    color: #ffffff;
}

body.dark-mode .price-main span,
body.dark-mode .price-off {
    color: #f8fafc;
}

body.dark-mode .product-price-off,
body.dark-mode .product-save {
    color: #fca5a5;
}

body.dark-mode .cart-table thead th,
body.dark-mode .cart-table td,
body.dark-mode .cart-table th {
    color: #e2e8f0;
    border-color: rgba(148, 163, 184, 0.3);
}

body.dark-mode .amount-control button,
body.dark-mode .amount-control input,
body.dark-mode .form-control,
body.dark-mode .form-select,
body.dark-mode textarea,
body.dark-mode .checkout-form .form-control,
body.dark-mode .checkout-form .form-select {
    background-color: #0f172a;
    border-color: #334155;
    color: #e2e8f0;
}

body.dark-mode .payment-method {
    background: #1f2937;
    border-color: #334155;
    color: #e2e8f0;
}

body.dark-mode .payment-method.active,
body.dark-mode .payment-method:hover {
    border-color: #60a5fa;
    background: #1e3a8a;
}

body.dark-mode .mobile-menu-close {
    background: #1e293b;
    color: #bfdbfe;
}

body.dark-mode .cart-table tbody tr {
    background: #0f172a;
    border-color: #334155;
}

body.dark-mode .summary-line,
body.dark-mode .summary-total {
    color: #e2e8f0;
}

body.dark-mode .summary-total {
    border-top-color: rgba(148, 163, 184, 0.28);
}

body.dark-mode .home-shop-heading,
body.dark-mode .news-top h2,
body.dark-mode .parts-top span,
body.dark-mode .parts-top h2 {
    color: #f8fafc;
}

body.dark-mode .home-shop-subtitle,
body.dark-mode .parts-top p,
body.dark-mode .np-bottom p,
body.dark-mode .np-bottom span {
    color: #cbd5e1;
}

body.dark-mode .home-shop-segment {
    background: #1e293b;
    border-color: #334155;
}

body.dark-mode .shop-segment-btn {
    color: #cbd5e1;
}

body.dark-mode .shop-segment-btn:hover,
body.dark-mode .shop-segment-btn.active {
    background: linear-gradient(120deg, #1d4ed8 0%, #1e40af 100%);
    color: #ffffff;
}

body.dark-mode .home-shop-panels .shop-card {
    background: #111827;
}

body.dark-mode .services .swiper-pagination-bullet {
    background: #64748b;
    opacity: 0.8;
}

body.dark-mode .services .swiper-pagination-bullet-active {
    background: #93c5fd;
    opacity: 1;
}

body.dark-mode .np-top h4 {
    color: #f8fafc;
}

body.dark-mode .news-part {
    border: 1px solid #334155;
}
.parts-background, .news-background{
    background-color: #056674;
    color:#ffffff
}
.news-part{
    color: #056674;
}
body.dark-mode .news-background,
body.dark-mode .parts-background {
    background-image: none !important;
    background: #0b1220 !important;
}

body.dark-mode .home-shop-section {
    background-image: none !important;
    background: #0b1220 !important;
}

body.dark-mode .part,
body.dark-mode .projects-part,
body.dark-mode .news-part,
body.dark-mode .home-shop-panels .shop-card {
    background: #111827 !important;
    border: 1px solid #334155;
    box-shadow: 0 14px 30px rgba(2, 6, 23, 0.45);
}

body.dark-mode .part span,
body.dark-mode .projects-part h5 {
    color: #f8fafc;
}

body.dark-mode .side {
    background: #0b1220;
}

body.dark-mode .sb {
    background: #111827;
    border: 1px solid #334155;
    box-shadow: 0 10px 24px rgba(2, 6, 23, 0.35);
}

body.dark-mode .sb .img {
    background: #0f172a;
}

body.dark-mode .sb span {
    color: #e2e8f0;
}

body.dark-mode .sb .img svg,
body.dark-mode .sb .img svg * {
    fill: #e2e8f0 !important;
    stroke: #e2e8f0 !important;
}

body.dark-mode .sb:hover {
    background: #1e293b;
}

body.dark-mode .sb:hover .img {
    background: #1e293b;
}

body.dark-mode .internal-pages h1,
body.dark-mode .internal-pages h4,
body.dark-mode .internal-pages .content p {
    color: #f8fafc;
}

body.dark-mode .internal-pages {
    border: 0 !important;
    border-radius: 24px;
    padding: 22px 16px;
    margin-top: 18px;
    margin-bottom: 56px;
}

body.dark-mode .img-head-l {
    margin-top: 0;
}

body.dark-mode .contact-p {
    gap: 12px;
    text-align: center;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
}

body.dark-mode .img-head-l img,
body.dark-mode .about-top > img {
    border-radius: 18px;
    border: 0;
}

body.dark-mode .contact-info {
    background: #0f172a;
    border: 0;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(2, 6, 23, 0.35);
}

body.dark-mode .contact-info b,
body.dark-mode .contact-info span {
    color: #e2e8f0;
}

body.dark-mode .content-white {
    background: #111827;
    border: 1px solid #334155;
}

body.dark-mode .accordion-item::after {
    border-bottom-color: #334155;
    left: 0;
    right: 0;
}

body.dark-mode .content .accordion {
    background: transparent;
    border: 0;
    border-radius: 18px;
    padding: 0;
    overflow: hidden;
}

body.dark-mode .accordion-item {
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 0;
    background: transparent;
    border-bottom: 0;
}

body.dark-mode .accordion-item:last-child {
    border-bottom: 0;
}

body.dark-mode .accordion-button,
body.dark-mode .accordion-button:not(.collapsed) {
    background: #111827 !important;
    color: #f8fafc !important;
    border-bottom-color: #334155;
    border-radius: 0 !important;
    padding: 14px 16px;
}

body.dark-mode .accordion-button:hover,
body.dark-mode .accordion-button:not(.collapsed):hover {
    background: #1e293b !important;
}

body.dark-mode .accordion-button::after,
body.dark-mode .accordion-button:not(.collapsed)::after {
    color: #cbd5e1;
}

body.dark-mode .accordion-body {
    background: #0f172a;
    color: #e2e8f0;
    border-top: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    padding: 14px 16px;
}

body.dark-mode .btn-call-text {
    background: #1e293b !important;
    border-color: #334155 !important;
    color: #f8fafc !important;
}

body.dark-mode .btn-call {
    background: #0f172a;
    border: 1px solid #334155;
    color: #f8fafc;
}

@media (max-width: 767px) {
    body.dark-mode .mobile-menu .nav-link {
        color: #e2e8f0 !important;
    }

    body.dark-mode .mobile-menu .navbar-nav {
        border-top-color: #334155;
    }
}

@media (max-width: 991px) {
    .order-summary {
        position: static;
    }

    .page-hero {
        padding: 18px 20px;
    }

    .home-shop-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .mobile-menu {
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        position: static !important;
        width: auto;
        min-height: auto;
        transition: none !important;
        padding: 0;
        display: block;
    }

    .mobile-menu .navbar-nav {
        width: auto;
    }
}

@media (max-width: 767px) {
    .panel-title {
        font-size: 20px;
    }

    .panel-title,
    .page-hero h1,
    .mobile-settings-item,
    .mobile-menu .nav-link,
    .home-shop-section .panel-title,
    .section-title,
    .navbar-nav .nav-link {
        font-size: 15px;
        line-height: 1.9;
    }

    .page-hero p,
    .content p,
    .contact-p p,
    .product-description p,
    .product-feature,
    .shop-meta,
    .section-intro,
    .home-shop-section p,
    .panel-subtitle,
    .filter-chip {
        font-size: 14px;
        line-height: 1.9;
    }

    .filter-row {
        gap: 6px;
    }

    .filter-chip {
        padding: 4px 11px;
    }

    .blog-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }

    .blog-card .btn-more,
    .shop-card-actions .btn-soft,
    .shop-card-actions .btn-blue,
    .product-breadcrumb a {
        min-height: 32px;
    }

    .blog-card .btn-more,
    .shop-card-actions .btn-soft,
    .shop-card-actions .btn-blue {
        font-size: 12px;
        padding-inline: 10px;
    }

    .container,
    .container-fluid,
    .text-justify,
    p,
    li,
    .product-description p,
    .contact-p p,
    .content p {
        direction: rtl;
        text-align: right;
        z-index: 4;
    }

    .mobile-menu {
        gap: 10px;
        padding-top: 92px;
    }

    .product-highlights,
    .product-specs,
    .home-shop-grid {
        grid-template-columns: 1fr;
    }

    .product-buy-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .product-buy-button {
        width: 100%;
        min-width: auto;
    }

    .product-tab-nav {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 6px;
        scrollbar-width: thin;
    }

    .home-shop-toolbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .home-shop-segment {
        width: 100%;
        justify-content: stretch;
    }

    .shop-segment-btn {
        flex: 1;
        text-align: center;
    }

    .product-buy-sticky {
        position: static;
    }

    .product-mobile-cta {
        display: block;
    }

    .shop-toolbar-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .shop-sort-select {
        width: 100%;
        max-width: none;
    }
}

.contact-info .svg {
    position: absolute;
    top: -40px;
}

.contact-info .svg img {
    width: 100px;
}

.contact-info b {
    font-weight: 600;
    font-size: 16px;
    text-align: center;
}

.contact-info span {
    text-decoration: none;
    text-align: center;
    color: #e1ece4;
    text-effect: none;
    font-size: 12px;
    font-weight: 500;
}

.contact-socials {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}

.contact-socials img {
    width: 30px;
}

.img-head-l {
    margin-top: -50px;
    margin-bottom: -165px;
    max-width: 440px;
}

.q-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: .5rem;
    flex-wrap: wrap;
}

.btn-aficard {
    border: 1px solid #afbacf;
    color: #7689b0;
    font-size: 16px;
    border-radius: 22px;
    text-align: center;
    width: fit-content;
    padding: 3px 16px;
    min-width: 130px;
}

.btn-aficard:hover {
    cursor: pointer;
    border: 1px solid #939caf;
    color: #ffffff;
    background: #6a769d;
}

.btn-aficard.active {
    background: #08163f;
    color: #fff;
}

.btn-aficard.active:hover {
    cursor: pointer;
    color: #c2cdee;
    background: #056674;
}

.content .accordion {
    --bs-accordion-bg: none !important;
}

.accordion-item {
    position: relative;
    border: none;
}

.accordion-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 11px;
    right: 11px;
    border-bottom: 1px solid #e0e0e0;
}

.accordion-button {
    padding: 20px 0;
    font-weight: 600;
    color: #333;
    background-color: transparent;
    border-top-left-radius: 15px !important;
    border-top-right-radius: 15px !important;
}

.accordion-button:hover {
    background-color: #dddfe4 !important;
    border-radius: 0 !important;
}

.accordion-button:not(.collapsed):hover {
    background-color: #dddfe4 !important;
    border-top-left-radius: 15px !important;
    border-top-right-radius: 15px !important;
}

.accordion-button:not(.collapsed) {
    color: #333;
    background-color: transparent;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button {
    font-size: 18px;
    padding: 13px;
}

.accordion-button:not(.collapsed) {
    background: #056674 !important;
    color: #e1ece4 !important;
    box-shadow: none;
    border-bottom: 1px solid #dee2e6;
}

.accordion-body {
    background-color: #fff;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    color: #000;
    font-size: 16px;
    padding: 13px;
}

.accordion-button::after {
    background-image: none !important;
    content: '+';
    font-size: 1.1rem;
    font-weight: 400;
    transform: none !important;
    transition: all 0.2s ease;
    color: #737fa0;
}

.accordion-button:not(.collapsed)::after {
    content: '−';
    color: #737fa0;
}

.banner-rez {
    padding: 25px 20px 25px 40px;
    max-width: 970px;
    margin: 20px auto;
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    background-size: cover !important;
}

.btn-call-text {
    border-radius: 15px !important;
    z-index: 1;
}

.btn-call {
    background-color: #cfe2fe;
    color: #056674;
    width: 55px;
    border-bottom-left-radius: 15px;
    border-top-left-radius: 15px;
    margin-right: -13px !important;
    z-index: 0;
}

.content-white {
    background-color: #fff;
    margin: 0 auto;
    border-radius: 15px;
    padding: 12px;
    margin-bottom: 12px;
}

.fund-img-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 17px;
}

.fund-img-list img {
    width: 175px;
}

.timeline {
    position: relative;
    margin: 20px auto;
    padding: 20px 20px;
    max-width: 900px;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 3px;
    background-color: #d0d7de;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 22px;
}

.timeline-item .timeline-content {
    background: #edf4fc;
    border-radius: 23px;
    padding: 16px 16px;
    position: relative;
    width: 46%;
    color: #626263;
    font-size: 14px;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-item::after {
    content: attr(data-step);
    position: absolute;
    top: 22%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    color: #000000;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    font-weight: bold;
    z-index: 1;
    border: 2px solid #ebeff1;
}

.timeline-item h5 {
    color: #000000;
    font-weight: 700;
    margin-bottom: 10px;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #dfe7ef;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.timeline-item .timeline-content {
    position: relative;
    z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-content::after {
    content: "";
    position: absolute;
    top: 22%;
    right: -22px;
    transform: translateY(-50%);
    border-width: 12px;
    border-style: solid;
    border-color: transparent transparent transparent #eef3f8;
    z-index: 2;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.03));
}

.timeline-item:nth-child(even) .timeline-content::after {
    content: "";
    position: absolute;
    top: 22%;
    left: -22px;
    transform: translateY(-50%);
    border-width: 12px;
    border-style: solid;
    border-color: transparent #eef3f8 transparent transparent;
    z-index: 2;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.03));
}

.timeline, .timeline-item, .timeline-item .timeline-content {
    overflow: visible !important;
}

.btn-support {
    position: fixed;
    left: 20px;
    bottom: 2%;
    background-color: #056674;
    color: #fff;
    border: none;
    border-radius: 13px;
    padding: 8px 22px;
    font-size: 17px;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-support:hover {
    background-color: #0b146f;
    color: #fff;
    transform: translateY(-2px);
}

.btn-support i {
    font-size: 18px;
}
.tp-50pr{
    bottom: unset;
    top: 50% !important;
}
@media (max-width: 991px) {
    .fund-img-list img {
        width: 150px;
    }

    .header {
        position: relative;
    }

    .mobile-nav {
        display: flex;
        flex-direction: row-reverse;
        padding-top: 0;
        padding-bottom: 0;
    }

    .mobile-menu {
        position: fixed;
        inset: 0;
        min-height: 100vh;
        width: 100%;
        max-width: 100%;
        background: linear-gradient(170deg, #ffffff 0%, #eef4ff 95%);
        z-index: 999;
        padding: 76px 18px 24px;
        overflow-y: auto;
        overflow-x: hidden;
        border-radius: 0;
        border: 0;
        box-shadow: none;
        display: flex;
        flex-direction: column;
        margin-right:-10px;
    }

    body.dark-mode .mobile-menu {
        background: #111827;
    }

    .mobile-menu .navbar-nav {
        gap: 8px;
        width: 100%;
        margin-bottom: 0;
        --bs-nav-link-padding-x: 0;
        --bs-nav-link-padding-y: 0;
    }

    .mobile-menu .nav-item {
        width: 100%;
    }

    .mobile-menu .nav-link {
        width: 100%;
        min-height: 52px;
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        border-radius: 16px;
        border: 1px solid #e8eeff;
        background: rgba(255, 255, 255, 0.7);
        margin-bottom: 8px;
        font-size: 18px;
        padding: 11px 16px !important;
        justify-content: flex-start;
        gap: 10px;
    }

    body.dark-mode .mobile-menu .nav-link {
        background: rgba(15, 23, 42, 0.9);
        border-color: #334155;
        color: #e2e8f0;
    }

    body.dark-mode .mobile-menu .nav-link i {
        color: #93c5fd;
    }

    .mobile-menu .nav-link i {
        font-size: 19px;
        width: 20px;
        text-align: center;
    }

    .mobile-menu-actions {
        /*margin-top: auto;*/
        padding: 18px 4px 0;
        border-top: 1px solid #d8e2f4;
    }

    body.dark-mode .mobile-menu-actions {
        border-top-color: #334155;
    }

    .mobile-profile-btn {
        width: 100%;
        border-radius: 16px;
        padding: 12px;
        font-size: 17px;
        box-shadow: 0 10px 22px rgba(10, 84, 190, 0.22);
    }

    .mobile-profile-btn:hover {
        transform: translateY(-1px);
    }

    .mobile-profile-btn i {
        font-size: 20px;
    }

    .contact-info {
        min-width: 200px;
    }
}

@media (max-width: 767px) {
    .about-top > img {
        width: 100%;
        height: auto;
    }

    .about-top {
        flex-direction: column;
        gap: 20px;
    }

    .a-input {
        width: 100%;
        max-width: 100%;
        padding: 20px;
        background-size: cover;
    }

    .about .input-group {
        width: 100%;
        max-width: 100%;
    }

    .about .input-group-prepend {
        width: auto;
    }

    .downloads-left img,
    .part-img,
    .downloads-left,
    .news-background,
    .projects-part .img,
    .projects-part {
        width: 100%;
        max-width: 100%;
    }

    .projects-part .img {
        min-width: 0;
    }

    .timeline::before {
        left: 8px;
        transform: none;
    }

    .timeline-item .timeline-content::after {
        display: none;
    }

    .timeline-item .timeline-content {
        width: 100%;
        margin-left: 30px;
    }

    .timeline::before {
        left: 8px;
    }

    .timeline-item::after {
        left: 8px;
        transform: translateY(-50%);
    }

    .timeline-item .timeline-content {
        width: 100%;
        margin: 0 0 30px 30px;
    }

    .hero {
        padding: 155px 12px;
    }

    .hero-links a {
        padding: 6px 10px;
    }

    .btn-options {
        flex-direction: column;
        padding-top: 22px;
        padding-bottom: 22px;
        height: auto;
        gap: 28px;
    }

    .option span {
        padding: 22px 4px;
    }

    .btn-contact-service {
        bottom: -44px;
    }

    .sb {
        width: 160px;
        min-width: 160px;
    }

    .sc-top > img {
        top: 71px;
        left: -11px;
        width: 121px;
    }

    .sc-top {
        align-items: flex-start;
    }

    .btn-blue, .btn-more {
        padding: 6px 4px;
    }

    .about .input-group {
        width: 100%;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 40px;
        height: 40px;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 50%;
    }

    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 16px;
    }

    .parts-top span {
        text-align: center;
    }

    .swiper-slide {
        padding: 14px;
    }

    .downloads {
        margin-top: -240px;
    }

    .downloads h2 {
        text-align: center;
    }

    .drt-links, .dr-bottom, .footer-first, .footer-second, .ft-links, .footer-third {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .news-top h2 {
        padding-top: 0 !important;
        margin-bottom: -22px !important;
    }

    .projects-part {
        margin-top: 12px;
    }

    .news-part {
        margin-top: 12px;
    }

    .news-background {
        padding: 1px;
    }

    .sponser-img {
        width: 150px;
    }

    .contact-info {
        margin-top: 50px
    }
}

@media (max-width: 550px) {
    .sponser-img {
        width: 140px;
    }
}

@media (max-width: 400px) {
    .sponser-img {
        width: 125px;
    }
}


/* ===== aficard modern polish - additive layer ===== */
:root {
    --rz-primary: #081f73;
    --rz-primary-2: #1649d8;
    --rz-accent: #28c4ff;
    --rz-bg-soft: #f6f8ff;
    --rz-card: rgba(255, 255, 255, 0.9);
    --rz-border: rgba(19, 53, 145, 0.12);
    --rz-shadow: 0 18px 45px rgba(8, 31, 115, 0.12);
    --rz-shadow-hover: 0 24px 58px rgba(8, 31, 115, 0.18);
}

body {
    /*background:
        radial-gradient(circle at 12% 8%, rgba(40, 196, 255, 0.14), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(22, 73, 216, 0.10), transparent 30%),
        linear-gradient(180deg, #f8faff 0%, #eef2fb 48%, #f8faff 100%);*/
    background-color: #e1ece4;
    text-rendering: optimizeLegibility;
}

.header,
.mobile-nav,
.sticky-header {
    border-bottom: 1px solid rgba(8, 31, 115, 0.08);
    backdrop-filter: blur(14px);
}

.header-last {
    min-height: 64px;
}

.navbar-nav .nav-link {
    border-radius: 16px;
}

.navbar-nav .nav-link:hover {
    box-shadow: inset 0 0 0 1px rgba(22, 73, 216, 0.10);
}

.enter,
.download,
.btn-blue,
.product-buy-button {
    background-image: linear-gradient(135deg, #056674 0%, #66bebf 100%);
    box-shadow: -11px 4px 14px 0 rgb(5 102 177 / 24%);
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

body.dark-mode .enter,
body.dark-mode .download,
body.dark-mode .btn-blue,
body.dark-mode .product-buy-button {
    background-image: linear-gradient(135deg, #01373f 0%, #056674 100%);
    color: #e1ece4;
}

.enter:hover,
.download:hover,
.btn-blue:hover,
.product-buy-button:hover {
    transform: translateY(-2px);
    box-shadow: -11px 4px 14px 0 rgb(5 102 177 / 24%);
    filter: saturate(1.05);
    color: #e1ece4;
}
body.dark-mode .enter:hover,
body.dark-mode .download:hover,
body.dark-mode .btn-blue:hover,
body.dark-mode .product-buy-button:hover {

}

.panel,
.blog-card,
.shop-card,
.order-list-item,
.content-white/*,
.internal-pages .content*/ {
    border-color: var(--rz-border);
    box-shadow: var(--rz-shadow);
}

.panel,
.content-white/*,
.internal-pages .content*/ {
    background: var(--rz-card);
    border-radius: 26px;
}

.internal-pages .content {
    padding: 26px;
    letter-spacing: 0;
    line-height: 2.15;
}

.internal-pages .content p,
.contact-p p,
.panel-subtitle,
.blog-card p,
.shop-card p {
    color: #506080;
}

.contact-p h1,
.internal-pages h1,
.panel-title,
.shop-toolbar-top h2,
.product-title {
    color: var(--rz-primary);
}

.page-hero {
    background:
        radial-gradient(circle at 12% 20%, rgba(255,255,255,0.28), transparent 28%),
        linear-gradient(135deg, #056674 0%, #66bebf 46%, #e1ece4 100%);
    color: #000000;
    box-shadow: 0 28px 62px rgba(8, 31, 115, 0.28);
}
body.dark-mode .page-hero {
    background:
        radial-gradient(circle at 12% 20%, rgba(255,255,255,0.28), transparent 28%),
        linear-gradient(135deg, #06135d 0%, #0c39a7 46%, #36b7ff 100%);
    box-shadow: 0 28px 62px rgba(8, 31, 115, 0.28);
}

.hero-tag,
.filter-chip {
    box-shadow: 0 8px 18px rgba(8, 31, 115, 0.06);
}

.filter-chip {
    border-radius: 999px;
}

.blog-card,
.shop-card {
    border-radius: 12px;
}

.blog-card-image,
.shop-card-image,
.shop-card-media img {
    transition: transform 0.35s ease;
}

.blog-card:hover .blog-card-image,
.shop-card:hover .shop-card-image,
.shop-card:hover .shop-card-media img {
    transform: scale(1.035);
}

.site-sidebar-sticky {
    position: sticky;
    top: 96px;
    align-self: flex-start;
    z-index: 4;
}

.site-sidebar-sticky .panel,
.site-sidebar-sticky .order-summary,
.product-buy-sticky {
    backdrop-filter: blur(12px);
}

.order-summary,
.product-buy-sticky {
    top: 96px;
}

.about-modern-panel,
.about-process-card,
.contact-action-card,
.support-form-card,
.contact-hours-card {
    width: 100%;
    position: relative;
    overflow: hidden;
    /*background: linear-gradient(145deg, rgba(255,255,255,0.96), rgba(244,248,255,0.92));*/
    background: linear-gradient(145deg, rgb(102 190 191), rgba(244,248,255,0.92));
    border: 1px solid var(--rz-border);
    border-radius: 30px;
    box-shadow: var(--rz-shadow);
    padding: 28px;
}

.about-modern-panel::before,
.contact-action-card::before,
.support-form-card::before,
.contact-hours-card::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(40,196,255,0.18), transparent 68%);
    top: -80px;
    left: -80px;
    pointer-events: none;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #0f57c6;
    background: rgba(22, 98, 223, 0.08);
    border: 1px solid rgba(22, 98, 223, 0.14);
    border-radius: 999px;
    padding: 5px 12px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
}

.about-modern-panel h2,
.about-process-card h2,
.contact-action-card h2,
.support-form-card h2 {
    color: var(--rz-primary);
    font-size: clamp(1.35rem, 2.8vw, 2rem);
    line-height: 1.7;
    margin-bottom: 10px;
}

.about-modern-panel p,
.contact-action-card p {
    color: #53617c;
    line-height: 2;
    margin-bottom: 0;
}

.about-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.about-chip-row span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    border: 1px solid rgba(22, 98, 223, 0.13);
    color: #18366e;
    border-radius: 999px;
    padding: 8px 13px;
    box-shadow: 0 8px 18px rgba(8, 31, 115, 0.06);
}

.about-trust-card {
    position: relative;
    background: linear-gradient(145deg, #01454e, #4aa0a1);
    color: #fff;
    border-radius: 26px;
    padding: 26px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    box-shadow: 0 24px 48px rgba(8, 31, 115, 0.25);
}

.about-trust-card .trust-icon,
.contact-action-icon,
.hours-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.about-trust-card .trust-icon {
    background: rgba(255,255,255,0.18);
    color: #fff;
    font-size: 26px;
}

.about-trust-card strong {
    font-size: 22px;
    margin-bottom: 8px;
}

.about-trust-card p {
    color: rgba(255,255,255,0.84);
    line-height: 1.9;
}

.about-trust-card .btn-blue {
    background: #fff;
    color: #0b3aa7;
    box-shadow: none;
}

.about-kpi-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.about-kpi-card {
    background: #fff;
    border: 1px solid var(--rz-border);
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 14px 32px rgba(8, 31, 115, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-kpi-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--rz-shadow-hover);
}

.about-kpi-card i {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #056674;
    background: #e1ece4;
    border-radius: 16px;
    font-size: 22px;
    margin-bottom: 12px;
}

.about-kpi-card strong,
.about-kpi-card span {
    display: block;
}

.about-kpi-card strong {
    color: var(--rz-primary);
    margin-bottom: 7px;
    font-size: 17px;
}

.about-kpi-card span {
    color: #5d6b88;
    line-height: 1.8;
    font-size: 14px;
}

.about-process-card {
    width: 100%;
}

.process-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.about-process-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 16px;
}

.about-process-step {
    position: relative;
    background: #fff;
    border: 1px dashed rgba(22, 98, 223, 0.28);
    border-radius: 22px;
    padding: 20px;
}

.about-process-step span {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #056674, #66bebf);
    color: #fff;
    border-radius: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}

.about-process-step b,
.about-process-step small {
    display: block;
}

.about-process-step b {
    color: var(--rz-primary);
    margin-bottom: 6px;
}

.about-process-step small {
    color: #69758e;
    line-height: 1.8;
}

.contact-info {
    min-height: 154px;
    height: auto;
    background: linear-gradient(145deg, #012f36, #056674);
    box-shadow: 0 18px 42px rgba(8, 31, 115, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-info:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 54px rgba(8, 31, 115, 0.24);
}

.contact-action-grid {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    gap: 18px;
}

.contact-action-card.primary {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-action-icon,
.hours-icon {
    flex: 0 0 auto;
    background: linear-gradient(135deg, rgba(22, 98, 223, 0.10), rgba(40, 196, 255, 0.18));
    color: #0f57c6;
    font-size: 24px;
}

.contact-mini-list {
    display: grid;
    gap: 12px;
}

.contact-mini-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #16316b;
    background: #fff;
    border: 1px solid var(--rz-border);
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 12px 28px rgba(8, 31, 115, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.contact-mini-list a:hover {
    transform: translateY(-3px);
    box-shadow: var(--rz-shadow-hover);
}

.contact-mini-list i {
    color: #0f57c6;
    font-size: 22px;
}

.contact-form-panel {
    width: 100%;
}

.support-form-card,
.contact-hours-card {
    height: 100%;
}

.support-form .form-control,
.support-form .form-select {
    min-height: 46px;
    border-radius: 15px;
    border-color: rgba(22, 98, 223, 0.18);
    background: rgba(255, 255, 255, 0.88);
}

.support-form textarea.form-control {
    min-height: 126px;
}

.contact-hours-card h3 {
    color: var(--rz-primary);
    margin-bottom: 18px;
}

.contact-hours-card ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.contact-hours-card li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--rz-border);
    border-radius: 16px;
    padding: 12px 14px;
    color: #52617d;
}

.contact-hours-card li b {
    color: #0f57c6;
    white-space: nowrap;
}

.contact-map-card {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 76px;
    border-radius: 20px;
    padding: 16px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(8, 31, 115, 0.90), rgba(22, 98, 223, 0.88)),
        repeating-linear-gradient(45deg, rgba(255,255,255,0.16) 0 1px, transparent 1px 12px);
}

.contact-map-card i {
    font-size: 24px;
}

.footer {
    border-top: 2px solid #056674;
    row-gap: 24px;
}

.footer a,
.ft-links a {
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer a:hover,
.ft-links a:hover {
    color: #0f57c6;
    transform: translateX(-3px);
}


body.dark-mode {
    background-color: #0f172a;
    color: #e2e8f0;
}

body.dark-mode .about-modern-panel,
body.dark-mode .about-process-card,
body.dark-mode .contact-action-card,
body.dark-mode .support-form-card,
body.dark-mode .contact-hours-card,
body.dark-mode .about-kpi-card,
body.dark-mode .about-process-step,
body.dark-mode .contact-mini-list a,
body.dark-mode .contact-hours-card li,
body.dark-mode .panel,
body.dark-mode .content-white
/*body.dark-mode .internal-pages .content*/ {
    background: #111827;
    border-color: #334155;
    color: #e5e7eb;
}

body.dark-mode .about-modern-panel h2,
body.dark-mode .about-process-card h2,
body.dark-mode .contact-action-card h2,
body.dark-mode .support-form-card h2,
body.dark-mode .contact-hours-card h3,
body.dark-mode .about-kpi-card strong,
body.dark-mode .about-process-step b,
body.dark-mode .contact-mini-list a,
body.dark-mode .contact-p h1,
body.dark-mode .internal-pages h1,
body.dark-mode .panel-title,
body.dark-mode .shop-toolbar-top h2,
body.dark-mode .product-title {
    color: #f8fafc;
}

body.dark-mode .about-modern-panel p,
body.dark-mode .contact-action-card p,
body.dark-mode .about-kpi-card span,
body.dark-mode .about-process-step small,
body.dark-mode .contact-hours-card li,
body.dark-mode .internal-pages .content p,
body.dark-mode .contact-p p {
    color: #cbd5e1;
}

body.dark-mode .about-chip-row span,
body.dark-mode .support-form .form-control,
body.dark-mode .support-form .form-select {
    background: #0f172a;
    border-color: #334155;
    color: #e5e7eb;
}

body.dark-mode .section-eyebrow,
body.dark-mode .about-kpi-card i,
body.dark-mode .contact-action-icon,
body.dark-mode .hours-icon {
    background: rgba(96, 165, 250, 0.12);
    border-color: rgba(96, 165, 250, 0.20);
    color: #93c5fd;
}

@media (max-width: 1199.98px) {
    .col-xl-5.site-sidebar-sticky {
        position: static;
    }
}

@media (max-width: 991.98px) {
    .site-sidebar-sticky {
        position: static;
    }

    .about-kpi-grid,
    .about-process-steps,
    .contact-action-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-action-card.primary {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767.98px) {
    .internal-pages .content,
    .about-modern-panel,
    .about-process-card,
    .contact-action-card,
    .support-form-card,
    .contact-hours-card {
        padding: 20px;
        border-radius: 22px;
    }

    .about-kpi-grid,
    .about-process-steps,
    .contact-action-grid {
        grid-template-columns: 1fr;
    }

    .about-trust-card {
        min-height: auto;
    }
}

/* --- Basket Section --- */
.basket-wrapper {
    margin-top: -100px;
    position: relative;
    z-index: 10;
}
.basket-main-box {
    background: white;
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.02);
}
.product-card {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 15px;
    height: 100%;
    display: flex; flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(15, 157, 88, 0.1);
    border-color: transparent;
}
.product-card.featured {
    border: 2px solid #ff3407;
    background: linear-gradient(to bottom, #fff1f0, #fff);
}
.card-badges {
    position: absolute; top: 12px; left: 12px; right: 12px;
    display: flex; justify-content: space-between; align-items: flex-start;
    z-index: 2; pointer-events: none;
}
.discount-tag {
    background: var(--price-red); color: white;
    padding: 4px 10px; border-radius: 8px; font-weight: 800; font-size: 0.8rem;
    box-shadow: 0 3px 8px rgba(211, 47, 47, 0.3);
}
.category-highlight {
    background: #e3f2fd; color: #1565c0;
    padding: 4px 12px; border-radius: 50px;
    font-size: 0.75rem; font-weight: 800;
    border: 1px solid #bbdefb;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.category-highlight.featured-cat {
    background: #ffcfc8; color: #ff0000; border-color: #ffc3b3;
}
.img-container {
    text-align: center; margin-top: 30px; margin-bottom: 15px;
    display: flex; align-items: center; justify-content: center;
}.img-container img{
     border-radius: 22px;
 }
.card-img {
    max-height: 100%; max-width: 100%; object-fit: contain;
    transition: transform 0.3s;
}
.product-card:hover .card-img { transform: scale(1.08); }
.card-title { font-weight: 800; font-size: 1.05rem; margin-bottom: 10px; color: var(--text-dark); }

.basket-items {
    list-style: none; padding: 10px; margin: 0 0 10px 0;
    flex-grow: 1; background-color: #f0f0f0; border-radius: 10px;
}
.basket-items li {
    font-size: 0.8rem; color: #494848; margin-bottom: 5px;
    display: flex; align-items: center; gap: 6px;
}
.check-icon { color: var(--primary-color); font-size: 0.7rem; }
.more-items-link {
    font-size: 0.75rem; color: var(--primary-color); font-weight: bold;
    text-decoration: none; display: block; margin-bottom: 10px; text-align: center;
}
.pricing-area {
    border-top: 1px dashed #eee; padding-top: 12px; margin-top: auto;
}
.price-row {
    display: flex; justify-content: space-between; align-items: center;
}
.old-price { text-decoration: line-through; color: #aaa; font-size: 0.85rem; }
.final-price { font-size: 1.2rem; font-weight: 900; color: var(--text-dark); }
.currency { font-size: 0.7rem; font-weight: normal; }
.btn-add-mini {
    width: 40px; height: 40px; border-radius: 50%; border: none;
    /*background: var(--primary-color); color: white;*/
    background-color: #ff4b5c;
    color: #ffffff;
    display: flex; align-items: center; justify-content: center;
    transition: 0.2s; box-shadow: 0 4px 10px rgba(15, 157, 88, 0.2);
}
.btn-add-mini:hover { background: var(--primary-dark); transform: scale(1.1); }
.featured-btn { background: var(--accent-color); box-shadow: 0 4px 10px rgba(255, 152, 0, 0.3); }
/* --- Amazing Offers --- */
.offers-wrapper {
    /*background: linear-gradient(135deg, #FF3D00 0%, #FF9100 100%);*/
    background-color: #ff4b5c;
    /*border-radius: 25px;*/
    padding: 40px; margin-top: 0;
    position: relative; overflow: hidden;
    box-shadow: 0 15px 40px rgba(255, 61, 0, 0.3);
}
.offers-wrapper::before {
    content: ''; position: absolute; top: -50px; right: -50px; width: 200px; height: 200px;
    background: rgba(255,255,255,0.1); border-radius: 50%;
}
.timer-container {
    display: flex; gap: 8px; font-weight: bold; color: #FF3D00; font-family: sans-serif;
}
.timer-digit {
    background: white; padding: 5px 10px; border-radius: 8px; font-size: 1.1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.offer-card {
    background: white; border-radius: 18px; padding: 15px; text-align: center;
    border: 1px solid transparent; height: 100%; transition: 0.3s; position: relative;
}
.offer-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.15); }
.amazing-badge {
    position: absolute; top: 0; right: 10px; background: #FF3D00; color: white;
    padding: 5px 8px; border-radius: 0 0 8px 8px; font-size: 0.75rem; font-weight: bold;
}
/* --- Market Section --- */
.market-section { margin-top: 70px; }
.category-row-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 20px; border-bottom: 2px solid #eee; padding-bottom: 10px;
}
.cat-title { font-weight: 800; font-size: 1.2rem; color: #333; position: relative; }
.cat-title::after {
    content: ''; position: absolute; bottom: -12px; right: 0; width: 50px; height: 3px;
    background: var(--primary-color); border-radius: 2px;
}

.market-card {
    background: white; border: 1px solid #f0f0f0; border-radius: 15px; padding: 15px;
    text-align: center; transition: 0.3s; height: 100%; position: relative;
}
.market-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.05); border-color: var(--primary-color);
}
.market-img {
    width: 100px; height: 100px; object-fit: contain; margin-bottom: 15px; transition: 0.3s;
}
.market-card:hover .market-img { transform: scale(1.1); }
.add-btn-round {
    width: 35px; height: 35px; border-radius: 50%; background: #f5f5f5; color: #333;
    border: none; display: flex; align-items: center; justify-content: center;
    position: absolute; bottom: 15px; left: 15px; transition: 0.3s;
}
.add-btn-round:hover { background: var(--primary-color); color: white; }
/* --- Support Section --- */
.support-wrapper {
    background: linear-gradient(135deg, #0F9D58 0%, #00b09b 100%);
    border-radius: 20px; padding: 40px; margin-top: 60px; margin-bottom: 60px;
    color: white;
    box-shadow: 0 15px 30px rgba(15, 157, 88, 0.25);
}

.cards-wrapper {
    margin-top: -176px;
}

.partSwiper .swiper-wrapper {
    align-items: stretch;
}

.partSwiper .swiper-slide {
    height: auto !important;
    display: flex;
}

.swiper-pagination {
    position: relative !important;
    margin-top: 25px;
}

/* ================= DARK MODE ================= */

body.dark-mode .basket-main-box {
    background: #111827;
    border-color: #1f2937;
    box-shadow: 0 15px 40px rgba(0,0,0,.35);
}

body.dark-mode .product-card,
body.dark-mode .market-card,
body.dark-mode .offer-card {
    background: #1e293b;
    border-color: #334155;
    color: #e5e7eb;
}

body.dark-mode .product-card:hover,
body.dark-mode .market-card:hover,
body.dark-mode .offer-card:hover {
    box-shadow: 0 12px 28px rgba(0,0,0,.45);
}

body.dark-mode .product-card.featured {
    background: linear-gradient(to bottom, #3b1d1a, #1e293b);
    border-color: #ff5c39;
}

body.dark-mode .card-title,
body.dark-mode .final-price,
body.dark-mode .cat-title {
    color: #f8fafc;
}

body.dark-mode .old-price {
    color: #94a3b8;
}

body.dark-mode .basket-items {
    background: #0f172a;
}

body.dark-mode .basket-items li {
    color: #cbd5e1;
}

body.dark-mode .pricing-area,
body.dark-mode .category-row-header {
    border-color: #334155;
}

body.dark-mode .category-highlight {
    background: #1e3a5f;
    color: #93c5fd;
    border-color: #2563eb;
}

body.dark-mode .category-highlight.featured-cat {
    background: #4c1d17;
    color: #ffb4a6;
    border-color: #ff6b4a;
}

body.dark-mode .discount-tag {
    box-shadow: 0 4px 12px rgba(255,70,70,.25);
}

body.dark-mode .img-container img {
    filter: brightness(.95);
}

body.dark-mode .timer-digit {
    background: #1e293b;
    color: #f8fafc;
    box-shadow: 0 3px 10px rgba(0,0,0,.35);
}

body.dark-mode .add-btn-round {
    background: #334155;
    color: #f1f5f9;
}

body.dark-mode .add-btn-round:hover {
    color: white;
}

body.dark-mode .more-items-link {
    color: #4ade80;
}

body.dark-mode .swiper-pagination-bullet {
    background: #64748b;
    opacity: 1;
}

body.dark-mode .swiper-pagination-bullet-active {
    background: #22c55e;
}
body.dark-mode .offers-wrapper {
    background: #0f1925;
    box-shadow:none;
}
body.dark-mode .text-dark {
    color: #eaeaea !important;
}
body.dark-mode .text-muted {
    color: #b6b6b6 !important;
}
.enter a {
    text-decoration: none;
    color: inherit;
}

.custom-pagination {
    gap: 6px;

    --bs-pagination-color: #056674;
    --bs-pagination-bg: #ffffff;
    --bs-pagination-border-color: #d8e2fb;

    --bs-pagination-hover-color: #ffffff;
    --bs-pagination-hover-bg: var(--bs-pagination-active-bg);
    --bs-pagination-hover-border-color: var(--bs-pagination-active-bg);

    --bs-pagination-focus-color: #ffffff;
    --bs-pagination-focus-bg: var(--bs-pagination-active-bg);
    --bs-pagination-focus-box-shadow: 0 0 0 0.2rem rgba(10, 83, 190, 0.18);

    --bs-pagination-active-color: #ffffff;
    --bs-pagination-active-bg: #056674;
    --bs-pagination-active-border-color: #056674;

    --bs-pagination-disabled-color: #94a3b8;
    --bs-pagination-disabled-bg: #f1f5f9;
    --bs-pagination-disabled-border-color: #e2e8f0;
}

.custom-pagination .page-link {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border-radius: 12px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    line-height: 1;
}

.custom-pagination .page-link i {
    font-size: 15px;
    line-height: 1;
}

.custom-pagination .page-item.active .page-link {
    background-color: var(--bs-pagination-active-bg);
    border-color: var(--bs-pagination-active-bg);
    color: var(--bs-pagination-active-color);
}

body.dark-mode .custom-pagination {
    --bs-pagination-color: #cbd5e1;
    --bs-pagination-bg: #111827;
    --bs-pagination-border-color: #334155;

    --bs-pagination-hover-color: #ffffff;
    --bs-pagination-hover-bg: #2563eb;
    --bs-pagination-hover-border-color: #2563eb;

    --bs-pagination-active-color: #ffffff;
    --bs-pagination-active-bg: #2563eb;
    --bs-pagination-active-border-color: #2563eb;

    --bs-pagination-disabled-color: #64748b;
    --bs-pagination-disabled-bg: #0f172a;
    --bs-pagination-disabled-border-color: #1e293b;
}

body.dark-mode .custom-pagination .page-link {
    box-shadow: none;
}

body.dark-mode .custom-pagination .page-item.active .page-link {
    background-color: var(--bs-pagination-active-bg);
    border-color: var(--bs-pagination-active-bg);
    color: #ffffff;
}
@media (max-width: 991px) {
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    /* فقط نوار متحرک باید overflow hidden داشته باشد */
    .flash-nav {
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
        padding-inline: 0;
        box-sizing: border-box;
        position: relative;
        height: 40px;
        z-index: 1090;
    }

    .flash-content {
        position: absolute;
        top: 0;
        right: 0;
        height: 40px;
        width: max-content;
        max-width: none;
        display: flex;
        align-items: center;
        gap: 20px;
        white-space: nowrap;
        will-change: transform;
        animation: flash-scroll-mobile 14s linear infinite;
    }

    @keyframes flash-scroll-mobile {
        0% {
            transform: translateX(-15vw);
        }

        100% {
            transform: translateX(100%);
        }
    }

    /* هدر و منوی موبایل نباید مخفی شوند */
    #header,
    .header,
    .mobile-nav,
    .sticky-header {
        overflow: visible !important;
    }

    .mobile-nav {
        position: relative;
        z-index: 3000;
        width: 100%;
        max-width: 100vw;
    }

    .mobile-nav.is-mobile-sticky {
        position: fixed !important;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100vw;
        z-index: 3000;
        background: #fff;
        box-shadow: 0 8px 18px rgba(15, 23, 42, 0.14);
        animation: none !important;
        transform: none !important;
    }

    body.dark-mode .mobile-nav.is-mobile-sticky {
        background: #0f172a;
        box-shadow: none;
    }

    body.has-mobile-sticky {
        padding-top: var(--mobile-sticky-height, 64px);
    }

    /* منوی بازشونده باید زیر خود هدر چسبان باز شود */
    .mobile-nav.is-mobile-sticky .mobile-menu.show,
    .mobile-nav.is-mobile-sticky .mobile-menu.collapsing {
        position: absolute !important;
        top: 100%;
        right: 0;
        left: 0;
        width: 100%;
        max-width: 100vw;
        z-index: 3001;
        background: #fff;
        padding: 12px;
        box-shadow: 0 12px 24px rgba(15, 23, 42, 0.16);
    }

    body.dark-mode .mobile-nav.is-mobile-sticky .mobile-menu.show,
    body.dark-mode .mobile-nav.is-mobile-sticky .mobile-menu.collapsing {
        background: #111827;
    }
}
.dp4-section{
    direction:rtl;
    width:100%;
}
.dp4-wrapper{
    max-width:1320px;
    padding: 20px 20px;
    margin: -180px auto auto;
}
.dp4-header{
    text-align:center;
    margin-bottom:40px;
}
.dp4-header h2{
    font-size:42px;
    font-weight:900;
    margin:0 0 10px;
}
.dp4-header p{
    color:#98a2b3;
    font-size:18px;
}
.dp4-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    grid-auto-rows:150px;
    gap:16px;
    grid-auto-flow:dense;
}
.dp4-card{
    position:relative;
    overflow:hidden;
    border-radius:24px;
}
.dp4-card.dp4-big{
    grid-row:span 2;
}
.dp4-cover{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}
.dp4-card:hover .dp4-cover{
    transform:scale(1.12);
}
.dp4-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.85),
            rgba(0,0,0,.15)
        );
}
.dp4-content{
    position:absolute;
    z-index:2;
    bottom:18px;
    left:0;
    right:0;
    text-align:center;
    color:#fff;
}
.dp4-avatar{
    width:76px;
    height:76px;
    border-radius:50%;
    padding:3px;
    background:#fff;
    margin:0 auto 10px;
}
.dp4-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:50%;
}
.dp4-content h3{
    font-size:17px;
    font-weight:800;
    margin:0;
}
.dp4-content p{
    margin:5px 0 0;
    font-size:14px;
    color:#ddd;
}
.dp4-more{
    text-align:center;
    margin-top:45px;
}
#dp4MoreBtn{
    border:none;
    cursor:pointer;
    padding:16px 60px;
    border-radius:50px;
    font-size:17px;
    font-weight:800;
    color:white;
    background:
        linear-gradient(
            135deg,
            #0ea5e9,
            #2563eb
        );
    box-shadow:
        0 15px 35px rgba(37,99,235,.3);
    transition:.3s;
}
#dp4MoreBtn:hover{
    transform:translateY(-4px);
}
@media(max-width:992px){
    .dp4-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:576px){
    .dp4-grid{
        grid-template-columns:1fr;
        grid-auto-rows:280px;
    }
    .dp4-card.dp4-big{
        grid-row:auto;
    }
}


/* ===== Modern Minimal UI Refresh - OCL Theme =====
   Palette:
   #66bebf #056674 #ff4b5c #e1ece4
*/
:root {
    --primary-color:#056674;
    --primary-light:#66bebf;
    --accent-color:#ff4b5c;
    --surface:#ffffff;
    --surface-soft:#e1ece4;
    --text-dark:#263238;
    --shadow-soft:0 14px 40px rgba(5,102,116,.12);
    --radius-xl:28px;
    --radius-lg:20px;
    --radius-md:14px;
}

* { box-sizing:border-box; }
body {
    background:linear-gradient(180deg,var(--surface-soft) 0%,#fff 35%);
    color:var(--text-dark);
    font-family:Yekta,Peyda,sans-serif;
}

.header, .mobile-nav, .sticky-header {
    background:rgba(255,255,255,.88)!important;
    backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(102,190,191,.25);
}

.navbar-nav .nav-link {
    border-radius:999px;
    transition:.25s ease;
}
.navbar-nav .nav-link:hover {
    background:var(--surface-soft)!important;
    color:var(--primary-color)!important;
}

.enter,.btn-blue {
    background:linear-gradient(135deg,#056674,#66bebf)!important;
    border:none;
    box-shadow:0 10px 24px rgba(5,102,116,.22);
    border-radius:999px;
}

.download {
    background:var(--accent-color)!important;
    color:#fff!important;
    border-radius:999px;
}

.hero {
    background:
        radial-gradient(circle at 85% 20%,rgba(102,190,191,.45),transparent 35%),
        linear-gradient(120deg,#056674,#66bebf)!important;
    border-radius:0 0 40px 40px;
    padding-top:130px;
    padding-bottom:130px;
}

.hero-links a {
    border-radius:999px;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(8px);
}
.hero-links a:hover {
    background:var(--accent-color);
    color:#fff;
}

.btn-options,
.panel,
.blog-card,
.shop-card,
.order-list-item,
.part,
.news-part,
.projects-part,
.sb {
    border:1px solid rgba(102,190,191,.22);
    box-shadow:var(--shadow-soft);
    border-radius:var(--radius-lg);
    background:var(--surface);
}

.btn-options {
    height:auto;
    padding:14px;
}

.option:hover {
    background:var(--surface-soft)!important;
    border-radius:18px!important;
}

.services {
    padding:40px 20px;
}

.service {
    border-radius:20px;
    transition:.3s ease;
}
.service:hover {
    transform:translateY(-8px);
    box-shadow:var(--shadow-soft);
}

.al-top h2,
.contact-p h1,
.internal-pages h1,
.panel-title {
    color:var(--primary-color)!important;
}

.btn-more {
    border-color:var(--primary-color);
    border-radius:999px;
}
.btn-more:hover {
    background:var(--accent-color);
    color:#fff!important;
}

.sc-top,
.projects-background,
.contact-info {
    background:linear-gradient(135deg,#056674,#66bebf)!important;
    border-radius:32px;
}

.projects-part .buttons .more {
    background:var(--primary-color)!important;
}
.projects-part .buttons .invest {
    background:var(--accent-color)!important;
    color:#fff!important;
}

.blog-card:hover,
.shop-card:hover,
.product-preview:hover {
    transform:translateY(-10px);
}

.filter-chip {
    border-radius:999px;
    background:var(--surface-soft);
    border-color:transparent;
}
.filter-chip.active,
.filter-chip:hover {
    background:var(--primary-color);
}

input,textarea,select {
    border-radius:16px;
    border-color:rgba(5,102,116,.25)!important;
}

button {
    transition:.25s ease;
}

@media(max-width:768px){
    .hero {
        padding:90px 20px;
        border-radius:0 0 25px 25px;
    }
    .btn-options {
        margin:20px;
    }
}

/* ===== Modern Minimal UI Refresh - OCL Theme =====
   Palette:
   #66bebf #056674 #ff4b5c #e1ece4
*/
:root {
    --primary-color:#056674;
    --primary-light:#66bebf;
    --accent-color:#ff4b5c;
    --surface:#ffffff;
    --surface-soft:#e1ece4;
    --text-dark:#263238;
    --shadow-soft:0 14px 40px rgba(5,102,116,.12);
    --radius-xl:28px;
    --radius-lg:20px;
    --radius-md:14px;
}

* { box-sizing:border-box; }
body {
    background:linear-gradient(180deg,var(--surface-soft) 0%,#fff 35%);
    color:var(--text-dark);
    font-family:Yekta,Peyda,sans-serif;
}

.header, .mobile-nav, .sticky-header {
    background:rgba(255,255,255,.88)!important;
    backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(102,190,191,.25);
}

.navbar-nav .nav-link {
    border-radius:999px;
    transition:.25s ease;
}
.navbar-nav .nav-link:hover {
    background:var(--surface-soft)!important;
    color:var(--primary-color)!important;
}

.enter,.btn-blue {
    background:linear-gradient(135deg,#056674,#66bebf)!important;
    border:none;
    box-shadow:0 10px 24px rgba(5,102,116,.22);
    border-radius:999px;
}

.download {
    background:var(--accent-color)!important;
    color:#fff!important;
    border-radius:999px;
}

.hero {
    background:
        radial-gradient(circle at 85% 20%,rgba(102,190,191,.45),transparent 35%),
        linear-gradient(120deg,#056674,#66bebf)!important;
    border-radius:0 0 40px 40px;
    padding-top:130px;
    padding-bottom:130px;
}

.hero-links a {
    border-radius:999px;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(8px);
}
.hero-links a:hover {
    background:var(--accent-color);
    color:#fff;
}

.btn-options,
.panel,
.blog-card,
.shop-card,
.order-list-item,
.part,
.news-part,
.projects-part,
.sb {
    border:1px solid rgba(102,190,191,.22);
    box-shadow:var(--shadow-soft);
    border-radius:var(--radius-lg);
    background:var(--surface);
}

.btn-options {
    height:auto;
    padding:14px;
}

.option:hover {
    background:var(--surface-soft)!important;
    border-radius:18px!important;
}

.services {
    padding:40px 20px;
}

.service {
    border-radius:20px;
    transition:.3s ease;
}
.service:hover {
    transform:translateY(-8px);
    box-shadow:var(--shadow-soft);
}

.about {
    background:linear-gradient(180deg,var(--surface-soft),#fff);
}
body.dark-mode{.about {
    background:none;
}}

.al-top h2,
.contact-p h1,
.internal-pages h1,
.panel-title {
    color:var(--primary-color)!important;
}

.btn-more {
    border-color:var(--primary-color);
    border-radius:999px;
}
.btn-more:hover {
    background:var(--accent-color);
    color:#fff!important;
}

.sc-top,
.projects-background,
.contact-info {
    background:linear-gradient(135deg,#056674,#66bebf)!important;
    border-radius:32px;
}

.projects-part .buttons .more {
    background:var(--primary-color)!important;
}
.projects-part .buttons .invest {
    background:var(--accent-color)!important;
    color:#fff!important;
}

.blog-card:hover,
.shop-card:hover,
.product-preview:hover {
    transform:translateY(-10px);
}

.filter-chip {
    border-radius:999px;
    background:var(--surface-soft);
    border-color:transparent;
}
.filter-chip.active,
.filter-chip:hover {
    background:var(--primary-color);
}

input,textarea,select {
    border-radius:16px!important;
    border-color:rgba(5,102,116,.25)!important;
}

button {
    transition:.25s ease;
}

@media(max-width:768px){
    .hero {
        padding:90px 20px;
        border-radius:0 0 25px 25px;
    }
    .btn-options {
        margin:20px;
    }
}



:root{
    --brand:#056674;--mint:#66bebf;--soft:#e1ece4;--accent:#ff4b5c;
    --shadow:0 18px 50px rgba(5,102,116,.12);
}
*{box-sizing:border-box}
body{background:#f7faf8;color:#183238!important}
.header,.mobile-nav{backdrop-filter:blur(18px);background:rgba(255,255,255,.86)!important}
.sticky-header{box-shadow:var(--shadow)!important}
.navbar-nav .nav-link{border-radius:14px;transition:.25s;font-weight:700!important}
.navbar-nav .nav-link:hover{background:var(--soft)!important;color:var(--brand)!important}
.enter,.btn-blue{background:linear-gradient(135deg,var(--brand),var(--mint))!important;border-radius:16px!important;box-shadow:var(--shadow)}
.download{background:var(--accent)!important;color:white!important;border-radius:16px!important}
.hero{border-radius:0 0 48px 48px;background:linear-gradient(120deg,#056674,#66bebf)!important;padding:130px 60px!important;position:relative;overflow:hidden}
.hero:after{content:"";position:absolute;inset:auto -100px -150px auto;width:360px;height:360px;background:rgba(255,255,255,.16);border-radius:50%}
.btn-options{border-radius:28px!important;box-shadow:0 20px 45px rgba(5,102,116,.18)!important}
.service,.part,.news-part,.projects-part,.blog-card,.shop-card,.panel,.contact-info,.sb{border-radius:26px!important;box-shadow:0 14px 35px rgba(5,102,116,.10);border:1px solid rgba(102,190,191,.25)}
.service:hover,.part:hover,.news-part:hover,.projects-part:hover,.blog-card:hover,.shop-card:hover{transform:translateY(-8px);transition:.25s}
.projects-background{background:linear-gradient(135deg,#056674,#0d8790)!important}
.projects-part .buttons .more{background:var(--mint)!important}
.projects-part .buttons .invest{background:var(--accent)!important;color:#fff!important}
.page-hero{background:linear-gradient(135deg,#056674,#66bebf)!important;border-radius:32px!important}
.filter-chip.active,.filter-chip:hover{background:var(--accent)!important;border-color:var(--accent)!important}
footer{background:#e1ece4!important}
input,textarea,.form-control{border-radius:18px}
@media(max-width:768px){.hero{padding:80px 20px!important}.btn-options{height:auto;flex-wrap:wrap}.service{height:auto}}
body.dark-mode .footer{
    color: #ffffff;
}
