/* ========================
   1️⃣ Charset & Root Variables
======================== */
@charset "UTF-8";

:root {
    /* Colors */
    --dark-blue-color: #152248;
    --dark-gray-color-opacity-75: rgba(21, 34, 72, 0.75);
    --dark-yellow-color: #e9b736;
    --gray-color: #8a90a3;
    --dark-gray-color: rgba(21, 34, 72, 0.75);
    --dark-gray-color-without-opacity: #152248;
    --gray-opacity-25-color: rgba(21, 34, 72, 0.25);
    --gray-opacity-8-color: rgba(21, 34, 72, 0.08);
    --green-color: #489e56;
    --light-gray-color: #d9d9d9;
    --orange-color: #fe8d2a;
    --green-dark-color: #01723a;
    --orange-dark-color: #f48320;
    --orange-medium-color: #f9930a;
    --orange-shade-color: #fffaf6;
    --orange-light-color: #f483200a;
    --red-color: #c82c2c;
    --dark-red-color: #9f3838;
    --white-color: #fff;
    --yellow-color: #ffcd4e;
    --gold-color: #dfb75d;
    --light-gold-color: #f8e47c;
    --dark-gold-color: #75571a;
    --dark-gray-color-opacity-60: rgba(21, 34, 72, 0.6);
    --dark-black-color: #151e27;
    --black-color: #1d2733;
    --light-blue-color: #b7c4ea;
    --dark-silver-color: #504f4f;
    --dark-eclipse-color: #070c19;
}

/* ========================
   2️⃣ Fonts
======================== */
@font-face {
    font-display: block;
    font-family: Inter;
    src: url(../fonts/Inter/Inter-VariableFont_slntwght.ttf) format("truetype");
}
@font-face {
    font-display: block;
    font-family: Cairo;
    src: url(../fonts/Cairo/Cairo-VariableFont_slntwght.ttf) format("truetype");
}
@font-face {
    font-display: swap;
    font-family: Almarai;
    src: url(../fonts/Almarai/Almarai-Bold.ttf) format("truetype");
}
@font-face {
    font-display: swap;
    font-family: Somar-Sans;
    src: url(../fonts/SomarSans/SomarSans-Regular.ttf) format("truetype");
}
@font-face {
    font-display: swap;
    font-family: Nunito;
    src: url(../fonts/Nunito/Nunito-Bold.ttf) format("truetype");
}
@font-face {
    font-display: swap;
    font-family: Saudi-Riyal;
    src: url(../fonts/Saudi-Riyal/saudi_riyal.ttf) format("truetype");
}
@font-face {
    font-family: UAE-Dirham;
    src: url(../fonts/UAE-Dirham/AED-Regular.otf) format("truetype");
}

/* ========================
   3️⃣ Global Styles
======================== */
html,
body {
    overflow-x: hidden;
}

body {
    font-family: "Somar-Sans", "sans-serif" !important;
    background: radial-gradient(
        circle at center,
        rgba(255, 200, 220, 0.9) 0%,
        rgba(180, 220, 255, 0.8) 30%,
        rgba(180, 255, 200, 0.8) 65%,
        rgba(255, 250, 180, 0.9) 100%
    );
}

ul {
    list-style: none;
}

section.cta {
    height: auto;
    position: relative;
}
section.cta .container {
    inset: 0;
    position: absolute;
    z-index: 2;
}
section.cta:after {
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

/* ========================
   4️⃣ Scrollbar
======================== */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}
::-webkit-scrollbar-track {
    background: rgba(255, 250, 240, 0.6);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(
        180deg,
        rgba(255, 182, 193, 0.9) 0%,
        rgba(186, 225, 255, 0.8) 40%,
        rgba(180, 255, 200, 0.8) 80%
    );
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease-in-out;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(
        180deg,
        rgba(255, 192, 203, 1) 0%,
        rgba(176, 224, 230, 1) 40%,
        rgba(152, 251, 152, 1) 80%
    );
    box-shadow: 0 0 8px rgba(200, 200, 200, 0.6);
    cursor: pointer;
}
::-webkit-scrollbar-thumb:active {
    background: linear-gradient(
        180deg,
        rgba(255, 105, 180, 1) 0%,
        rgba(135, 206, 250, 1) 50%,
        rgba(60, 179, 113, 1) 100%
    );
    box-shadow: 0 0 12px rgba(150, 150, 150, 0.8);
}

/* ========================
   5️⃣ Containers & Layout
======================== */
@media (min-width: 1400px) {
    .container-xxl,
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 1220px !important;
    }
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl,
.row > * {
    padding-right: 15px;
    padding-left: 15px;
}

.section-py {
    padding-block: 6.25rem;
    padding-inline: 0;
}
@media (max-width: 1199.98px) {
    .section-py {
        padding-block: 4rem;
    }
}
@media (max-width: 767.98px) {
    .section-py {
        padding-block: 3rem;
    }
}

/* ========================
   6️⃣ Collapse Dropdown
======================== */
.collapse-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}
.collapse-dropdown.show {
    max-height: 500px;
    opacity: 1;
}

/* ========================
   7️⃣ Feature Box
======================== */
.feature-box-container {
    background: linear-gradient(135deg, #ffffff, #f9f9f9, #f1f1f1);
    border-radius: 0.8em;
    box-shadow: 0 0.2em 0.4em rgba(4, 6, 26, 0.02),
        0 0.4em 0.8em rgba(4, 6, 26, 0.02), 0 0.4em 1.6em rgba(4, 6, 26, 0.059);
    overflow: hidden;
    padding: clamp(1.8em, 0.8em + 1.111vw, 2.4em)
        clamp(2.5em, 1.33em + 1.296vw, 3.2em);
    z-index: 2;
    width: 100%;
    min-height: 150px;
    position: relative;
}

.feature-box-container h4 {
    font-size: clamp(1.2rem, 2vw + 1rem, 2rem);
    line-height: clamp(3.2rem, 5vw + 1rem, 6rem);
    margin-bottom: 10px;
    color: #56ca00;
}

.feature-box {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    gap: 15px;
}
.feature-box-icon {
    background-color: rgba(227, 247, 78, 0.2);
    border-radius: 50% !important;
    width: 80px !important;
    height: 80px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}
.feature-box-icon i {
    font-size: clamp(45px, 3vw, 45px);
}
.feature-box-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.feature-box-content span {
    color: #56ca00;
    font-size: clamp(14px, 1vw + 10px, 20px);
    line-height: clamp(24px, 2vw + 8px, 32px);
}

.feature-box-content a span {
    color: #56ca00;
    font-size: clamp(20px, 2vw + 8px, 28px);
    line-height: clamp(18px, 1.5vw + 8px, 22px);
    font-weight: 600;
}

/* ========================
   8️⃣ Color Classes
======================== */
.orange {
    color: var(--orange-color);
}
.orange-dark {
    color: var(--orange-dark-color);
}
.orange-medium {
    color: var(--orange-medium-color);
}
.orange-light {
    color: var(--orange-light-color);
}
.blue {
    color: var(--bs-twitter);
}
.blue-light {
    color: var(--bs-vimeo);
}
.silver {
    color: var(--gradient-silver-color);
}
.green {
    color: var(--green-dark-color);
}
.gold {
    color: var(--gradient-gold-color);
}
.yellow {
    color: var(--yellow-color);
}
.red {
    color: var(--bs-youtube);
}

/* ========================
   9️⃣ Footer & Slogan
======================== */
.footer-about {
    font-size: 14px;
    line-height: clamp(2.2rem, 2vw, 2.7rem);
    color: var(--gray-color);
    margin-inline: 10px;
}
.slogan_text {
    border: 2px solid #fbbc05;
    margin: 8px;
    border-radius: 10px;
    padding: 5px !important;
    color: #009bb8;
    font-size: 14px;
    font-weight: 600;
}

/* ========================
   10️⃣ Social Elements
======================== */
.elements-social {
    margin: 0 5px;
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.elements-social a {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    padding: 0.5rem;
    transition: 0.3s cubic-bezier(0.12, 0, 0.39, 0);
    font-size: 34px;
}
.elements-social a:hover {
    color: white;
    background-color: #3b5998;
    box-shadow: 0 0 30px rgba(23, 23, 23, 0.25);
    transform: translate3d(0, -3px, 0);
}

/* ========================
   11️⃣ Forms
======================== */
.contact_form {
    --bs-bg-opacity: 0.6;
    background-color: rgba(
        var(--bs-white-rgb),
        var(--bs-bg-opacity)
    ) !important;
    border-radius: 10px !important;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.09);
    transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
}

/* ========================
   12️⃣ Buttons & Scrollers
======================== */
.btn-square {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    padding: 5px;
    border-radius: 50%;
    background-color: var(--orange-color);
    color: #fff;
}
.btn-square:hover {
    background-color: var(--orange-dark-color);
    color: #fff;
}

.has-scroller {
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
}

.has-scroller::-webkit-scrollbar {
    height: 8px;
}
.has-scroller::-webkit-scrollbar-track {
    background: rgba(255, 250, 240, 0.6);
    border-radius: 10px;
}
.has-scroller::-webkit-scrollbar-thumb {
    background: linear-gradient(
        90deg,
        rgba(255, 182, 193, 0.9) 0%,
        rgba(186, 225, 255, 0.8) 40%,
        rgba(180, 255, 200, 0.8) 80%
    );
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease-in-out;
}
.has-scroller::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(
        90deg,
        rgba(255, 192, 203, 1) 0%,
        rgba(176, 224, 230, 1) 40%,
        rgba(152, 251, 152, 1) 80%
    );
    box-shadow: 0 0 8px rgba(200, 200, 200, 0.6);
    cursor: pointer;
}
.has-scroller::-webkit-scrollbar-thumb:active {
    background: linear-gradient(
        90deg,
        rgba(255, 105, 180, 1) 0%,
        rgba(135, 206, 250, 1) 50%,
        rgba(60, 179, 113, 1) 100%
    );
    box-shadow: 0 0 12px rgba(150, 150, 150, 0.8);
}

/* ========================
   1️⃣ Search Form
======================== */
.search_form {
    position: relative;
    background-color: #fff;
    padding: 5px;
    max-height: 35px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-grow: 1;
    border: 1px solid #009bb8;
    margin-top: 10px;
    max-width: 550px;
}

.search_form .search_form_btn {
    display: flex;
    background: transparent;
    border: 0;
    outline: none;
    border-radius: 0;
    -webkit-appearance: none;
    color: #f15412;
    font-size: 18px;
    padding: 10px;
    cursor: pointer;
}
.search_form .search_form_btn:hover {
    background-color: transparent !important;
    color: #009bb8;
}

.search_form .search_form_query {
    min-height: 30px !important;
    outline: none;
    border: none;
}

/* ========================
   2️⃣ Search Suggestions
======================== */
.search-suggestions {
    position: absolute;
    top: 98%;
    z-index: 98;
    background: #fff;
    border: 1px solid #ccc;
    width: 99%;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    border-radius: 0 0 10px 10px;
}

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

.search-suggestions ul li {
    padding: 8px 12px;
    border-bottom: 1px solid #f1f1f1;
}

.search-suggestions ul li a {
    text-decoration: none;
    color: #333;
}

.search-suggestions ul li:hover {
    background-color: #f0f0f0;
}

.search-suggestions p {
    padding: 8px 12px;
    color: #999;
}

.newsletter {
    background: #232f3e;
    border-bottom: 1px solid #232f3e;
}

.newsletter .icon-email {
    max-width: 40px;
    margin-inline-end: 15px;
}

[dir="rtl"] .newsletter .form-subcriber input {
    border-radius: 0 4px 4px 0;
}

[dir="ltr"] .newsletter .form-subcriber input {
    border-radius: 4px 0 0 4px;
}

.newsletter .form-subcriber input {
    border: 0;
    padding: 0 20px 0 30px;
    font-size: 14px;
    min-height: 40px;
    background-color: #fffaf6;
}
.newsletter .form-subcriber input:focus,
.newsletter .form-subcriber input:hover {
    outline: none;
    border: 2px solid #ff6600;
    box-shadow: 0 0 8px rgba(255, 102, 0, 0.5);
    transition: 0.3s ease-in-out;
    background-color: #fffaf6;
}
.newsletter .form-subcriber input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #fffaf6 inset !important;
    box-shadow: 0 0 0px 1000px #fffaf6 inset !important;
    border: 2px solid #ff6600 !important;
    color: #000 !important;
}

.newsletter .form-subcriber input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px #fffaf6 inset,
        0 0 8px rgba(255, 102, 0, 0.5) !important;
    box-shadow: 0 0 0px 1000px #fffaf6 inset, 0 0 8px rgba(255, 102, 0, 0.5) !important;
    border: 2px solid #ff6600 !important;
}

[dir="rtl"] .newsletter .form-subcriber button {
    border-radius: 4px 0 0 4px;
}

[dir="ltr"] .newsletter .form-subcriber button {
    border-radius: 0 4px 4px 0;
}

.newsletter .form-subcriber button {
    border: 0;
    font-size: 14px;
    padding: 0 30px;
    background-color: #f15412;
}

.download-app {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 25px 0 33px;
}

.download-app a {
    display: block;
    margin-inline-end: 12px;
}

.download-app a img {
    width: 170px;
    border-radius: 5px;
    border: 2px solid #e2e9e1;
}

.download-app a img.active,
.download-app a img:hover {
    border: 2px solid #f15412;
}
.header-social-container {
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-social-container .social-link {
    padding: 5px;
    color: #6c757d;
    transition: var(--transition-timing);
    font-size: 22px;
}

.header-social-container .social-link:hover {
    color: #f15412;
}
