﻿@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&family=Amiri:ital,wght@0,400;0,700;1,400;1,700&family=Cairo:wght@200..1000&family=Readex+Pro:wght@160..700&family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');


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

body {
    font-family: "Almarai", sans-serif;
}

/*=================================== NavBar================================= */

/*#timerDisplay {
    font-size: 16px;
    color: #333;
    font-weight: bold;
}

.otp-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.otp-button.loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 8px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
*/




/* .logo img {
    width: 120px;
    border-radius: 20%;
} */

.logoContiner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 10px;
}


.logo img {
    width: 90px;
    padding: 10px;
    background-color: aliceblue;
    border-radius: 10%;
}

.logoTitle {
    color: #f9f9f9;
    font-weight: bold;
}


.loginUserDiv{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    position:relative;
    left:-42em;
    color:aliceblue;
}

.loginUserDiv a{
    text-align:center;
    text-decoration:none;
}

/*===========================otp==================================*/
/* OTP Modal Background */


.otp-modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease-out;
}

.otp-modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    margin: 0 15px; /* Prevents modal from touching edges on small screens */
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 30px;
    color: #333;
    cursor: pointer;
    transition: color 0.3s;
}

    .close-btn:hover {
        color: #ff0000;
    }

.otp-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
    font-weight: bold;
}

.otp-input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
}

.otp-button {
    padding: 12px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .otp-button:hover:not(:disabled) {
        background-color: #45a049;
    }

    .otp-button:disabled {
        background-color: #ccc;
        cursor: not-allowed;
    }

    .otp-button.loading::after {
        content: '';
        display: inline-block;
        width: 16px;
        height: 16px;
        margin-left: 8px;
        border: 2px solid #fff;
        border-top: 2px solid transparent;
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.otp-section {
    margin-top: 20px;
}

#timerDisplay {
    font-size: 16px;
    color: #333;
    font-weight: bold;
    display: block;
    text-align: center;
}

.otp-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.otp-resend {
    color: #4CAF50;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .otp-resend:hover:not(.disabled) {
        color: #45a049;
        text-decoration: underline;
    }

    .otp-resend.disabled {
        color: #ccc;
        cursor: not-allowed;
    }

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


@media (max-width: 768px) {
    .otp-modal-content {
        padding: 20px;
        width: 90%;
    }

    .otp-title {
        font-size: 18px;
    }

    .otp-input, .otp-button {
        font-size: 14px;
        padding: 10px;
    }

    .close-btn {
        font-size: 25px;
    }

    .otp-resend {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .otp-modal-content {
        padding: 15px;
        width: 90%;
    }

    .otp-title {
        font-size: 16px;
    }

    .otp-input, .otp-button {
        font-size: 13px;
        padding: 8px;
    }

    .close-btn {
        font-size: 22px;
    }

    .otp-actions {
        gap: 10px;
    }

    .otp-resend {
        font-size: 12px;
    }
}


/*=============================end otp=====================================*/


.header {
    top: 0;
    position: fixed;
    left: 0;
    width: 100%;
    padding: 1.3rem 10%;
    background-color: #1aabe3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

    .header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

    .header::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgb(255, 255, 255, .4), transparent);
        transition: .5s;
    }

    .header:hover::after {
        left: 100%;
    }


.navbar a {
    font-size: 1.15rem;
    font-weight: bold;
    color: aliceblue;
    text-decoration: none;
    margin-left: 2.5rem;
    cursor: pointer !important;
}

#check {
    display: none;
}

.icons {
    left: 5%;
    position: absolute;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

/* =================================End of navbar========================================================= */



section.section-1 {
    margin-top: 100px;
    margin-bottom: 0;
}


.mianSection img {
    width: 100%;
    height: 35em;
}


/*.slider-container {
    width: 100vw;*/ /* Full viewport width */
    /*height: 56.25vw;*/ /* 16:9 aspect ratio */
    /*position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;*/ /* Ensure inactive slides are fully hidden */
    /*transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

    .slide.active {
        opacity: 1;
    }

.grid-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);*/ /* 5 columns */
    /*grid-template-rows: repeat(3, 1fr);*/ /* 3 rows */
    /*width: 100%;
    height: 100%;
    position: absolute;
}

.grid-piece {
    background-size: 100vw 56.25vw;*/ /* Match slider dimensions */
    /*opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.slide.active .grid-piece {
    opacity: 1;
    transition-delay: calc(0.1s * var(--piece-index));
}*/



.mainSectionTitle {
    position: relative;
    top: -17em;
    color: snow;
    text-align: center;
    margin: 10px;
    padding: 24px;
    background-color: #1aabe3;
    border-radius: 10px;
    opacity: 0.8;
     border: 4px solid blue; 
    box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.75);
    transition: 0.5s;
     width: 50%; 
}


    .mainSectionTitle:hover {
        transform: scale(1.2);
    }


    .mainSectionTitle::before {
        content: '';
        position: absolute;
        top: -5px;
        left: -5px;
        right: -5px;
        bottom: -5px;
        border-radius: 10px;
        border: 5px solid transparent;
        box-sizing: border-box;
        animation: border-anim 3s linear infinite;
    }


@keyframes border-anim {
    0% {
        border-color: #f9f9f9 transparent transparent transparent;
    }

    25% {
        border-color: #f9f9f9 #f9f9f9 transparent transparent;
    }

    50% {
        border-color: transparent #f9f9f9 #f9f9f9 transparent;
    }

    75% {
        border-color: transparent transparent #f9f9f9 #f9f9f9;
    }

    100% {
        border-color: #f9f9f9 transparent transparent #f9f9f9;
    }
}


.mainSectionC {
    display: flex;
    justify-content: center;
}

.button {
    position: relative;
    top: -20em;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 70px;
}


    .button a {
        text-decoration: none;
        background-color: #1aabe3;
        color: white;
        position: relative;
        padding: 10px;
        border-radius: 10px;
        box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.75);
        -webkit-box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.75);
        -moz-box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.75);
        display: inline-block;
        opacity: 0.8;
        transition: 0.3s ease;
    }


        .button a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            overflow: hidden;
            opacity: 0.6;
            z-index: 999;
            transform: translateY(100%);
        }

        .button a:hover::before {
            animation: slideAnimation .3s ease;
        }


@keyframes slideAnimation {
    0% {
        transform: translateX(-100%);
        background-color: whitesmoke;
         border-bottom-left-radius: 50%;
      border-top-right-radius: 50%; 
    }


    100% {
        transform: translateX(100%);
        background-color: whitesmoke;
    }
}


/* =========================================================================== */

.whatsappToggle {
    position: fixed;
    margin-top: 22em;
    left: 15px;
    z-index:999;
}

.ToggleIconsImg {
    position: relative;
    width: 70px;
    border-radius: 50%;
}




/* .ToggleIcons{
    top: 10em;
    position: fixed;
    left: 1px;
    margin: 10px;
    direction: ltr;
}

.ToggleIconsR{
    display: flex;
    flex-direction: column;
    position: relative;
    top:15em;
    gap:2em
}

.ToggleIconsImg{
    width: 50px;
   
} */

/* .ToggleIcons {
    position: fixed; 
    bottom: 20px; 
    left: 20px; 
    background-color: rgba(255, 255, 255, 0.8); 
    padding: 10px;
    border-radius: 5px; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); 
    transition: height 0.5s ease; 
    overflow: hidden; 
}

.ToggleIconsR {
    position: relative; 
}

.ToggleIconsImg {
    display: block; 
    margin: 5px 0; 
    width: 32px; 
    height: 32px; 
    opacity: 1;
   
    transition: 0.5s all;
} */

/* .hidden {
    opacity: 0;
    visibility: hidden;
    height: 0;
}

.hidden img {
    height: 0;
    margin: 0;
} */



.servicesTitle h1 {
    text-align: center;
    margin-top: -7em;
    /* background-color: #77ccee; */
    padding: 2em;
}


.servicesTitleSpan {
    position: relative;
    background-color: #77ccee;
    color: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    transition: 0.5s ease;
}

    .servicesTitleSpan::after {
        content: '';
        position: absolute;
        margin-top: 0;
        top: 0;
        left: 10px;
        right: 0;
        bottom: 0;
        overflow: hidden;
        opacity: 0.6;
        z-index: 999;
    }

    .servicesTitleSpan:hover::after {
        animation: slideAnimation .3s ease;
    }




.ourServices {
    margin: 10px;
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); */
    grid-template-columns: 1fr 1fr;
    direction: ltr;
    grid-auto-flow: dense;
    justify-items: center;
    gap: 16px;
}


    .ourServices > :nth-child(odd):last-child {
        grid-column: 1 / -1;
        grid-auto-flow: dense;
        justify-self: center;
        align-self: start;
    }





.cards {
    border-radius: 15px;
    background-color: aqua;
    text-align: center;
    padding: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    transition: 0.5s ease;
}

    .cards:hover {
        box-shadow: 10px 10px 5px 0px rgba(203, 144, 144, 0.75);
        -webkit-box-shadow: 10px 10px 5px 0px rgba(203, 144, 144, 0.75);
        -moz-box-shadow: 10px 10px 5px 0px rgba(203, 144, 144, 0.75);
    }

/* ========================================.section-22============================================================== */

.section-22 {
    background-color: #D1E5F4;
}

/* .section22_Services{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 20px;
    max-width: 1200px;
    align-items: center;
    margin: auto; 
    background-color: #BAF8F8;
    padding: 10px;
} */


.section22_Services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* max-width: 1200px; */
    padding: 10px;
    margin: 15px;
    align-items: center;
    justify-items: center;
}



.titleServices {
    font-weight: bold;
    text-decoration: underline;
    text-underline-offset: 8px;
}


.servicesCards p {
    text-align: center;
    margin: 5px;
    margin-bottom: 20px;
}


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

.servicesImg {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    align-items: center;
}





.offesSections h1 {
    text-align: center;
    margin-top: 5em;
}

.offesSectionsSpan {
    position: relative;
    background-color: #77ccee;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    transition: 0.5s ease;
    color: white;
}


    .offesSectionsSpan::after {
        content: '';
        position: absolute;
        margin-top: 0;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        overflow: hidden;
        opacity: 0.6;
        z-index: 999;
    }

.servicesTitleSpan:hover::after {
    animation: slideAnimation .3s ease;
}


.offesSectionsSpan:hover::after {
    animation: slideAnimation .3s ease;
}



.offerImage {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    justify-items: center;
    gap: 30px;
    margin-top: 50px;
}

.offersimg_ h2 {
    text-align: center;
    background-color: #1aabe3;
    border-radius: 15px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    transition: .3s ease;
}




.offersimg_ {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
}


.linkOffers {
    text-decoration: none;
    color: white;
    
}

.ofersBack {
    background-color: #1aabe3;
    border-radius:10px;
}

.BaseBrice {
    color: aliceblue;
}

.offersimg_ h2:hover {
    background-color: #1e4699;
    color: white;
    transform: scale(1.2);
}

.offersimg_ img {
    width: 370px;
    border-radius: 15px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    transition: 2s ease;
}





.mobile-s {
    display: none;
}

/*========================Carts Section============================*/
.carts{
    display:block;
}


.carts-q{
    width:25px;
    height:25px;
    position:relative;
    border-radius:50%;
    padding:1px;
    background-color:darkcyan;
}

.orderListCart {
    width: 30px;
}

#cart-item-count {
    transition: transform 0.3s ease-in-out;
}

#cart-item-count.highlight {
  transform: scale(1.2);

}

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

    50% {
        transform: scale(1.2);
    }
}

.pulse-animation {
    animation: pulse 0.5s ease-in-out;
}

/*========================end Carts Section============================*/
.aboutSections {
    margin-top: 90px;
}

    .aboutSections h1 {
        text-align: center;
    }

.section-4 {
    background-color: #1e4699;
    margin-bottom: 2em;
}

.aboutSectionsSpan {
    background-color: #1aabe3;
    padding: 1em;
    color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}



.aboutInfo {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    justify-items: center;
    gap: 30px;
    padding: 1em;
    margin-top: 50px;
    width: 100%
}

.sloganTitle {
    text-align: center;
    color: white;
    margin-top: 1em;
}

.info-1 p {
    text-align: center;
    margin-top: 44px;
    color: white;
}

/* ======================================================================================== */

/* .infoImg img{
    width: 500px;
    border-radius: 10px;
    transition: 0.3s ease;
} */

/* .infoImg img:hover{
    transform: rotate(360deg);
    transition: transform 0.5s ease-in-out;
} */

/* .infoImg{
    padding: 10px;
} */

.swiper {
    width: 32em;
    height: 100%;
}

.slide_ {
    background-position: center;
    background-size: cover;
}

.slide_ img {
   display: block;
   width: 500px;
   height: 20em;
   border-radius: 10px;
  }


.swiper-wrapper{
    justify-content:center
}


.prev_1 {
    left: 0em;
}


/* =======================================End of Swper1========================================================= */


/*.OurClinet {
    width: 100%;
    margin-top: 3em;
    margin-bottom: 4em;
    overflow: hidden;
}



.clintTilte h1 {
    text-align: center;
}

.clintTilteSpan {
    background-color: #1aabe3;
    padding: 1em;
    color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.iconss i {
    font-size: 25px;
    color: gold;
    margin-bottom: 10px;
}

.clinteCards {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #1aabe3;
    padding: 1em;
    border-radius: 10px;
    margin: 10px;
    width:100%;
    height:11em;
}

.ClinetName {
    text-align: center;
    color: #fff;
    margin-bottom: 10px;
}

.clinterev {
    color: #dbefff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
*/



/* الحاوية العامة */
.OurClinet {
    width: 100%;
    padding: 4em 2em;
    background: linear-gradient(135deg, #f0faff 0%, #e0f2ff 100%);
    overflow: hidden;
    position: relative;
}

/* عنوان القسم */
.clintTilte h1 {
    text-align: center;
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 1em;
    color: #0a3d62;
    font-family: 'Cairo', sans-serif;
}

.clintTilteSpan {
    background-color: #1aabe3;
    padding: 0.7em 1.5em;
    color: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(26, 171, 227, 0.3);
    font-size: 1.2em;
}

/* كارت العميل */
.clinteCards {
    background: white;
    border-radius: 20px;
    padding: 2em 1.5em;
    margin: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .clinteCards:hover {
        transform: translateY(-5px);
        box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
    }

/* اسم العميل */
.ClinetName {
    text-align: center;
    font-size: 1.3em;
    color: #1aabe3;
    font-weight: bold;
    margin-bottom: 10px;
}

/* التقييم بالنجوم */
.iconss {
    text-align: center;
    margin-bottom: 0.8em;
}

    .iconss i {
        font-size: 22px;
        color: #ffc107;
        margin: 0 2px;
    }

/* رسالة العميل */
.clinterev {
    background: #f8fbff;
    color: #333;
    padding: 1em;
    border-radius: 12px;
    font-size: 1em;
    line-height: 1.6;
    text-align: center;
    box-shadow: inset 0 0 10px rgba(26, 171, 227, 0.05);
    font-family: 'Cairo', sans-serif;
}




.swiper_ {
    width: 100%;
    height: 100%;
}

.swiper_2 {
    width: 100%;
    height: 100%;
}

.slide_2 {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}



.slide_3 {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sectiom-6 {
    margin-top: 5em;
    background-color: #182b3a;
    background-image: linear-gradient(315deg, #182b3a 0%, #20a4f3 74%);
    margin-bottom: 3em;
}

.ContactUsTitle h1 {
    text-align: center;
    margin-bottom: 1em;
}


.ContactUsTitleSpan {
    background-color: #1aabe3;
    color: #fff;
    margin: 5px;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin-bottom: 1em;
    position: relative;
    top: -20px;
}



.contactUsContiner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    justify-items: center;
}

.OurFeature {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
    margin-top: 27px;
    /* Optional: Adjust space between items */
}

.features {
    flex: 1 1 48%;
    /* Two items per row */
    box-sizing: border-box;
    padding: 10px;
    /* Optional: Adjust padding */
    text-align: center;
    /* Center align content */
    border: 1px solid #ddd;
    /* Optional: Add border for clarity */
    border-radius: 5px;
    /* Optional: Add rounded corners */
    background-color: #f9f9f9;
    /* Optional: Add background color */
}

    .features img {
        max-width: 100%;
        height: auto;
        margin-bottom: 10px;
        /* Space between image and text */
    }

    .features h2 {
        font-size: 18px;
        /* Adjust font size as needed */
    }


.formContact {
    width: 100%;
    margin: 10px;
    padding: 11px;
    display: flex;
    flex-direction: column;
}



.ContactForm input,
.ContactForm select,
.ContactForm button {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    font-size: 16px;
    border: 0px;
    border-radius: 10px;
    background-color: snow;
    margin: 5px;
}

.FormName {
    color: snow;
    margin: 10px;
    font-weight: bolder;
}

.formButton {
    margin-top: 16px !important;
    cursor: pointer;
    transition: 2s all;
}

    .formButton:hover {
        /* background-image: linear-gradient(red, yellow); */
        background-color: #77ccee;
    }

.features h2 {
    text-align: center;
}


.features img {
    width: 50px;
}



footer {
    background-color: #dbefff;
    width: 100%;
    height: 17em;
}

.footerContiner {
    position: relative;
    top: 35px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    justify-items: center;
}

.footerTitle h2 {
    text-align: center;
}

.footerServices,
.footerTitle,
.FooterIcons {
    display: flex;
    flex-direction: column;
    gap: 1em;
}


    .footerServices h2 {
        text-align: center;
    }

.imgIconsFooter {
    width: 35px;
}

.footerSocialIcons {
    display: flex;
    justify-content: space-around;
}

.onerFooter {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .onerFooter h2,
    p {
        text-align: center;
    }



a.view-details-btn {
    text-decoration: none;
    background: linear-gradient(to right, #5D3FD3, #8E2DE2); /* royal purple to lavender violet */
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    display: inline-block;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(93, 63, 211, 0.4);
    margin-bottom: 18px;
}

    a.view-details-btn:hover {
        background: linear-gradient(to right, #8E2DE2, #4A00E0); /* brighter gradient on hover */
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(93, 63, 211, 0.6);
    }

/*========================================== FeedBacks Views======================================================= */


.feedbackTitle h4 {
    color: #fff;
    background-color: #333;
    padding: 30px;
    margin-top: 6em;
    text-align: center;
}

.form-container {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin: 20px auto;
    max-width: 500px;
    padding: 20px;
}

.form-group {
    margin-bottom: 15px;
    text-align: right;
}

    .form-group label {
        display: block;
        margin-bottom: 5px;
    }

    .form-group input,
    .form-group select {
        border: 1px solid #ccc;
        border-radius: 4px;
        padding: 10px;
        width: 100%;
    }

    .form-group span {
        color: red;
        font-size: 12px;
    }

.form-check {
    text-align: right;
    display:flex;
}

    .form-check input {
        margin-left: 5px;
    }

.form-buttons {
    display: flex;
    justify-content: space-between;
}

    .form-buttons input,
    .form-buttons a {
        background-color: #333;
        border: none;
        border-radius: 4px;
        color: #fff;
        cursor: pointer;
        padding: 10px 20px;
        text-decoration: none;
    }

   .form-buttons input:hover,
   .form-buttons a:hover {
     background-color: #555;
   }

/*========================================== Feedbacks table======================================================= */



.content {
    margin: 20px auto;
    max-width: 800px;
    margin-top:6em;
}

.add-customer {
    background-color: #333;
    border: none;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    margin-bottom: 20px;
    padding: 10px 20px;
    text-decoration: none;
}

    .add-customer:hover {
        background-color: blue;
        color:white;
    }

table {
    background-color: #fff;
    border-collapse: collapse;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin: 0 auto;
    width: 100%;
}

th, td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

th {
    background-color: #f2f2f2;
    font-weight: bold;
}

tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

/*a {
    color: #333;
    text-decoration: none;
}
*/

/*=================================== Offers and feedbacks index======================================================= */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    padding-top: 60px;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}


.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    transition: opacity 0.3s ease-in-out;
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease-in-out;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 24px;
    color: red;
}

.popup.show {
    opacity: 1;
}

.popup-content.show {
    opacity: 1;
}


.primary {
    background-color: lightblue;
    color: black;
    padding: 10px;
    border: 0;
    font-weight: bold;
    border-radius: 15px;
    cursor: pointer;
}


.saved-customer {
    text-decoration: none;
    background-color: lightgreen;
    color: black;
    font-weight: bold;
    padding: 10px;
    border-radius: 10px;
}


/*========================================== Landing page======================================================= */

.LandingPage {
    text-align: center;
    margin-top: 10em;
    margin-bottom: 2em;
}



.landingOffer {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.LandingImage a{
    text-align:center;
    text-decoration:none;
    font-size:18px;
    background-color:cyan;
    padding:10px;
    border-radius:15px;
    margin-bottom:6em;
}

.LandingImage {
    margin-bottom: 1em;
    display: flex;
    flex-direction: column;
}


.LandingImage img{
    border-radius:15px;
}




/* Container for the dashboard */
.container {
    width: 80%;
    margin: auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

/* Title of the dashboard */
.dashboard-title {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

/* Card container */
.card-container {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

/* Card styles */
.card-d {
    background-color: #f4f4f4;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 30%;
    text-align: center;
    padding: 30px;
    margin: 10px;
}


.authTag {
    text-decoration: none;
    background-color: aqua;
    border-radius: 15px;
    padding: 15px;
}



.card-icon {
    font-size: 40px;
    color: #007bff;
    margin-bottom: 10px;
}

.card-content h3 {
    margin: 10px 0;
    color: #333;
}

.card-content p {
    font-size: 24px;
    color: #555;
    margin-bottom: 17px;
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
    margin-right:-2em;
}

    .custom-table th,
    .custom-table td {
        padding: 0.75rem;
        border: 1px solid #ddd;
        text-align: left;
    }

    .custom-table thead th {
        background-color: #f4f4f4;
        font-weight: bold;
    }

    .custom-table tbody tr:nth-of-type(odd) {
        background-color: #f9f9f9;
    }

.custom-button {
    background-color: #dc3545; /* Red color */
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    cursor: pointer;
}

    .custom-button:hover {
        background-color: #c82333;
    }

.user-list-title {
    text-align: center;
    margin-bottom: 1em;
    margin-top: 4em;
}


.Identity-class{
    display:flex;
    flex-direction:column;
    justify-content:space-around;
}



.button-without-bg {
    background: none; /* Removes background color */
    border: none; /* Removes border */
    padding: 0; /* Removes default padding */
    cursor: pointer; /* Ensures the button looks clickable */
    color: darkred;
    font-weight: bold;
}



.button-without-bg img{
    width:30px;
}


#plofooter{
    text-decoration:none;
    background-color:aquamarine;
    padding:10px;
    border-radius:10px;
}


form.logOutF {
    position: absolute;
    left: 111px;
}

/*========================================== Coupons sections======================================================= */


/* Shared styles for the message container */
.coupon-message {
    font-size: 16px;
    padding: 15px;
    margin: 20px 0;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    display: none; /* Initially hidden */
    animation: fadeIn 0.5s ease-in-out;
}

    /* Success message styles */
    .coupon-message.success {
        background-color: #28a745; /* Green background */
        color: white;
        border: 2px solid #218838;
        animation: fadeIn 0.5s ease-in-out, slideUp 0.5s ease-out;
    }

    /* Error message styles */
    .coupon-message.error {
        background-color: #dc3545; /* Red background */
        color: white;
        border: 2px solid #c82333;
        animation: fadeIn 0.5s ease-in-out, shake 0.5s ease-out;
    }

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Slide-up animation for success */
@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

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

/* Shake animation for error */
@keyframes shake {
    0% {
        transform: translateX(-5px);
    }

    25% {
        transform: translateX(5px);
    }

    50% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }

    100% {
        transform: translateX(0);
    }
}


#discounted-price-container {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
    background-color: #f7f7f7;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.discount-price-text {
    font-size: 24px; /* Larger font for emphasis */
    font-weight: bold; /* Bold text */
    color: #28a745; /* Green color to indicate savings */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    display: block;
    margin-bottom: 5px;
}

    .discount-price-text span {
        font-size: 18px;
        font-weight: normal;
        color: #888;
    }

.discount-icon {
    position: absolute;
    top: 0;
    right: -25px;
    font-size: 30px;
    color: #28a745; /* Matching green color */
    background-color: white;
    padding: 5px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    opacity: 0;
}

#discounted-price-container.show-icon .discount-icon {
    opacity: 1;
    transform: translateX(10px);
}

#discounted-price-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

#discounted-price-container.show-icon {
    background-color: #e8f8e1;
}




/*========================================== End Coupons Sections============================================ */


/*========================================== Tabby Tamata Wigdet============================================ */

#tamaraWidgetContainer {
    margin-bottom: 2em;
    text-align: right;
    background-color: #ef899d;
    padding: 10px;
    border-radius: 10px;
}


#TabbyPromo {
    margin-bottom: 26px;
    background-color: aquamarine;
}


/*========================== End Tabby Tamata Wigdet============================================ */





/*==========================???? ??????? ?? ????????============================================ */
.contest-register-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    background: radial-gradient(circle at center, #fff1f5, #fef9f9);
    animation: fadeIn 1s ease-in-out;
}

.contest-register-box {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(255, 105, 135, 0.2);
    padding: 30px 25px;
    max-width: 400px;
    width: 100%;
    position: relative;
    overflow: hidden;
    border: 2px dashed #ffc0cb;
    animation: floatUp 1s ease-out;
}

    .contest-register-box::after {
        content: "??";
        font-size: 100px;
        position: absolute;
        bottom: -20px;
        left: -10px;
        opacity: 0.05;
        transform: rotate(-15deg);
    }

.contest-title {
    text-align: center;
    color: #d81b60;
    font-size: 22px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.contest-success {
    background-color: #e0f7e9;
    color: #1b5e20;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: bold;
    border: 1px solid #a5d6a7;
}

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

.contest-field {
    margin-bottom: 15px;
}

    .contest-field label {
        font-weight: bold;
        color: #444;
        margin-bottom: 5px;
        display: block;
    }

    .contest-field input {
        padding: 10px;
        border: 2px solid #f8bbd0;
        border-radius: 8px;
        width: 100%;
        outline: none;
        transition: 0.3s;
    }

        .contest-field input:focus {
            border-color: #ec407a;
            box-shadow: 0 0 8px rgba(236, 64, 122, 0.2);
        }

.contest-submit {
    background-color: #ec407a;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease-in-out;
}

    .contest-submit:hover {
        background-color: #d81b60;
        transform: scale(1.03);
    }

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes floatUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    50% {
        transform: scale(1.03);
    }

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








/*========================================== BreakBoints======================================================= */
@media (max-width: 992px) {
    .header {
        padding: 1.3rem 5%;
    }
}

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


    .loginUserDiv{
        left:19em;
    }

    #check:checked ~ .icons #menu-icon {
        display: none;
    }

    .icons #close-icons {
        display: none;
    }


    #check:checked ~ .icons #close-icons {
        display: block;
    }

    .navbar {
        position: absolute;
        width: 100%;
        left: 0;
        top: 100%;
        height: 0;
        background-color: #48c0db;
        overflow: hidden;
        transition: 0.3s ease;
    }



    #check:checked ~ .navbar {
        height: 100vh;
    }

    .logoContiner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        margin-right: 50px;
    }

    .servicesImg {
        margin-top: 2em;
    }



    .carts {
        position: absolute;
        text-align: center;
        top: 34px;
        left: 69px;
    }


    .navbar a {
        display: block;
        font-size: 1.1rem;
        margin: 1.5rem 0;
        text-align: center;
        transform: translateY(-50px);
        transition: 0.3s ease;
    }


    #check:checked ~ .navbar a {
        transform: translateY(0);
        transition-delay: calc(.15s * var(--i));
    }

    .mainSectionTitle {
        top: -162px;
        font-size: 15px;
        font-weight: bold;
        width: 100%;
    }

    .button a {
        font-size: 10px;
        top: 109px;
        padding: 0;
        margin: 10px;
    }


    .mianSection img {
        margin-top: 34px;
        height: auto;
    }

    .section22_Services {
        grid-template-columns: 2fr;
    }

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

    .OurFeature {
        padding: 10px;
    }

    .offersimg_ img {
        width: 100%;
        padding: 10px;
    }

    .swiper {
        width: 20em;
    }


    .Offers_page {
        width: 95%;
    }

    .swiper-wrapper {
        justify-content: normal
    }


    Offers_page_title {
        text-align: center;
        margin-top: -6em;
        margin-bottom: -8em;
    }


    .my-carousel img {
        margin-left: 1em;
    }


    .LandingImage img {
        width: 100%;
    }

    .LandingImage{
        padding:10px;
    }



    .card-d{
        width:100%
    }


    .top-banner{
        margin-top:137px !important;
    }

    form.logOutF {
        position: absolute;
        left: 64px;
    }


    .form-inline- {
        text-align: center;
    }


    .clintTilteSpan{
        font-size:30px;
    }


    .button-without-bg{
        font-size:22px;
    }

    footer {
        height: 34em;
    }

    .feedbackTitle h4{
        margin-top:8em;
    }

    /*===========================================OfferDetails Page===========================================*/

    img.payTButton.tabby_ {
        height: 40px !important;
    }

    .payTButton {
        width: 124px !important;
    }

    /*===========================================Payment Index Page===========================================*/
    .payment-table{
        font-size:14px !important;
    }


}
