/* Start-Global rouls */
:root {
    --main-color: black;
    --t-color: #ffffff;
    --white-bg: #ffffff;

}

html[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

html[dir="ltr"] {
    direction: ltr;
    text-align: left;
}

* {
    box-sizing: border-box;
    margin: 0;
    font-family: system-ui;
}

html {
    scroll-behavior: smooth;
}

.container {
    margin: 0 auto;
    position: relative;
    width: 100%;
    height: 100%;
}

/* X -Small*/
@media (min-width : 450px) {
    .container {
        width: 380px;
    }
}

/*Small*/
@media (min-width : 768px) {
    .container {
        width: 750px;
    }
}

/*medium*/

@media (min-width : 992px) {
    .container {
        width: 970px;
    }
}

/*Large*/

@media (min-width : 1200px) {
    .container {
        width: 1170px;
    }
}

/*X -Large*/

@media (min-width : 1450px) {
    .container {
        width: 1420px;
    }
}

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

a {
    text-decoration: none;
    color: white;
}

a:hover {
    color: var(--main-color);
}

body {
    overflow-x: hidden;
}

.head {
    text-align: center;
    padding: 15px 0;
    font-size: 85px;
    background: linear-gradient(to right, #000000, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: -5px 5px 15px rgb(170, 170, 170);
}

/* End-Global rouls */
/*Start Header*/
.scroll-down header {
    transform: translate3d(0, -100%, 0);

}

.scroll-up header {
    filter: drop-shadow(0 -10px 20px rgb(170, 170, 170));
    background-color: var(--main-color);
}

.navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: linear-gradient(to right, #8a939d, #000000);
    background-attachment: fixed;
}

.navigation .container {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    grid-template-areas: "lang login login .  nav nav nav nav nav nav logo";
    align-items: center;
    justify-items: end;
    height: 100px;
}

.logo {
    grid-area: logo;
    width: 100%;
    height: 100px;
    position: relative;
}

.navbar-brand {
    width: 100%;
    height: 100%;
}

.img-fluid {
    padding: 25px;
}

.navbar-collapse {
    grid-area: nav;
    width: 100%;
    height: 100px;
}

.navbar-nav {
    display: flex;
    flex-direction: row-reverse;

}

.nav-item {
    position: relative;
    width: calc(100% / 6);
    margin: 10px 0;

}
.nav-item.logins{
    display: none;
}

.nav-link {
    position: absolute;
    width: 100%;
    text-align: center;
    padding: 30px 0;
    font-size: 16px;
    font-weight: 900;


}

.nav-link:hover {
    filter: drop-shadow(0 -10px 20px rgb(170, 170, 170));
}

.nav-link.active {
    color: var(--main-color);
    border-bottom: 2px solid var(--main-color);
    filter: drop-shadow(0 -10px 20px rgb(170, 170, 170));
}

#toggle {
    display: none;
}

@media (max-width : 992px) {
    .nav-link {
        font-size: 9px;
    }
}

@media (max-width : 768px) {
    .navigation .container {
        display: flex;
    }

    .navbar-nav {
        display: none;
    }

    #toggle {
        display: block;
        position: absolute;
        left: 20px;
        top: 37.5px;
        font-size: 25px;
        color: var(--t-color);
        border: none;
        background-color: transparent;
    }

    #nav-m {
        background: linear-gradient(to right, #8a939d, #000000);
        display: none;
        background-color: var(--main-color);
        position: fixed;
        width: 100%;
        top: 100px;
        right: 0;
    }

    .navbar-nav {
        display: flex;
        flex-direction: column;
        position: relative;
    }

    .navbar-nav .nav-item {

        height: 20px;
        margin: 10px 0;
        width: 0%;
        position: static;
    }

    .navbar-nav .nav-item .nav-link {
        background: linear-gradient(to right, #8a939d, #000000);
        padding: 0;
        font-size: larger;
    }
    .nav-item.logins{
    display: block;
}
}

/*End Header*/
/* start button */
button.scroll {
    position: fixed;
    bottom: 20px;
    right: 20px !important;
    color: var(--t-color);
    background: linear-gradient(to top, #8a939d, #000000);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    cursor: pointer;
    display: none;
}

button.scroll i {
    font-size: 20px;
    font-weight: 900;
    margin: 5px auto;
}

/* end button */
/* code start */
/* General Section Styling */
#shipment {
    height: 475px;
    background-size: cover;
    position: relative;
    color: white;
    margin-top: 100px;
    direction: ltr;
}

.start {
    padding-top: 40px;
    width: 400px;
    text-align: center;
    position: relative;
    left: 200px;
}

.homep {
    color: var(--main-color);
    /* font-size: 20px;
    font-weight: 600; */
}

#bt3 {
    border-top-right-radius: 10px;
}

#bt1 {
    border-top-left-radius: 10px;
}

span.homes {
    color: var(--t-color);
    font-size: 30px;
    font-weight: 900;
}

/* Buttons Section */
.codeMore {
    padding-top: 20px;
    display: flex;
    position: relative;
    left: 100px;
    max-width: 600px;
    justify-content: center;
}

.codeMore .bt {
    border: none;
    /* border-radius: 10px; */
    background: #8a939d;
    text-align: center;
    color: white;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.codeMore .bt:hover,
.codeMore .bt.selectedbt {
    background-color: #8a939d;
    color: var(--main-color);
}

.codeMore .bt h1 {
    font-size: 16px;
    margin: 0;
}

/* Search Forms */
.clicked {
    width: 100%;
    max-width: 600px;
    background: linear-gradient(to right, #8a939d, #000000);
    opacity: 0.95;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    left: 100px;
    border-top-left-radius: 0;
}

.clicked input::placeholder {
    color: white;
    opacity: 1;
}

.clicked h1 {
    font-size: 24px;
    color: #333;
}

.clicked span {
    display: block;
    font-size: 14px;
    color: #727272;
    margin-bottom: 10px;
}

.clicked .input-group {
    display: flex;
    align-items: center;
}

.clicked input[type="search"] {
    flex: 1;
    padding: 10px;
    border: 1px solid;
    border-image: linear-gradient(to left, #8a939d, #000000) 1;
    border-radius: 0 8px 8px 8px;
    background: linear-gradient(to right, #8a939d, #000000);
    opacity: .8;
    color: white;
}

.clicked input[type="search"]:focus {
    outline: none;
    box-shadow: 0 0 5px #8a939d;

}

.clicked button {
    background-color: transparent;
    border: none;
    color: var(--t-color);
    font-weight: bold;
    /* transition: background-color 0.3s ease-in-out; */
}

.clicked button:hover {
    /* background-color: #e64a19; */
    cursor: pointer;
    color: black;
}

/* Responsive Design */
@media (max-width : 992px) {
    .start {
        display: none;
        left: 10px;
    }

    .codeMore {
        left: 0px;
        top: 130px;
        justify-content: flex-start;
    }

    .clicked {
        top: 130px;
        left: 0px;
    }
}

@media (max-width: 768px) {
    .codeMore {
        width: 100%;
        top: 130px;
        justify-content: center;
    }

    .clicked {
        width: 90%;
        top: 130px;
        margin: 0px auto;
    }
}

/* code End */
/* Start services */
.services {
    margin: 60px 0;
    text-align: center;
    position: relative;
    direction: ltr;
}

.services .head {
    text-align: center;
    padding: 15px 0;
    font-size: 85px;
    color: var(--main-color);
    text-shadow: -5px 5px 15px rgb(170, 170, 170);
}


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

.service-slider {
    display: flex;
    gap: 5px;
    overflow: hidden;
    width: 90%;

}

.card {
    flex: 0 0 calc(33.333% - 15px);
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.card h2 {
    font-size: 18px;
    color: var(--main-color);
    margin-bottom: 8px;
}

.card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}


.card .learn-more:hover {
    text-decoration: underline;
}

.slider-btn {
    background: linear-gradient(to right, #8a939d, #000000);
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: white;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: var(--t-color);
    color: var(--main-color);
}

.left-btn {
    left: 10px;
}

.right-btn {
    right: 10px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 800px) {
    .card {
        flex: 0 0 100%;
    }

    .head {
        font-size: 70px !important;
    }
}

/* End services */
/* Start we */
.unique-section {
    padding: 50px 20px;
}

.unique-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.unique-content-section {
    display: flex;
    gap: 30px;
    align-items: center;
}

.unique-images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 15px;
    width: 50%;
    align-items: center;
}

.unique-image-card {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.card-main {
    background: linear-gradient(to right, #8a939d, #000000);
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.unique-experience-number {
    font-size: 3rem;
    font-weight: bold;
    display: block;
}

.unique-experience-text {
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 10px;
}

.unique-text-section {
    width: 50%;
}

.unique-main-title {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(to right, #8a939d, #000000);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    line-height: 1.5;
    text-align: center;
}

.unique-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.unique-features {
    list-style: none;
    padding: 0;
    font-size: 1rem;
    color: var(--main-color);
}

.unique-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.unique-features li i {
    color: var(--main-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

@media (max-width: 900px) {
    .unique-images-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 20px;
    }

    .unique-image-card {
        display: none;
    }

    .unique-experience-box {
        grid-column: span 1;
        font-size: 1rem;
        padding: 10px;
    }

    .unique-experience-number {
        font-size: 2rem;
    }

    .unique-experience-text {
        font-size: 1rem;
    }

    .unique-content-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .unique-text-section {
        width: 100%;
        border-radius: 10px;
        background: #eee;
        padding: 10px;
    }

    .unique-main-title {
        color: var(--t-color);
    }
}

/* End We */
/* Start content */
.content {
    margin-top: 100px;
    margin-bottom: 60px;
}

.cont {
    display: flex;
    justify-content: space-around;
    /*direction: rtl;*/
    flex-direction: row-reverse;
    align-items: center;
}

.call,
.location {
    padding: 50px 20px;
    background-color: var(--main-color);
    opacity: 1;
    filter: drop-shadow(0 -10px 20px rgb(170, 170, 170));
    color: white;
    text-align: center;
    width: 45%;
    border-top-right-radius: 60px;
    border-bottom-left-radius: 60px;
    min-height: 596px;
}

.sc-2 {
    margin: 20px 0;
}

.sc-4 {
    margin: 10px 0;
    font-size: larger;
}

.p-0 {
    color: #727272;
    font-size: 20px;
}

.cont i {
    font-size: 40px;
    font-weight: 900;
    margin: 20px;
}

.li-0 {
    color: white;
}

.li-0:hover {
    color: #727272;
}

@media (max-width : 997px) {
    .map {
        position: relative;
        width: 250px !important;
        height: 250px !important;
    }
}

@media (max-width : 767px) {
    .cont {
        flex-direction: column;
        justify-content: center;
        gap: 20px;
    }

    .map {
        position: relative;
        width: 150px !important;
        height: 150px !important;
        right: -7px;
    }
}

/* End content */
/* start rouls */
.policy {
    margin-top: 100px;
    margin-bottom: 60px;
    /*direction: rtl;*/
}


/* الحاوية الرئيسية */
.policy-container {
    display: flex;
    gap: 20px;
    padding: 20px;
}

/* الأقسام */
.policy-section {
    flex: 1;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.white-section {
    background: linear-gradient(to left, #8a939d, #000000);
    color: var(--t-color);
}

.blue-section {
    background: linear-gradient(to right, #8a939d, #000000);
    color: var(--white-bg);
}

/* القائمة داخل كل قسم */
.nav-policy {
    padding: 0;
    margin: 0;
    list-style: none;
}

.nav-pol {
    margin: 10px 0;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

/* الأرقام */
.nav-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    /* حجم ثابت للدائرة */
    height: 40px;
    /* حجم ثابت للدائرة */
    font-size: 16px;
    font-weight: bold;
    color: var(--t-color);
    background-color: var(--white-bg);
    border: 2px solid var(--t-color);
    border-radius: 50%;
    flex-shrink: 0;
}

.white-section .nav-number {
    color: var(--main-color);
    border: 2px solid var(--main-color);
}

.blue-section .nav-number {
    color: var(--t-color);
    background-color: var(--main-color);
    border: 2px solid var(--t-color);
}

.white-section .nav-pol:hover .nav-number {
    border-color: var(--main-color);
    background-color: var(--main-color);
    color: var(--t-color);
}

.blue-section .nav-pol:hover .nav-number {
    border-color: var(--t-color);
    background-color: var(--t-color);
    color: var(--main-color);
}

@media (max-width: 900px) {
    .policy-container {
        flex-direction: column;
        gap: 10px;
    }

    .blue-section {
        background: linear-gradient(to left, #8a939d, #000000);
    }
}

.main-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    padding-top: 100px;
}

.counter-section {
    display: flex;
    padding: 0px 0px;
    background: linear-gradient(to right, #8a939d, #000000);
    opacity: 1;
    border-radius: 16px;
    width: 20%;
    filter: drop-shadow(0 -10px 20px rgb(170, 170, 170));
    flex-direction: column;
}

.counter-box {
    padding: 15px;
    border: 1px solid white;
    border-radius: 16px;
    width: 90%;
    margin: 10px auto;
    text-align: center;
}

.counter-title-container {
    width: fit-content;
    margin: 0 auto;
    position: relative;
}

.counter-title-container::after {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: absolute;
    background-color: var(--t-color);
    top: 8px;
    right: -13px;
}

.counter-title {
    font-size: 18px;
    color: var(--t-color);
    margin: 5px auto;
}

.counter-number {
    font-size: 50px;
    margin: 5px auto;
    text-align: center;
    color: white;
    font-weight: 300;
}

.form-section {
    width: 70%;
    background-color: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin-top: 20px;

}

.form-section form {
    display: flex;
    flex-direction: column;
}

.form-section input,
.form-section textarea,
.form-section button {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

.form-section button {
    font-weight: bold;
    border: none;
    cursor: pointer;
    background: linear-gradient(to right, #8a939d, #000000);
    color: var(--t-color);
}

.form-section button:hover {
    background: linear-gradient(to left, #8a939d, #000000);
    color: var(--main-color);
    font-weight: 900;
}

.hidden-experience {
    display: none;
}

@media (max-width: 900px) {
    .counter-section {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
        gap: 15px;
        width: 80%;
        padding: 10px 5px;
    }

    .counter-box {
        width: 98%;
        height: 100%;
    }

    .hidden-experience {
        display: block;
    }

    .form-section {
        order: 2;
        width: 80%;
    }

    .counter-title {
        font-size: 14px;
    }

    .counter-number {
        font-size: 20px;
    }

    .main-container {
        flex-direction: column;
    }
}

/* End rouls */
/* Start Best Clint */
.allClint {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    /*direction: rtl;*/
}

#bestClint h3 {
    font-size: 22px;
    padding-bottom: 38px;
    margin-top: -20px;
    text-align: center;
    color: #727272;
}

/* ضبط السلايدر */
.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    direction: ltr;
}

/* تغليف السلايدر بالكامل */
.slider-wrapper {
    width: 80%;
    /* السلايدر يغطي 80% من عرض القسم */
    overflow: hidden;
}

/* تصميم الشريط الداخلي للسلايدر */
.slider {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}

/* تصميم الشرائح */


/* تصميم المورد */
.bestClint {
    padding: 15px;
    width: 100%;
    border: 1px solid var(--main-color);
    border-radius: 16px;
    text-align: center;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* تصميم الصورة */
.bestClint .img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    margin: 10px auto;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bestClint .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.name {
    border-top: 1px solid var(--main-color);
}

/* تصميم أزرار التنقل */
.prev-btn,
.next-btn {
    background: linear-gradient(to right, #8a939d, #000000);
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: white;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.prev-btn:hover,
.next-btn:hover {
    background: var(--t-color);
    color: var(--main-color);
    border-color: black;
}

.slide {
    flex: 0 0 auto;
    width: calc(100% / 3 - 20px);
    /* توزيع العناصر بحيث تعرض 4 في كل صف */
    padding: 10px;
    box-sizing: border-box;
}

/* جعل التصميم متجاوب حسب الشاشة */
@media (max-width: 1300px) {
    .slide {
        width: calc(100% / 2 - 20px);
        /* عرض 3 موردين */
    }
}

@media (max-width: 900px) {
    .slide {
        width: 100%;
        /* عرض مورد واحد فقط */
    }
}


@media(max-width : 997px) {
    .allClint {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
        gap: 20px;
    }

    .allClint .bestClint {
        padding: 15px;
        width: 80%;
        border: 1px solid var(--main-color);
        border-radius: 16px;
        position: relative;
    }
}

@media(max-width : 767px) {
    .allClint {
        display: grid;
        gap: 20px;
        justify-content: center;
        grid-template-columns: auto;
        margin: 20px 0;
    }
}

/* End Best Clint */
/* Start Footer */
/* الفوتر */
.footer {
    background: linear-gradient(to right, #8a939d, #000000);
    color: #fff;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h2,
.footer-section h3 {
    color: var(--t-color);
    margin-bottom: 15px;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
}

.social-links a {
    color: #fff;
    margin-right: 10px;
    font-size: 18px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--t-color);
}

.quick-links ul {
    list-style: none;
    padding: 0;
}

.quick-links ul li {
    margin-bottom: 10px;
}

.quick-links ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.quick-links ul li a:hover {
    color: var(--t-color);
}

.loca {
    color: var(--t-color);
}

.loc {
    padding: 0 10px;
}

/* حقوق الملكية */
.footer-bottom {
    margin-top: 20px;
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}

.footer-bottom ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-bottom ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-bottom ul li a:hover {
    color: var(--t-color);
}

/* التصميم المتجاوب */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-section {
        text-align: center;
    }

    .subscribe-form {
        align-items: center;
    }
}

/* End Footer */
/* Start login */
.dropdown {
    position: relative;
    display: inline-block;
    grid-area: login;
}

.dropdown-btn {
    background-color: transparent;
    color:var(--t-color) ;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: linear-gradient(to right, #8a939d, #000000);
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 5px;
    overflow: hidden;
}

.dropdown-content a {
    color: var(--t-color);
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    text-align: center;
}

.dropdown-content a:hover {
    background: linear-gradient(to left, #8a939d, #000000);
    color: var(--main-color);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-link-btn {
    all: unset;
    display: block;
    width: 100%;
    min-height: 40px;
    text-align:center;
    color: var(--t-color);
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s;
}
.dropdown-link-btn:hover {
    background: linear-gradient(to left, #8a939d, #000000);
    color: var(--main-color);
}

@media (max-width : 768px) {
    .dropdown {
        display: none;
    }
}

/* End login */
/* start language */
.language-dropdown {
    grid-area: lang;
    position: sticky;
    /* لجعل الزر يتحرك مع الصفحة */
    top: 0;
    /* يظل في أعلى الصفحة */
    display: inline-block;
    margin: 0 auto;
    /* لتوسيط الزر في الـ Navbar */
    z-index: 9999;
}

.language-btn {

    background-color: transparent;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 20px;
    border-radius: 5px;
    padding: 10px 20px;
}

.language-btn:hover {
    background: linear-gradient(to right, #8a939d, #000000);
    color: var(--t-color);
    transition: 0.3s;
}

.language-menu {
    display: none;
    position: absolute;
    background: linear-gradient(to right, #8a939d, #000000);
    min-width: 100px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 5px;
    left: 50%;
    transform: translateX(-50%);
}

.language-menu a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: center;
}

.language-menu a:hover {
    background: linear-gradient(to left, #8a939d, #000000);
    color: var(--main-color);
    border-radius: 5px;
}

@media (max-width : 768px) {
    .language-dropdown {
        color: var(--main-color);
        position: relative;
        text-align: center;
        top: 5px;
        left: -50px;
    }

    .language-btn {
        font-size: 22px;
        font-weight: 800;
        color: var(--t-color);
    }

    .language-menu {
        background-color: var(--main-color);
    }

    .language-menu a {
        color: var(--white-bg);
        padding: 12px 16px;
    }
}

/* Start Whatsup button*/

.whatsapp-container {
    display: inline-block;
    position: fixed;
    left: 25px;
    bottom: 25px;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(to right, #8a939d, #000000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    animation: bounce 2s infinite;
}

.whatsapp-btn img {
    width: 30px;
    height: 30px;
}

.whatsapp-text {
    position: absolute;
    top: 50%;
    left: 70px;
    transform: translateY(-50%);
    background: linear-gradient(to right, #8a939d, #000000);
    color: var(--t-color);
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    animation: fade-in-out 10s infinite;
}

@keyframes fade-in-out {

    0%,
    50% {
        opacity: 1;
    }

    55%,
    100% {
        opacity: 0;
    }
}

@keyframes bounce {

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

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

/* Start login vendor css */
.container-fluid {
    justify-content: center !important;
}

.container.mt-5 {
    position: relative;
    display: flex;
    justify-content: center;
}

.rounded {
    width: -webkit-fill-available;
}

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

label.text-center {
    margin-bottom: 25px;
}

.logn {
    margin-bottom: 3rem;
    text-align: center;
}

.sublogin {
    width: fit-content;
}

.showpassword {
    align-self: baseline;
}

.restpassword {
    align-self: end;
}

.restpassword a {
    color: #818181;
    text-decoration: none
}

.restpassword a:hover {
    color: var(--main-color);
}

button.btn.btn-primary.mt-4 {
    background-color: var(--main-color);
    border: none;
}

/* End login vendor css */
