@import url(helper.css);

@font-face {
    font-family: "HTQays";
    src: url(../fonts/HTQays.ttf);
}

@font-face {
    font-family: "Frutiger-Bold";
    src: url(../fonts/Frutiger-Bold.ttf);
}

*,
* button:focus {
    outline: 0;
}

:root {
    --blue: #3B82F6;
    --darkBlue: #0e2f5b;
}

.cr-blue {
    color: var(--blue) !important;
}

.bg-blue {
    background-color: var(--blue) !important;
    border-color: var(--blue) !important;
    color: #fff !important;
}

.border-blue {
    border-color: var(--blue) !important;
}

.hover-blue:hover {
    color: var(--blue);
}

.hover-bg-blue:hover {
    background-color: var(--blue);
    border-color: var(--blue);
    color: #fff !important;
}

.cr-darkBlue {
    color: var(--darkBlue) !important;
}

.bg-darkBlue {
    background-color: var(--darkBlue) !important;
    border-color: var(--darkBlue) !important;
    color: #fff !important;
}

.border-darkBlue {
    border-color: var(--darkBlue) !important;
}

.hover-darkBlue:hover {
    color: var(--darkBlue);
}

.hover-bg-darkBlue:hover {
    background-color: var(--darkBlue);
    border-color: var(--darkBlue);
    color: #fff !important;
}

html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}


body {
    font-family: "Baloo Bhaijaan 2", sans-serif;
    color: #334155;
    direction: rtl;
}

section {
    position: relative;
}

img {
    max-width: 100%;
    max-height: 100%;
}

.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-contain {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.object-top {
    object-position: top;
}

.object-bottom {
    object-position: bottom;
}

.dnf-center {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.df-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

p {
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.text,
.text * {
    font-size: 14px;
    line-height: 1.8;
}

small.text {
    font-size: 12px;
}

.section-padding {
    padding: 100px 0;
}

.dropdown .dropdown-menu {
    border-radius: 10px;
    padding: 10px;
    border: 0;
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.0666666667);
}

.dropdown .dropdown-menu .dropdown-item {
    font-size: 14px;
    padding: 0.5rem 1rem;
    border-radius: 10px;
}


/* --------------- butn --------------- */

/* --------------- butn --------------- */
.butnn {
    position: relative;
    padding: 12px 35px;
    transition: all 0.3s ease;
    text-align: center;
    text-transform: capitalize;
    border: 0;
    overflow: hidden;
    z-index: 2;
}

.butnn:hover {
    box-shadow: 7px 10px 15px rgba(24, 25, 27, 0.1333333333);
    transform: translateY(-2px);
}

.butnn.butn-blur {
    background-color: rgba(255, 255, 255, 0.0666666667);
    backdrop-filter: blur(10px);
}

.butnn.butn-grad1 {
    color: #fff;
}

.butnn.butn-grad1::before {
    position: absolute;
    content: "";
    left: -100%;
    top: 0;
    width: 200%;
    height: 100%;
    background: var(--grad1);
    transition: all 0.4s ease;
    z-index: -1;
}

.butnn.butn-grad1:hover::before {
    left: 0;
}

.butnn.butn-white {
    background: #fff;
    color: var(--cr-main);
}

.butnn.butn-white:hover {
    background-color: var(--cr-main);
    color: #fff;
}

.butnn.butn-border {
    background-color: #fff;
    border: 1px solid var(--cr-main);
    color: var(--cr-main);
}

.butnn.butn-border:hover {
    background-color: var(--cr-main);
    border-color: var(--cr-main);
    color: #fff;
}

.butnn.butn-border-light {
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--cr-main);
}

.butnn.butn-border-light:hover {
    background-color: var(--cr-main);
    border-color: var(--cr-main);
    color: #fff;
}

.butnn.md-butn {
    padding: 12px 25px;
    font-size: 13px;
}

.butnn.blur-wh-butn {
    background-color: rgba(255, 255, 255, 0.0666666667);
    backdrop-filter: blur(10px);
}

.butnn.hvr-scale:hover {
    transform: scale(1.1);
}

.butnn.hvr-txt-trans {
    position: relative;
    overflow: hidden;
}

.butnn.hvr-txt-trans .txt {
    position: relative;
    display: inline-block;
    transition: all 0.4s ease;
}

.butnn.hvr-txt-trans .txt::after {
    content: attr(data-text);
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, 100%);
    transition: opacity 0.3s, transform 0.3s;
    transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
    white-space: nowrap;
}

.butnn.hvr-txt-trans .txt span {
    transition: all 0.4s ease;
}

.butnn.hvr-txt-trans:hover .txt span {
    transform: translateY(-150%);
    opacity: 0;
}

.butnn.hvr-txt-trans:hover .txt::after {
    transform: translate(-50%, -50%);
    opacity: 1;
}


.light-after {
    position: relative;
    z-index: 1;
}

.light-after::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: -15%;
    width: 100%;
    height: 40%;
    background-color: var(--blue);
    filter: blur(15px);
    border-radius: 30px;
    pointer-events: none;
    z-index: -1;
    opacity: 0.6;
}

/* --------------- navbar --------------- */
.nav-container-v2 .top-navbar {
    position: relative;
    overflow: hidden;
}

.nav-container-v2 .top-navbar .toggle-ar-en .lang-switch {
    --lang-switch-bg: rgba(255, 255, 255, 0.07);
    --lang-switch-border: rgba(255, 255, 255, 0.14);
    background: var(--lang-switch-bg);
    border-color: var(--lang-switch-border) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    gap: 2px;
}

.nav-container-v2 .top-navbar .toggle-ar-en .lang-switch .btn {
    position: relative;
    z-index: 1;
    border: 0;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 500;
    line-height: 1.2;
    min-width: 50px;
    padding: 5px;
    transition: color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.nav-container-v2 .top-navbar .toggle-ar-en .lang-switch .btn:hover {
    color: #fff;
}

.nav-container-v2 .top-navbar .toggle-ar-en .lang-switch .btn-check:focus + .btn {
    box-shadow: 0 0 0 0.15rem rgba(59, 130, 246, 0.35);
}

.nav-container-v2 .top-navbar .toggle-ar-en .lang-switch .btn-check:checked + .btn {
    background-color: var(--blue, #3b82f6);
    border-color: var(--blue, #3b82f6);
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.35);
    color: #fff;
}

.nav-container-v2 .top-navbar .toggle-ar-en .lang-switch .btn-check:checked + .btn .lang-flag {
    opacity: 1;
}

.nav-container-v2 .search-navbar {
    background: #fff;
    border-bottom: 1px solid #eef2f6;
    position: relative;
    z-index: 9;
}

.nav-container-v2 .search-navbar-logo {
    height: 52px;
    width: auto;
    max-width: 160px;
}

.nav-container-v2 .search-navbar-search {
    background: #eef2f7;
    border-radius: 50px;
    padding: 5px;
    border: 1px solid #e6ebf2;
}

.nav-container-v2 .search-navbar-search .input-group-text {
    background: transparent;
    border: 0;
    color: #94a3b8;
    padding-inline-start: 16px;
    padding-inline-end: 4px;
}

.nav-container-v2 .search-navbar-search .form-control {
    background: transparent;
    border: 0;
    box-shadow: none;
    font-size: 14px;
    color: #334155;
    padding-top: 10px;
    padding-bottom: 10px;
}

.nav-container-v2 .search-navbar-search .form-control::placeholder {
    color: #94a3b8;
    opacity: 1;
}

.nav-container-v2 .search-navbar-search .form-control:focus {
    background: transparent;
    box-shadow: none;
}

.nav-container-v2 .search-navbar-search .btn-search-submit {
    border: 0;
    border-radius: 50px !important;
    padding: 10px 28px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.25);
}

.nav-container-v2 .search-navbar-account:hover {
    color: inherit;
}

.nav-container-v2 .search-navbar-avatar {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #ede9fe;
    color: #6366f1;
    font-size: 18px;
    flex-shrink: 0;
    margin-inline-end: 10px;
}

.nav-container-v2 .search-navbar-account-text small {
    color: #94a3b8;
    line-height: 1.3;
}

.nav-container-v2 .search-navbar-account-text strong {
    color: #0a1a3f;
    line-height: 1.3;
}

.nav-container-v2 .search-navbar-icon-btn {
    width: 46px;
    height: 46px;
    border-color: #e2e8f0 !important;
    color: #0f172a;
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.nav-container-v2 .search-navbar-icon-btn:hover {
    border-color: #cbd5e1 !important;
    color: #0f172a;
}

.nav-container-v2 .search-navbar-cart {
    border: 0 !important;
}

.nav-container-v2 .search-navbar-cart:hover {
    color: #fff;
    opacity: 0.92;
}

.nav-container-v2 .search-navbar-cart-badge {
    position: absolute;
    top: -4px;
    inset-inline-start: -4px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    font-size: 11px;
    font-weight: 700;
    line-height: 20px;
    border: 2px solid #fff;
}

@media (max-width: 991px) {
    .nav-container-v2 .search-navbar-logo {
        height: 42px;
        max-width: 120px;
    }

    .nav-container-v2 .search-navbar-account-text {
        display: none;
    }

    .nav-container-v2 .search-navbar-search .btn-search-submit {
        padding: 10px 18px;
    }
}

@media (max-width: 575px) {
    .nav-container-v2 .search-navbar-search .btn-search-submit {
        padding: 10px 14px;
    }

    .nav-container-v2 .search-navbar-search .btn-search-submit span {
        display: none;
    }
}

.nav-container-v2 .navbar .navbar-nav .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #334155;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 12px;
    white-space: nowrap;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.nav-container-v2 .navbar .navbar-nav .nav-link i {
    font-size: 13px;
    color: #64748b;
    transition: color 0.3s ease;
}

.nav-container-v2 .navbar .navbar-nav .nav-link:hover, .nav-container-v2 .navbar .navbar-nav .nav-link.active {
    color: var(--blue, #3b82f6);
}

.nav-container-v2 .navbar .navbar-nav .nav-link:hover i, .nav-container-v2 .navbar .navbar-nav .nav-link.active i {
    color: var(--blue, #3b82f6);
}

.nav-container-v2 .navbar .navbar-nav .nav-link-saerli {
    background: linear-gradient(135deg, #eff6ff 0%, #eef2ff 100%);
    color: var(--darkBlue, #0b1f3a);
    border: 1px solid #dbeafe;
    padding: 8px 14px;
    line-height: 1.35;
    max-width: 280px;
    white-space: normal;
}

.nav-container-v2 .navbar .navbar-nav .nav-link-saerli:hover {
    color: var(--darkBlue, #0b1f3a);
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
    border-color: #bfdbfe;
}

.nav-container-v2 .navbar .navbar-nav .nav-link-saerli i {
    color: var(--blue, #3b82f6);
    flex-shrink: 0;
}

.nav-container-v2 .navbar .navbar-nav .nav-link-saerli .saerli-title {
    font-weight: 700;
    color: var(--darkBlue, #0b1f3a);
}

.nav-container-v2 .navbar .navbar-nav .nav-link-saerli .saerli-sub {
    display: block;
    font-size: 11px;
    font-weight: 400;
    color: #64748b;
    margin-top: 2px;
}

.nav-container-v2 .navbar .navbar-toggler {
    border-color: #e2e8f0;
    padding: 6px 10px;
}

.nav-container-v2 .navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 0.15rem rgba(59, 130, 246, 0.25);
}

@media (max-width: 991px) {
    .nav-container-v2 .navbar .navbar-nav {
        gap: 4px;
        padding-top: 12px;
        padding-bottom: 8px;
    }

    .nav-container-v2 .navbar .navbar-nav .nav-link {
        padding: 10px 12px;
        border-radius: 10px;
    }

    .nav-container-v2 .navbar .navbar-nav .nav-link:hover, .nav-container-v2 .navbar .navbar-nav .nav-link.active {
        background: #f1f5f9;
    }

    .nav-container-v2 .navbar .navbar-nav .nav-link-saerli {
        max-width: 100%;
        margin-top: 6px;
    }
}


.bg-sec {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* --------------- header --------------- */
.hero-v2 {
    position: relative;
    padding: 100px 0;
    z-index: 10;
}

.hero-v2 .info {
    position: relative;
    text-align: center;
}

.hero-v2 .info h1 {
    position: relative;
    font-size: clamp(30px, 10vw, 60px);
    margin-bottom: 20px;
    font-weight: bold;
}

.hero-v2 .search-box {
    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 20px;
    padding: 28px 30px;
    box-shadow: 0 10px 30px rgba(11, 31, 58, 0.05);
}

.hero-v2 .search-box-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #eef4ff;
    color: var(--blue, #3b82f6);
    font-size: 18px;
    flex-shrink: 0;
}

.hero-v2 .search-box-title {
    color: var(--darkBlue, #0b1f3a);
    line-height: 1.35;
    margin: 0;
}

.hero-v2 .search-box-sub {
    color: #94a3b8;
    line-height: 1.5;
    margin: 4px 0 0;
}

.hero-v2 .search-box .form-label {
    color: #94a3b8;
    font-weight: 500;
    margin-bottom: 8px;
}

.hero-v2 .search-box .form-select {
    background-color: #f5f8fc;
    border: 1px solid #e6edf5;
    border-radius: 12px;
    min-height: 50px;
    padding: 12px 16px;
    font-size: 14px;
    color: #64748b;
    box-shadow: none;
}

.hero-v2 .search-box .form-select:focus {
    background-color: #f5f8fc;
    border-color: #bfdbfe;
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.15);
    color: #0f172a;
}

.hero-v2 .search-box .btn-search-parts {
    min-height: 50px;
    border: 0;
    border-radius: 14px;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(11, 31, 58, 0.22);
    transition: all 0.3s ease;
}

.hero-v2 .search-box .btn-search-parts:hover {
    opacity: 0.92;
    transform: translateY(-1px);
    color: #fff;
}

.hero-v2 .search-box-quick-label {
    color: #94a3b8;
    white-space: nowrap;
}

.hero-v2 .search-box-quick .btn {
    border: 0;
    background: #eef4ff;
    color: var(--darkBlue, #0b1f3a);
    font-size: 13px;
    font-weight: 500;
    padding: 8px 16px;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.hero-v2 .search-box-quick .btn:hover {
    background: #dbeafe;
    color: var(--darkBlue, #0b1f3a);
}

.hero-v2 .search-box-quick .btn-check:checked + .btn {
    background: var(--blue, #3b82f6);
    color: #fff;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.28);
}

.hero-v2 .search-box-quick .btn-check:focus + .btn {
    box-shadow: 0 0 0 0.15rem rgba(59, 130, 246, 0.25);
}

.flip-scroll-st1 {
    transform: translateY(150px) rotateX(-35deg) scale(0.8);
    opacity: 0;
}

.sec-head-sub {
    color: var(--blue, #3b82f6);
}

.sec-head-title {
    margin: 0;
    line-height: 1.3;
}

.sec-head-link {
    color: var(--blue, #3b82f6);
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.sec-head-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.sec-head-link:hover {
    color: var(--darkBlue, #0b1f3a);
    gap: 10px;
}

.sec-head-link:hover i {
    transform: translateX(-3px);
}

/* --------------- brands --------------- */
.brands-v2 {
    position: relative;
    overflow: hidden;
    /* background: #eef3f8; */
}

.brands-v2 .cards {
    gap: 16px;
}

.brands-v2 .brand-card {
    width: calc((100% - 112px) / 8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    /* background: #eef3f8; */
    border: 1px solid #e8eef5;
    border-radius: 20px;
    padding: 22px 12px 18px;
    min-height: 130px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px rgba(11, 31, 58, 0.03);
}

.brands-v2 .brand-card:hover {
    transform: translateY(-4px);
    border-color: #dbeafe;
    box-shadow: 0 12px 24px rgba(11, 31, 58, 0.08);
    color: inherit;
}

.brands-v2 .brand-card:hover .brand-card-logo img {
    filter: grayscale(0);
    transform: scale(1.04);
}

.brands-v2 .brand-card-logo {
    width: 72px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brands-v2 .brand-card-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(0.15);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.brands-v2 .brand-card-name {
    color: #1e293b;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    text-align: center;
}

.brands-v2 .brands-slider .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
    position: relative;
}

.brands-v2 .brands-slider .brand-card {
    width: 100%;
    margin-bottom: 25px;
}

@media (max-width: 1199px) {
    .brands-v2 .brand-card {
        width: calc((100% - 80px) / 6);
    }
}

@media (max-width: 991px) {
    .brands-v2 .brand-card {
        width: calc((100% - 48px) / 4);
    }
}

@media (max-width: 767px) {
    .brands-v2 .brand-card {
        width: calc((100% - 32px) / 3);
    }
}

@media (max-width: 575px) {
    .brands-v2 .cards {
        gap: 12px;
    }

    .brands-v2 .brand-card {
        width: calc((100% - 12px) / 2);
        min-height: 110px;
        padding: 16px 10px 14px;
        border-radius: 14px;
    }

    .brands-v2 .brand-card-logo {
        width: 58px;
        height: 40px;
    }
}

.swiper-pagination-bullet {
    border-radius: 25px;
    transition: all 0.3s linear;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 25px;
    background-color: var(--darkBlue);
}

/* --------------- offers --------------- */
.offers-v2 {
    position: relative;
    background-color: var(--darkBlue);
    color: #fff;
    overflow: hidden;
    z-index: 5;
}

.offers-v2::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 20vw;
    height: 20vw;
    filter: blur(150px);
    background-color: var(--blue);
    z-index: -1;
}

.offers-v2::after {
    position: absolute;
    content: "";
    right: 0;
    bottom: 0;
    width: 20vw;
    height: 20vw;
    filter: blur(150px);
    background-color: var(--blue);
    z-index: -1;
}

.offers-v2 .offers-slider {
    overflow: hidden;
}

.offers-v2 .offers-slider .swiper-pagination {
    opacity: 0;
}

@media screen and (max-width: 991px) {
    .offers-v2 .swiper-pagination {
        opacity: 1 !important;
    }

    .offers-v2 .swiper-pagination-bullet-active {
        background-color: #fff;
    }
}

/* --------------- product-card --------------- */
.product-card {
    position: relative;
    background-image: linear-gradient(45deg, #eeedf5, #fff);
    border: 1px solid #e8eef5;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s ease;
    margin-top: 24px;
    height: calc(100% - 24px);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(2, 8, 20, 0.1);
}

.product-card:hover .product-card-img img {
    transform: scale(1.06) rotate(-1deg);
}

.product-card-media {
    position: relative;
    background-color: #fff;
    padding: 18px;
}

.product-card-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 210px;
}

.product-card-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-card-badge {
    position: absolute;
    top: 14px;
    inset-inline-start: 14px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    box-shadow: 0 6px 14px rgba(220, 38, 38, 0.35);
    z-index: 2;
}

.product-card-wish {
    position: absolute;
    top: 14px;
    inset-inline-end: 14px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 12px;
    background: #fff;
    color: #64748b;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(11, 31, 58, 0.1);
    transition: all 0.3s ease;
    z-index: 2;
}

.product-card-wish:hover {
    background: #fee2e2;
    color: #dc2626;
    transform: scale(1.08);
}

.product-card-wish.active {
    background: #dc2626;
    color: #fff;
    box-shadow: 0 6px 14px rgba(220, 38, 38, 0.35);
}

.product-card-wish.active:hover {
    background: #b91c1c;
    color: #fff;
    transform: scale(1.08);
}

.product-card-body {
    padding: 18px;
}

.product-card-cat {
    color: #94a3b8;
}

.product-card-title {
    color: var(--darkBlue, #0b1f3a);
    line-height: 1.5;
    min-height: 44px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.product-card-title:hover {
    color: var(--blue, #3b82f6);
}

.product-card-price strong {
    color: var(--blue, #3b82f6);
    line-height: 1;
}

.product-card-price .currency {
    color: #94a3b8;
    font-weight: 500;
}

.product-card-price del {
    color: #9da8b6;
}

.product-card-compare {
    position: absolute;
    top: 14px;
    inset-inline-end: 62px; /* 38px wish button width + 10px gap */
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 12px;
    background: #fff;
    color: #64748b;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(11, 31, 58, 0.1);
    transition: all 0.3s ease;
    z-index: 2;
}

.product-card-compare:hover {
    background: #dbeafe;
    color: #3b82f6;
    transform: scale(1.08);
}

.product-card-compare.active {
    background: #3b82f6;
    color: #fff;
    box-shadow: 0 6px 14px rgba(59, 130, 246, 0.35);
}

.product-card-compare.active:hover {
    background: #2563eb;
    color: #fff;
}

/* --------------- features --------------- */
.features-v2 {
    position: relative;
    overflow: hidden;
}

.features-v2 .swiper-slide {
    height: auto ;
}

.features-v2 .swiper-pagination {
    opacity: 0;
}

@media screen and (max-width: 991px) {
    .features-v2 .features-slider {
        padding-bottom: 25px;
        margin-bottom: 35px;
    }

    .features-v2 .swiper-pagination {
        opacity: 1;
    }
}

.feature-card {
    position: relative;
    padding: 40px;
    background-image: linear-gradient(45deg, #eeedf5, #fff);
    height: 100%;
}

.feature-card .icon {
    height: 40px;
    margin-bottom: 20px;
}

/* --------------- sections --------------- */
.sections-v2 {
    position: relative;
    overflow: hidden;
}

.sections-v2 .section-card {
    position: relative;
    padding: 30px;
    text-align: center;
    border-radius: 30px;
    display: block;
    background-image: linear-gradient(45deg, #eeedf5, #fff);
    border: 1px solid transparent;
    margin-top: 24px;
    height: calc(100% - 24px);
    transition: all 0.3s ease;
}

.sections-v2 .section-card .icon {
    height: 35px;
    margin-bottom: 20px;
}
.sections-v2 .section-card .butn {
    margin-inline: auto;
}

.sections-v2 .section-card:hover {
    border-color: var(--darkBlue);
}

.sections-v2 .sections-slider {
    overflow: hidden;
}

.sections-v2 .sections-slider .swiper-pagination {
    opacity: 0;
}

@media screen and (max-width: 991px) {
    .sections-v2 .swiper-pagination {
        opacity: 1 !important;
    }
}

/* --------------- products --------------- */
.products-v2 .products-slider {
    overflow: hidden;
}

.products-v2 .products-slider .swiper-pagination {
    opacity: 0;
}

@media screen and (max-width: 991px) {
    .products-v2 .swiper-pagination {
        opacity: 1 !important;
    }
}

/* --------------- numbers --------------- */
.numbers-v2 {
    position: relative;
}

.numbers-v2 .car {
    position: relative;
    margin-bottom: -100px;
    z-index: 10;
}

.numbers-v2 .numbers-box {
    position: relative;
    padding: 100px 50px 50px;
    border-radius: 30px;
    background-color: var(--darkBlue);
    color: #fff;
    overflow: hidden;
    z-index: 5;
}

.numbers-v2 .numbers-box .title {
    color: #fff;
}

.numbers-v2 .numbers-box::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 20vw;
    height: 20vw;
    filter: blur(150px);
    background-color: var(--blue);
    z-index: -1;
}

.numbers-v2 .numbers-box::after {
    position: absolute;
    content: "";
    right: 0;
    bottom: 0;
    width: 20vw;
    height: 20vw;
    filter: blur(150px);
    background-color: var(--blue);
    z-index: -1;
}

.numbers-v2 .number-card {
    position: relative;
    padding: 15px 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 24px;
    height: calc(100% - 24px);
}

.numbers-v2 .number-card .num {
    position: relative;
    font-size: clamp(1.5rem, 8vw, 3rem);
    line-height: 1;
    margin-bottom: 10px;
}

.numbers-v2 .number-card .num small {
    font-size: 20px;
}

/* --------------- clients --------------- */
.clients-v2 {
    position: relative;
    overflow: hidden;
}

.clients-v2 .clients-slider .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
    position: relative;
}

.clients-v2 .client-card {
    position: relative;
    display: block;
    height: 100px;
    border: 1px solid #e8eef5;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clients-v2 .client-card:hover {
    border-color: var(--darkBlue);
}

.clients-v2 .client-card img {
    height: 45px;
    max-width: 60%;
    object-fit: contain;
}

/* --------------- footer --------------- */
.footer-v2 {
    position: relative;
    background: var(--darkBlue, #0b1f3a);
    color: rgba(255, 255, 255, 0.78);
    overflow: hidden;
    z-index: 1;
}

.footer-v2::before {
    content: "";
    position: absolute;
    inset-inline-start: -8%;
    top: -20%;
    width: 280px;
    height: 280px;
    background: var(--blue, #3b82f6);
    filter: blur(140px);
    opacity: 0.22;
    pointer-events: none;
    z-index: -1;
}

.footer-v2::after {
    content: "";
    position: absolute;
    inset-inline-end: -5%;
    bottom: -25%;
    width: 240px;
    height: 240px;
    background: #1d4ed8;
    filter: blur(130px);
    opacity: 0.18;
    pointer-events: none;
    z-index: -1;
}

.footer-v2 .footer-main {
    padding: 70px 0 40px;
}

.footer-v2 .footer-brand {
    max-width: 380px;
}

.footer-v2 .footer-logo {
    height: 52px;
    width: auto;
    max-width: 160px;
    filter: brightness(0) invert(1);
}

.footer-v2 .footer-tagline {
    color: #fff;
    line-height: 1.55;
    margin: 18px 0 0;
}

.footer-v2 .footer-newsletter-title {
    color: #fff;
    margin-bottom: 12px;
}

.footer-v2 .footer-newsletter-title i {
    color: var(--blue, #3b82f6);
}

.footer-v2 .footer-mail {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    padding: 6px;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.footer-v2 .footer-mail:focus-within {
    border-color: rgba(59, 130, 246, 0.55);
    background: rgba(255, 255, 255, 0.1);
}

.footer-v2 .footer-mail .form-control {
    background: transparent;
    border: 0;
    box-shadow: none;
    color: #fff;
    font-size: 14px;
    padding: 10px 16px;
}

.footer-v2 .footer-mail .form-control::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.footer-v2 .footer-mail .btn-mail {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: var(--darkBlue, #0b1f3a);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.footer-v2 .footer-mail .btn-mail:hover {
    background: var(--blue, #3b82f6);
    color: #fff;
    transform: translateX(-2px);
}

.footer-v2 .footer-mail-note {
    color: rgba(255, 255, 255, 0.45);
    margin-top: 10px;
}

.footer-v2 .footer-divider-v {
    width: 1px;
    align-self: stretch;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.footer-v2 .footer-col-title {
    color: #fff;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-v2 .footer-col-title::after {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    bottom: 0;
    width: 28px;
    height: 2px;
    background: var(--blue, #3b82f6);
    border-radius: 2px;
}

.footer-v2 .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-v2 .footer-links li + li {
    margin-top: 10px;
}

.footer-v2 .footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-v2 .footer-links a:hover {
    color: #fff;
}

.footer-v2 .footer-social {
    gap: 10px;
}

.footer-v2 .footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-v2 .footer-social a:hover {
    background: var(--blue, #3b82f6);
    border-color: var(--blue, #3b82f6);
    color: #fff;
    transform: translateY(-3px);
}

.footer-v2 .footer-contact-item {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-v2 .footer-contact-item i {
    color: var(--blue, #3b82f6);
    width: 18px;
}

.footer-v2 .footer-contact-item a:hover {
    color: #fff;
}

.footer-v2 .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 0;
}

.footer-v2 .footer-copy {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin: 0;
}

.footer-v2 .footer-copy a {
    color: rgba(255, 255, 255, 0.75);
}

.footer-v2 .footer-copy a:hover {
    color: var(--blue, #3b82f6);
}

.footer-v2 .footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 8px 14px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 500;
}

.footer-v2 .footer-badge i {
    color: var(--blue, #3b82f6);
    font-size: 14px;
}

@media (max-width: 991px) {
    .footer-v2 .footer-main {
        padding: 50px 0 30px;
    }

    .footer-v2 .footer-divider-v {
        display: none;
    }

    .footer-v2 .footer-brand {
        max-width: 100%;
    }
}

/* --------------- tab-bar-mob --------------- */
.tab-bar-mob-v2 {
    background-color: #fff;
    position: fixed;
    bottom: 10px;
    right: 0;
    left: 0;
    padding: 1rem;
    z-index: 9;
    -webkit-box-shadow: -3px -6px 15px 0 rgba(0, 0, 0, 0.2);
    box-shadow: -3px -6px 15px 0 rgba(0, 0, 0, 0.2);
    z-index: 99;
    background-color: rgba(7, 28, 55, 0.9411764706) !important;
    backdrop-filter: blur(10px);
    border-radius: 30px;
    margin: 0 auto;
    padding: 10px;
    min-width: 75%;
    width: fit-content;
}

.tab-bar-mob-v2 .links .link {
    font-size: 13px;
    text-align: center;
    padding-inline: 1.5rem;
    color: #ddd;
}

.tab-bar-mob-v2 .links .link .icon {
    display: block;
}

.tab-bar-mob-v2 .links .link.active {
    font-weight: bold;
    color: var(--blue);
}

.whatsapp_butn-v2 {
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 80;
    -webkit-box-shadow: 0 0px 15px 0 rgba(0, 0, 0, 0.0666666667);
    box-shadow: 0 0px 15px 0 rgba(0, 0, 0, 0.0666666667);
    border-radius: 50%;
}

.whatsapp_butn-v2 img {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .tab-bar-mob-v2 {
        display: block !important;
    }

    .progress-wrap {
        left: 15px;
        bottom: 75px;
    }

    .whatsapp_butn-v2 {
        right: 15px;
        bottom: 75px;
    }
}

/* ======== */
@media screen and (max-width: 991px) {
    .d_mob_block {
        display: block !important;
    }

    .d_mob_none {
        display: none !important;
    }
}

/* ======= */
html[dir=ltr] {
    @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
}

html[dir=ltr] body {
    direction: ltr;
    font-family: "Poppins", sans-serif;
}

/*# sourceMappingURL=style.css.map */