/* start global  */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-transform: capitalize;
    font-family: "Cairo", sans-serif;
}

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

a {
    text-decoration: none;
}

:root {
    --main-color: #0995C6;
    --bg-color: #0995C6;
    --accent-color: #206E89;
    --transition: ;
}

.text-mute {
    color: #0000008A !important;
}

.text-black {
    color: #000000DE !important;
}

.text-black-primary {
    color: #0000008A !important;
}

.text-main {
    color: #0995C6 !important;
}

.bg-accent {
    background-color: #206E89 !important;
}

.border-accent {
    border: 1px solid var(--accent-color) !important;
}

.bg-main {
    background-color: #0995C6 !important;
}

.text-main-primary {
    color: #F3A448 !important;
}

.bg-main-primary {
    background-color: #F3A448 !important;
}

.text-gray {
    color: #0000008A !important;
}

.font-bold {
    font-weight: 700 !important;
}

.font-semibold {
    font-weight: 600 !important;
}

.main-title {
    text-align: center;
    color: var(--main-color);
    font-weight: bold;
    font: 25px;
    position: relative;
    display: inline-block;
}

.line {
    border: 1px solid var(--main-color) !important;
}

.main-title::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 5px;
    background-color: var(--main-color);
    bottom: -10px;
    left: 50%;
    border-top-left-radius: 20px;
}

body.rtl {
    text-align: right;
}

body.ltr {
    text-align: left;
}

.rectangle-img-top-1,
.rectangle-img-top-2 {
    position: absolute;
    left: 0;
    transform: translateY(-50%);
    max-width: 250px;
    height: auto;
    z-index: -1;
}

.rectangle-img-top-1 {
    width: 180px;
    top: 42%;
    left: 20px;
}

.rectangle-img-top-2 {
    top: 25%;
    width: 250px;
}

.rectangle-img-bottom-1,
.rectangle-img-bottom-2 {
    position: absolute;
    right: 0;
    transform: translateY(50%);
    height: auto;
    z-index: -1;
}

.rectangle-img-bottom-1 {
    bottom: 0;
    right: 40px;
    max-width: 180px;
}

.rectangle-img-bottom-2 {
    max-width: 250px;
    bottom: 120px;
}

.rectangle-img-vision-bottom-1,
.rectangle-img-vision-bottom-2 {
    position: absolute;
    right: 0;
    transform: translateY(50%);
    height: auto;
    z-index: -1;
}

.rectangle-img-vision-bottom-1 {
    bottom: -120px;
    right: 40px;
    max-width: 180px;
}

.rectangle-img-vision-bottom-2 {
    max-width: 250px;
    bottom: -10px;
}

.rectangle-img-center-left-1,
.rectangle-img-center-left-2 {
    position: absolute;
    left: 0;
    transform: translateY(-50%);
    max-width: 250px;
    height: auto;
    z-index: -1;
}

.rectangle-img-center-left-1 {
    max-width: 180px;
    top: 55%;
    left: 30px;
}

.rectangle-img-center-left-2 {
    top: 45%;
    max-width: 250px;
}

.rectangle-img-center-right-1,
.rectangle-img-center-right-2 {
    position: absolute;
    right: 0;
    transform: translateY(-50%);
    max-width: 250px;
    height: auto;
    z-index: -1;
}

.rectangle-img-center-right-1 {
    top: 45%;
    right: -40px;
    max-width: 250px;
}

.rectangle-img-center-right-2 {
    top: 60%;
    max-width: 180px;
}

@media (max-width: 768px) {

    .rectangle-img-top-1 {
        width: 150px;
        top: 5%;
    }

    .rectangle-img-top-2 {
        width: 100px;
        top: 10%;
        left: 20px;
    }

    .rectangle-img-bottom-2 {
        width: 100px;
        bottom: 5%;
        right: 30px;
    }


    .rectangle-img-bottom-1 {
        width: 150px;
        bottom: 10%;
        right: 0;
    }


    .rectangle-img-center-right-1 {
        width: 150px;
        top: 50%;
        right: 0;
    }

    .rectangle-img-center-right-2 {
        width: 100px;
        top: 55%;
        right: 30px;
    }


    .rectangle-img-center-left-1 {
        width: 150px;
        top: 50%;
        left: 0;
    }

    .rectangle-img-center-left-2 {
        width: 100px;
        top: 55%;
        left: 20px;
    }

}

#scrollToTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    border: none;
    outline: none;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 12px #0993c66c;
    transition: opacity 0.4s, transform 0.3s;
    opacity: 0;
    pointer-events: none;
}

#scrollToTopBtn.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

#scrollToTopBtn:hover {
    background: #F1EAFA;
    transform: scale(1.1);
    color: var(--accent-color);
}

/* spinner  */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 32, 39, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    width: 80px;
    height: 80px;
    border: 5px solid #F1EAFA;
    border-top: 5px solid var(--accent-color);
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
    box-shadow: 0 0 15px var(--bg-color);
}

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

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

.loading-text {
    color: #FFFFFF;
    margin-top: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1.2px;
    text-align: center;
}

/* End global  */

/* start navbar  */
.navbar {
    z-index: 1000;
    box-shadow: none !important;
    margin-top: 20px;
    background-color: #FFFFFF5E;
    border-radius: 13px;
}

.navbar-brand img {
    width: 170px;
    height: 50px;
    object-fit: cover;
}

.navbar-icons img {
    width: 25px;
    height: auto;
}

.navbar.rtl .navbar-nav {
    margin-right: 0;
    margin-left: auto;
}

.navbar.ltr .navbar-nav {
    margin-left: 0;
    margin-right: auto;
}

#lang-toggle {
    user-select: none;
}

.lang-button {
    display: flex;
    align-items: center;
    gap: 5px;
}

#lang-menu {
    list-style: none;
    margin: 0;
    padding: 5px 0;
    min-width: 120px;
    top: 35px;
    z-index: 1000;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

body.ltr #lang-menu {
    right: 0;
    left: auto;
}

body.rtl #lang-menu {
    left: 0;
    right: auto;
}

#lang-menu .lang-item {
    padding: 8px 10px;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

#lang-menu .lang-item:hover {
    background-color: #007bff;
    color: #fff;
    border-radius: 6px;
}

.lang-flag {
    width: 20px;
    height: 14px;
    object-fit: cover;
}

#lang-menu,
#lang-menu-mobile {
    list-style: none;
    margin: 0;
    padding: 5px 0;
    min-width: 120px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: absolute;
    z-index: 1000;
}

#lang-menu .lang-item,
#lang-menu-mobile .lang-item {
    padding: 8px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s;
}

#lang-menu .lang-item:hover,
#lang-menu-mobile .lang-item:hover {
    background-color: #007bff;
    color: #fff;
    border-radius: 6px;
}

.lang-flag {
    width: 20px;
    height: 14px;
    object-fit: cover;
}

.mobile-sidebar {
    display: none;
}

.offcanvas.mobile-sidebar {
    width: 280px;
    background-color: #206f89;
    color: #fff;
}

.offcanvas-body {
    height: 100vh;
}

.navbar-nav .nav-link {
    color: white;
    position: relative;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: white;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 3px;
    background-color: var(--bg-color);
    transition: width 0.3s;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-nav .nav-link.active {
    color: white;
    font-weight: 600;
}

.nav-link.active-link {
    border-bottom: 2px solid white;
    color: #fff !important;
    font-weight: 600;
}

/* .nav-link:hover {
    border-bottom: 2px solid #fff;
} */

.btn-icon {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.nav-icon {
    width: 25px;
    height: 25px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-icon:hover {
    transform: scale(1.1);
}

.search-box {
    position: absolute;
    top: 50px;
    right: 50%;
    left: 50%;
    width: 500px;
    background: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 99;
}

body.rtl .search-box {
    left: 150px;
    right: auto;
    direction: rtl;
}

body.ltr .search-box {
    right: 150px;
    left: auto;
    direction: ltr;
}

.search-box input:focus {
    border: none;
    outline: none;
}

.search-box input {
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

.btn-icon {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.btn-icon img {
    width: 24px;
    height: 24px;
    transition: transform 0.2s ease;
}

.btn-icon:hover img {
    transform: scale(1.1);
}

.search-box-mobile {
    position: absolute;
    top: 130%;
    right: 0;
    width: 300px;
    background: white;
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 999;
    animation: fadeSlide 0.3s ease;
}

.search-box-mobile input {
    width: 100%;
    font-size: 14px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

body.rtl .search-box-mobile {
    left: 0;
    right: auto;
    direction: rtl;
}

body.ltr .search-box-mobile {
    right: 0;
    left: auto;
    direction: ltr;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

.navbar-box {
    padding-left: 150px;
    padding-right: 150px;
}

@media(max-width:786px) {
    .mobile-sidebar .navbar-nav {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .navbar-box {
        padding-left: 0;
        padding-right: 0;
    }

    .mobile-sidebar {
        display: block;
    }

    .navbar,
    .navbar-box {
        margin-top: 0;
        background-color: #206f89 !important;
        border-radius: 0;
    }

    .mobile-sidebar .nav-link {
        color: white !important;
    }

    #lang-menu .lang-item,
    #lang-menu-mobile .lang-item {
        color: black;
    }

    .fa-bars-staggered {
        background-color: var(--bg-color);
        padding: 10px;
        color: white;
        border-radius: 5px;
    }

    .btn-close-icon {
        color: rgba(255, 0, 0, 0.637) !important;
        border: none;
        background-color: transparent !important;
        font-size: 22px;
        padding: 0px 10px;
        transition: all .2s ease;

    }

    .btn-close-icon:hover {
        background-color: rgba(255, 255, 255, 0.397) !important;
        border-radius: 50%;
        padding: 0px 10px;
    }

    .navbar-brand img {
        width: 100px;
        height: 50px;
    }
}

/* end navbar  */

/* start hero section  */
.home-hero-section {
    margin-top: -100px;
    background-image: linear-gradient(to right, #00000071, #6e5b5b79),
        url(../images/homePage/hero-section-bg.jpg);
    height: 700px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    background-color: white;
}

.home-hero-section::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 200px;
    background: white;
    clip-path: polygon(50% 100%, 0 100%, 0 0%);
    z-index: 2;
}

.home-hero-section::after {
    content: "";
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 100%;
    height: 200px;
    background: white;
    clip-path: polygon(50% 100%, 100% 100%, 100% 0);
    z-index: 30;
}

.hero-btn {
    border: 2px solid white;
    background-color: white;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 24px;
    height: 70px;
    width: 280px;
    border-radius: 100px;
    z-index: 1;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hero-linear-btn {
    position: relative;
    overflow: hidden;
    height: 60px;
    width: 280px;
    border-radius: 100px;
    background: #fff;
    background-size: 400%;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    cursor: pointer;
    font-size: 24px;
    font-weight: 700;
}

.hero-linear-btn:hover .hero-linear-btn-content {
    color: #fff;
}

.hero-linear-btn:hover::before {
    transform: scaleX(1);
}

.hero-linear-btn-content {
    position: relative;
    z-index: 1;
}

.hero-linear-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: 0 50%;
    width: 100%;
    height: inherit;
    border-radius: inherit;
    background: linear-gradient(90deg, #4A9CD6, #00bcfa);
    transition: all 0.475s;
}

.hero-linear-btn-light {
    position: relative;
    overflow: hidden;
    height: 60px;
    width: 280px;
    border-radius: 100px;
    background: #fff;
    background-size: 400%;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    cursor: pointer;
    font-size: 24px;
    font-weight: 700;
}

.hero-linear-btn-light:hover .hero-linear-btn-content-light {
    color: var(--accent-color);
}

.hero-linear-btn-light:hover::before {
    transform: scaleX(1);
}

.hero-linear-btn-content-light {
    position: relative;
    z-index: 1;
}

.hero-linear-btn-light::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: 0 50%;
    width: 100%;
    height: inherit;
    border-radius: inherit;
    background: linear-gradient(90deg, #fff, #fff);
    transition: all 0.475s;
}

.home-hero-section h2 {
    font-weight: 500;
    font-size: 55px;
    line-height: 90px;
    letter-spacing: 0px;
}

.home-hero-section p {
    font-size: 20px;
    text-align: center;
    width: 50%;
    margin: 0 auto;
}

.home-hero-section .hero-imgs-box img:nth-of-type(1) {
    z-index: 10;
    left: -10px !important;
    top: -30px !important;
}

.home-hero-section .hero-imgs-box img:nth-of-type(2) {
    top: -30px !important;
    left: -10px !important;
}

@media(max-width:768px) {
    .home-hero-section {
        margin-top: 0;
        height: auto;

    }

    .hero-linear-btn,
    .hero-btn {
        position: relative;
        background-color: white;
        color: var(--accent-color);
        font-weight: 600;
        font-size: 18px;
        height: 50px;
        width: 100%;
        padding: 10px 20px;
    }

    .hero-caption-box {
        padding-top: 0;
        padding-right: 0;
    }

    .home-hero-section h2 {
        font-size: 30px;
        line-height: 50px;
    }

    .home-hero-section p {
        width: 90%;
    }

    .home-hero-section .hero-imgs-box img:nth-of-type(1) {
        z-index: 10;
        left: 0px !important;
        top: 0px !important;
    }

    .home-hero-section .hero-imgs-box img:nth-of-type(2) {
        top: 0px !important;
        left: 0px !important;
        position: static !important;
    }

    .home-hero-section::after,
    .home-hero-section::before {
        display: none;
    }
}

/* End hero section  */

/* start alamir section  */
.al-amir .container {
    background-color: #FBF3F3;
    border-radius: 20px;
}

.al-amir .caption {
    border-radius: 11px;
}

.al-amir .caption h2 {
    font-size: 28px;
}

.al-amir .caption p {
    font-size: 20px;
}

.al-amir .fa-quote-right {
    position: absolute;
    top: 10px;
    right: 50px;
    color: var(--main-color);
    font-size: 30px;
}

.al-amir .fa-quote-left {
    position: absolute;
    bottom: 20px;
    left: 50px;
    color: var(--main-color);
    font-size: 30px;
}

@media(max-width:768px) {
    .al-amir .caption {
        text-align: center;
    }
}

/* end alamir section  */

/* start about-us  */
.about-us-section-ims-box {
    position: relative;
    min-height: 500px;
}

.about-us-section .rotated-box.main {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 320px;
    height: 320px;
    border: 5px solid var(--main-color);
    border-radius: 30px;
    overflow: hidden;
    z-index: 2;
}

.about-us-section .rotated-box.main img {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    object-fit: cover;
    transform: rotate(-45deg);
}

.about-us-section .rotated-box.small {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 220px;
    height: 220px;
    border: 5px solid var(--main-color);
    border-radius: 25px;
    overflow: hidden;
    z-index: 3;
    background: #fff;
}

.about-us-section .rotated-box.small img {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    object-fit: cover;
    transform: rotate(-45deg);
}

.about-us-section .more-btn {
    width: 230px;
    height: 70px;
    border-radius: 50px;
    background-color: var(--bg-color);
    color: white;
    position: relative;
    font-weight: 700;
    font-size: 24px;
    border: none;
    z-index: 1;
    overflow: hidden;
    transition: all 0.3s ease;
}

.about-us-section .more-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 2px;
    background: linear-gradient(90deg, #4A9CD6, #A14AD6);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.about-us-section .more-btn:hover {
    color: #fff;
    background: linear-gradient(90deg, #105A74, #0091C3);
}

@media (max-width: 768px) {
    .about-us-section-ims-box {
        position: static !important;
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 20px;
    }

    .about-us-section .rotated-box {
        position: static !important;
        width: 100%;
        max-width: 300px;
        height: auto;
        transform: none !important;
        border: 5px solid var(--main-color);
        border-radius: 20px;
        overflow: hidden;
    }

    .about-us-section .rotated-box img {
        transform: none !important;
        width: 100%;
        height: auto;
        object-fit: cover;
        position: static !important;

    }

    .about-us-section .rotated-box.small {
        position: static !important;
        width: 100%;
        max-width: 250px;
        height: auto;
        transform: translateX(0%) rotate(45deg);
    }

    .about-us-section .rotated-box.small img {
        position: static !important;
        top: 0%;
        left: 0%;
        width: 100%;
        height: 100%;
    }
}

/* End about-us  */

/* start special  */
.special {
    padding-top: 10%;
}

.special .carousel-indicators {
    position: absolute;
    top: 50%;
    right: 20px;
    left: auto;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
}

.special .carousel-indicators [data-bs-target] {
    width: 5px;
    height: 15px;
    border-radius: 20px;
    background-color: white;
    opacity: 1;
    transition: all 0.3s ease;
}

.special .carousel-indicators .active {
    background-color: var(--main-color);
    transform: scale(1.2);
    height: 50px;
}

.carousel-item {
    position: relative;
}

.carousel-item img {
    height: 350px !important;
    object-fit: cover;
}

.carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #114F65CF, #114F65CF);
    z-index: 1;
}

.carousel-caption {
    z-index: 2;
    color: white;
    position: absolute;
    top: 50%;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    display: none !important;
}

@media (max-width: 768px) {
    .special .carousel-indicators {
        right: 10px;
    }

    .special .carousel-indicators [data-bs-target] {
        width: 10px;
        height: 10px;
    }

    .special .carousel-indicators .active {
        height: 30px;
    }

    .carousel-item img {
        height: 250px !important;
    }

    .carousel-caption {
        top: 25%;
    }

}

/* End special  */

/* start services  */
.services-section .swiper {
    padding-top: 50px;
}

.services-section h2 {
    margin-bottom: 10%;
}

.services-section-ims-box {
    position: relative;
    min-height: 300px;
    /* overflow: hidden; */
}

.services-section .rotated-box.main {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    width: 250px;
    height: 250px;
    border: 5px solid var(--main-color);
    border-radius: 30px;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
}

.services-section .rotated-box.main::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(32, 110, 137, 0.6);
    z-index: 1;
}

.services-section .rotated-box.main img {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    object-fit: cover;
    transform: rotate(-45deg);
    transition: all 0.4s ease;
}

.services-section .imgs-hover {
    position: absolute;
    top: 55%;
    left: 50%;
    width: 230px;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10;
    transition: all 0.4s ease;
}

.services-section .imgs-hover h6 {
    font-size: 27px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #fff;
    transition: transform 0.4s ease;
}

.services-section .services-btn:hover {
    background-color: var(--accent-color);
    color: white;
    border: 1px solid white;
}

.services-section .services-btn {
    border: none;
    background-color: white;
    padding: 8px 14px;
    color: var(--main-color);
    border-radius: 50px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.services-section .services-btn .fa-angle-left {
    color: var(--main-color);
    background-color: #ebe8e8;
    padding: 8px 10px;
    border-radius: 50%;
}

.services-section-ims-box:hover .imgs-hover {
    top: 50%
}

.services-section-ims-box:hover .imgs-hover h6 {
    transform: translateY(-10px);
}

.services-section-ims-box:hover .services-btn {
    opacity: 1;
    transform: translateY(-5px);
}

.services-section-ims-box:hover .rotated-box.main img {
    transform: rotate(-45deg) scale(1.1);
    filter: brightness(0.8);
}


@media(max-width:768px) {
    .services-section h2 {
        margin-bottom: 15%;
    }
}

/* End services -section  */

/* Start vision-section  */
.vision {
    background-image: linear-gradient(to right, #00000000, #000000B2), url(../images/homePage/vision.png);
    height: 500px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50px;
    color: white;
}

.vision h6 {
    background-color: #F3A448;
    border-radius: 7px;
    padding: 10px 20px;
    width: fit-content;
}

.vision p:nth-of-type(1) {
    font-weight: 500;
    font-style: Medium;
    font-size: 26px;
    line-height: 45px;
    letter-spacing: 0px;
}

@media(max-width:768px) {
    .vision {
        height: auto;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .vision p:nth-of-type(1) {
        font-size: 16px;
        line-height: 30px;
        width: 100% !important;
    }
}

/* End vision-section  */

/* start experience */
.experience-box {
    box-shadow: 1px 0 5px #0000001A;
    height: 170px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    gap: 20px;
}

.number-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.experience-number-box,
.experience-shadow-box {
    width: 80px;
    height: 80px;
    transform: rotate(45deg);
    border-radius: 6px;
}

.experience-shadow-box {
    background-color: #147091;
}

.experience-number-box {
    position: absolute;
    background-color: var(--bg-color);
    right: 10px;
}

.experience-number-box p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    font-size: 24px;
    font-weight: bold;
}

.experience-caption {
    font-weight: 600;
    font-size: 26px;
    line-height: 38px;
    letter-spacing: 0px;
    color: var(--main-color);
}

@media (max-width: 768px) {
    .experience-box {
        height: auto;
        padding: 20px 10px;
    }

    .experience-caption {
        font-size: 16px;
        line-height: 1.6;
    }

    .experience-number-box,
    .experience-shadow-box {
        width: 40px;
        height: 40px;
        border-radius: 6px;
        margin-top: 20px;
    }
}

/* End experience  */

/* Start blog section  */

.blog-section .more-btn {
    width: 180px !important;
    height: 45px;
    border-radius: 50px;
    background-color: var(--bg-color);
    color: white;
    font-weight: 700;
    font-size: 17px;
    border: 1px solid #105A74;
}

.blog-section .all-more-btn {
    background-color: var(--accent-color);
    border: 1px solid #0091C3;
}

.blog-section .card {
    border-radius: 18px;
    background-color: white;
    box-shadow: 0 2px 5px #00000024;
}

.blog-section .card .card-title {
    color: #3A5F7D !important;
}

.blog-section .card img {
    height: 200px;
    object-fit: cover;
}

/* End blog section  */

/* start partners  */
.partner-box {
    box-shadow: 0 1px 4px #00000029;
    padding: 10px;
    border-radius: 50%;
    overflow: hidden;
    height: 140px;
    width: 140px;
}

.partner-box img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.purple-partner-box {
    background-color: #542750 !important;
}

/* End partners  */

/* start questions  */
.questions .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: var(--bg-color) !important;
    color: white;
    border-radius: 8px;
}

.questions .nav-pills .nav-link {
    color: var(--accent-color);
    border-radius: 8px;
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
}

.accordion-button::after {
    margin-left: auto !important;
    margin-right: 0 !important;
}

html[dir="rtl"] .accordion-button::after {
    margin-right: auto !important;
    margin-left: 0 !important;
}

.accordion {
    background-color: #C9EBF6;
    border-radius: 23px;
    transition: all .1s ease;
}

.accordion .accordion-collapse {
    padding-bottom: 50px;
    background-color: #C9EBF6;
    transition: all .1s ease;

}

.accordion-button {
    font-weight: 700;
    font-size: 20px;
    color: #206E89;
    background-color: #fff;
}

.accordion-button:not(.collapsed) {
    background-color: #C9EBF6;
    color: #263238;
}

.accordion-body {
    background-color: #277793;
    color: white;
    width: 80%;
    margin: auto;
    border-radius: 23px;
    padding: 20px;
    margin-top: 20px;
}

.accordion-item:last-of-type .accordion-collapse {
    background-color: #C9EBF6;
}

.accordion-item {
    border: none;
    border-bottom: 1px solid #B5A6A6;
    background-color: #C9EBF6;
}

.tabs-wrapper {
    position: relative;
    width: 100%;
}

.tabs-wrapper .nav-pills {
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.tabs-wrapper .nav-pills::-webkit-scrollbar {
    display: none;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--main-color);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 5;
    display: none;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.scroll-btn:hover {
    background-color: var(--main-color);
    color: #fff;
}

.scroll-btn.left {
    right: 5px;
}

.scroll-btn.right {
    left: 5px;
}

@media (max-width: 768px) {
    .questions .nav-pills {
        overflow-x: auto;
        flex-wrap: nowrap;
        scrollbar-width: thin;
        scrollbar-color: var(--main-color) #f1f1f1;
    }

    .questions .nav-item {
        flex: 0 0 auto;
        margin-left: 8px;
        margin-right: 8px;
    }

    .questions .nav-pills::-webkit-scrollbar {
        height: 6px;
    }

    .questions .nav-pills::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .questions .nav-pills::-webkit-scrollbar-thumb {
        background-color: var(--main-color);
        border-radius: 10px;
    }

    .scroll-btn {
        display: flex;
    }

    .questions .accordion-button {
        font-size: 13px;
    }

    .questions .nav-pills .nav-link {
        font-size: 18px;
    }
}

/* End questions  */

/* start contact-section  */
.contact-section .fa-phone,
.contact-section .fa-envelope,
.contact-section .fa-location-dot {
    background-color: white;
    color: var(--accent-color) !important;
    padding: 10px;
    border-radius: 10px;
}

.contact-social a .fa-instagram,
.contact-social a .fa-x-twitter,
.contact-social a .fa-linkedin,
.contact-social a .fa-facebook-f {
    background-color: #00000014;
    padding: 7px;
    border-radius: 50%;
    color: white;
    transition: all .5s ease;
}

.contact-social a .fa-instagram:hover,
.contact-social a .fa-x-twitter:hover,
.contact-social a .fa-linkedin:hover,
.contact-social a .fa-facebook-f:hover {
    background-color: var(--accent-color);
    color: white;
}

.contact-social a .fa-facebook-f {
    padding: 7px 10px;
}

.contact-section form button {
    border: none;
    background-color: var(--accent-color);
    width: 100%;
    color: white;
    margin-top: 20px;
    height: 60px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.contact-section form textarea {
    height: 100px;
}

.contact-section form textarea,
.contact-section form input {
    border: none;
    background-color: #F3F4F6;
    padding: 10px;
}

.contact-section form label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 21px;
    line-height: 100%;
    margin-bottom: 15px;
}

/* End contact-section  */

/* start footer  */
footer {
    padding-top: 70px;
    padding-bottom: 20px;
}

footer .contact-social a .fa-instagram,
footer .contact-social a .fa-x-twitter,
footer .contact-social a .fa-linkedin,
footer .contact-social a .fa-facebook-f {
    background-color: #00000014;
    padding: 7px;
    border-radius: 50%;
    font-size: 20px;
    color: var(--main-color);
    transition: all .5s ease;
}

footer .contact-social a .fa-instagram:hover,
footer .contact-social a .fa-x-twitter:hover,
footer .contact-social a .fa-linkedin:hover,
footer .contact-social a .fa-facebook-f:hover {
    background-color: var(--accent-color);
    color: white;
}

footer .footer-links a {
    width: fit-content;
}

footer .footer-links a:hover {
    transition: all .5s ease-in-out;
    color: var(--accent-color) !important;
    border-bottom: 1px solid var(--accent-color) !important;
}

footer .contact-social a .fa-facebook-f {
    padding: 7px 10px;
}

@media(max-width:768px) {
    footer {
        padding-top: 20px;
        text-align: center;
    }

    footer .footer-links a {
        margin: auto;
    }
}

/* End footer  */

/* start about page  */
.about-hero-section {
    margin-top: -100px;
    background-image: linear-gradient(to right, #00000071, #6e5b5b79),
        url(../images/about-hero.jpg);
    height: 500px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.about-hero-section p {
    line-height: 50px;
}

.about-hero-section h6 {
    background-color: var(--bg-color);
    padding: 15px 30px;
    color: white;
    border-radius: 20px;
}

.about-section-page p {
    line-height: 40px;
    color: black;
}

.about-section-page h2 {
    font-size: 40px;
    font-weight: 700;
}

@media(max-width:768px) {

    .about-hero-section p {
        line-height: 30px;
        width: 100% !important;
    }

    .about-section-page h2 {
        font-size: 30px;
    }
}

/* end about page  */

/* start service-details  */
.service-details .details-box {
    border: 2px solid var(--accent-color);
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    margin-top: 50px;
}

.service-details .details-box .details-number .details-caption {
    line-height: 40px;
    text-align: center;
}

.service-details .details-box .details-number {
    margin-top: -40px;
    background-color: var(--bg-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

/* End service-details  */

/* start service-page  */
.service-page {
    padding-top: 100px;
}

.service-page-box {
    position: relative;
    cursor: pointer;
    background-color: white;
}

.service-hover-content p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    color: black;
}

.service-hover-content {
    position: absolute;
    color: white !important;
    bottom: -10px;
    width: 50% !important;
    right: 48%;
    border-top-right-radius: 25px;
    opacity: 0;
    padding: 20px;
    transform: translateY(30px);
    transition: all 0.4s ease;
    text-align: left;
    background-color: transparent;
    width: fit-content;
}

.service-page-box img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 25px;
    transition: opacity 0.5s ease;
    display: block;
}

.service-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: white;
    border-radius: 25px;
}

.service-title {
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-size: 20px;
    font-weight: bold;
    z-index: 2;
}

.service-hover-content p {
    margin-bottom: 10px;
    font-size: 14px;
}

.learn-more-btn {
    position: relative;
    color: var(--main-color);
    background-color: #fff;
    border: 1px solid var(--bg-color);
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 13px;
    transition: background 0.3s ease;
}

.learn-more-btn:hover {
    background: var(--accent-color);
    color: white;
}

.service-page-box:hover img {
    /* transform: scale(1.05); */
    filter: brightness(70%);
}

.service-page-box:hover .service-hover-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.service-page-box {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    cursor: pointer;
}

.service-page-box .img-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.service-page-box:hover .img-main {
    opacity: 0;
}

.service-page-box:hover .img-hover {
    opacity: 1;
}


@media(max-width:768px) {
    .service-page {
        padding-top: 50px;
    }
}


/* End service-page  */

html[dir="rtl"] .swiper,
body[dir="rtl"] .swiper {
    direction: rtl !important;
}

html[dir="rtl"] .swiper-wrapper {
    direction: rtl !important;
}

/* start blogs  */
.blogs-box {
    border: 1px solid #cac5c5;
    border-radius: 20px;
}

.blogs-box h2 {
    font-weight: 600;
    font-size: 20px;
}

.blogs-container {
    position: relative;
    overflow: hidden;
}

.blogs-container::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    border-radius: 20px;
}

.blogs-container button {
    width: 200px;
    height: 35px;
    border: 1px solid var(--accent-color);
    background-color: var(--accent-color);
    color: white;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    z-index: 2;
}

.blogs-container:hover button {
    bottom: 40%;
    opacity: 1;
}

.blogs-container:hover::after {
    opacity: 1;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.185);
    border-radius: 20px;
}

.blogs-container button:hover {
    background-color: white;
    color: var(--accent-color);
}

.blogs-box p {
    color: #999393;
    font-size: 13px;
}

.blogs-box h6 {
    font-size: 17px;
    line-height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blogs-box img {
    width: 350px;
    height: 200px;
}

.short-links-box:hover {
    transform: translateX(5px);
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.185);
}

.short-links-box {
    border: 1px solid #cac5c5;
    border-radius: 20px;
    transition: all .3s ease;
}

.short-links-box img {
    width: 150px;
    height: 80px;
}

.short-links-box h6,
.short-links-box p {
    color: #999393;
    margin: 0;
}

.short-links-box p {
    font-size: 12px;
}

.short-links-box h6 {
    font-size: 14px;
    line-height: 30px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.short-links-box h2,
.blogs-video h2 {
    font-weight: 600;
    font-size: 16px;
}

.blogs-video img {
    width: 100%;
    height: 100%;
}

.blogs-video-container {
    position: relative;
    height: 150px;
    width: 200px;
}

.blogs-video p {
    position: absolute;
    bottom: 30%;
    left: 50%;
    transition: all 0.3s ease-in-out;
    z-index: 2;
    transform: translateX(-50%);
    text-align: center;
    font-size: 12px;
    font-weight: 600;
}

.blogs-video-container::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    border-radius: 20px;
}

.blogs-video-container:hover::after {
    opacity: 1;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.185);
    border-radius: 20px;
}

.blogs-details p,
.blogs-details article {
    line-height: 40px;
}

@media(max-width:768px) {
    .blog-hero-section {
        height: 200px;
        margin-top: 0px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .blogs-box img {
        width: 320px;
    }

}

/* End blogs  */
