@import url(https://fonts.googleapis.com/css?family=Almarai:300,regular,700,800);
@import url('https://fonts.googleapis.com/css?family=Roboto:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic');
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,regular,500,600,700,800,300italic,italic,500italic,600italic,700italic,800italic);
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;700&display=swap');



@import url('https://fonts.googleapis.com/css2?family=Cabin:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');


@font-face {
    font-family: 'Norsal';
    src: url('./fonts/alfont_com_NorsalGX.ttf') format('truetype');
    font-weight: 100 900; /* Supports variable font weights */
    font-style: normal;
  }
  

[dir='ltr'] body { font-family: 'Manrope', sans-serif; }
[dir='ltr'] .reverse-lang * { font-family: 'Cairo', 'Noto Kufi Arabic', sans-serif !important ; }

[dir='rtl'] body { font-family: 'Almarai', 'Cairo', 'Noto Kufi Arabic', sans-serif; }
[dir='rtl'] .reverse-lang * { font-family: 'Manrope', sans-serif !important ; }




:root {
    --primary: #f9a51a;
    --secondery: #09396f;
    --secondery2: #1e1f4b;
}

.almarai {
    font-family: 'Almarai' !important;
}

.hero-sec {
    position: absolute;
    top: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background: #09396fbf;
    backdrop-filter: blur(1px);
}


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


li {
    list-style: none;
}

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

.container {
    max-width: 1440px;
    width: 100%;
    padding: 0 30px;
    margin: auto;
}
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
}

body {
    background-color: #fff;
    overflow-x: hidden;
}

.t11 {
    font-size: clamp(10px, 2vw, 11px);
}
.t13 {
    font-size: clamp(12px, 2vw, 15px);
}
.t14 {
    font-size: clamp(13px, 2vw, 16px);
}
.t15 {
    font-size: clamp(14px, 2vw, 17px);
}
.t16 {
    font-size: clamp(15px, 2vw, 18px);
}
.t17 {
    font-size: clamp(16px, 2vw, 19px);
}
.t18 {
    font-size: clamp(17px, 2vw, 20px);
}
.t20 {
    font-size: clamp(19px, 2vw, 22px);
}
.t22 {
    font-size: clamp(21px, 2vw, 24px);
}
.t25 {
    font-size: clamp(24px, 2vw, 27px);
}
.t35 {
    font-size: clamp(33px, 2vw, 35px);
}

.card-hover-effect {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

.group:hover .card-hover-effect {
    left: 130%;
    transition: left 0.6s ease;
}

.group-card:hover {
    background-color: var(--secondery); /* Change background color on hover */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* ================================ Select box ======================== */

.select {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.select label {
    font-size: 16px;
    color: #333;
    font-weight: 600;
    display: flex;
    align-items: center;
    height: 30px;
}

.select .required {
    font-size: 14px;
    color: #F55157;
    margin-left: 4px;
}

.custom-select {
    position: relative;
    width: 100%;
    border: 1px solid #eee;
    border-radius: 6px;
    height: 50px;
    cursor: pointer;
    user-select: none;
}


.selected-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px !important ;
}

.options-list {
    list-style: none;
    padding: 0px;
    margin: 0;
    position: absolute;
    top: 106%;
    left: 0;
    right: 0;
    background-color: #fff;
    border: 1px solid #eee;
    /* border-top: none; */
    z-index: 10;
    max-height: 200px;
    overflow-y: auto;
    border-radius: 6px;
}

.country-option{
    border-bottom: 1px solid #eee !important;
    cursor: pointer !important;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    padding: 5px;
}

.country-option:hover {
    background-color: #eee;
    transition: .3s;
}

.hidden {
    display: none;
}

.arrow {
    transition: transform 0.2s ease;
}



/* ================================ Input ======================== */


    .input{
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .input label{
        font-size: 16px;
        color: #333;
        display: flex ;
        align-items: center;
        height: 30px;
        font-weight: 600;
    }
    .input label .required {
        font-size: 14px;
        color: #F55157;
        border: none;
    }

    .input div {
        position: relative;
        border: 1px solid #EEEEEE;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 50px;
        padding: 10px;
    }
    .input div input ,  .input  textarea {
        width: 100%;
        outline: none;
        height: 100%;
        font-weight: 600 !important ;
        color: #A5A5A5 !important ;
    }
    .input div img {
        width: 20px;
        height: 20px;
    }





/* ==================================== Custom Radio ============================ */

.custom-radio {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #8A1A3B; /* لون الإطار */
    border-radius: 50%;
    margin-right: 0.5rem;
    transition: background-color 0.2s ease;
    cursor: pointer;
}

.custom-radio:checked {
    background-color: #8A1A3B; /* لون الخلفية عند التفعيل */
    border-color: #8A1A3B;
}

.custom-radio:checked::after {
    content: "";
    display: block;
    width: 0.5rem;
    height: 0.5rem;
    margin: 0.2rem auto;
    background-color: white;
    border-radius: 50%;
}


/*===================================== Check Box Input =================================*/
.checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
  }
  .checkbox-input {
    display: none;
  }
  .checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--primary);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
  }
  .checkbox-box {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 4px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .checkbox-input:checked + .checkbox-label .checkbox-box {
    background-color: var(--primary);
  }
  .checkbox-input:checked + .checkbox-label .checkbox-icon {
    display: block;
  }
  .checkbox-icon {
    width: 1rem;
    height: 1rem;
    color: white;
    display: none;
  }


/*===================================== Custom Radio Button =================================*/
.custom-radio-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    padding: 8px 15px;
    min-height: 50px ;
    border-radius: 10px;
    /* background-color: #fff; */
    color: #5e5e5e;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.custom-radio-button:hover {
    background-color: #fce4e8;
}
.custom-radio-button span {
    position: relative;
    z-index: 10;
    font-size: 14px;
}

.custom-radio-button input[type="radio"] {
    display: none;
}

.radio-indicator {
    display: flex;
    flex: none;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #5e5e5e;
    margin-left: 8px;
    z-index: 100;
    order: -1;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #8c1d3c;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 110;
    position: relative;
}
.overlay{
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    background-color: #f5f5f5;
    z-index: 1;
}

/* Targeting checked radio button */
.custom-radio-button input[type="radio"]:checked + span {
    font-weight: bold;
    color: #8c1d3c;
}

.custom-radio-button input[type="radio"]:checked + span + .radio-indicator {
    border-color: #8c1d3c;
}

.custom-radio-button input[type="radio"]:checked + span + .radio-indicator .dot {
    opacity: 1;
}
.custom-radio-button input[type="radio"]:checked ~ .overlay {
    background-color: #fcf5f4 !important ;
}





/* ================================ FAQs ======================== */

.faq-container .faq-item {
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-container .faq-header {
    border: 1px solid #eee;
    border-radius: 5px;
    background-color: #ffff;
    color: #1e1f4b;
    padding: 15px;
    cursor: pointer;
    display: flex;
    font-size: 18px;
    justify-content: space-between;
    align-items: center;
}

.faq-container .faq-header:hover {
    background-color: #fbfcff;
}

.faq-container .faq-content {
    max-height: 0;
    transition: 0.3s ease-in-out;
    background-color: white;
    padding: 0 20px;
    font-size: 16px;
    color: #a0a7c0;
}
.faq-container .faq-item.active .faq-content {
    max-height: 300px;
    padding: 20px;
}

.faq-container .faq-item:hover .faq-header {
    color: #1e1f4b !important ;
    transition: 0.3s;
}

.faq-container .faq-item.active .faq-header {
    background-color: #fbfcff;
    color: #333;
    transition: 0.3s;
}

.faq-container .arrow {
    width: 30px;
    height: 30px;
    background: #e4e4e4;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    fill: white;
}

.faq-container .arrow svg {
    width: 14px;
}
@media (max-width : 500px) {
    .faq-container .arrow svg {
        width: 10px;
    }
    .faq-container .arrow {
        width: 20px;
        height: 20px;
    }

    .faq-container .faq-header {
        font-size: 16px;
    }
    .faq-container .faq-content {
        font-size: 14px;
    }
    
}
.faq-container .arrow * {
    transition: 0.3s;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
    transition: 0.3s ease-in-out;
}

.btn-orange {
    background-color: #f9a51a;
    border-radius: 6px;
    color: white;
    height: 45px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.btn-orange::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    transform: skewX(-20deg);
}
.btn-orange:hover {
    background-color: #e59313; /* slightly darker shade for hover */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.btn-orange:hover::before {
    left: 130%;
    transition: left 0.6s ease;
}






.btn-white {
    background-color: white;
    border-radius: 6px;
    color: var(--secondery);
    height: 45px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #ddd; /* optional light border */
}

.btn-white::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0));
    transform: skewX(-20deg);
}

.btn-white:hover {
    background-color: #ffffffd1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #ffffffd1; 
}

.btn-white:hover::before {
    left: 130%;
    transition: left 0.6s ease;
}












.btn-blue {
    background-color: #09396f;
    border-radius: 6px;
    color: white;
    height: 45px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-blue::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    transform: skewX(-20deg);
}

.btn-blue:hover {
    background-color: #072c57; /* slightly darker shade for hover */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-blue:hover::before {
    left: 130%;
    transition: left 0.6s ease;
}

/*  Scroll  */
::-webkit-scrollbar {
    width: 9px;
    height: 10px;
}
html {
    scroll-behavior: smooth !important ;
}

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

::-webkit-scrollbar-thumb {
    background: #09396f;
}


.select ::-webkit-scrollbar {
    width: 3px !important;
    height: 3px !important;
}

.login ::-webkit-scrollbar {
    width: 8px !important;
    height: 3px !important;
}

.login ::-webkit-scrollbar-thumb {
    background: #09396f;
}

.circle:hover .circle-0 {
    clip-path: circle(100% at 50% 50%) !important ;
}

.circle-0 {
    clip-path: circle(0% at 50% 50%);
}

.square-100 {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%) !important;
}
.square-0 {
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

.svg * {
    transition: 0.3s;
    cursor: pointer;
}

.shape {
    clip-path: polygon(39% 23%, 55% 24%, 77% 17%, 100% 0, 100% 100%, 0 100%, 0 0, 20% 15%);
    clip-path: polygon(36% 21%, 65% 21%, 80% 15%, 100% 0, 100% 100%, 0 100%, 0 0, 20% 16%);
}

.swiper-button-prev {
    top: unset;
    bottom: 30px !important;
    left: 50%;
}

.swiper-button-next:after,
.swiper-button-prev:after,
.swiper-pagination {
    display: none;
} /*# sourceMappingURL=style.css.map */








.services-dropdown{
    padding: 0 30px;
}

.services-dropdown .service-links{
    padding: 10px;
    font-size: 16px;
    border-radius: 6px;
    transition: .3s;
}

.services-dropdown .service-links:hover{
    color: white !important;
    fill: white !important;
    background-color: var(--primary);
    padding: 10px 40px !important;
}
