/* @import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&family=Cairo:wght@200..1000&display=swap');

:root {
    --hover1:#00528E;
    --hover: #0c8fe6;
    --primary-color: #00528E;
    --secondary-color: #2ecc71;
    --black: #000000 --font-size: 16px;
    --primary-color1:#a92409;
}

* {
    margin: 0;
    padding: 0;

}

body {
    margin: 0;
    padding: 0;
    font-family: "Almarai", sans-serif;
    font-weight: 400;
    font-style: normal;
}

body #offcanvas-header #offcanvasNavbarLabel {
    direction: ltr !important;
}

body.btn-close {
    direction: rtl !important;
}

/* ==================================== start navbar ===================================*/

.navbar {
    top: 0;
    z-index: 10000;
    position: fixed;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}


.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: var(--primary-color) !important;
}

.nav-item .nav-link {
    color: var(--black);
}

.nav-item .nav-link:hover {
    color: var(--hover);
}

#btn {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

#offcanvas-header.offcanvas-title {
    margin-bottom: 0;
    line-height: var(--bs-offcanvas-title-line-height);

}

@media (max-width: 767.98px) {
    .login_se {
        margin-top: 150px;
    }
}

/* ==================================== dropdown =========================================== */
.dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    right: 0 !important;
    left: auto !important;
    margin-top: 10px !important;
    padding: 10px 0 !important;
    border-radius: 8px !important;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1) !important;
    background-color: #fff !important;
    min-width: 180px !important;
    max-width: 90vw !important;
    overflow: hidden !important;
    z-index: 1000 !important;
    -webkit-border-radius: 8px !important;
    -moz-border-radius: 8px !important;
    -ms-border-radius: 8px !important;
    -o-border-radius: 8px !important;
}


.dropdown-item {
    padding: 10px 15px !important;
    font-size: 1rem !important;
    color: #333 !important;
    text-align: right !important;
    transition: background-color 0.3s ease, color 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
}

.dropdown-item i {
    font-size: 1.2rem !important;
    color: #555 !important;
    margin-left: 10px !important;
}

.dropdown-item:hover {
    background-color: #f1f1f1 !important;
    color: #007bff !important;
}


@media (max-width: 767.98px) {
    .profile_se {
        margin-top: 50px !important;
    }
}


.dropdown-menu {
  top: 100% !important;
  right: 0 !important;
  left: auto !important;
  margin-top: 10px !important; 
  text-align: right !important;
  padding: 10px 15px !important;
  border-radius: 8px !important;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1) !important;
  background-color: #fff !important;
}

.dropdown-item {
  padding: 8px 15px !important;
}

/* ==================================== end dropdown ====================================== */

/*==================================== end navbar =======================================*/

/* ==================================== start hero_page  ========================================== */

.hero-section {
    background-image: url('../image/hero_page/hero.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
    text-align: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.feature-box-container {
    position: relative;
    z-index: 2;
    margin-top: -60px;
}

.feature-box {
    background-color: #0f74b2;
    color: white;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.feature-box i {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* ==================================== end hero_page ============================================= */

/* ====================================== stats-section ================================ */

.stats-section {
    background-color: #c7dfef;
    padding: 30px 0;
    text-align: center;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.stats-section .stat {
    font-size: 2rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.stats-section .description {
    color: #000000;
    font-size: 1rem;
}

.divider {
    border-right: 2px solid var(--secondary-color);
    height: 100%;
}


@media (max-width: 767.98px) {
    .divider {
        border-right: none;
        border-bottom: 2px solid var(--secondary-color);
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
}

/* ===================================== end stats-section ================================ */


/* ===================================== our service ======================================= */

.service-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
    width: auto;
    height: 315px;
    margin: 10px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-title {
    font-weight: bold;
    margin-bottom: 10px;
}

.service-description {
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

#btn-success {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    margin-top: auto;
}

.owl-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.owl-nav button {
    background-color: var(--primary-color) !important;
    color: #ffffff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.owl-nav button:hover {
    background-color: var(--primary-color) !important;
    color: #ffffff !important;
}

.owl-nav i {
    font-size: 20px;
}


/* ===================================== end our service =================================== */

/* ===================================== start about_us ==================================== */
.contant_p {
    color: #000000;
    font-family: "Almarai", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* ===================================== start about_us ==================================== */

/* ======================================== Choose Us ====================================== */

.icon-circle {
    width: 90px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
    margin: 0 auto;
}

.feature_gr {
    margin-top: 60px;
}

@media (min-width: 576px) {
    .icon-circle {
        width: 100px;
        height: 60px;
        font-size: 26px;
    }

}

@media (min-width: 768px) {
    .icon-circle {
        width: 110px;
        height: 65px;
        font-size: 28px;
    }
}

@media (min-width: 992px) {
    .icon-circle {
        width: 120px;
        height: 70px;
        font-size: 30px;
    }
}

.feature-text {
    margin-left: 20px;
    margin-right: 20px;
}

html[dir="rtl"] .feature-text {
    margin-left: 0;
    margin-right: 20px;
}

.feature {
    margin-bottom: 30px;
}

.image-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    margin-bottom: 20px;
}

@media (min-width: 576px) {
    .image-circle {
        width: 160px;
        height: 160px;
    }
}

@media (min-width: 768px) {
    .image-circle {
        width: 180px;
        height: 180px;
    }
}

@media (min-width: 992px) {
    .image-circle {
        width: 200px;
        height: 200px;
    }
}

.image-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.image-circle-container {
    position: relative;
}

html[dir="rtl"] .red-line {
    right: auto;
    left: 100%;
}

.pink-circle {
    position: absolute;
    top: 0;
    left: 100%;
    width: 30px;
    height: 30px;
    background-color: #5a9ac7;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

html[dir="rtl"] .pink-circle {
    right: auto;
    left: 100%;
}

/* ======================================== end Choose Us ================================== */

/* ========================================= faq-section =================================== */

.faq-section {
    padding: 50px 0;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.faq-image img {
    border-radius: 15px;
    margin-bottom: 20px;
}

.accordion-button {
    background-color: #ffe6e6;
}

.faq-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8'/%3E%3C/svg%3E") !important;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus-lg' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2'/%3E%3C/svg%3E") !important;
}

.accordion-button:not(.collapsed) {
    color: #000000 !important;
    background-color: #fff !important;
    box-shadow: none !important;
}

.accordion-button:focus {
    z-index: 3;
    outline: 0;
    box-shadow: none !important;
}

.accordion-item {
    color: var(--bs-accordion-color);
    background-color: var(--bs-accordion-bg);
    /* border:one !important; */
}

.accordion-button::after {
    margin-left: 0 !important;
    margin-right: auto !important;
}

/* ========================================= end faq-section ================================= */

/* ========================================= start Testimonials ============================== */

#prev-fredo,
#next-fredo {
    padding: 10px 20px;
    border-radius: 50px;
}

#prev-fredo i,
#next-fredo i {
    font-size: 20px;
}

.owl-carousel .owl-item img {
    display: block;
    width: auto !important;
}

.testimonial {
    text-align: center;
}

.testimonial img {
    max-width: 150px;
    height: auto;
    display: inline-block;
}

.owl-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.owl-nav button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.owl-nav button:hover {
    background-color: darken(var(--primary-color), 10%);
}

.owl-nav i {
    font-size: 20px;
}

#bg-primary {
    background-color: var(--primary-color) !important;

}

.btn-outline-primary {
    --bs-btn-color: #0f74b2 !important;
    --bs-btn-border-color: #0f74b2 !important;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #0f74b2 !important;
    --bs-btn-hover-border-color: #0f74b2 !important;
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #0f74b2 !important;
    --bs-btn-active-border-color: #0f74b2 !important;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #0f74b2 !important;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #0f74b2 !important;
    --bs-gradient: none;
}

/* ========================================= end Testimonials ================================ */

/* ========================================= website page ==================================== */

/* ========================================= Start about page ================================ */
#unique-hero-section {
    background-image: url('../image/hero_page/hero.jpg');
    background-size: cover;
    background-position: center;
    padding: 150px 0;
    color: white;
    text-align: center;
    position: relative;
}

#unique-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

#unique-container {
    z-index: 2;
    position: relative;
    direction: rtl;
}

#unique-breadcrumb {
    background: none;
    text-align: right;
}

#unique-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: '>';
    color: white;
    padding: 0 5px;
}

#unique-title {
    font-size: 2.5rem;
    text-align: right;
}




/* ==================================== end hero_page ============================================= */

/* ==================================== commn tool ================================================ */

.floating-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #174c8a, #1963ad);
    border-radius: 50%;
    padding: 20px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
}

.floating-icon:hover {
    transform: scale(1.15);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.chat-icon {
    font-size: 27px;
    color: #fff;
}

.icons-container {
    position: absolute;
    bottom: 80px;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
}

.icons-container.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
}

.icon-wrapper:hover {
    transform: scale(1.1);
}

.icon-wrapper.whatsapp {
    background-color: #0a7631;
}

.icon-wrapper.phone {
    background-color: #00528E;
}

.icon {
    font-size: 1.5rem;
    color: #fff;
}

/* ==================================== end commn tool ============================================ */

/* ====================================== start page porfile ====================================== */

.profile_title {
    color: var(--primary-color);
    font-weight: bold;
}

.profile_contant {
    color: var(--black);
    font-size: 0.9em;
}

.profile_input {
    border-color: var(--primary-color) !important;
    font-size: var(--font-size) !important;
}

.profile_input:focus {
    border-color: var(--hover1) !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 82, 142, 0.25) !important;
}

#profile_button.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

#profile_button.btn-primary:hover {
    background-color: var(--hover1);
    border-color: var(--hover1);
}

#profile_button.btn-danger {
    background-color: var(--primary-color1);
    border-color: var(--primary-color1);
}

#profile_button.btn-danger:hover {
    background-color: darkred;
    border-color: darkred;
}


#profile_card-body {
    padding: 1.5rem;
}

#profile_label {
    color: var(--primary-color);
    font-weight: bold;
}

#profile_button {
    font-size: var(--font-size);
    padding: 8px 16px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.position-relative {
    position: relative;
}

.toggle-password {
    position: absolute;
    left: 15px; 
    top: 70%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 1.3em;
    font-weight: bold;
    color: #000000; 
    /* color: rgba(0, 0, 0, 0.5); 
    transition: color 0.3s ease; */
    display: none; 
}

/* .toggle-password:hover {
    color: rgba(0, 0, 0, 0.8); 
} */
/* ====================================== start page porfile ====================================== */

/* ====================================== start contact us ======================================== */


.contact-section {
    text-align: center;
   
    margin-bottom: 20px;
}
.contact-section .contact_title {
    font-weight: bold;
    color: #333;
}
.contact-section .contact_description  {
    color: #555;
    font-size: 1.1rem;
}
.contact-phone {
    font-size: 1.5rem;
    color: #00528E;
    font-weight: bold;
}
.whatsapp-icon {
    width: 60px;
    height: 60px;
    margin: 20px auto;
}
.contact-form {
    max-width: 450px;
    margin: auto;
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.contact-form label {
    font-weight: bold;
    color: #555;
}
.contact-form .form-control,
.contact-form .form-select {
    height: 50px;
    border-radius: 8px;
    box-shadow: none;
    border: 1px solid #ddd;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #00528E !important;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
.btn-submit {
    background-color: #00528E !important;
    color: #fff !important;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 8px;
    height: 50px;
}
.btn-submit:hover {
    background-color: #00528E !important;
}
.contact-form textarea {
  font-size: 1rem;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid var(--input-border);
  border-radius: 8px;
  width: 100%;
}

.contact-form select {
  background-color: var(--form-background);
}

.contact-form textarea {
  resize: none;
  height: 150px !important;
}




/* ====================================== end contact us ========================================== */