@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900;1000&display=swap");

:root {
    /* Primary Colors */
    --mainColor: #5589C0;
    /* أزرق أساسي */
    --secondColor: #0C2240;
    /* كحلي داكن */
    --secondColor2: #5496BF;
    /* أزرق فاتح مساعد */
    --secondColor3: #F2F2F2;

    /* Neutral / Background */
    --bgColor: #F5F8FC;
    --cardBg: #FFFFFF;
    --borderColor: #E3EAF3;

    /* Text */
    --textPrimary: #0C2240;
    --textSecondary: #5C6F82;
    --textMuted: #8FA1B3;

    /* Status Colors */
    --successColor: #2FA36B;
    --warningColor: #F4B740;
    --dangerColor: #E25555;
    --infoColor: #548DBF;

    /* Main Color Shades (Opacity) */
    --mainColor90: rgba(84, 141, 191, 0.9);
    --mainColor80: rgba(84, 141, 191, 0.8);
    --mainColor60: rgba(84, 141, 191, 0.6);
    --mainColor40: rgba(84, 141, 191, 0.4);
    --mainColor20: rgba(84, 141, 191, 0.2);
    --mainColor10: rgba(84, 141, 191, 0.1);

    /* Hover / Active */
    --hoverColor: #4A7FAE;
    --activeColor: #3F6E9A;

    /* Shadow */
    --BigShadow: 0px 8px 24px rgba(84, 141, 191, 0.15);

    --black: #000000;
    --white: #ffffff;
    --gray: #ccc;
    --transition: all 0.3s ease-in-out;
    --shadow: 0px 2px 4px #00000020;
}


* {
    margin: 0;
    padding: 0;
    line-height: 32px;
    direction: rtl;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Cairo", sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    overflow-x: hidden;
    position: relative;
    background: #fff !important;
}

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

a {
    text-decoration: none;
}

p {
    margin: 0;
}

button,
a {
    color: #000;
}

.fancybox__container {
    z-index: 9999999999;
}

.fancybox__track,
.fancybox__content,
.carousel__track {
    direction: ltr !important;
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: #fff;
}

::-webkit-scrollbar-thumb {
    background: #aaa;
}

header {
    width: 100%;
    height: 100px;
    display: flex;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
}

header nav {
    height: 100%;
    position: static !important;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
}

header nav .logo {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
}

header nav .logo img {
    /* height: 58px; */
    height: 72px;
    width: auto;
}

header nav ul {
    display: flex;
    justify-content: center;
    flex: 1 1 auto;
    min-width: 0;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap;
    margin: 0;
}

header nav .btns_link,
header nav .btns-prof,
header nav .dropdown {
    flex-shrink: 0;
}

header nav .dropdown.mx-2 {
    margin-inline: 4px !important;
}

header nav ul li {
    padding: 0;
    white-space: nowrap;
}

header nav ul li button {
    border: none;
    background: none;
    outline: none;
    font-weight: 700;
    color: #191936;
    font-size: 13px;
    padding: 6px 8px;
    line-height: 1.2;
}

header nav ul li button::after {
    content: "\f107";
    font-family: "Font Awesome 6 pro";
    position: absolute;
    top: 50%;
    transform: translateY(-45%);
    left: -10px;
}

header nav ul li a {
    font-weight: 700;
    color: #191936;
    font-size: 13px;
    position: relative;
    transition: all 0.4s ease-in-out;
    font-weight: 700;
    padding: 6px 8px;
    line-height: 1.2;
    display: inline-flex;
}

header nav ul li a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0px;
    height: 2px;
    background: var(--mainColor);
    transition: 0.4s ease-in-out;
}

header nav ul li a.active,
header nav ul li a:hover,
header nav ul li button.active {
    color: var(--mainColor);
}

header nav ul li a.active::after,
header nav ul li a:hover::after {
    width: 100%;
}

header nav ul li .dropdown-menu {
    border: 0;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    margin-top: 10px;
}

header nav ul li .dropdown-menu li {
    padding: 0 4px;
}

header nav ul li .dropdown-menu li a {
    color: #191936;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-align: start;
}

header nav ul li .dropdown-menu li a:hover {
    background: none;
}

/* header nav ul li .dropdown-menu li a::after {
    width: 100%;
} */

header nav ul li.bttns {
    display: none;
}

@media (max-width: 992px) {
    header nav ul li.bttns {
        display: block;
    }
}

@media (max-width: 992px) {
    header nav ul {
        position: absolute;
        top: 80px;
        right: -50%;
        width: 50%;
        background: #fff;
        flex-direction: column;
        height: calc(100vh - 80px);
        justify-content: flex-start;
        padding: 32px 0;
        gap: 6px;
        transition: all 0.4s ease-in-out;
    }

    header nav ul li {
        padding: 8px 24px;
    }

    header nav ul li button::after {
        left: 12px;
    }

    header nav ul li .dropdown-menu {
        height: auto;
    }

    header nav ul li .dropdown-menu a {
        text-align: start !important;
    }

    header nav ul.show {
        right: 0;
    }
}

.btns-prof a {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    color: var(--secondColor);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    border-radius: 12px;
    background: var(--mainColor10);
    /* خلفية باهتة جداً من لونك الأساسي */
    border: 2px solid transparent;
    transition: 0.4s;
}

.btns-prof a i {
    margin-inline-end: 10px;
    font-size: 1.1rem;
    color: var(--mainColor);
}

.btns-prof a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--mainColor);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.btns-prof a:hover {
    background: white;
    border-color: #eee;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.btns-prof a:hover::after {
    transform: scaleX(1);
}

.btns-prof a:hover i {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

header nav .lang-btn {
    background: linear-gradient(to right, var(--mainColor), var(--secondColor2));
    -webkit-background-clip: text;
    /* قص الخلفية لتكون داخل النص */
    -webkit-text-fill-color: transparent;
    /* جعل لون النص الأصلي شفافاً لإظهار التدرج */
    font-weight: bold;
    transition: all 0.4s ease-in-out;
    padding: 6px 8px !important;
    font-size: 13px;
    white-space: nowrap;
}

@media (min-width: 992px) {
    header {
        height: 92px;
    }

    header nav.navbar {
        flex-wrap: nowrap;
        gap: 10px;
    }

    header nav .logo img {
        height: 72px;
    }

    header nav ul {
        flex: 1 1 auto;
    }

    .btns-prof a {
        padding: 8px 14px;
        font-size: 13px;
    }

    .animated-btn {
        padding: 8px 14px;
        font-size: 14px;
        gap: 8px;
    }

    .btn-icon {
        width: 30px;
        height: 30px;
    }

    .animated-btn::before {
        width: 30px;
        height: 30px;
        right: 6px;
    }
}

@media (max-width: 1200px) {
    header nav ul {
        gap: 8px;
    }

    header nav ul li a,
    header nav ul li button {
        font-size: 12px;
        padding: 6px 2px;
    }

    header nav .logo img {
        height: 64px;
    }

    header nav .lang-btn {
        padding: 6px 6px !important;
        font-size: 12px;
    }

    header .btns-prof a {
        padding: 7px 10px;
        font-size: 12px;
    }

    header .animated-btn {
        padding: 7px 12px;
        font-size: 13px;
        gap: 6px;
    }

    header .btn-icon {
        width: 28px;
        height: 28px;
    }

    header .animated-btn::before {
        width: 28px;
        height: 28px;
        right: 6px;
    }
}

header nav .lang-btn:hover {
    background: linear-gradient(to right, var(--secondColor2), var(--secondColor));
    -webkit-background-clip: text;
    /* قص الخلفية لتكون داخل النص */
    -webkit-text-fill-color: transparent;
    /* جعل لون النص الأصلي شفافاً لإظهار التدرج */
    font-weight: bold;
}

header nav .menu-btn {
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: none;
    z-index: 2;
    flex: 1;
}

@media (max-width: 992px) {
    header nav .menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        justify-content: flex-end;
    }
}

header nav .menu-btn .menu-bar {
    position: relative;
    height: 2px;
    width: 28px;
    background-color: #191936;
    transition: 0.5s ease;
}

header nav .menu-btn .menu-bar::before {
    content: "";
    display: block;
    position: absolute;
    top: -9px;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: #191936;
    transition: 0.5s ease;
}

header nav .menu-btn .menu-bar::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -9px;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: #191936;
    transition: 0.5s ease;
}

header nav .menu-btn .menu-bar.menu-transform {
    background-color: transparent;
    transform: rotate(90deg);
}

header nav .menu-btn .menu-bar.menu-transform::before {
    transform: translate(0px, 9px) rotate(135deg);
}

header nav .menu-btn .menu-bar.menu-transform::after {
    transform: translate(0px, -9px) rotate(-135deg);
}

main {
    min-height: 100vh;
}

main .hero {
    width: 100%;
    height: 100vh;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    main .hero {
        height: 110vh;
    }
}

main .hero .video_wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

main .hero .video_wrapper video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

main .hero .video_wrapper::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(23, 23, 51, 0.922), rgba(23, 23, 51, 0.65));
}

main .hero .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform: translate(-50%, -35%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

main .hero .container .text h1 {
    font-weight: 700;
    color: #fff;
    text-align: center;
}

@media (max-width: 576px) {
    main .hero .container .text h1 {
        font-size: 24px;
    }
}

main .hero .container .text p {
    text-align: center;
    color: #fff;
}

@media (max-width: 576px) {
    main .hero .container .text p {
        font-size: 14px;
    }
}

main .hero .container .find_worker {
    width: min(850px, 100%);
}

main .hero .container .find_worker form {
    width: 100%;
    padding: 16px;
    border-radius: 8px;
    background: #fff;
    margin-top: 32px;
    display: flex;
    align-items: flex-end;
    gap: 16px;
}

@media (max-width: 768px) {
    main .hero .container .find_worker form {
        flex-direction: column;
        gap: 12px;
    }
}

main .hero .container .find_worker form .field {
    display: flex;
    width: 100%;
    flex-direction: column;
    flex: 2;
}

main .hero .container .find_worker form .field label {
    font-weight: 700;
    font-size: 12px;
    color: #191936;
}

main .hero .container .find_worker form .field .bootstrap-select {
    direction: rtl !important;
    width: 100% !important;
}

main .hero .container .find_worker form .recruit {
    height: 40px;
    border-radius: 4px;
    outline: none;
    border: none;
    cursor: pointer;
    background: linear-gradient(to right, #191936, var(--mainColor));
    color: #fff;
    flex: 1;
    padding: 0 8px;
}

@media (max-width: 768px) {
    main .hero .container .find_worker form .recruit {
        padding: 4px 12px;
    }
}

/* التنسيق الجديد لقسم About */
main .about {
    padding: 60px 12px;
    /* زيادة المساحة لراحة العين */
    background: #fdfdfd;
    background-image: radial-gradient(#1919360d 1px, transparent 1px);
    background-size: 20px 20px;
    /* خلفية منقطة خفيفة بدلاً من الصورة */
    position: relative;
    overflow: hidden;
}

/* تحسين منطقة النصوص */
main .about .about_text {
    padding: 20px;
}

main .about .about_text h2 {
    font-size: 24px;
    /* تكبير العنوان قليلاً */
    font-weight: 700;
    color: var(--mainColor);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
}

/* حركة عند تمرير الماوس على العنوان */
main .about .about_text h2:hover {
    transform: translateX(10px);
}

/* تنسيق الأيقونة بشكل احترافي */
main .about .about_text h2 span {
    min-width: 35px;
    height: 35px;
    border-radius: 12px;
    /* background: linear-gradient(135deg, #191936, #4a4a8a); */
    background: linear-gradient(135deg, var(--secondColor), var(--mainColor));
    box-shadow: 0 4px 15px rgba(25, 25, 54, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

main .about .about_text h2 span i {
    font-size: 20px;
    color: #fff;
}

main .about .about_text p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    padding-left: 60px;
    /* إزاحة النص ليتناسب مع موقع الأيقونة */
}

/* تنسيق الصورة بشكل إبداعي */
main .about .img {
    position: relative;
    border-radius: 30px;
    /* حواف ناعمة حديثة */
    overflow: visible;
    /* للسماح للعناصر بالخروج قليلاً */
    transition: all 0.4s ease;
}

main .about .img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* إضافة إطار وهمي خلف الصورة للجمالية */
main .about .img::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid #191936;
    border-radius: 30px;
    z-index: -1;
}

/* تطوير شكل البطاقة العائمة (Bun) */
main .about .img .bun {
    position: absolute;
    bottom: -20px;
    /* نقلها للأسفل */
    left: -20px;
    padding: 25px;
    border-radius: 20px;
    width: auto;
    min-width: 200px;
    background: #fff;
    border: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

main .about .img .bun h6 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #191936;
    text-align: center;
}

/* تحسين القوائم إذا وجدت */
main .about .about_text li {
    list-style: none;
    margin-bottom: 12px;
    font-weight: 500;
}

main .recruitment_services {
    padding: 60px 12px;
    background: #fff;
    background-position: top left;
    background-repeat: no-repeat;
}

/* main .recruitment_services .swiper {} */
/* كروت السلايدر */
main .recruitment_services .swiper-slide {
    height: 320px;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    color: #fff;
    cursor: pointer;

    /* ظل وعمق */
    box-shadow: 0 18px 45px rgba(0, 0, 0, .22);
    transform: translateZ(0);
    transition: transform .35s ease, box-shadow .35s ease;
}

/* حركة بسيطة على الكارت */
main .recruitment_services .swiper-slide:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(0, 0, 0, .28);
}

/* طبقة تظليل خفيفة للعنوان */
main .recruitment_services .swiper-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(120% 90% at 20% 10%, rgba(0, 0, 0, .35), transparent 55%),
        linear-gradient(to bottom, rgba(0, 0, 0, .25), rgba(0, 0, 0, .15), rgba(0, 0, 0, .55));
    transition: opacity .35s ease;
    opacity: .95;
}

/* عنوان ثابت أعلى الكارت */
main .recruitment_services .swiper-slide h3 {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 14px;
    margin: 0;
    z-index: 2;

    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: .2px;
    line-height: 1.25;

    padding: 10px 12px;
    border-radius: 14px;

    /* خلفية زجاجية */
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    text-shadow: 0 6px 18px rgba(0, 0, 0, .35);
    color: #fff;
}

/* “الستارة” الخاصة بالوصف */
main .recruitment_services .swiper-slide p {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    z-index: 2;

    padding: 16px 16px 18px;
    font-size: .95rem;
    line-height: 1.6;

    /* ستارة */
    background: linear-gradient(to top, rgba(0, 0, 0, .82), rgba(0, 0, 0, .35), transparent);

    /* مخفي مبدئياً */
    transform: translateY(70%);
    opacity: 0;
    transition: transform .4s ease, opacity .35s ease;
}

/* إظهار الستارة عند التأشير */
main .recruitment_services .swiper-slide:hover p {
    transform: translateY(0);
    opacity: 1;
}

/* تحسين على الموبايل: خلي الوصف ظاهر جزئياً دائمًا لأنه مفيش hover حقيقي */
@media (max-width: 768px) {
    main .recruitment_services .swiper-slide {
        height: 280px;
    }

    main .recruitment_services .swiper-slide p {
        transform: translateY(35%);
        opacity: 1;
    }
}

/* لو كان عندك img داخل السلايد، أخفيه أو احذفه */
main .recruitment_services .swiper-slide img {
    display: none;
}

/* التنسيق الجديد لقسم الخدمات */
main .popular_service {
    background: linear-gradient(180deg, #fbfdfe 0%, #f0f4f8 100%);
    padding: 60px 12px;
    position: relative;
}

main .popular_service .header-sec,
main .countries .header-sec,
main .statistics .header-sec,
main .recruitment_services .header-sec,
main .blog_highlights .header-sec,
main .customer-service .header-sec {
    text-align: center;
    margin-bottom: 40px;
    font-size: 16px;
    position: relative;
    z-index: 2;
}

main .popular_service .header-sec h2,
main .countries .header-sec h2,
main .statistics .header-sec h2,
main .recruitment_services .header-sec h2,
main .blog_highlights .header-sec h2,
main .customer-service .header-sec h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: var(--secondColor);
    position: relative;
}

/* إضافة خط زخرفي تحت العنوان الرئيسي */
main .popular_service h2::after,
main .countries .header-sec h2::after,
main .statistics .header-sec h2::after,
main .recruitment_services .header-sec h2::after,
main .blog_highlights .header-sec h2::after,
main .customer-service .header-sec h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #191936;
    margin: 15px auto 0;
    border-radius: 10px;
}

/* تنسيق بطاقة الخدمة */
main .popular_service .service {
    width: 100%;
    height: 100%;
    padding: 40px 25px;
    background: #ffffff;
    border-radius: 20px;
    /* حواف أكثر نعومة */
    border: 1px solid rgba(25, 25, 54, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    /* ظل ناعم جداً */
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* تأثير الخلفية عند تمرير الماوس */
main .popular_service .service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #191936;
    /* يتغير لون الخلفية عند التحويم */
    transition: all 0.5s ease;
    z-index: -1;
}

main .popular_service .service:hover::before {
    height: 100%;
}

/* تنسيق الصورة/الأيقونة */
main .popular_service .service img {
    height: 75px;
    width: auto;
    margin-bottom: 16px;
    transition: all 0.4s ease;
    border-radius: 10px;
    /* filter: drop-shadow(0 5px 10px rgba(0,0,0,0.1)); */
    filter: grayscale(100%) contrast(1.2);
}

/* تنسيق النصوص */
main .popular_service .service h6 {
    color: var(--mainColor);
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 700;
    transition: all 0.4s ease;
}

main .popular_service .service p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    transition: all 0.4s ease;
    margin-bottom: 0;
}

/* تغيير الألوان عند تمرير الماوس (Hover State) */
main .popular_service .service:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(25, 25, 54, 0.15);
}

main .popular_service .service:hover h6,
main .popular_service .service:hover p {
    color: #ffffff;
    /* تحويل النصوص للأبيض لتباينها مع الخلفية الداكنة */
}

main .popular_service .service:hover img {
    transform: scale(1.1) rotate(5deg);
    /* filter: grayscale(100%) contrast(1.2); */
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

/* تحسين استجابة الشبكة (Responsive Padding) */
@media (max-width: 768px) {
    main .popular_service {
        padding: 60px 10px;
    }

    main .popular_service .service {
        padding: 30px 15px;
    }
}

main .countries {
    position: relative;
    padding: 60px 12px;
    background: #fff;
    background-image: url(../images/world-map.webp);
    background-size: contain;
    background-attachment: fixed;
    background-position: bottom;
    background-repeat: no-repeat;
}

main .countries .countries-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--mainColor40) 0%, var(--mainColor80) 100%);
    opacity: 0.5;
    z-index: 1;
}

@media (max-width: 768px) {
    main .countries {
        background-size: cover;
    }
}

main .countries .title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 48px;
    gap: 8px;
}

main .countries .title h2 {
    font-size: 36px;
    color: #191936;
    font-weight: 700;
    margin-bottom: 0;
}

main .countries .title p {
    color: #191936;
}

main .countries .country {
    padding: 16px;
    border: 2px solid #fff;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
}

main .countries .country .img {
    height: 64px;
    width: 64px;
    border-radius: 50%;
    overflow: hidden;
}

main .countries .country .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

main .countries .country h3 {
    font-size: 24px;
    font-weight: 700;
    color: #191936;
    margin: 0;
}

main .countries .country a {
    color: #fff;
    background: var(--mainColor);
    width: 80%;
    font-size: 14px;
    padding: 4px 0;
    text-align: center;
    border-radius: 8px;
    transition: all 0.4s ease-in-out;
}

main .countries .country a:hover {
    background: #191936;
}

@media (max-width: 576px) {
    main .countries .country a {
        width: 100%;
        font-size: 12px;
    }
}

main .statistics {
    padding: 60px 12px;
    background-color: #f8fbff;
}

/* بطاقة الإحصائية */
main .statistics .statics {
    padding: 40px 20px;
    background: #ffffff;
    border-radius: 24px;
    /* حواف دائرية عصرية */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 30px rgba(25, 25, 54, 0.05);
    z-index: 1;
    overflow: hidden;
    width: 100%;
}

/* خلفية متحركة عند الـ Hover */
main .statistics .statics::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(45deg, var(--mainColor40), var(--mainColor80), #4a4a8a);
    transition: all 0.6s ease-in-out;
    z-index: -1;
    border-radius: 50%;
}

main .statistics .statics:hover::before {
    top: -100%;
    left: -100%;
    transform: translate(30%, 30%);
    border-radius: 0;
}

/* تنسيق الأيقونة */
main .statistics .statics .icon {
    width: 80px;
    height: 80px;
    background: rgba(var(--mainColorRGB, 25, 25, 54), 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

main .statistics .statics i {
    font-size: 40px;
    color: var(--secondColor);
    transition: all 0.4s ease;
}

/* تنسيق الأرقام */
main .statistics .statics h3 {
    font-size: 36px;
    font-weight: 800;
    color: #191936;
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.4s ease;
}

/* تنسيق العنوان */
main .statistics .statics h4 {
    font-size: 16px;
    color: var(--secondColor3);
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

/* تأثيرات عند تمرير الماوس */
main .statistics .statics:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(25, 25, 54, 0.2);
}

main .statistics .statics:hover .icon {
    background: rgba(255, 255, 255, 0.2);
    transform: rotateY(360deg);
}

main .statistics .statics:hover i,
main .statistics .statics:hover h3,
main .statistics .statics:hover h4 {
    color: #ffffff;
}

/* إضافة لمسة ضوئية بسيطة */
main .statistics .statics::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-25deg);
    transition: 0.5s;
}

main .statistics .statics:hover::after {
    left: 150%;
}

main .howitworks {
    padding: 60px 12px;
    background: #fff;
}

main .howitworks .title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 48px;
    gap: 8px;
}

main .howitworks .title h2 {
    font-size: 32px;
    color: #191936;
    font-weight: 700;
    margin-bottom: 0;
}

main .howitworks .title p {
    color: #191936;
}

main .howitworks .allSteps {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 20px 0px;
    text-align: center;
    position: relative;
    isolation: isolate;
}

@media (max-width: 768px) {
    main .howitworks .allSteps {
        grid-template-columns: repeat(2, 1fr);
        padding: 0;
    }
}

main .howitworks .allSteps::before {
    content: "";
    width: 100%;
    height: 1px;
    background: var(--mainColor);
    position: absolute;
    top: 50%;
    left: 0;
}

@media (max-width: 768px) {
    main .howitworks .allSteps::before {
        display: none;
    }
}

main .howitworks .allSteps .step {
    display: flex;
    align-items: center;
    position: relative;
    flex-direction: column;
    height: 180px;
    width: 100%;
    gap: 16px;
}

@media (max-width: 768px) {
    main .howitworks .allSteps .step {
        height: 140px;
        margin: 32px 0 !important;
    }
}

main .howitworks .allSteps .step .step_num {
    position: absolute;
    bottom: -16px;
}

main .howitworks .allSteps .step .step_num span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--mainColor);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

main .howitworks .allSteps .step .text h6 {
    color: #777777;
    font-size: 14px;
}

main .howitworks .allSteps .step .icon {
    min-width: 64px;
    min-height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    background: linear-gradient(12deg, #191936, #1d5eb7);
}

main .howitworks .allSteps .step .icon img {
    height: 36px;
}

main .howitworks .allSteps .step:nth-child(even) {
    margin-top: 180px;
    padding-bottom: 0px;
    justify-content: flex-end;
}

@media (max-width: 768px) {
    main .howitworks .allSteps .step:nth-child(even) {
        justify-content: flex-start;
        margin-top: 0;
    }
}

main .howitworks .allSteps .step:nth-child(even) .step_num {
    top: -16px;
    bottom: initial;
}

@media (max-width: 768px) {
    main .howitworks .allSteps .step:nth-child(even) .step_num {
        bottom: -16px;
        top: initial;
    }
}

/* main .page_header {
    width: 100%;
    height: 40vh;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
    background-image: url(../images/bg-pattern-1.png);
    background-repeat: no-repeat;
}

main .page_header h1 {
    color: #191936;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 8px;
}

main .page_header h6 {
    font-size: 14px;
    color: #191936;
}

main .page_header h6 a {
    color: var(--mainColor);
} */

main .contact_section {
    padding: 60px 12px;
}

main .contact_section form {
    padding: 42px 12px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

@media (max-width: 576px) {
    main .contact_section form {
        padding: 32px 0;
    }
}

main .contact_section form .form-group {
    display: flex;
    width: 100%;
}

@media (max-width: 768px) {
    main .contact_section form .form-group {
        flex-direction: column;
        gap: 48px;
    }
}

main .contact_section form .form-group .inputfield {
    width: 100%;
    padding: 0 16px;
    position: relative;
    display: flex;
    flex-direction: column;
}

main .contact_section form .form-group .inputfield label {
    position: absolute;
    font-size: 14px;
    color: #777777;
    right: 16px;
    transform: translateY(-50%);
    top: 50%;
    font-weight: 500;
    transition: all 0.4s ease-in-out;
    cursor: auto;
}

main .contact_section form .form-group .inputfield label.message-label {
    top: 20%;
}

main .contact_section form .form-group .inputfield label.h {
    top: -4px;
    color: #191936;
}

main .contact_section form .form-group .inputfield input,
main .contact_section form .form-group .inputfield textarea {
    width: 100%;
    direction: rtl;
    height: 45px;
    border: none;
    background: none;
    outline: none;
}

main .contact_section form .form-group .inputfield input:focus+span::after,
main .contact_section form .form-group .inputfield textarea:focus+span::after {
    width: calc(100% - 32px);
}

main .contact_section form .form-group .inputfield textarea {
    padding: 16px 0;
    height: 130px;
}

main .contact_section form .form-group .inputfield .highlight {
    width: 100%;
    height: 2px;
    background: #eeeeee;
}

main .contact_section form .form-group .inputfield .highlight::after {
    content: "";
    width: 0;
    transition: all 0.4s ease-in-out;
    left: 50%;
    height: 2px;
    background: #191936;
    position: absolute;
    transform: translate(-50%);
}

main .contact_section form button {
    border: none;
    background: none;
    outline: none;
    align-self: flex-end;
    margin-left: 16px;
    isolation: isolate;
    padding: 0 16px;
    width: 140px;
    height: 50px;
    border: 1px solid var(--mainColor);
    color: var(--mainColor);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

main .contact_section form button i {
    transform: scaleX(-1);
    margin-right: 4px;
}

main .contact_section form button::after {
    position: absolute;
    content: "";
    height: 150px;
    width: 0;
    right: 10px;
    transition: all 0.4s ease-in-out;
    background: #191936;
    transform: rotate(-25deg);
    z-index: -1;
}

main .contact_section form button:hover {
    color: #fff;
    border-color: #191936;
}

main .contact_section form button:hover::after {
    width: 110%;
    right: -10px;
}

main .contact_section .contact_info {
    width: 100%;
    height: 100%;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 8px;
    padding: 24px;
}

main .contact_section .contact_info h3 {
    font-size: 22px;
    color: #191936;
    font-weight: 600;
    margin-bottom: 32px;
}

main .contact_section .contact_info h5 {
    font-size: 22px;
    color: #191936;
    font-weight: 600;
    margin-bottom: 8px;
}

main .contact_section .contact_info p {
    color: #777777;
    font-size: 14px;
    line-height: 22px;
}

main .contact_section .contact_info .field {
    width: 100%;
    display: flex;
    margin-bottom: 32px;
    gap: 16px;
    align-items: center;
}

main .contact_section .contact_info .field .icon {
    min-width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid #191936;
    overflow: hidden;
    isolation: isolate;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

main .contact_section .contact_info .field .icon::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 0;
    transition: all 0.4s ease-in-out;
    background: linear-gradient(to right, #191936, var(--mainColor));
}

main .contact_section .contact_info .field .icon i {
    font-size: 24px;
    color: #191936;
    z-index: 1;
}

main .contact_section .contact_info .field .text {
    display: flex;
    flex-direction: column;
}

main .contact_section .contact_info .field .text h4 {
    margin-bottom: 4px;
    color: #191936;
    font-size: 18px;
}

main .contact_section .contact_info .field .text a {
    color: #777777;
}

main .contact_section .contact_info .field:hover .text a {
    color: #191936;
}

main .contact_section .contact_info .field:hover .icon {
    border-color: transparent;
}

main .contact_section .contact_info .field:hover .icon i {
    color: #fff;
}

main .contact_section .contact_info .field:hover .icon::after {
    opacity: 1;
}

main .exploreCVs {
    padding: 12px 12px 60px 12px;
}

main .exploreCVs .small-filter-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    display: none;
    padding: 12px;
}

main .exploreCVs .small-filter-header h6 {
    color: #191936;
    margin: 0;
}

main .exploreCVs .small-filter-header button {
    border: none;
    background: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    background: #c8e1f6;
    padding: 8px;
    border-radius: 8px;
}

main .exploreCVs .small-filter-header button i {
    font-size: 18px;
    color: #191936;
}

@media (max-width: 992px) {
    main .exploreCVs .small-filter-header {
        display: flex;
    }
}

main .exploreCVs .exploreFilter {
    padding: 24px 16px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 8px;
    position: sticky;
    top: 100px;
}

main .exploreCVs .exploreFilter .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

main .exploreCVs .exploreFilter .head h3 {
    font-size: 18px;
    color: var(--secondColor);
    margin-bottom: 8px;
}

main .exploreCVs .exploreFilter .head p {
    color: var(--mainColor);
}

main .exploreCVs .exploreFilter .head .colse {
    display: none;
    cursor: pointer;
}

main .exploreCVs .exploreFilter .head .colse i {
    font-size: 24px;
    color: #191936;
}

main .exploreCVs .exploreFilter .deps {
    display: flex;
    align-items: center;
    gap: 12px;
}

main .exploreCVs .exploreFilter .deps label {
    cursor: pointer;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    border-radius: 12px;
    padding: 8px 12px;
}

main .exploreCVs .exploreFilter .deps label h6 {
    font-size: 14px;
    color: #191936;
    margin: 0;
    white-space: nowrap;
}

main .exploreCVs .exploreFilter .deps label input {
    z-index: -1;
    position: absolute;
    left: 0 !important;
    cursor: pointer;
    top: 0;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    height: 100%;
    border-radius: 12px;
    border: 1px solid var(--mainColor);
    background: var(--mainColor10);
    transition: all 0.3s ease-in-out;
}

main .exploreCVs .exploreFilter .deps label input:checked {
    border-color: var(--mainColor);
    background: var(--secondColor);
    color: var(--secondColor3);
}

main .exploreCVs .exploreFilter .deps label input+span {
    transition: all 0.3s ease-in-out;
}

main .exploreCVs .exploreFilter .deps label input:checked+span {
    color: var(--secondColor3);
}

main .exploreCVs .exploreFilter .deps label:hover input {
    border-color: var(--mainColor);
    background: var(--secondColor);
    color: var(--secondColor3);
}

main .exploreCVs .exploreFilter .deps label:hover input+span {
    color: var(--secondColor3);
}

main .exploreCVs .exploreFilter form {
    display: flex;
    gap: 24px;
    flex-direction: column;
}

main .exploreCVs .exploreFilter form .field {
    display: flex;
    width: 100%;
    flex-direction: column;
    flex: 2;
}

main .exploreCVs .exploreFilter form .field .bootstrap-select .dropdown-toggle .filter-option-inner-inner {
    font-size: 14px !important;
}

main .exploreCVs .exploreFilter form .field label {
    font-weight: 700;
    font-size: 12px;
    color: #191936;
}

main .exploreCVs .exploreFilter form .field .bootstrap-select {
    direction: rtl !important;
    width: 100% !important;
}

main .exploreCVs .exploreFilter form .apply {
    border: none;
    background: none;
    outline: none;
    background: var(--mainColor);
    border-radius: 4px;
    padding: 5px 14px;
    color: #fff;
    transition: all 0.4s ease-in-out;
}

main .exploreCVs .exploreFilter form .apply:hover {
    background: var(--secondColor);
    color: var(--secondColor3);
}

@media (max-width: 992px) {
    main .exploreCVs .exploreFilter {
        display: block;
        position: fixed;
        top: 100%;
        z-index: 9999;
        overflow-y: scroll;
        width: 100%;
        background: #fff;
        left: 0;
        transition: all 0.4s ease-in-out;
        height: 100vh;
        padding: 32px 24px !important;
    }

    main .exploreCVs .exploreFilter .head .colse {
        display: block;
    }

    main .exploreCVs .exploreFilter::-webkit-scrollbar {
        display: none;
    }

    main .exploreCVs .exploreFilter.active {
        top: 0;
    }
}

main .exploreCVs .paginations {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

main .exploreCVs .paginations .paginations_btn {
    width: 32px;
    cursor: pointer;
    height: 32px;
    background: var(--mainColor);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    transition: all 0.4s ease-in-out;
}

main .exploreCVs .paginations .paginations_btn:hover {
    background: #191936;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

main .exploreCVs .paginations .paginations_btn.disabled {
    opacity: 0.5;
    pointer-events: none;
}

main .exploreCVs .paginations ul {
    display: flex;
}

main .exploreCVs .paginations ul li {
    padding: 0 16px;
}

main .exploreCVs .paginations ul li span {
    font-size: 16px;
    -moz-columns: #191936;
    columns: #191936;
    cursor: pointer;
}

main .exploreCVs .select_cutomer_services {
    width: 100%;
    padding: 24px 16px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 8px;
}

main .exploreCVs .select_cutomer_services h3 {
    font-size: 20px;
    font-weight: 700;
    color: #191936;
    margin-bottom: 8px;
}

main .exploreCVs .select_cutomer_services p {
    font-size: 14px;
    line-height: 24px;
    color: #777777;
}

main .exploreCVs .select_cutomer_services .agents {
    margin: 24px 0 16px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

main .exploreCVs .select_cutomer_services .agents label {
    cursor: pointer;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    border-radius: 4px;
    padding: 8px 12px;
    min-width: 126px;
}

main .exploreCVs .select_cutomer_services .agents label .agent {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
}

main .exploreCVs .select_cutomer_services .agents label .agent img {
    height: 64px;
}

main .exploreCVs .select_cutomer_services .agents label .agent h6 {
    font-size: 14px;
    color: #191936;
    margin: 0;
    white-space: nowrap;
}

main .exploreCVs .select_cutomer_services .agents label input {
    z-index: -1;
    position: absolute;
    left: 0 !important;
    cursor: pointer;
    top: 0;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    height: 100%;
    border-radius: 4px;
    border: 2px solid #c8e1f6;
    background: #fafafa;
    transition: all 0.3s ease-in-out;
}

main .exploreCVs .select_cutomer_services .agents label input:checked {
    border-color: var(--mainColor);
    background: #c8e1f6;
}

main .exploreCVs .select_cutomer_services button {
    width: 100%;
    border: none;
    background: none;
    outline: none;
    background: var(--mainColor);
    color: #fff;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.4s ease-in-out;
}

main .exploreCVs .select_cutomer_services button:hover {
    background: #191936;
}

main .exploreCVs .select_cutomer_services a {
    display: block;
    text-align: center;
    width: 100%;
    border: none;
    background: none;
    outline: none;
    background: var(--mainColor);
    color: #fff;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.4s ease-in-out;
}

main .exploreCVs .select_cutomer_services a:hover {
    background: #191936;
}

main .rentingWorkers {
    padding: 60px 12px;
}

main .rentingWorkers .bs-stepper-header {
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 8px;
}

main .rentingWorkers .bs-stepper-header .step {
    margin-bottom: 12px;
}

main .rentingWorkers .bs-stepper-header .step .bs-stepper-circle {
    min-width: 48px;
    height: 48px;
}

main .rentingWorkers .bs-stepper-header .step .bs-stepper-circle img {
    height: 32px;
}

main .rentingWorkers .btn-next {
    border: none;
    background: none;
    outline: none;
    padding: 8px 16px;
    background: var(--mainColor);
    border-radius: 4px;
    color: #fff;
    transition: all 0.4s ease-in-out;
}

main .rentingWorkers .btn-next:hover {
    background: #191936;
}

main .rentingWorkers .addLoation {
    padding: 8px 16px;
    border: none;
    background: none;
    outline: none;
    border: 1px solid var(--mainColor);
    color: var(--mainColor);
    border-radius: 4px;
}

main .rentingWorkers label {
    cursor: pointer;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    border-radius: 8px;
    padding: 16px;
}

main .rentingWorkers label .location {
    width: 100%;
    display: flex;
    flex-direction: column;
}

main .rentingWorkers label .location h6 {
    color: #191936;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 20px;
}

main .rentingWorkers label .location h6 span {
    font-size: 24px;
}

main .rentingWorkers label .location ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

main .rentingWorkers label .location ul li {
    color: #777777;
    font-size: 14px;
}

main .rentingWorkers label .location ul li i {
    font-size: 16px;
}

main .rentingWorkers label input {
    z-index: -1;
    position: absolute;
    left: 0 !important;
    top: 0;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    height: 100%;
    border-radius: 4px;
    border: 2px solid #c8e1f6;
    background: #fafafa;
    transition: all 0.3s ease-in-out;
}

main .rentingWorkers label input:checked {
    border-color: var(--mainColor);
    background: #c8e1f6;
}

main .rentingWorkers .cv {
    box-shadow: none;
    background: #edf4fa;
}

main .rentingWorkers .accept {
    padding: 0;
    border-radius: 0;
    flex-direction: row;
}

main .rentingWorkers .accept a {
    color: var(--mainColor);
    padding-right: 4px;
}

main .rentingWorkers .accept a:hover {
    text-decoration: underline;
}

main .rentingWorkers input[type=checkbox] {
    width: 16px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    cursor: pointer;
}

main .rentingWorkers input[type=checkbox]::after {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
    content: "";
    font-family: "FontAwesome";
    width: 16px;
    height: 16px;
    border: 1px solid #c8e1f6;
    border-radius: 4px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #191936;
}

main .rentingWorkers input[type=checkbox]:checked::after {
    content: "\f00c";
    background: var(--mainColor);
    color: #fff;
    border-color: var(--mainColor);
}

main .auth_section {
    padding: 50px 12px;
}

main .setting_setion {
    padding: 60px 12px;
}

main .setting_setion .profile_side_bar {
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    padding: 24px;
    border-radius: 8px;
    position: sticky;
    top: 100px;
}

main .setting_setion .profile_side_bar h4 {
    font-size: 22px;
    margin-bottom: 4px;
    font-weight: 700;
}


main .setting_setion .profile_side_bar .links {
    margin-top: 24px;
}

main .setting_setion .profile_side_bar .links li {
    padding: 8px 16px;
    margin-bottom: 8px;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.4s ease-in-out;
}

main .setting_setion .profile_side_bar .links li a {
    color: #191936;
    transition: 0.4s ease-in-out;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

main .setting_setion .profile_side_bar .links li:last-child a {
    color: red;
}

main .setting_setion .profile_side_bar .links li:hover,
main .setting_setion .profile_side_bar .links li.active {
    background: var(--mainColor);
}

main .setting_setion .profile_side_bar .links li:hover a,
main .setting_setion .profile_side_bar .links li.active a {
    color: #fff;
}

main .setting_setion .notification {
    width: 100%;
    padding: 12px 16px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    margin-bottom: 20px;
    border-radius: 8px;
}

main .setting_setion .notification p {
    font-size: 16px;
    color: #191936;
    font-weight: 600;
}

main .setting_setion .orders .nav {
    background: var(--mainColor);
    width: min(100%, 460px);
    padding: 8px;
    border-radius: 8px;
}

main .setting_setion .orders .nav li {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

main .setting_setion .orders .nav li button {
    width: 100%;
    color: #fff;
}

main .setting_setion .orders .nav li button:hover {
    color: #fff;
}

main .setting_setion .orders .nav li button.active {
    background: #fff;
    color: var(--mainColor);
}

main .setting_setion .orders .nav li button.active:hover {
    color: var(--mainColor);
}

main .setting_setion .orders .order_card {
    padding: 16px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 8px;
    height: 100%;
}

main .setting_setion .orders .order_card h4 {
    font-size: 20px;
    font-weight: 700;
}

main .setting_setion .orders .order_card .title {
    display: flex;
    justify-content: space-between;
}

main .setting_setion .orders .order_card .title p {
    color: var(--mainColor);
    font-size: 18px;
    font-weight: 700;
}

main .setting_setion .orders .order_card .title a {
    color: var(--mainColor);
    font-size: 14px;
}

main .setting_setion .orders .order_card .pro {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 8px;
}

main .setting_setion .orders .order_card .pro .progress {
    height: 8px;
    background: #c8e1f6;
}

main .setting_setion .orders .order_card .pro .progress .progress-bar {
    background: var(--mainColor);
}

main .setting_setion .orders .order_card .pro .staus p {
    margin: 0;
    color: #191936;
    font-size: 14px;
    color: #777777;
}

main .setting_setion .orders .order_card .time {
    color: #777777;
    font-size: 12px;
}

main .setting_setion .order_status {
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

main .setting_setion .order_status .progress_state {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

main .setting_setion .order_status .progress_state h4 {
    margin: 0;
    color: #191936;
    font-size: 18px;
    font-weight: 700;
}

main .setting_setion .order_status .progress_state h6 {
    font-size: 14px;
    margin: 0;
    color: #191936;
    font-weight: 700;
}

main .setting_setion .order_status .progress_state h6 span {
    font-size: 18px;
    color: var(--mainColor);
}

main .setting_setion .order_status .progress_state .icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    background: linear-gradient(12deg, #191936, #1d5eb7);
}

main .setting_setion .order_status .progress,
main .setting_setion .order_status .progress-stacked {
    height: 8px;
    background: #c8e1f6;
}

main .setting_setion .order_status .progress .progress-bar,
main .setting_setion .order_status .progress-stacked .progress-bar {
    background: var(--mainColor);
}

main .faqs {
    padding: 30px 12px;
}

main .faqs .faqs-content {
    padding-top: 60px;
}

main .faqs .faqs-content h3 {
    font-size: 24px;
    color: var(--mainColor);
    font-weight: 600;
    margin-bottom: 28px;
}

main .faqs .faqs-content h3 i {
    transform: scaleX(-1);
}

main .faqs .accordion-button {
    text-align: inherit;
    color: #191936;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 0;
}

main .faqs .accordion-button:focus {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

main .faqs .accordion-button::after {
    content: "\f107";
    font-family: "Font Awesome 6 pro";
    background: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    transform: none;
    margin-right: auto;
    margin-left: 0;
}

main .faqs .accordion-button:not(.collapsed) {
    background: none !important;
    box-shadow: none !important;
    color: var(--mainColor);
    background: none !important;
}

main .faqs .accordion-button:not(.collapsed)::after {
    content: "\f106";
}

main .faqs .accordion-body {
    padding: 16px 0 !important;
}

main .faqs .accordion-item {
    border-top: 0 !important;
    border-right: 0 !important;
    border-left: 0 !important;
    border-bottom: 1px solid #eee !important;
    border-radius: 0 !important;
}

main .faqs .accordion-item p {
    font-size: 14px;
    color: #777777;
}

main .faqs .accordion-item:last-child {
    border-bottom: 0 !important;
}

main .terms {
    padding: 60px 12px;
}

main .terms h3 {
    color: #191936;
    font-weight: 700;
    font-size: 24px;
}

main .terms p {
    font-size: 14px;
    color: #777777;
    line-height: 24px;
}

main .terms ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

main .terms ul li h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--mainColor);
}

/* .cv {
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    padding: 16px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    height: 100%;
} */

.cv .cv_details {
    display: flex;
    gap: 32px;
}

@media (max-width: 576px) {
    .cv .cv_details {
        display: inline;
        gap: 24px;
    }

    .cv .cv_details .maidViewData {
        display: block;
        text-align: center;
    }
}

.cv .cv_details .img {
    width: 100%;
    flex: 2;
}

.cv .cv_details .img img {
    width: 100%;
    height: 100%;
    aspect-ratio: 3/2;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: top;
    object-position: top;
}

.cv .cv_details .info {
    flex: 3;
}

.cv .cv_details .info ul {
    display: flex;
    flex-wrap: wrap;
}

.cv .cv_details .info ul li {
    width: 50%;
    padding: 8px 12px;
}

.cv .cv_details .info ul li span {
    font-size: 14px;
}

@media (max-width: 576px) {
    .cv .cv_details .info ul li span {
        font-size: 12px;
    }
}

.cv .cv_details .info ul li h3 {
    /* font-size: 18px; */
    font-size: 16px;
    font-weight: 700;
    color: #191936;
}

@media (max-width: 576px) {
    .cv .cv_details .info ul li h3 {
        font-size: 14px;
    }
}

.cv .button a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    color: #fff;
    background: var(--mainColor);
    border-radius: 4px;
    transition: all 0.4s ease-in-out;
}

.cv .button a:hover {
    background: #191936;
}

.cv .button a.whatsapp {
    background: #c4e7c0;
    color: #139d03;
}

.cv .button a.whatsapp i {
    margin-right: 4px;
}

.cv .button a.whatsapp:hover {
    background: #139d03;
    color: #fff;
}

footer {
    padding: 40px 12px 16px;
    /* background: linear-gradient(12deg, #191936, #1d5eb7); */
    /* background: linear-gradient(12deg, var(--mainColor), var(--secondColor)); */
    background-color: rgba(204, 226, 255, 0.19);
}

footer .logo img {
    height: 84px;
}

footer p {
    color: var(--secondColor);
    font-weight: 40;
    line-height: 22px;
    margin-top: 16px;
    font-size: 14px;
}

footer .footer-text {
    color: var(--secondColor);
    font-weight: 40;
    line-height: 22px;
    margin-top: 12px;
    font-size: 14px;
}

footer .social {
    display: flex;
    /* margin-top: 16px; */
    gap: 10px;
}

footer .social a {
    display: flex;
    min-width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    color: var(--secondColor);
    border-radius: 16px;
    border: 1px solid var(--secondColor);
    transition: all 0.4s ease-in-out;
}

footer .social a i {
    color: var(--secondColor);
    transition: all 0.4s ease-in-out;
}

footer .social a:hover {
    transform: translateY(-4px);
    color: var(--secondColor3);
    background: var(--mainColor);
    border-color: var(--mainColor);
}

footer .social a:hover i {
    color: var(--secondColor3);
}

footer .footer_head {
    font-size: 18px;
    font-weight: bold;
    background: linear-gradient(to right, var(--secondColor), var(--mainColor));
    -webkit-background-clip: text;
    /* قص الخلفية لتكون داخل النص */
    -webkit-text-fill-color: transparent;
    /* جعل لون النص الأصلي شفافاً لإظهار التدرج */
    margin-bottom: 10px;
    padding-right: 12px;
    position: relative;
}

footer .footer_head::before {
    content: "";
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 2px;
    height: 70%;
    background-color: var(--secondColor);
}

footer .footer_head::after {
    content: "";
    position: absolute;
    right: 4px;
    bottom: 0px;
    width: 2px;
    height: 90%;
    background-color: var(--mainColor);
}

footer .links {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

footer .links li {
    margin-bottom: 0;
    min-width: 0;
    flex: 0 0 auto;
    width: auto;
    display: inline-flex;
    gap: 4px;
}

footer .links li a {
    color: var(--secondColor);
    position: relative;
    transition: all 0.4s ease-in-out;
}

footer .links li a::before {
    content: "-";
    color: var(--secondColor);
}

footer .links li a:hover {
    padding-right: 8px;
    color: var(--mainColor);
}

footer .links li a:hover::before {
    color: var(--mainColor);
}

footer .links_contact {
    margin-top: 12px;
}

footer .links_contact li {
    margin-bottom: 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

footer .links_contact li i,
footer .links_contact li b,
footer .links_contact li a {
    color: var(--secondColor);
}

footer .links_contact li i {
    margin-left: 0;
    margin-top: 2px;
}

footer .links_contact li b {
    font-size: 14px;
}

footer .copy-rights {
    margin-top: 16px;
    padding-block: 12px;
    border-top: 1px solid var(--secondColor);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

footer .copy-rights .social {
    gap: 10px;
}

footer .row {
    row-gap: 24px;
}

footer .copy-rights .copy span {
    background: var(--mainColor);
    color: var(--secondColor3);
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: 600;
}

@media (max-width: 768px) {
    footer .copy-rights {
        flex-direction: column;
        gap: 12px;
    }
}

footer .copy p {
    margin: 0;
}

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

.confirm_model img {
    height: 130px;
}

.confirm_model p {
    line-height: 26px;
    color: #777777;
    text-align: center;
}

.confirm_model a {
    width: 100% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    transition: all 0.4s ease-in-out;
    color: #fff;
    border-radius: 4px;
}

.confirm_model a.whatsapp {
    background: #c4e7c0;
    color: #139d03;
}

.confirm_model a.whatsapp i {
    margin-right: 4px;
}

.confirm_model a.whatsapp:hover {
    background: #139d03;
    color: #fff;
}

.confirm_model a.phone {
    background: #c8e1f6;
    color: #191936;
}

.confirm_model a.phone i {
    margin-right: 4px;
}

.confirm_model a.phone:hover {
    background: var(--mainColor);
    color: #fff;
}

.add_location .form-group {
    display: flex;
    flex-direction: column;
}

.add_location .form-group label {
    color: #191936;
    font-size: 14px;
    font-weight: 600;
}

.add_location .form-group input {
    outline: none;
    border: none;
    background: #eee;
    border-radius: 4px;
    height: 48px;
    padding: 0 12px;
    font-size: 14px;
}

.add_location .form-group textarea {
    outline: none;
    border: none;
    background: #eee;
    border-radius: 4px;
    height: 120px;
    padding: 8px 12px;
    font-size: 14px;
}

.add_location .form-group button {
    outline: none;
    border: none;
    width: 100%;
    padding: 8px;
    background: var(--mainColor);
    border-radius: 4px;
    transition: all 0.4s ease-in-out;
    color: #fff;
}

.add_location .form-group button:hover {
    background: #191936;
}

.payModal ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payModal ul label {
    cursor: pointer;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    border-radius: 8px;
    padding: 16px;
}

.payModal ul label .paymethod {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.payModal ul label .paymethod h6 {
    color: #191936;
    font-weight: 600;
    margin-bottom: 0;
    font-size: 18px;
}

.payModal ul label input {
    z-index: -1;
    position: absolute;
    left: 0 !important;
    top: 0;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    height: 100%;
    border-radius: 4px;
    border: 2px solid #c8e1f6;
    background: #fafafa;
    transition: all 0.3s ease-in-out;
}

.payModal ul label input:checked {
    border-color: var(--mainColor);
    background: #c8e1f6;
}

.payModal button {
    outline: none;
    border: none;
    width: 100%;
    padding: 8px;
    background: var(--mainColor);
    border-radius: 4px;
    transition: all 0.4s ease-in-out;
    color: #fff;
}

.payModal button:hover {
    background: #191936;
}

.auth_form {
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    padding: 36px 24px 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.auth_form h2 {
    font-size: 24px;
    font-weight: 600;
    color: #191936;
    margin-bottom: 4px;
}

.auth_form p {
    margin-bottom: 24px;
    text-align: center;
    line-height: 24px;
}

.auth_form p span {
    color: var(--mainColor);
}

.auth_form .input_filed {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
    position: relative;
}

.auth_form .input_filed label {
    font-size: 14px;
    color: #191936;
    font-weight: 600;
}

.auth_form .input_filed input {
    width: 100%;
    height: 56px;
    background: #eee !important;
    outline: none;
    border: none;
    border-radius: 4px;
    padding: 0 16px;
}

.auth_form .input_filed #phone {
    padding: 0 64px;
}

@media (max-width: 768px) {
    .auth_form .input_filed #phone {
        padding: 0 54px;
    }
}

.auth_form .input_filed #password {
    border-radius: 0 4px 4px 0;
}

.auth_form .input_filed .showPas {
    min-width: 48px;
    border: none;
    background: none;
    outline: none;
    background: #eee;
    border-radius: 4px 0 0 4px;
    color: #777777;
}

.auth_form .input_filed .phone_code {
    width: 70px;
    height: 56px;
    background: #eee;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth_form .input_filed .phone_code img {
    height: 24px;
}

.auth_form .input_filed.phone::after {
    content: "+996";
    position: absolute;
    top: 54px;
    left: 74px;
    color: #191936;
    font-weight: 600;
}

@media (max-width: 768px) {
    .auth_form .input_filed.phone::after {
        left: 80px;
    }
}

@media (max-width: 576px) {
    .auth_form .input_filed.phone::after {
        left: 70px;
    }
}

.auth_form a {
    color: var(--mainColor);
    transition: all 0.4s ease-in-out;
}

.auth_form a:hover {
    color: #191936;
}

.auth_form .log {
    width: 100%;
    padding: 8px;
    border-radius: 4px;
    border: none;
    background: none;
    outline: none;
    background: var(--mainColor);
    color: #fff;
    margin: 12px 0;
    transition: all 0.4s ease-in-out;
}

.auth_form .log:hover {
    background: #191936;
}

.auth_form p {
    margin: 0;
}

.auth_form .otp-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 0 24px;
    direction: ltr !important;
}

.auth_form .otp-container .otp-input {
    border-radius: 4px;
    width: 80px;
    direction: ltr !important;
    height: 60px;
    text-align: center;
    background: #c8e1f6;
    font-size: 24px;
    font-weight: 800;
    color: var(--mainColor);
    outline: none;
    border: none;
}

@media (max-width: 576px) {
    .auth_form .otp-container .otp-input {
        width: 48px;
        height: 48px;
    }
}

.auth_form .otp-container .otp-input::-webkit-inner-spin-button {
    display: none;
}

.ppackage,
.llocation {
    background: #f6f6f6;
    width: 100%;
    border-radius: 8px;
    height: 100%;
    padding: 16px;
    display: flex;
    flex-direction: column;
}

.ppackage h6,
.llocation h6 {
    color: #191936;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 20px;
}

.ppackage h6 span,
.llocation h6 span {
    font-size: 24px;
}

.ppackage ul,
.llocation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ppackage ul li,
.llocation ul li {
    color: #777777;
    font-size: 14px;
}

.ppackage ul li i,
.llocation ul li i {
    font-size: 16px;
}

.cta {
    padding: 8px 0;
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.cta p {
    font-size: 12px;
    color: #777777;
    line-height: normal;
}

.cta .btns {
    gap: 8px;
    display: flex;
}

.cta .btns a {
    width: 40px;
    height: 40px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #c8e1f6;
    color: var(--mainColor);
    font-size: 18px;
}

.cta .btns a.whatsapp {
    background: #c4e7c0;
    color: #139d03;
}

.dropdown-item.active,
.dropdown-item:active {
    background: var(--mainColor);
}

.btn-default {
    border: 1px solid #eee !important;
}

.bootstrap-select.dropup .dropdown-toggle:after {
    transform: rotate(-45deg) translateY(-50%);
    height: 0.5em;
    width: 0.5em;
}

.dropdown-menu.show {
    width: -moz-fit-content;
    width: fit-content;
}

.modal {
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.complain {
    outline: none;
    background: none;
    border: 1px dashed #191936;
    color: #191936;
    padding: 4px 16px;
    border-radius: 8px;
}

.preloader {
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preloader .preloaderImg {
    width: 100px;
    height: 100px;
    -webkit-mask-image: url("../images/fav.svg");
    mask-image: url("../images/fav.svg");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    position: relative;
}

@media screen and (max-width: 1024px) {
    .preloader .preloaderImg {
        width: 80px;
        height: 80px;
    }
}

.preloader .preloaderImg::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    height: 100px;
    z-index: 2;
    background-color: #5589C0;
    transform: translateY(100%);
    animation: slide-up 2.5s forwards;
}

@media screen and (max-width: 1024px) {
    .preloader .preloaderImg::after {
        width: 80px;
        height: 80px;
    }
}

.preloader .preloaderImg::before {
    content: "";
    display: block;
    width: 100px;
    height: 100px;
    -o-object-fit: contain;
    object-fit: contain;
    background-image: url("../images/fav.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(1) opacity(0.2);
}

@keyframes slide-up {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0%);
    }


}

/* ===== Floating Buttons Base ===== */
.floating-btn {
    position: fixed;
    left: 15px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

/* Hover Effect */
.floating-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

/* WhatsApp */
.floating-btn.wa {
    bottom: 80px;
    background: linear-gradient(135deg, #25d366, #1ebe5d);
}

/* Call */
.floating-btn.call {
    bottom: 20px;
    background: linear-gradient(135deg, #3C5C98, var(--mainColor));
}

/* Icon */
.floating-btn i {
    line-height: 1;
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* media mobile */
@media (max-width: 576px) {}

/*# sourceMappingURL=style.css.map */

.maid-cv-template {
    min-height: 500px;
    background:
        url('../images/cv-top.png') no-repeat center top,
        url('../images/cv-bottom.png') no-repeat center bottom;
    background-size: 100% auto;
    padding: 160px 20px;
}

.maid-cv-logo {
    position: absolute;
    top: 90px;
    right: 80px;
}

.cv-prop {
    color: var(--mainColor) !important;
    font-weight: bold;
}

/* Dashboard Styles */
.dashboard_welcome {
    margin-bottom: 2rem;
}

.welcome_card {
    background: linear-gradient(135deg, #667eea 0%, rgb(29, 94, 183) 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.welcome_card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.welcome_content {
    position: relative;
    z-index: 2;
}

.welcome_content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
}

.welcome_content p {
    margin-bottom: 1rem;
    opacity: 0.9;
    font-size: 1.1rem;
}

.welcome_stats {
    display: flex;
    gap: 1.5rem;
}

.stat_item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.welcome_icon {
    position: relative;
    z-index: 2;
}

.welcome_icon i {
    font-size: 5rem;
    opacity: 0.2;
}

/* Statistics Cards - Unified Design */
.dashboard_stat_card {
    background: #f8f9fa;
    padding: 0.5rem;
    border-radius: 6px;
    border-left: 3px solid #1a73c0;
    margin: 0.25rem 0;
    font-size: 0.85rem;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
}

.dashboard_stat_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.stat_header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

.stat_icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.orders_icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.contracts_icon {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.complaints_icon {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.stat_title h4 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
    line-height: 1;
}

.stat_title p {
    color: #64748b;
    font-weight: 500;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.stat_footer {
    padding: 1rem 1.5rem;
    background: #f8fafc;
}

.stat_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.stat_item:last-child {
    margin-bottom: 0;
}

.stat_label {
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 500;
}

.stat_value {
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.active_value {
    background: #dcfce7;
    color: #166534;
}

.completed_value {
    background: #dbeafe;
    color: #1e40af;
}

.pending_value {
    background: #fef3c7;
    color: #92400e;
}

.resolved_value {
    background: #dcfce7;
    color: #166534;
}

.stat_header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

.stat_icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.orders_icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.contracts_icon {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.complaints_icon {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.stat_title h4 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
    line-height: 1;
}

.stat_title p {
    color: #64748b;
    font-weight: 500;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.stat_footer {
    padding: 1rem 1.5rem;
    background: #f8fafc;
}

.stat_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.stat_item:last-child {
    margin-bottom: 0;
}

.stat_label {
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 500;
}

.stat_value {
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.active_value {
    background: #dcfce7;
    color: #166534;
}

.completed_value {
    background: #dbeafe;
    color: #1e40af;
}

.pending_value {
    background: #fef3c7;
    color: #92400e;
}

.resolved_value {
    background: #dcfce7;
    color: #166534;
}

.stat_link {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: #94a3b8;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.stat_link:hover {
    color: #475569;
    opacity: 1;
    transform: scale(1.1);
}

/* Quick Actions */
.quick_actions {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    margin-bottom: 2rem;
}

/* Recent Activities */
.recent_activities {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.section_title {
    margin-bottom: 1.5rem;
}

.section_title h5 {
    margin-bottom: 0.5rem;
    color: #1e293b;
    font-weight: 700;
    font-size: 1.25rem;
}

.section_title p {
    color: #64748b;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.action_card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    height: 100px;
}

.action_card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    color: inherit;
    text-decoration: none;
}

.action_card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #667eea, rgb(29, 94, 183));
    transition: width 0.3s ease;
    z-index: 0;
}

.action_card:hover::before {
    width: 4px;
}

.action_icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, #667eea, rgb(29, 94, 183));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1rem;
    font-size: 1.25rem;
    color: white;
    position: relative;
    z-index: 1;
}

.action_content {
    flex: 1;
    position: relative;
    z-index: 1;
    margin-left: 1rem;
}

.action_content h6 {
    margin-bottom: 0.25rem;
    font-weight: 600;
    color: #1e293b;
    font-size: 1rem;
}

.action_content p {
    margin-bottom: 0;
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.4;
}

.action_arrow {
    color: #94a3b8;
    font-size: 1.25rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.action_card:hover .action_arrow {
    transform: translateX(-5px);
    color: #667eea;
}

/* Recent Activities */
.activity_section {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.section_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    background: #f8fafc;
}

.header_content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header_content h5 {
    margin-bottom: 0;
    color: #1e293b;
    font-weight: 700;
    font-size: 1.1rem;
}

.header_content .badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: 15px;
}

.view_all_btn {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(102, 126, 234, 0.1);
    font-size: 0.85rem;
}

.view_all_btn:hover {
    color: #5a67d8;
    background: rgba(102, 126, 234, 0.15);
    text-decoration: none;
}

.activity_list {
    padding: 0;
}

.activity_item {
    display: flex;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.activity_item:hover {
    background-color: #f8fafc;
    transform: translateX(3px);
}

.activity_item:last-child {
    border-bottom: none;
}

.activity_icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1rem;
    color: white;
    font-size: 1.1rem;
}

.activity_content {
    flex: 1;
    margin-left: 1rem;
}

.activity_content h6 {
    margin-bottom: 0.25rem;
    font-weight: 600;
    color: #1e293b;
    font-size: 0.95rem;
}

.activity_content p {
    margin-bottom: 0.25rem;
    color: #64748b;
    font-size: 0.85rem;
}

.activity_content small {
    color: #94a3b8;
    font-size: 0.75rem;
    font-weight: 500;
}

.status_badge {
    padding: 0.375rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: capitalize;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.status_new,
.status_pending {
    background: #fef3c7;
    color: #92400e;
}

.status_paid,
.status_active {
    background: #dcfce7;
    color: #166534;
}

.status_done,
.status_completed,
.status_closed,
.status_resolved {
    background: #dbeafe;
    color: #1e40af;
}

.status_refused,
.status_cancelled {
    background: #fee2e2;
    color: #dc2626;
}

/* No Activities */
.no_activities {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.no_activities_icon i {
    font-size: 4rem;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.no_activities h5 {
    color: #475569;
    margin-bottom: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
}

.no_activities p {
    color: #64748b;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.no_activities .btn {
    padding: 0.75rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* Modal Styles */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.modal-header {
    border-bottom: 1px solid #e2e8f0;
    padding: 1.5rem 2rem;
}

.modal-title {
    font-weight: 700;
    color: #1e293b;
}

.modal-body {
    padding: 2rem;
}

.input_filed {
    margin-bottom: 1.5rem;
}

.input_filed label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1e293b;
}

.input_filed input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input_filed input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    outline: none;
}

.form_actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.form_actions .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .welcome_card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem;
    }

    .welcome_stats {
        justify-content: center;
    }

    .dashboard_stat_card {
        margin-bottom: 1rem;
    }

    .action_card {
        margin-bottom: 1rem;
        height: auto;
        padding: 1.25rem;
    }

    .section_header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .activity_item {
        padding: 1rem;
    }

    .form_actions {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .welcome_content h3 {
        font-size: 1.5rem;
    }

    .stat_title h4 {
        font-size: 1.75rem;
    }

    .action_content h6 {
        font-size: 0.9rem;
    }
}

.edit_profile_card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.card_header {
    background: linear-gradient(135deg, #667eea 0%, rgb(29, 94, 183) 100%);
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.card_header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.card_header h3 {
    position: relative;
    z-index: 2;
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
}

.card_header p {
    position: relative;
    z-index: 2;
    margin-bottom: 0;
    opacity: 0.9;
    font-size: 1rem;
    color: white;
}

.card_body {
    padding: 2rem;
}

.profile_form {
    max-width: 600px;
    margin: 0 auto;
}

.form_group {
    margin-bottom: 1.5rem;
}

.form_group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: white;
    font-size: 0.95rem;
}

.form_group input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form_group input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    outline: none;
}

.form_group input[readonly] {
    background: #f8fafc;
    color: #64748b;
    cursor: not-allowed;
}

.form_text {
    display: block;
    margin-top: 0.25rem;
    color: #64748b;
    font-size: 0.8rem;
    font-style: italic;
}

.form_actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.btn {
    padding: 0.875rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
}

.btn_primary {
    background: linear-gradient(135deg, #667eea, rgb(29, 94, 183));
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn_primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

.btn_secondary {
    background: #f1f5f9;
    color: #64748b;
    border: 2px solid #e2e8f0;
}

.btn_secondary:hover {
    background: #e2e8f0;
    color: #475569;
    text-decoration: none;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .card_header {
        padding: 1.5rem;
    }

    .card_header h3 {
        font-size: 1.5rem;
    }

    .card_body {
        padding: 1.5rem;
    }

    .form_actions {
        flex-direction: column;
    }

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

/* Profile Sidebar Styles */
.profile_side_bar {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.profile_header {
    background: linear-gradient(135deg, #667eea 0%, rgb(29, 94, 183) 100%);
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.profile_header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.profile_avatar {
    position: relative;
    z-index: 2;
    margin-bottom: 1rem;
    color: white;
}

.profile_avatar i {
    font-size: 4rem;
    opacity: 0.8;
}

.profile_info {
    position: relative;
    z-index: 2;
}

.profile_info h4,
.profile_phone,
.profile_email {
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
}

.profile_phone,
.profile_email {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.25rem;
}

.profile_nav {
    padding: 1.5rem 0;
}

.nav_links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav_item {
    margin-bottom: 0.5rem;
}

.nav_link {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: rgb(52, 56, 60);
    transition: all 0.3s ease;
    border-radius: 0;
    position: relative;
}

.nav_link:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    color: rgb(29, 94, 183);
    text-decoration: none;
    transform: translateX(5px);
}

.nav_item.active .nav_link {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    color: rgb(58, 58, 71);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.nav_item.active .nav_link::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: white;
    border-radius: 0 2px 2px 0;
}

.nav_icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.nav_item.active .nav_icon {
    background: rgba(255, 255, 255, 0.2);
}

.nav_content {
    flex: 1;
}

.nav_title {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.nav_desc {
    display: block;
    font-size: 0.8rem;
    opacity: 0.7;
    line-height: 1.3;
}

.profile_actions {
    padding: 1.5rem;
    border-top: 1px solid #e2e8f0;
    background: #f7fafc;
}

.action_divider {
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.action_divider::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    height: 1px;
    background: #e2e8f0;
    z-index: 1;
}

.action_divider span {
    background: #f7fafc;
    padding: 0 1rem;
    color: #718096;
    font-size: 0.8rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.action_links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.action_item {
    margin-bottom: 0.5rem;
}

.action_link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: #4a5568;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.action_link:hover {
    text-decoration: none;
    transform: translateX(3px);
}

.logout_link:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #e53e3e;
}

.delete_link:hover {
    background: rgba(245, 101, 101, 0.1);
    color: #f56565;
}

.action_icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.75rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.logout_link:hover .action_icon {
    background: rgba(239, 68, 68, 0.2);
}

.delete_link:hover .action_icon {
    background: rgba(245, 101, 101, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .profile_side_bar {
        position: static;
        margin-bottom: 2rem;
    }

    .profile_header {
        padding: 1.5rem;
    }

    .nav_link {
        padding: 0.75rem 1rem;
    }

    .nav_icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .nav_title {
        font-size: 0.9rem;
    }

    .nav_desc {
        font-size: 0.75rem;
    }
}

.return_request_card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.card_header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.card_header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.card_header h3 {
    position: relative;
    z-index: 2;
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
    font-weight: 700;
}

.card_header p {
    position: relative;
    z-index: 2;
    margin-bottom: 0;
    opacity: 0.9;
    font-size: 1rem;
}

.card_body {
    padding: 2rem;
}

.contract_info {
    background: #f8fafc;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid #e2e8f0;
}

.contract_info h5 {
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.info_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.info_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.info_item .label {
    color: #64748b;
    font-weight: 600;
    font-size: 0.9rem;
}

.info_item .value {
    color: #1e293b;
    font-weight: 700;
    font-size: 0.9rem;
}

.return_form h5 {
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.warning_box {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 1px solid #f59e0b;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.warning_box i {
    color: #d97706;
    font-size: 1.2rem;
    margin-top: 0.1rem;
}

.warning_box strong {
    color: #92400e;
    font-weight: 700;
    display: block;
    margin-bottom: 0.25rem;
}

.warning_box p {
    color: #78350f;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.form_group {
    margin-bottom: 1.5rem;
}

.form_group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1e293b;
    font-size: 0.95rem;
}

.form_group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    resize: vertical;
    min-height: 120px;
}

.form_group textarea:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    outline: none;
}

.form_text {
    display: block;
    margin-top: 0.25rem;
    color: #64748b;
    font-size: 0.8rem;
    font-style: italic;
}

.form_actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.btn {
    padding: 0.875rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
}

.btn_primary {
    background: linear-gradient(135deg, #667eea, #2962b7);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn_primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

.btn_secondary {
    background: #f1f5f9;
    color: #64748b;
    border: 2px solid #e2e8f0;
}

.btn_secondary:hover {
    background: #e2e8f0;
    color: #475569;
    text-decoration: none;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .card_header {
        padding: 1.5rem;
    }

    .card_header h3 {
        font-size: 1.5rem;
    }

    .card_body {
        padding: 1.5rem;
    }

    .info_grid {
        grid-template-columns: 1fr;
    }

    .form_actions {
        flex-direction: column;
    }

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

.swiper-hero .swiper-button-next:after,
.swiper-hero .swiper-button-prev:after {
    color: var(--mainColor) !important;
    font-size: 32px !important;
    font-weight: 600 !important;
}

.animated-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    color: var(--secondColor);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    overflow: hidden;
    /* لمنع خروج الخلفية عن الحدود */
    border-radius: 50px;
}

/* الأيقونة وإطارها الدائري */
.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: transparent;
    border: 1px solid var(--secondColor);
    border-radius: 50%;
    transition: all 0.4s ease-in-out;
}

/* الخلفية المتحركة */
.animated-btn::before {
    content: "";
    position: absolute;
    right: 6px;
    /* تبدأ من جهة الأيقونة */
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    /* background-color: var(--mainColor); */
    background-color: transparent;
    border-radius: 50px;
    z-index: -1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* تأثير الـ Hover */
.animated-btn:hover {
    color: #fff;
    padding-right: 22px;
    /* موازنة المسافة */
}

.animated-btn:hover::before {
    width: calc(100% - 12px);
    /* تمتد لتغطي الزر بالكامل */
    right: 6px;
    background-color: var(--mainColor);
}

.animated-btn:hover .btn-icon {
    border-color: transparent;
    transform: translateX(-5px);
    /* حركة بسيطة للأيقونة */
    color: #fff;
}

/* دعم اتجاه اللغة (RTL) */
[dir="rtl"] .animated-btn i {
    transform: rotate(0deg);
}

[dir="ltr"] .animated-btn i {
    transform: rotate(180deg);
}

/* تنسيق الزر الرئيسي */
.lang-btn {
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 8px 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* تنسيق القائمة المنسدلة */
.dropdown-menu {
    border: none;
    border-radius: 12px;
    padding: 8px;
    min-width: 140px;
}

.dropdown-item {
    border-radius: 8px;
    padding: 10px 15px;
    margin-bottom: 2px;
    transition: background 0.2s;
}

.dropdown-item:hover {
    background-color: #f0f7ff;
    color: #007bff;
}

.dropdown-item.active {
    background-color: transparent;
    color: var(--mainColor);
}

/* تنسيق الأعلام */
.dropdown-item img,
.lang-btn img {
    width: 20px;
    height: auto;
    border-radius: 2px;
}

@media (max-width: 1024px) {
    .btns_link {
        display: none;
    }
}

@media (min-width: 992px) {
    #language-mobile {
        display: none;
    }
}

@media (max-width: 992px) {
    #language-desktop {
        display: none;
    }
}

main .customer-service {
    padding: 60px 12px;
    background: linear-gradient(rgb(251, 253, 254) 0%, rgb(240, 244, 248) 100%);
    position: relative;
    overflow: hidden;
}