body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #e5e4e2;
    color: #ffffff;
    line-height: 1.6;
}
/* .container ==============================*/
.container {
    margin: auto;
    padding: 10px;
    box-sizing: border-box;
}
@media (max-width: 600px) {
    .container {
        width: 100%;
    }
}
@media (min-width: 601px) and (max-width: 900px) {
    .container {
        width: 90%;
        max-width: 800px;
    }
}
@media (min-width: 901px) and (max-width: 1200px) {
    .container {
        width: 85%;
        max-width: 1000px;
    }
}
@media (min-width: 1201px) {
    .container {
        width: 80%;
        max-width: 1200px;
    }
}
/* .container ==============================*/
/* header and main navgater thay share the samo propartiy eccept the location ==============================*/
header, .bottom-nav {
    background-color: #ffffff;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, green0, blue0, 0.3) none;
    position: fixed;
    padding:0px 20px;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
    z-index: 20;
}
.bottom-nav{
    bottom: 0px;
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
}
header a, .bottom-nav a{
    text-decoration: none;
    padding: 0px;
    border-radius: 50%;
}
header i, .bottom-nav i{
    font-size: 1.3rem;
    color: white;
    padding: 8px;
    background-color: red;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    text-align: center;
    align-content: center;
    cursor: pointer;
}
.bottom-nav i{
    background-color: transparent;
    color: black;
    transition: all .3s;
}
.bottom-nav i:hover{
    background-color: red;
    color: #ffffff;
}
.activ-link{
    color: #ffffff;
    background-color: red;
}
header .logo{
    max-width: 200px;
    border-radius: 0px;
    padding-top: 8px;
}
@media (max-width:400px){
    header .logo  {
        width: 50%;
    }
}
@media (min-width:901px){
    header .logo  {
        width: 20%;
    }
}
.logo img {
    margin: 0px;
    max-width: 100%;
    border-radius: 10px;
    mix-blend-mode: multiply;
    animation: glow 2s infinite;
    box-shadow: 40 2px 5px rgba(0, green0, blue0, 0.3);
} 
@keyframes glow {
    0% { box-shadow: 0 0 5px rgb(255, 0, 0); }
    50% { box-shadow: 0 0 20px rgb(255, 0, 0); }
    100% { box-shadow: 0 0 5px rgb(255, 0, 0); }
}
/* header and main navgater thay share the samo propartiy eccept the location ==============================*/
/* MENU =================================================== */
.menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 0;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    transition: 0.3s;
    z-index: 998;
}
.menu {
    position: fixed;
    top: 0;
    right: -60%;
    width: 50%;
    max-width: 400px;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    padding: 20px;
    z-index: 999;
}
.menu.active {
    right: 0;
}
.menu-overlay.active {
    width: 100%;
    visibility: visible;
}
.menu-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
    position: relative;
}
.menu-header .user-icon {
    font-size: 50px;
    color: #555;
    margin-bottom: 10px;
}
.menu-header p {
    font-size: 16px;
    color: #333;
}
.menu-header .balance {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #28a745;
    margin-top: 10px;
}
.menu-header .balance i {
    color: #28a745;
}
.close-button {
    position: absolute;
    left: 10px;
    top: 10px;
    font-size: 22px;
    background: none;
    border: none;
    cursor: pointer;
    color: #555;
}
.menu-items {
    margin-top: 20px;
}
.menu-items a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: #333;
    text-decoration: none;
    padding: 15px 10px;
    border-bottom: 1px solid #ddd;
    transition: 0.3s;
}
.menu-items a:hover {
    background: #f0f0f0;
}
.menu-items i {
    font-size: 20px;
    color: #555;
}
.menu-footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}
.menu-footer a {
    margin: 0 10px;
    font-size: 22px;
    color: #555;
    transition: 0.3s;
}
.menu-footer a:hover {
    color: #007bff;
}
/* MENU =================================================== */
/* .swiper-container =================================================== */
.swiper-container{
    width: 100%;
    height: 75vh;
    aspect-ratio: 1/1;
    margin-top: 65px;
    position: relative; /* لجعل الأزرار داخل السلايدر */
    border-radius: 12px;
    overflow: hidden; /* إخفاء الأجزاء الزائدة */
}
.swiper-slide img {
    width: 100%;
    height: 100%;
    box-shadow: 10px 2px 5px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    object-fit: cover; /* تغطية المساحة دون تشويه */
}
/* أزرار التنقل */
.swiper-button-next {
    right: 10px; /* إزاحة زر التالي إلى اليمين */
    color: #000000;
    display: none !important;
}
.swiper-button-prev {
    display: none !important;
    left: 10px; /* إزاحة زر السابق إلى اليسار */
}
/* نقاط التوجيه */
.swiper-pagination {
    position: absolute;
    bottom: 10px; /* إزاحة النقاط إلى الأسفل */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}
.swiper-pagination-bullet {
    background-color: #ff0000; /* لون النقاط */
    opacity: 0.5; /* شفافية النقاط */
    width: 10px; /* حجم النقاط */
    height: 10px; /* حجم النقاط */
    margin: 0 5px; /* تباعد بين النقاط */
}
.swiper-pagination-bullet-active {
    opacity: 0.1; /* زيادة وضوح النقطة النشطة */
}
/* .swiper-container =================================================== */
/* cards ========================================== */
.card-container {
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 400px));
    gap: 20PX;
}
.card-sec{
    grid-column: 1/-1;
    text-align: center;
    color: red;
}
.card {
    width: 100%;
    position: relative;
    box-sizing: border-box;
    transition: all 400ms;
    i {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 33px;
        color: red;
    }
}
.card img {
    border-radius: 12px;
    width: 100%;
    max-width: 100%;
}
.card:hover {
    transform: scale(1.05);
}
/* cards ========================================== */
.whatsapp-float{
    position: fixed;
    bottom: 80px;
    right: 20px;
    background-color: #25d366;
    color: wheat;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 10px 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;    
}
/* footer====================== */
footer {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    margin-bottom: 65px;
}
footer p {
    margin: 0;
    font-size: 0.9em;
}
/* footer====================== */
.done{
    position: absolute;
    bottom:25%;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
    text-align: center;
    border-radius: 10px;
    background-color:black;
    color:white;
    transition: all 200ms;
    animation: fading 2s 1s forwards;
}
@keyframes fading {
    from{
        opacity: 1;
    }
    to{
        opacity: 0;
        visibility: hidden;
    }
}
.pupupp {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    transition: 0.3s;
    z-index: 998;
    display: flex;
    justify-content: center;
    align-items: center;
    div{
        padding: 10px;
        text-align: center;
        background-color:white;
        color: red;
        font-weight: bold;
        border-radius: 10px;
        box-shadow: 4px 4px 6px 0px rgba(0, 0, 0, 0.3);
        a{
            display: block;
            text-decoration: none;
            padding: 10px 20px;
            background-color: red;
            color: white;
            border-radius: 10px;
            margin: 10px;
        }
    }
}