* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: #fff;
}

a {
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* =====================================================
       HEADER TOP
    ====================================================== */

.top-header {
    background: #fff;
    height: 178px;
    overflow: hidden;
}

.top-wrapper {
    display: flex;
    height: 100%;
}

/* =====================================================
       LOGO
    ====================================================== */
.logo-side {
    width: 26%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-right: 1px solid #f1f1f1;
    overflow: hidden;
}

.logo-box {
    width: 100%;
    height: 100%;
}

.main-logo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
}

.main-logo img {
    width: 500px;
    height: 200px;
    /* max-width: 100%;
    max-height: 170px; */
    object-fit: contain;
    display: block;
}

@media(max-width:992px) {

    .logo-side {
        width: 100%;
        height: 150px;
        border-right: none;
        border-bottom: 1px solid #f1f1f1;
    }

    .main-logo img {
        max-height: 130px;
    }
}

@media(max-width:768px) {

    .logo-side {
        height: 130px;
    }

    .main-logo {
        padding: 10px;
    }

    .main-logo img {
        max-height: 115px;
    }
}

@media(max-width:480px) {

    .logo-side {
        height: 110px;
    }

    .main-logo img {
        max-height: 200px;
    }
}

/* =====================================================
       SLIDER
    ====================================================== */

.slider-side {
    width: 74%;
    position: relative;
    overflow: hidden;
    background: #0F75BC;
}

.ads-slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.ads-track {
    display: flex;
    height: 100%;
    transition: transform .7s ease;
}

.slide-item {
    min-width: 50%;
    height: 178px;
    position: relative;
    overflow: hidden;
}

.slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Slider Arrows */

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    z-index: 20;
    cursor: pointer;
    transition: 0.3s;
    backdrop-filter: blur(4px);
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.32);
}

.slider-prev {
    left: 16px;
}

.slider-next {
    right: 16px;
}

/* =====================================================
       NAVBAR
    ====================================================== */

.custom-navbar {
    background: #fff;
    min-height: 74px;
    border-top: 1px solid #f2f2f2;
    border-bottom: 1px solid #f1f1f1;
    padding: 0;
    position: relative;
    z-index: 999;
}

.navbar-nav {
    gap: 8px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #111 !important;
    font-size: 15px;
    font-weight: 600;
    padding: 17px 12px !important;
    transition: 0.3s;
    white-space: nowrap;
}

.nav-link:hover {
    color: #0F75BC !important;
}

.nav-link i {
    font-size: 11px;
    margin-left: 5px;
}

/* =====================================================
       DROPDOWN
    ====================================================== */

.custom-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 340px;
    background: #fff;
    border-radius: 10px;
    padding: 12px 0;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all .35s ease;
    z-index: 999;
}

.custom-dropdown a {
    display: block;
    padding: 12px 22px;
    color: #111;
    font-size: 14px;
    font-weight: 500;
    transition: .3s;
}

.custom-dropdown a:hover {
    background: #f4f8ff;
    color: #0F75BC;
    padding-left: 28px;
}

.nav-item.dropdown:hover .custom-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* =====================================================
       SEARCH
    ====================================================== */

.search-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #111;
    transition: 0.3s;
}

.search-btn:hover {
    color: #0F75BC;
}

/* =====================================================
       BUTTON
    ====================================================== */

.order-btn {
    background: #0F75BC;
    color: #fff;
    border: none;
    padding: 10px 10px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
    min-width: 132px;
    text-align: center;
}

.order-btn:hover {
    background: #e95d2c;
    color: #fff;
}

/* =====================================================
       RESPONSIVE
    ====================================================== */

@media(max-width:1200px) {

    .nav-link {
        font-size: 14px;
        padding: 24px 8px !important;
    }
}

@media(max-width:992px) {

    .top-header {
        height: auto;
    }

    .top-wrapper {
        flex-direction: column;
    }

    .slider-side {
        width: 100%;
    }


    .custom-navbar {
        padding: 12px 0;
    }

    .navbar-collapse {
        padding-top: 15px;
    }

    .nav-link {
        padding: 12px 0 !important;
    }

    .navbar-actions {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 18px;
        margin-top: 20px;
    }

    /* Mobile Dropdown */

    .custom-dropdown {
        position: relative;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0 0 0 15px;
        display: none;
        min-width: 100%;
    }

    .custom-dropdown a {
        padding: 10px 0;
    }

    .nav-item.dropdown.active .custom-dropdown {
        display: block;
    }

    .nav-item.dropdown:hover .custom-dropdown {
        transform: none;
    }
}

@media(max-width:768px) {

    .slide-item {
        height: 180px;
    }

    .slider-arrow {
        width: 38px;
        height: 38px;
        font-size: 22px;
    }
}

@media(max-width:480px) {


    .slide-item {
        height: 160px;
    }

    .order-btn {
        width: 100%;
    }
}


/* TEAMS */
/* =====================================================
       TEAM SECTION
    ====================================================== */

.team-section {
    position: relative;
    background: #e9e9e9;
    padding: 90px 0 120px;
    overflow: hidden;
}

.team-container {
    position: relative;
    z-index: 5;
}

/* =====================================================
       BACKGROUND SHAPES
    ====================================================== */

.shape-left {
    position: absolute;
    width: 520px;
    height: 520px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 45%;
    left: -230px;
    top: 160px;
    z-index: 1;
}

.shape-center {
    position: absolute;
    width: 540px;
    height: 540px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -220px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.shape-right {
    position: absolute;
    width: 520px;
    height: 520px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 45%;
    right: -180px;
    top: 120px;
    z-index: 1;
}

/* Decorative dots */

.dot {
    position: absolute;
    border-radius: 50%;
    background: #40bff5;
    z-index: 2;
}

.dot-sm {
    width: 5px;
    height: 5px;
}

.dot-md {
    width: 7px;
    height: 7px;
}

.dot1 {
    top: 95px;
    left: 44%;
}

.dot2 {
    top: 120px;
    right: 38%;
}

.dot3 {
    bottom: 42px;
    left: 8%;
}

.dot4 {
    bottom: 65px;
    right: 44%;
}

/* =====================================================
       HEADER
    ====================================================== */

.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 5;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #0F75BC;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.section-tag::before,
.section-tag::after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #0F75BC;
    ;
}

.section-title {
    color: #0F75BC;;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1px;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.92);
    font-size: 17px;
    line-height: 2;
    max-width: 920px;
    margin: auto;
}

/* =====================================================
       TEAM CARDS
    ====================================================== */

.team-card {
    position: relative;
    max-width: 320px;
    margin: auto;
}

.team-image {
    width: 100%;
    height: 390px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.member-info {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -32px;
    width: 86%;
    background: #fff;
    border-radius: 16px;
    padding: 26px 22px 24px;
    text-align: center;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
    z-index: 5;
}

.member-name {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
    text-transform: lowercase;
}

.member-role {
    font-size: 15px;
    color: #777;
    font-weight: 400;
}

.plus-btn {
    position: absolute;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #0F75BC;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    right: 34px;
    bottom: -18px;
    box-shadow: 0 10px 20px rgba(64, 191, 245, 0.35);
}

/* =====================================================
       RESPONSIVE
    ====================================================== */

@media(max-width:1200px) {

    .section-title {
        font-size: 28px;
    }
}

@media(max-width:992px) {

    .team-section {
        padding: 80px 0 110px;
    }

    .section-title {
        font-size: 28px;
    }

    .team-card {
        margin-bottom: 80px;
    }
}

@media(max-width:768px) {

    .team-section {
        padding: 70px 18px 100px;
    }

    .section-title {
        font-size: 36px;
        line-height: 1.2;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .team-image {
        height: 360px;
    }
}

@media(max-width:480px) {

    .section-title {
        font-size: 32px;
    }

    .member-info {
        width: 90%;
    }
}


/* service about */

.about-section {
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}

.about-container {
    max-width: 1220px;
}

/* =====================================================
       LEFT SIDE
    ====================================================== */

.about-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 650px;
}

.about-image {
    width: 100%;
    height: 500px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    display: block;
}

/* Floating Card */
.feature-card {
    position: absolute;
    left: -32px;
    bottom: -40px;
    width: 300px;
    background: rgba(15, 116, 188, 0.604);
    backdrop-filter: blur(6px);
    border-radius: 10px;
    padding: 20px 26px;
    z-index: 10;
    box-shadow: 0 20px 40px rgba(47, 69, 255, 0.18);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item i {
    font-size: 20px;
    color: #fff;
}

/* =====================================================
       RIGHT CONTENT
    ====================================================== */

.about-content {
    padding-left: 40px;
}

.about-label {
    color: #0F75BC;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 18px;
}

.about-title {
    font-size: 30px;
    line-height: 1.15;
    font-weight: 700;
    color: #111;
    margin-bottom: 32px;
    letter-spacing: -1px;
}

.about-title .blue {
    color: #0F75BC;
    position: relative;
    display: inline-block;
}

.about-title .blue::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 16px;
    background: linear-gradient(90deg, #54ffe3, #ff4fd8);
    opacity: 0.55;
    left: 50%;
    transform: translateX(-50%);
    bottom: 12px;
    border-radius: 40px;
    z-index: -1;
}

.about-description {
    font-size: 17px;
    line-height: 2;
    color: #333;
    margin-bottom: 38px;
    max-width: 640px;
}

/* Divider */

.divider {
    width: 100%;
    height: 1px;
    background: #cfcfcf;
    margin: 35px 0;
}

/* =====================================================
       STATS
    ====================================================== */

.stats-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 140px;
}

.stat-number {
    font-size: 28px;
    line-height: 1;
    font-weight: 700;
    color: #111;
    margin-bottom: 5px;
}

.stat-text {
    font-size: 16px;
    color: #222;
    font-weight: 400;
    line-height: 1.5;
}

/* =====================================================
       BUTTON
    ====================================================== */

.about-btn {
    display: inline-block;
    background: #0F75BC;
    color: #fff;
    padding: 16px 28px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
}

.about-btn:hover {
    background: rgba(221, 80, 33, 0.651);
    color: #fff;
    transform: translateY(-2px);
}

/* =====================================================
       RESPONSIVE
    ====================================================== */

@media(max-width:1200px) {

    .about-title {
        font-size: 48px;
    }

    .stat-number {
        font-size: 48px;
    }
}

@media(max-width:992px) {

    .about-content {
        padding-left: 0;
        margin-top: 90px;
    }

    .about-title {
        font-size: 42px;
    }

    .feature-card {
        left: 20px;
    }
}

@media(max-width:768px) {

    .about-section {
        padding: 80px 18px;
    }

    .about-image {
        height: 420px;
    }

    .feature-card {
        width: 90%;
        left: 50%;
        transform: translateX(-50%);
        bottom: -55px;
    }

    .about-content {
        margin-top: 120px;
        text-align: center;
    }

    .about-title {
        font-size: 34px;
        line-height: 1.2;
    }

    .about-description {
        font-size: 15px;
    }

    .stats-wrapper {
        justify-content: center;
        gap: 35px;
    }

    .stat-item {
        min-width: 120px;
    }

    .stat-number {
        font-size: 42px;
    }
}

@media(max-width:480px) {

    .about-title {
        font-size: 30px;
    }

    .about-image {
        height: 360px;
    }

    .feature-card {
        padding: 16px 20px;
    }

    .feature-item {
        font-size: 14px;
    }

    .stat-number {
        font-size: 38px;
    }

    .about-btn {
        width: 100%;
    }
}






/* NOS SERVICES */
:root {
    --blue: #0F75BC;
    --bg: #f7f7f7;
    --dark: #1f1f1f;
    --gray: #666;
}

.services-section {
    position: relative;
    padding: 90px 0;
    background: var(--bg);
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title span {
    color: var(--blue);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
}

.section-title h2 {
    font-size: 30px;
    font-weight: 700;

}

.services-wrapper {
    position: relative;
    min-height: 640px;
}

.center-visual {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    z-index: 2;
}

.main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 45% 55% 60% 40% / 45% 45% 55% 55%;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
}

.floating-logo {
    position: absolute;
    right: -45px;
    bottom: -35px;
    width: 160px;
    height: 110px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(14px);
    border-radius: 35px;
    box-shadow: 0 18px 40px rgba(0, 87, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(10deg);
}

.floating-logo span {
    color: var(--blue);
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
}

.service-card {
    position: absolute;
    width: 340px;
    min-height: 160px;
    background: #fff;
    border-radius: 18px;
    padding: 30px 32px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
    transition: 0.4s ease;
    overflow: hidden;
    z-index: 3;
    opacity: 0;
    transform: translateY(35px);
}

.service-card.show {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 55px rgba(0, 87, 255, 0.14);
    z-index: 9999;
    cursor: pointer;
}

.service-card:hover .icon-box {
    transform: scale(1.12) rotate(8deg);
}

.icon-box {
    width: 42px;
    height: 42px;
    color: var(--blue);
    font-size: 28px;
    margin-bottom: 16px;
    transition: 0.35s ease;
}

.service-card h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.service-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
    margin: 0;
}

.number {
    position: absolute;
    right: 22px;
    bottom: -15px;
    font-size: 58px;
    font-weight: 700;
    color: rgba(0, 85, 255, 0.133);
    pointer-events: none;
}

.left-1 {
    left: 5%;
    top: 0;
}

.left-2 {
    left: 0;
    top: 215px;
}

.left-3 {
    left: 5%;
    bottom: 0;
}

.right-1 {
    right: 5%;
    top: 0;
}

.right-2 {
    right: 0;
    top: 215px;
}

.right-3 {
    right: 5%;
    bottom: 0;
}

.dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    opacity: 0.7;
    animation: float 4s infinite ease-in-out;
}

.dot.blue {
    background: var(--blue);
}

.dot.red {
    background: #ff4b3e;
}

.dot.yellow {
    background: #ffc83d;
}

.dot-1 {
    top: 15%;
    left: 38%;
}

.dot-2 {
    top: 28%;
    right: 22%;
}

.dot-3 {
    bottom: 22%;
    left: 18%;
}

.dot-4 {
    bottom: 30%;
    right: 28%;
}

.dot-5 {
    top: 55%;
    left: 50%;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

@media (max-width: 1199px) {
    .services-wrapper {
        min-height: auto;
    }

    .center-visual {
        position: relative;
        inset: auto;
        transform: none;
        margin: 0 auto 50px;
    }

    .service-card {
        position: relative;
        width: 100%;
        min-height: 190px;
    }

    .left-1,
    .left-2,
    .left-3,
    .right-1,
    .right-2,
    .right-3 {
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
    }
}

@media (max-width: 576px) {
    .services-section {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .center-visual {
        width: 270px;
        height: 270px;
    }

    .floating-logo {
        width: 125px;
        height: 85px;
        right: -20px;
        bottom: -25px;
    }

    .floating-logo span {
        font-size: 16px;
    }

    .service-card {
        padding: 26px;
    }
}

.trust-section {
    position: relative;
    padding: 85px 0;
    background: linear-gradient(120deg, rgba(15, 117, 188, .94), rgba(15, 117, 188, .82));
    overflow: hidden;
}

.container-custom {
    max-width: 1200px;
    position: relative;
    z-index: 3;
}

/* Decorative Background Shapes */

.trust-section .shape-left {
    position: absolute;
    width: 360px;
    height: 360px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 45% 55% 60% 40%;
    left: -140px;
    top: 60px;
    z-index: 1;
}

.shape-left {
    position: absolute;
    width: 360px;
    height: 360px;
    background: #fff;
    border-radius: 45% 55% 60% 40%;
    left: -140px;
    top: 60px;
    z-index: 1;
}

.trust-section .shape-right {
    position: absolute;
    width: 360px;
    height: 360px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    right: -160px;
    top: 120px;
    z-index: 1;
}

.shape-right {
    position: absolute;
    width: 360px;
    height: 360px;
    background: #fff;
    border-radius: 50%;
    right: -160px;
    top: 120px;
    z-index: 1;
}

.trust-section .line-shape {
    position: absolute;
    width: 750px;
    height: 380px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    left: -180px;
    bottom: -170px;
    z-index: 1;
}

.line-shape {
    position: absolute;
    width: 750px;
    height: 380px;
    border: 1px solid rgba(64, 191, 245, 0.08);
    border-radius: 50%;
    left: -180px;
    bottom: -170px;
    z-index: 1;
}

.trust-section .line-shape-2 {
    position: absolute;
    width: 650px;
    height: 340px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    right: -180px;
    top: 90px;
    z-index: 1;
}

.line-shape-2 {
    position: absolute;
    width: 650px;
    height: 340px;
    border: 1px solid rgba(64, 191, 245, 0.08);
    border-radius: 50%;
    right: -180px;
    top: 90px;
    z-index: 1;
}

/* Decorative dots */

.dot {
    position: absolute;
    border-radius: 50%;
    z-index: 2;
}

.dot-blue {
    background: #40bff5;
}

.dot-orange {
    background: #fff;
}

.dot-sm {
    width: 6px;
    height: 6px;
}

.dot-md {
    width: 9px;
    height: 9px;
}

.dot1 {
    top: 160px;
    left: 38%;
}

.dot2 {
    top: 310px;
    left: 48%;
}

.dot3 {
    bottom: 120px;
    left: 18%;
}

.dot4 {
    top: 180px;
    right: 22%;
}

.dot5 {
    bottom: 150px;
    right: 40%;
}

.section-tag {
    color: #9cb8dc;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-tag::before {
    content: '';
    width: 7px;
    height: 7px;
    background: #9cc8ff;
    border-radius: 50%;
}

.main-title {
    font-size: 30px;
    line-height: 1.08;
    font-weight: 800;
    color: #fff;
    max-width: 520px;
    margin-bottom: 40px;
    z-index: 99999;
}

/* Tabs */

.custom-tabs {
    display: flex;
    gap: 14px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.custom-tabs .nav-link {
    border-radius: 60px;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background: #fff;
    transition: all .35s ease;
}

.custom-tabs .nav-link.active {
    background: #0F75BC;
    border-color: #0F75BC;
    color: #fff;
}

/* Tab content animation */

.tab-pane.fade {
    transition: all .4s ease;
}

/* Content */

.argument-block {
    /* display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 45px; */
}

.check-icon {
    min-width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    margin-top: 2px;
}

.argument-title {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 12px;
}

.argument-text {
    color: #fff;
    line-height: 1.9;
    font-size: 15px;
    max-width: 520px;
}

/* Contact Info */

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: #f5fbff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-title {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 6px;
}

.contact-text {
    color: #fff;
    font-size: 16px;
    line-height: 1.7;
}

.contact-description {
    color: #fff;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 35px;
    max-width: 520px;
}

/* Image */

.image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.circle-image {
    width: 560px;
    height: 560px;
    border-radius: 5%;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
}

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

/* Responsive */

@media(max-width:1200px) {

    .main-title {
        font-size: 48px;
    }

    .circle-image {
        width: 480px;
        height: 480px;
    }
}

@media(max-width:992px) {

    .trust-section {
        padding: 90px 0;
    }

    .main-title {
        font-size: 42px;
    }

    .left-content {
        text-align: center;
    }

    .custom-tabs {
        justify-content: center;
    }

    .circle-image {
        width: 430px;
        height: 430px;
        margin-top: 40px;
    }

    .argument-block,
    .contact-item {
        text-align: left;
    }
}

@media(max-width:768px) {

    .trust-section {
        padding: 70px 18px;
    }

    .main-title {
        font-size: 34px;
    }

    .custom-tabs {
        flex-direction: column;
    }

    .custom-tabs .nav-link {
        width: 100%;
    }

    .circle-image {
        width: 320px;
        height: 320px;
    }

    .argument-title {
        font-size: 19px;
    }

    .argument-text,
    .contact-description,
    .contact-text {
        font-size: 15px;
    }
}


/* PRESSING */
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* =====================================================
       SECTION
    ====================================================== */

.pricing-section {
    position: relative;
    padding: 100px 0 80px;
    background: #e9e9e9;
    overflow: hidden;
}

.pricing-container {
    position: relative;
    z-index: 5;
}

/* =====================================================
       HEADER
    ====================================================== */

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #a8b7d6;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-tag::before,
.section-tag::after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #40bff5;
}

.section-title {
    font-size: 30px;
    line-height: 1.1;
    font-weight: 800;
    color: #1f1f25;
    margin-bottom: 24px;
    letter-spacing: -1px;
}


.section-subtitle {
    max-width: 980px;
    margin: auto;
    color: #666;
    font-size: 16px;
    line-height: 2;
}

/* =====================================================
       PRICING CARDS
    ====================================================== */

.pricing-card {
    position: relative;
    background: #fff;
    border-radius: 18px;
    padding: 0 28px 40px;
    min-height: 720px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
    text-align: center;
}

/* Decorative shapes */

.pricing-card::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: #eef5ff;
    top: -70px;
    right: -40px;
    z-index: 1;
}

.pricing-card::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #eef5ff;
    bottom: -45px;
    left: -30px;
    z-index: 1;
}

.card-content {
    position: relative;
    z-index: 5;
}

/* Badge */

.plan-badge {
    position: absolute;
    top: 18px;
    left: 0;
    padding: 10px 18px;
    border-radius: 0 12px 12px 0;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 10;
}

.badge-light-blue {
    background: #40bff5;
}

.badge-blue {
    background: #0F75BC;
}

.badge-orange {
    background: #ff553e;
}

/* Illustration */

.plan-illustration {
    width: 110px;
    height: 110px;
    margin: 40px auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
}

.plan-illustration img {
    width: 100%;
    object-fit: contain;
}

/* Price */

.plan-price {
    font-size: 50px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 7px;
}

.price-light-blue {
    color: #40bff5;
}

.price-blue {
    color: #0F75BC;
}

.price-orange {
    color: #ff553e;
}

.plan-subprice {
    color: #a1afd0;
    font-size: 15px;
    /* margin-bottom: 15px; */
    font-weight: 500;
}

.divider {
    width: 100%;
    height: 1px;
    background: #e8e8e8;
    margin-bottom: 15px;
}

/* Services */

.service-list li {
    color: #666;
    font-size: 15px;
    line-height: 2.8;
    font-weight: 400;
}

/* Buttons */

.plan-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 5px 10px;
    border-radius: 60px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    min-width: 125px;
    justify-content: center;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
    z-index: 999999999;
}

.plan-btn span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.btn-light-blue {
    background: #40bff5;
}

.btn-light-blue span {
    color: #40bff5;
}

.btn-blue {
    background: #0F75BC;
}

.btn-blue span {
    color: #0F75BC;
}

.btn-orange {
    background: #000;
}

.btn-orange span {
    color: #000;
}

/* =====================================================
       PARTNERS
    ====================================================== */

.partners-section {
    margin-top: 60px;
    margin-bottom: 60px;
    text-align: center;
    background: #fff;
}

.partners-title {
    color: #0F75BC;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 50px;
    letter-spacing: -1px;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 55px;
}

.partner-logo {
    color: #b7b7b7;
    font-size: 24px;
    font-weight: 700;
    opacity: 0.9;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.partner-logo i {
    font-size: 28px;
}

.partner-logo:hover {
    opacity: 1;
    transform: translateY(-4px);
}

/* =====================================================
       RESPONSIVE
    ====================================================== */

@media(max-width:1200px) {

    .section-title {
        font-size: 48px;
    }
}

@media(max-width:992px) {

    .pricing-card {
        margin-bottom: 55px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .section-title {
        font-size: 42px;
    }

    .partners-title {
        font-size: 38px;
    }
}

@media(max-width:768px) {

    .pricing-section {
        padding: 80px 18px 70px;
    }

    .section-title {
        font-size: 34px;
        line-height: 1.2;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .plan-price {
        font-size: 46px;
    }

    .partners-title {
        font-size: 32px;
    }

    .partners-logos {
        gap: 30px;
    }

    .partner-logo {
        font-size: 18px;
    }
}

@media(max-width:480px) {

    .section-title {
        font-size: 30px;
    }

    .pricing-card {
        padding: 0 20px 60px;
    }

    .plan-btn {
        width: 80%;
    }
}

a {
    text-decoration: none;
}

.hero-section {
    position: relative;
    /* height: 500px; */
    min-height: 560px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background:
        linear-gradient(120deg, rgba(15, 117, 188, .94), rgba(15, 117, 188, .82)),
        url("https://images.unsplash.com/photo-1550751827-4bd374c3f58b?q=80&w=1800&auto=format&fit=crop") center/cover no-repeat;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 25% 42%, rgba(132, 87, 255, .45), transparent 38%),
        radial-gradient(circle at 75% 40%, rgba(0, 183, 255, .18), transparent 35%),
        linear-gradient(90deg, rgba(15, 117, 188, .72), rgba(15, 117, 188, .76));
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px),
        radial-gradient(rgba(76, 200, 255, .55) 2px, transparent 2px);
    background-size: 90px 90px, 90px 90px, 58px 58px;
    opacity: .55;
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 5;
    max-width: 1220px;
}

.hero-title {
    font-size: 60px;
    line-height: 1.05;
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
}

.hero-subtitle {
    font-size: 28px;
    line-height: 1.18;
    font-weight: 400;
    color: #fff;
    max-width: 620px;
    margin-bottom: 28px;
}

.hero-text {
    color: rgba(255, 255, 255, .88);
    font-size: 18px;
    line-height: 1.55;
    max-width: 520px;
    margin-bottom: 42px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    color: #fff;
    border: 2px solid #000;
    border-radius: 50px;
    padding: 14px 28px;
    min-width: 220px;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    transition: .35s;
}

.hero-btn:hover {
    background: #0F75BC;
    color: #fff;
    box-shadow: 0 18px 35px rgba(255, 106, 43, .3);
    transform: translateY(-3px);
}

.slider-area {
    position: relative;
    height: 600px;
}

.phone-slider {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: visible;
}

.phone-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(40px) scale(.96);
    transition: all .75s ease;
    pointer-events: none;
}

.phone-slide.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
}

.phones-group {
    position: relative;
    width: 100%;
    height: 100%;
    animation: floatPhone 4s ease-in-out infinite;
    filter: drop-shadow(0 35px 35px rgba(0, 0, 0, .35));
}

@keyframes floatPhone {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

.phone {
    position: absolute;
    width: 225px;
    height: 395px;
    background: #070707;
    border-radius: 34px;
    padding: 12px;
    box-shadow:
        inset 0 0 0 2px #1c1c1c,
        0 30px 60px rgba(0, 0, 0, .45),
        0 0 55px rgba(55, 166, 255, .24);
}

.phone::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 82px;
    height: 20px;
    background: #030303;
    border-radius: 0 0 14px 14px;
    z-index: 8;
}

.phone-main {
    right: 230px;
    top: 100px;
    transform: rotate(-12deg);
    z-index: 5;
}

.phone-second {
    right: 20px;
    top: 100px;
    transform: rotate(18deg);
    z-index: 4;
}

.screen {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 26px;
    background: #fff;
    position: relative;
}

.app-top {
    height: 68px;
    background: #0F75BC;
    color: #fff;
    padding: 16px 12px 8px;
    font-size: 13px;
    font-weight: 700;
    padding-top: 25px;
}

.app-top2 {
    height: 68px;
    background: #f35a3c;
    color: #fff;
    padding: 16px 12px 8px;
    font-size: 13px;
    font-weight: 700;
     padding-top: 25px;
}

.app-top span {
    color: #ff9b29;
}

.app-card {
    margin: 12px;
    background: #fff;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .12);
    font-size: 10px;
    color: #333;
}

.listing {
    display: flex;
    gap: 8px;
    padding: 9px 10px;
    border-bottom: 1px solid #e9e9e9;
    align-items: center;
}

.house-icon {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background: #0F75BC;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    flex-shrink: 0;
}

.house-icon2 {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background: #f35a3c;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    flex-shrink: 0;
}

.listing-title {
    font-size: 10px;
    font-weight: 700;
    color: #222;
    line-height: 1.2;
}

.listing-sub {
    font-size: 8px;
    color: #777;
    line-height: 1.3;
}

.stars {
    color: #ffc107;
    font-size: 9px;
    margin-top: 2px;
}

.bottom-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 38px;
    background: #0F75BC;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: #fff;
    font-size: 10px;
}

.bottom-nav2 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 38px;
    background: #f35a3c;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: #fff;
    font-size: 10px;
}

.decor-square {
    position: absolute;
    right: 38px;
    top: 300px;
    width: 25px;
    height: 25px;
    border: 1px solid #000;
    z-index: 6;
}

.decor-square::after {
    content: '';
    width: 7px;
    height: 7px;
    background: #000;
    position: absolute;
    top: 8px;
    left: 8px;
}

.decor-dots {
    position: absolute;
    right: 45px;
    top: 350px;
    display: grid;
    gap: 24px;
    z-index: 6;
}

.decor-dots span {
    width: 6px;
    height: 6px;
    background: #fff;
    display: block;
}

.down-btn {
    position: absolute;
    left: 110px;
    bottom: 18px;
    width: 30px;
    height: 30px;
    border: 1px solid #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 8;
    font-size: 18px;
}

.orange-blob {
    position: absolute;
    right: 62px;
    bottom: -35px;
    width: 72px;
    height: 72px;
    background: #000;
    border-radius: 50%;
    z-index: 3;
}

.slider-nav {
    position: absolute;
    right: 20px;
    bottom: 80px;
    z-index: 10;
    display: flex;
    gap: 12px;
    opacity: .25;
    transition: .3s;
}

.phone-slider:hover .slider-nav {
    opacity: 1;
}

.slider-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .5);
    background: #0F75BC;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(4px);
}

@media(max-width:1200px) {
    .phone-main {
        right: 180px;
    }

    .phone-second {
        right: 0;
    }

    .hero-title {
        font-size: 52px;
    }
}

@media(max-width:992px) {
    .hero-section {
        min-height: auto;
        padding: 90px 0 60px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-text,
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .slider-area {
        height: 520px;
        margin-top: 30px;
    }

    .phone-main {
        left: 22%;
        right: auto;
    }

    .phone-second {
        right: 18%;
    }

    .down-btn {
        left: 35px;
    }

}

@media(max-width:768px) {
    .hero-title {
        font-size: 44px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .hero-text {
        font-size: 16px;
    }

    .slider-area {
        height: 470px;
    }

    .phone {
        width: 175px;
        height: 315px;
    }

    .phone-main {
        left: 14%;
        top: 30px;
    }

    .phone-second {
        right: 8%;
        top: 100px;

    }

    .decor-square,
    .decor-dots {
        display: none;
    }
}

@media(max-width:480px) {
    .hero-section {
        padding: 70px 18px 55px;
    
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 21px;
    }

    .hero-btn {
        width: 100%;
    }

    .slider-area {
        height: 410px;
    }

    .phone {
        width: 145px;
        height: 265px;
        border-radius: 25px;
        padding: 8px;
    }

    .phone-main {
        left: 4%;
    }

    .phone-second {
        right: 2%;
        top: 50px;
    }

    .app-top {
        height: 54px;
        font-size: 10px;
    }

    .listing-title {
        font-size: 8px;
    }

    .down-btn {
        left: 20px;
    }
}

/* =========================================
       FOOTER
========================================== */
.footer-section {
    position: relative;
    background: #0F75BC;
    padding-top: 70px;
    overflow: hidden;
}

.footer-container {
    position: relative;
    z-index: 5;
}

/* Background Shapes */
.footer-shape-left {
    position: absolute;
    width: 520px;
    height: 520px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 45%;
    left: -180px;
    top: 120px;
    z-index: -999;
}

.footer-shape-right {
    position: absolute;
    width: 460px;
    height: 460px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    right: -150px;
    bottom: -80px;
    z-index: 1;
}

/* =========================================
       NEWSLETTER
    ========================================== */

.newsletter-wrapper {
    /* position: absolute;
    top: -120px; 
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 20;
    padding: 0 20px; */

    position: absolute;
    left: 50%;
    top: -170px;
    transform: translateX(-50%);
    width: 54%;
    min-height: 235px;
    border-radius: 12px;
    overflow: hidden;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.newsletter-card {
    max-width: 920px;
    margin: auto;
    background: linear-gradient(90deg, #0F75BC 0%, #f7ef1f 100%);
    border-radius: 18px;
    padding: 42px 45px;
    box-shadow: 0 25px 45px rgba(255, 84, 62, 0.28);
    position: relative;
    overflow: hidden;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-left {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    color: #fff;
}

.rocket-icon {
    font-size: 38px;
    line-height: 1;
    margin-top: 3px;
}

.newsletter-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.1;
}

.newsletter-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.8;
    max-width: 360px;
}

/* Newsletter Form */

.newsletter-form {
    width: 100%;
    max-width: 430px;
    background: #fff;
    border-radius: 60px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.newsletter-input {
    border: none;
    outline: none;
    width: 100%;
    padding: 0 18px;
    font-size: 15px;
    color: #444;
    background: transparent;
}

.newsletter-input::placeholder {
    color: #9f9f9f;
}

.newsletter-btn {
    border: none;
    background: #f35a3c;
    color: #fff;
    border-radius: 50px;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    transition: 0.3s;
}

.newsletter-btn:hover {
    background: #ea4f30;
}

.newsletter-btn span {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* =========================================
       FOOTER CONTENT
    ========================================== */

.footer-content {
    padding-bottom: 70px;
    position: relative;
    z-index: 5;
}

.footer-logo {
    font-size: 42px;
    font-weight: 800;
    line-height: 0.95;
    color: #fff;
    margin-bottom: 28px;
}

.footer-logo span {
    color: #000;
    display: block;
    font-size: 26px;
    letter-spacing: 1px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 2;
    font-size: 15px;
    max-width: 300px;
    margin-bottom: 30px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffffff;
    color: #0F75BC;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: 0.3s;
}

.social-icons a:hover {
    transform: translateY(-4px);
}

.footer-title {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 28px;
}

.footer-contact li,
.footer-services li {
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    line-height: 2.2;
    margin-bottom: 2px;
}

.footer-contact strong {
    color: #fff;
    font-weight: 600;
}

.footer-contact a {
    color: #fff;
}

.footer-services li {
    transition: 0.3s;
    cursor: pointer;
}

.footer-services li:hover {
    transform: translateX(6px);
}

/* =========================================
       GALLERY
    ========================================== */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.gallery-item {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* =========================================
       COPYRIGHT
    ========================================== */

.copyright-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 24px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    position: relative;
    z-index: 5;
}

/* =========================================
       RESPONSIVE
    ========================================== */

@media(max-width:1199px) {

    .newsletter-title {
        font-size: 28px;
    }
}

@media(max-width:991px) {

    .footer-section {
        padding-top: 70px;
    }

    .newsletter-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .newsletter-form {
        max-width: 100%;
    }

    .footer-column {
        margin-bottom: 45px;
    }
}

@media(max-width:767px) {

    .footer-section {
        padding-top: 70px;
    }

    .newsletter-card {
        padding: 35px 24px;
    }

    .newsletter-left {
        flex-direction: column;
        gap: 18px;
    }

    .newsletter-title {
        font-size: 24px;
    }

    .newsletter-form {
        flex-direction: column;
        border-radius: 22px;
        padding: 16px;
    }

    .newsletter-input {
        width: 100%;
        height: 50px;
        padding: 0 10px;
    }

    .newsletter-btn {
        width: 100%;
        justify-content: center;
    }

    .footer-logo {
        font-size: 36px;
    }

    .footer-logo span {
        font-size: 22px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* SEARCHE BAR */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;

    opacity: 0;
    visibility: hidden;
    transition: 0.35s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-box {
    width: 100%;
    max-width: 650px;
    background: #fff;
    border-radius: 24px;
    padding: 45px 35px 35px;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    transform: translateY(30px) scale(0.95);
    transition: 0.35s ease;
}

.search-overlay.active .search-box {
    transform: translateY(0) scale(1);
}

.search-box h3 {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 28px;
    color: #111;
}

.close-search {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: #f2f2f2;
    color: #111;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-input-group {
    display: flex;
    align-items: center;
    border: 2px solid #eee;
    border-radius: 60px;
    overflow: hidden;
    background: #fafafa;
}

.search-input-group input {
    flex: 1;
    border: none;
    outline: none;
    padding: 18px 24px;
    font-size: 16px;
    background: transparent;
}

.search-input-group button {
    width: 65px;
    height: 60px;
    border: none;
    background: #0F75BC;
    color: #fff;
    font-size: 22px;
}

.search-input-group button:hover,
.close-search:hover {
    opacity: 0.85;
}

@media (max-width: 576px) {
    .search-box {
        padding: 40px 20px 28px;
        border-radius: 18px;
    }

    .search-box h3 {
        font-size: 24px;
    }

    .search-input-group input {
        padding: 16px 18px;
        font-size: 14px;
    }

    .search-input-group button {
        width: 56px;
        height: 56px;
    }
}

.hero-text-slider {
    position: relative;
    min-height: 420px;
}

.hero-content-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all .7s ease;
    pointer-events: none;
}

.hero-content-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}




.floating-share {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
}

.share-main-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: #0F75BC;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.share-main-btn:hover {
    transform: scale(1.08);
    background: #0F75BC;
}

.share-socials {
    position: absolute;
    bottom: 75px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: 0.3s;
}

.share-socials.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.share-socials a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: 0.3s;
}

.share-socials a:hover {
    transform: scale(1.1);
}

.facebook {
    background: #1877f2;
}

.twitter {
    background: #000;
}

.whatsapp {
    background: #25d366;
}

.linkedin {
    background: #0a66c2;
}

.telegram {
    background: #229ED9;
}

.copylink {
    background: #6c757d;
}


/* Tablette */
@media (max-width: 991px) {
    .floating-share {
        right: 18px;
        bottom: 18px;
    }

    .share-main-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }

    .share-socials {
        bottom: 70px;
        gap: 9px;
    }

    .share-socials a {
        width: 48px;
        height: 48px;
        font-size: 21px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .floating-share {
        right: 15px;
        bottom: 15px;
    }

    .share-main-btn {
        width: 52px;
        height: 52px;
        font-size: 21px;
    }

    .share-socials {
        bottom: 65px;
        right: 0;
        gap: 8px;
    }

    .share-socials a {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

/* Très petit écran */
@media (max-width: 360px) {
    .floating-share {
        right: 10px;
        bottom: 10px;
    }

    .share-main-btn {
        width: 48px;
        height: 48px;
        font-size: 19px;
    }

    .share-socials {
        bottom: 60px;
    }

    .share-socials a {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
}















.main-card {
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    padding-left: 10px;
    padding-right: 10px;
}

.form-scroll,
.right-panel {
    height: calc(100vh - 40px);
    overflow-y: auto;
    padding-right: 8px;
}

.main-card {
    position: relative;
}

.form-label {
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
}

.form-control,
.form-select {
    height: 46px;
    border-radius: 12px;
    border: 1px solid #dbe1ea;
    font-size: 14px;
}

textarea.form-control {
    height: auto;
}

.form-control:focus,
.form-select:focus {
    border-color: #0F75BC;
    box-shadow: 0 0 0 .2rem rgba(79, 70, 229, .12);
}

.btn-primary-custom {
    background: #0F75BC;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 11px 24px;
    font-weight: 600;
}

.btn-primary-custom:hover {
    background: #0F75BC;
    color: #fff;
}

.btn-light-custom {
    background: #eef2ff;
    color: #0F75BC;
    border-radius: 12px;
    padding: 11px 24px;
    font-weight: 600;
    border: none;
}



/* PANEL */


/* TEMPLATE CARD */
.card-template {
    display: block;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 22px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: .35s ease;
    position: relative;
}

/* HIDE RADIO */
.card-template input[type="radio"] {
    display: none;
}

/* IMAGE */
.template-image {
    position: relative;
    overflow: hidden;
}

.template-image img {
    width: 100%;
    display: block;
    transition: .5s ease;
    height: 240px;
}

/* FOOTER */
.template-footer {
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.template-info h6 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #111827;
}

.template-info span {
    font-size: 13px;
    color: #6b7280;
}

/* CHECK ICON */
.check-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #eef2ff;
    color: #0F75BC;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    transform: scale(.5);
    transition: .3s;
}

/* HOVER */
.card-template:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(79, 70, 229, .15);
}

.card-template:hover .template-image img {
    transform: scale(1.03);
}

/* ACTIVE */
.card-template:has(input:checked) {
    border-color: #0F75BC;
    box-shadow: 0 20px 45px rgba(79, 70, 229, .18);
}

.card-template:has(input:checked) .check-icon {
    opacity: 1;
    transform: scale(1);
    background: #0F75BC;
    color: white;
}

/* TOP BADGE */
.card-template:has(input:checked)::before {
    content: "Sélectionné";
    position: absolute;
    top: 16px;
    right: 16px;
    background: #0F75BC;
    color: white;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(79, 70, 229, .3);
}

/* RESPONSIVE */
@media(max-width:991px) {

    .right-panel {
        max-height: initial;
        margin-top: 30px;
    }

}

/* Desktop uniquement */
@media (min-width: 992px) {

    .form-scroll,
    .right-panel {
        position: sticky;
        top: 20px;
    }
}

/* Tablette + mobile */
@media (max-width: 991px) {

    .form-scroll,
    .right-panel {
        height: 100%;
        padding-right: 0;
    }

    .main-card {
        padding: 22px;
        border-radius: 18px;
    }

    .right-panel {
        margin-top: 25px;
    }

    .card-template {
        margin-bottom: 18px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .container-fluid1 {
        padding: 12px;
    }

    .main-card {
        padding: 18px;
        border-radius: 16px;
    }

    .form-control,
    .form-select {
        height: 44px;
        font-size: 13px;
    }

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

    .template-footer {
        padding: 14px 15px;
    }

    .template-info h6 {
        font-size: 14px;
    }

    .template-info span {
        font-size: 12px;
    }

    .check-icon {
        width: 32px;
        height: 32px;
        font-size: 15px;
    }

    .card-template:has(input:checked)::before {
        top: 10px;
        right: 10px;
        font-size: 10px;
        padding: 5px 10px;
    }

    .d-flex.justify-content-end {
        flex-direction: column-reverse;
    }

    .btn-primary-custom,
    .btn-light-custom {
        width: 100%;
    }
}

.custom-accordion .accordion-item {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
    background: #fff;
}

.custom-accordion .accordion-button {
    background: #f8fafc;
    color: #111827;
    font-weight: 700;
    border-radius: 0;
    box-shadow: none;
    padding: 16px 18px;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background: #eef2ff;
    color: #0F75BC;
}

.custom-accordion .accordion-button:focus {
    box-shadow: none;
}

.custom-accordion .accordion-body {
    padding: 20px;
}

@media(max-width: 576px) {
    .custom-accordion .accordion-button {
        padding: 14px;
        font-size: 14px;
    }

    .custom-accordion .accordion-body {
        padding: 15px;
    }
}

.form-scroll::-webkit-scrollbar,
.right-panel::-webkit-scrollbar {
    width: 5px;
}

.form-scroll::-webkit-scrollbar-track,
.right-panel::-webkit-scrollbar-track {
    background: #edf2f7;
    border-radius: 20px;
}

.form-scroll::-webkit-scrollbar-thumb,
.right-panel::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg,
            #0F75BC,
            #0F75BC);
    border-radius: 20px;
}

.form-scroll::-webkit-scrollbar-thumb:hover,
.right-panel::-webkit-scrollbar-thumb:hover {
    background: #0F75BC;
}




/* order */
.dashboard {
    padding: 24px 28px;
}

.page-title {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2f3542;
}

.page-date {
    font-size: 12px;
    color: #6c757d;
}

.delete-btn {
    background: #ffddd6;
    color: #e74c3c;
    border: none;
    padding: 10px 18px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
}

.card-box {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .06);
}

.profile-card {
    padding: 24px 20px;
    text-align: center;
}

.profile-img {
    width: 92px;
    height: 92px;
    border-radius: 6px;
    object-fit: cover;
    margin-bottom: 14px;
}

.profile-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.profile-id {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 22px;
}

.profile-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 22px;
}

.stat-mini {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.stat-icon {
    width: 34px;
    height: 34px;
    border-radius: 5px;
    background: #eeeaff;
    color: #6c5ce7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.stat-value {
    font-size: 16px;
    font-weight: 700;
}

.stat-label {
    font-size: 14px;
    color: #6c757d;
}

.details-title {
    text-align: left;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
    padding-top: 14px;
    border-top: 1px solid #e9ecf3;
}

.detail-row {
    display: flex;
    gap: 6px;
    font-size: 14px;
    margin-bottom: 10px;
    text-align: left;
}

.detail-row strong {
    color: #2f3542;
}

.status-active {
    color: #2ecc71;
    font-weight: 700;
}

.btn-purple {
    background: #6c5ce7;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 12px 15px;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
    margin-top: 12px;
}

.premium-card {
    margin-top: 20px;
    background: linear-gradient(135deg, #6c5ce7, #7d74ff);
    border-radius: 8px;
    padding: 24px 20px;
    color: #fff;
    position: relative;
    overflow: hidden;
    min-height: 184px;
}

.premium-card h4 {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 14px;
}

.premium-card p {
    font-size: 12px;
    line-height: 1.5;
    max-width: 190px;
    margin-bottom: 28px;
}

.rocket {
    position: absolute;
    right: 25px;
    top: 58px;
    font-size: 58px;
    transform: rotate(25deg);
}

.premium-btn {
    background: #fff;
    color: #6c5ce7;
    border: none;
    width: 100%;
    border-radius: 4px;
    padding: 10px;
    font-size: 12px;
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.nav-tabs-custom {
    border: none;
    gap: 18px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.nav-tabs-custom .nav-link {
    border: none;
    color: #2f3542;
    font-size: 12px;
    font-weight: 600;
    padding: 11px 18px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-tabs-custom .nav-link.active {
    background: #6c5ce7;
    color: #fff;
}

.info-card {
    padding: 22px;
    height: 100%;
}

.info-icon {
    width: 34px;
    height: 34px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 18px;
}

.violet {
    background: #eeeaff;
    color: #6c5ce7;
}

.green {
    background: #e8ffe9;
    color: #2ecc71;
}

.orange {
    background: #fff3d7;
    color: #f39c12;
}

.blue {
    background: #e5f7ff;
    color: #45bff5;
}

.info-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}

.info-main {
    font-size: 14px;
    color: #6c5ce7;
    font-weight: 700;
    margin-bottom: 5px;
}

.info-main.orange-text {
    color: #f39c12;
}

.info-main.blue-text {
    color: #45bff5;
}

.info-text {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.4;
    margin: 0;
}

.badge-platinum {
    background: #d6ffca;
    color: #35b44b;
    padding: 5px 8px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 8px;
}

.orders-card {
    margin-top: 22px;
    overflow: hidden;
}

.orders-header {
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #e8ebf2;
}

.orders-title {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
}

.search-order {
    width: 190px;
    height: 34px;
    border: 1px solid #ccd2df;
    border-radius: 4px;
    padding: 0 12px;
    font-size: 12px;
    outline: none;
}

.table {
    margin: 0;
    font-size: 12px;
}

.table thead th {
    color: #6c757d;
    font-size: 11px;
    font-weight: 800;
    padding: 16px 20px;
    border-bottom: 1px solid #e8ebf2;
    white-space: nowrap;
}

.table tbody td {
    padding: 17px 20px;
    color: #526071;
    vertical-align: middle;
    border-color: #e8ebf2;
    white-space: nowrap;
}

.order-link {
    color: #6c5ce7;
    font-weight: 700;
    text-decoration: none;
}

.badge-status {
    font-size: 10px;
    padding: 5px 8px;
    border-radius: 3px;
    font-weight: 700;
}

.status-progress {
    background: #eeeaff;
    color: #6c5ce7;
}

.status-ready {
    background: #dff9ff;
    color: #00a8d8;
}

.status-delivered {
    background: #dcffd7;
    color: #2ecc71;
}

.status-shipped {
    background: #fff1c7;
    color: #f39c12;
}

.actions-icon {
    color: #6c757d;
    font-size: 18px;
}

.orders-footer {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.result-text {
    font-size: 12px;
    color: #8a93a3;
}

.pagination {
    margin: 0;
    gap: 6px;
}

.page-link {
    border: none;
    color: #6c757d;
    background: #f8f9fc;
    border-radius: 4px;
    font-size: 12px;
    min-width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-item.active .page-link {
    background: #6c5ce7;
    color: #fff;
}

@media(max-width:992px) {
    .dashboard {
        padding: 20px 15px;
    }

    .sidebar {
        margin-bottom: 22px;
    }
}

@media(max-width:768px) {
    .top-bar {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 14px;
    }

    .delete-btn {
        width: 100%;
    }

    .orders-header,
    .orders-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .search-order {
        width: 100%;
    }

    .profile-stats {
        gap: 18px;
    }
}

div.dt-container div.dt-search {
    text-align: right;
    margin: 10px;
}

div.dt-container div.dt-paging {
    margin: 10px;
}

div.dt-container div.dt-info {
    padding-top: 0.85em;
    margin: 10px;
}


/* RETROUVER COMPTE */

.contour {
    min-height: 50vh;
    margin: 0;
    font-family: "Poppins", sans-serif;
    background:
        radial-gradient(circle at center, #ffffff 0%, #f8faff 45%, #eef2ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

.contour .recovery-circle {
    width: 880px;
    height: 100%;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contour .recovery-content {
    width: 100%;
    max-width: 760px;
    text-align: center;
}

.contour .recovery-title {
    color: #10164f;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.55;
    margin-bottom: 30px;
}

.contour .search-box2 {
    width: 100%;
    height: 72px;
    background: #ffffff;
    border: 2px solid #dddafe;
    border-radius: 14px;
    display: flex;
    align-items: center;
    box-shadow: 0 8px 24px rgba(91, 75, 255, 0.16);
    overflow: hidden;
}

.contour .search-icon {
    width: 76px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0F75BC;
    font-size: 30px;
    flex-shrink: 0;
}

.contour .search-input {
    flex: 1;
    height: 100%;
    border: none;
    outline: none;
    font-size: 21px;
    color: #10164f;
    padding: 0 16px;
    background: transparent;
}

.contour .search-input::placeholder {
    color: #8d94aa;
    font-weight: 400;
}

.contour .search-btn2 {
    height: 62px;
    margin-right: 10px;
    padding: 0 34px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #000, #000);
    color: #ffffff;
    font-size: 21px;
    font-weight: 600;
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(91, 75, 255, 0.3);
    flex-shrink: 0;
}

.contour .search-btn2:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #0F75BC, #2f2abf);
    box-shadow: 0 12px 28px rgba(91, 75, 255, 0.45);
}

@media (max-width: 991px) {
    .contour .recovery-circle {
        width: 100%;
        height: 100%;
        padding: 0;
    }

    .contour .recovery-title {
        font-size: 31px;
        margin-bottom: 55px;
    }

    .contour .search-box2 {
        height: 66px;
    }

    .contour .search-input,
    .contour .search-btn2 {
        font-size: 17px;
    }
}

@media (max-width: 767px) {
    .contour {
        padding: 24px;
    }

    .contour .recovery-circle {
        width: 100%;
        height: 100%;
        border-radius: 36px;
        padding: 10px;
    }

    .contour .recovery-title {
        font-size: 26px;
        line-height: 1.45;
        margin-bottom: 40px;
    }

    .contour .search-box2 {
        height: auto;
        flex-wrap: wrap;
        padding: 10px;
        gap: 10px;
        border-radius: 18px;
    }

    .contour .search-icon {
        width: 48px;
        height: 54px;
        font-size: 24px;
    }

    .contour .search-input {
        height: 54px;
        font-size: 15px;
        padding: 0 8px;
    }

    .contour .search-btn2 {
        width: 100%;
        height: 54px;
        margin: 0;
        font-size: 16px;
    }
}

@media (max-width: 420px) {
    .contour .recovery-circle {
        padding: 0;
    }

    .contour .recovery-title {
        font-size: 16px;
    }

    .contour .search-icon {
        display: none;
    }

    .contour .search-input {
        width: 100%;
        flex: unset;
        text-align: center;
    }

    .contour .recovery-content {
        width: 100%;
    }
}









.account-result {
    width: 100%;
}

.account-wrapper {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 24px;
}

.profile-card,
.orders-card {
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 18px 45px rgba(91, 75, 255, .12);
}

.profile-avatar {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5b4bff, #2563eb);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    margin: auto;
}

.profile-name {
    text-align: center;
    font-weight: 800;
    color: #10164f;
    margin-top: 15px;
}

.profile-function {
    text-align: center;
    color: #6b7280;
    font-size: 14px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 22px 0;
}

.stat-box {
    background: #eef2ff;
    border-radius: 16px;
    padding: 14px;
    text-align: center;
}

.stat-box strong {
    display: block;
    color: #10164f;
    font-size: 20px;
}

.stat-box span {
    color: #6b7280;
    font-size: 12px;
}

.info-line {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eef2ff;
    padding: 12px 0;
    gap: 15px;
}

.info-line span {
    color: #6b7280;
    font-size: 13px;
}

.info-line strong {
    color: #10164f;
    font-size: 14px;
    text-align: right;
}

.orders-title {
    font-weight: 800;
    color: #10164f;
    margin-bottom: 20px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8faff;
    border: 1px solid #eef2ff;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: .3s ease;
}

.order-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(91, 75, 255, .15);
}

.order-date {
    color: #10164f;
    font-weight: 700;
}

.order-total {
    color: #5b4bff;
    font-weight: 800;
}

.state-badge {
    padding: 6px 12px;
    border-radius: 30px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.empty-result {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
    padding: 16px;
    border-radius: 16px;
    text-align: center;
}

@media(max-width: 991px) {
    .account-wrapper {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .order-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

.order-section-title {
    color: #10164f;
    font-weight: 800;
    margin: 18px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eef2ff;
}

.invoice-box {
    background: #fff;
    color: #607086;
    font-family: "Segoe UI", sans-serif;
    padding: 25px;
}

.invoice-logo {
    text-align: center;
    margin-bottom: 20px;
}

.invoice-logo h2 {
    color: #1d4ed8;
    font-weight: 900;
    margin: 0;
}

.invoice-logo span {
    color: #10164f;
}

.invoice-title {
    color: #52657b;
    font-weight: 800;
    font-size: 22px;
    margin-left: 15px;
}

.invoice-table {
    width: 100%;
    border-collapse: collapse;
}

.invoice-table td,
.invoice-table th {
    border: 1px solid #d7dee8;
    padding: 12px 20px;
    font-size: 14px;
}

.invoice-table th {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #52657b;
    font-size: 12px;
}

.company-title {
    font-size: 20px;
    color: #52657b;
    font-weight: 800;
}

.client-line {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    font-size: 12px;
}

.invoice-summary {
    max-width: 500px;
    margin-left: auto;
    margin-top: 25px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #d7dee8;
    padding: 12px 18px;
}

.summary-row span {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
}

.summary-row strong {
    color: #52657b;
}

@media(max-width: 768px) {
    .invoice-box {
        padding: 15px;
    }

    .invoice-table td,
    .invoice-table th {
        padding: 10px;
        font-size: 12px;
    }

    .invoice-summary {
        max-width: 100%;
    }
}



.search-client-input {
    height: 48px;
    border-radius: 12px;
    border: 1px solid #dbe1ea;
    padding-right: 45px;
}

.search-client-input:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 .2rem rgba(79, 70, 229, .12);
}

.client-loader {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    color: #4f46e5;
}

.client-card {
    border: 1px solid #e5e7eb;
    background: #ffffff;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
    animation: fadeIn .25s ease;
}

.client-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid #eef2ff;
    padding-bottom: 14px;
    margin-bottom: 14px;
}

.client-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.client-name {
    margin: 0;
    color: #111827;
    font-weight: 700;
    font-size: 17px;
}

.client-function {
    color: #6b7280;
    font-size: 13px;
}

.client-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.client-info-item {
    background: #f8fafc;
    border-radius: 12px;
    padding: 12px;
}

.client-info-label {
    display: block;
    font-size: 11px;
    color: #64748b;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.client-info-value {
    color: #111827;
    font-size: 14px;
    font-weight: 600;
}

.client-alert {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 14px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media(max-width: 576px) {
    .client-info-grid {
        grid-template-columns: 1fr;
    }

    .client-card {
        padding: 15px;
    }
}

.is-invalid-custom {
    border-color: #dc3545 !important;
    background-color: #fff5f5 !important;
}

.invalid-text-custom {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}