:root {
    --primary-color: #58595b;
    --secondary-color: #254789;
    --accent-color: #60c3ad;
    --light-color: #56abc8;
    --dark-color: #56abc8;
    --bs-body-font-size: 18px;
}

body {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    overflow-x: hidden;
}

.en-font {
    font-family: 'Dunbar Tall', 'Dunbar Text', sans-serif;
}

.navbar {
    
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    padding: 15px 0;
    transition: all 0.3s ease;
    background-color: #60c3ad66;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.navbar-scrolled {
    background-color: white;
    padding: 10px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 60px;
}

.nav-link {
    color: var(--dark-color);
    font-weight: 600;
    margin-left: 20px;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.language-switcher {
    margin-right: 15px;
}

.language-switcher .dropdown-toggle {
    background: none;
    border: none;
    color: var(--dark-color);
    font-weight: 600;
}

.language-switcher .dropdown-toggle::after {
    margin-right: 0.5em;
    margin-left: 0;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 30px;
}

.btn-primary:hover {
    background-color: #58595b;
    border-color: #58595b;
}

.btn-outline-light {
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 30px;
    margin-right: 15px;
}

.section {
    padding: 80px 20px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: calc(50% - 40px);
    left: calc(50% - 40px);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.section-light {
    background-color: var(--light-color);
}

.section-dark {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.section-dark .section-title {
    color: white;
}

.section-dark .section-title::after {
    background-color: white;
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-card {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    background-color: white;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-img {
    /* height: 200px; */
    object-fit: cover;
}

.service-body {
    padding: 30px;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.blog-card {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    background-color: white;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-img {
    /* height: 200px; */
    object-fit: cover;
}

.blog-body {
    padding: 20px;
}

.blog-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.blog-date {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.contact-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 30px;
    padding: 15px 20px;
    color: white;
    margin-bottom: 20px;
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 20px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-right: 5px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: white;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--accent-color);
    transform: translateY(-5px);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating-img {
    animation: float 6s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section {
        padding: 60px 0;
    }
}


#IntoVideo{
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
}
.about-section{border-radius: 30px;background-color: #f27054;}
.vision-section{border-radius: 30px;background-color: #254789;}
.mission-section{border-radius: 30px;background-color: #60c3ad;}

.title-white{color: #fff;}
.mark-home{
    background-image: url(../images/hero-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 281px 0 270px 0;
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.solutions-img {
    height: 200px;
    object-fit: cover;
}
.footer-links a.disaple{
    color: #bcbec0;
    cursor: not-allowed;
}
a.lang-style{
    display: block;
    padding: 4px 10px;
    text-decoration: none;
}
.f-26{
    font-size: 26px;
}
.f-li{
    list-style: none;
}
.lang-en{
    direction: ltr;
}
.navbar-nav{
    display: flex;
    justify-content: center;
    width: 100%;
}