/* Custom styles for Sahla Plus */
/* Sahla Home Scoped Styles */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800&display=swap');



body.sahla-plus .section-title {
    font-weight: 500;
    font-size: 2rem;
}

/* ============================================
   NAVBAR
   ============================================ */
#mainNavbar {
    background-color: var(--white);
    min-height: var(--navbar-height);
    border-bottom: none;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.08), 0px 0px 4px 0px rgba(0, 0, 0, 0.04);
    padding: 10px 0;
    z-index: 1050;
    transition: box-shadow var(--transition-base);
}

#mainNavbar.scrolled {
    box-shadow: var(--shadow-sm);
}

/* Scoped styles for transparent overlay navbar on Home New */
body.home-new-page #mainNavbar {
    background-color: transparent;
    border-bottom: none;
    box-shadow: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    padding: 14px 0;
    transition: background-color var(--transition-base), box-shadow var(--transition-base), padding var(--transition-base);
}

body.home-new-page #mainNavbar.scrolled {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 12px 38px rgba(15, 23, 42, 0.08);
    padding: 10px 0;
}

/* Language Dropdown Switcher styles */
body.home-new-page .navbar-lang-dropdown {
    margin-inline-end: 8px;
}

body.home-new-page .navbar-lang-dropdown .nav-link-dropdown {
    color: #231F20;
    font-size: 15px;
    font-weight: 500;
    padding: 6px 2px;
    border-radius: 0;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    direction: ltr;
    line-height: 1;
}

body.home-new-page .navbar-lang-dropdown .nav-link-dropdown:hover {
    color: var(--primary);
}

body.home-new-page .nav-language-icon {
    font-size: 14px;
    color: #231F20;
    margin: 0;
}

body.home-new-page .nav-language-label {
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0;
    color: #231F20;
}

body.home-new-page .nav-language-flag {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    object-fit: cover;
    flex: 0 0 20px;
}

body.home-new-page #navbar-lang-menu {
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    padding: 8px 0;
    min-width: 154px;
    background-color: var(--white);
}

body.home-new-page #navbar-lang-menu .dropdown-item {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 10px 16px;
    text-align: start;
    transition: all var(--transition-fast);
}

body.home-new-page #navbar-lang-menu .dropdown-item:hover {
    color: #006950;
    background-color: rgba(46, 138, 110, 0.06);
}

body.home-new-page .nav-language-option {
    display: flex;
    align-items: center;
    gap: 10px;
}

body.home-new-page .nav-language-option__flag {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    object-fit: cover;
    flex: 0 0 20px;
}

/* Responsive mobile view styles */
@media (max-width: 991.98px) {
    body.home-new-page #mainNavbar {
        background-color: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow-sm);
        position: relative;
        /* Keep it normal flow on smaller screens for cleaner spacing */
        padding: 10px 0;
    }

    body.home-new-page #navbarContent.show {
        background-color: var(--white);
        padding: 15px 10px;
        border-radius: var(--radius-md);
        margin-top: 10px;
    }

    body.home-new-page .navbar-lang-dropdown {
        margin-inline-end: 0;
        margin-bottom: 10px;
        width: 100%;
    }
}

#mainNavbar .container {
    min-height: var(--navbar-height);
    display: flex;
    align-items: center;
}

/* Logo */
.navbar-brand {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.nav-logo-img {
    border-radius: 0;
    width: 96px;
    object-fit: contain;
}

/* Nav Links */
.nav-links-center {
    gap: 4px;
}

.nav-links-center .nav-link {
    color: #231F20;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    position: relative;
    white-space: nowrap;
}

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

.nav-links-center .nav-link.active {
    color: #006950;
    font-weight: 700;
}

body.home-new-page .nav-links-center {
    gap: 0;
}

body.home-new-page .nav-links-center .nav-link {
    padding: 8px 12px;
    font-size: 15px;
}

body.home-new-page .nav-links-center .nav-link.active {
    color: #2e8a6e;
}

/* Dropdown */
.nav-link-dropdown {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-dropdown-icon {
    font-size: 10px;
    transition: transform var(--transition-fast);
}

.nav-item.dropdown .dropdown-menu {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    padding: 8px 0;
    min-width: 260px;
}

body.home-new-page .nav-item.dropdown .dropdown-menu {
    min-width: 192px;
    border-radius: 18px;
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.08);
    border-color: rgba(215, 221, 222, 0.95);
    padding: 10px 0;
}

.nav-item.dropdown .dropdown-item {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    padding: 10px 20px;
    transition: all var(--transition-fast);
}

.nav-item.dropdown .dropdown-item:hover {
    color: #006950;
    background-color: rgba(46, 138, 110, 0.06);
}

/* Navbar Actions */
.navbar-actions {
    gap: 12px;
}

body.home-new-page .navbar-actions {
    gap: 18px;
}

/* Unified Nav Action Button - Same style for both */
.btn-nav-action {
    background: transparent;
    color: #2E8A6E;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 24px;
    border-radius: var(--radius-lg);
    border: 1.5px solid #2E8A6E;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn-nav-action:hover {
    background-color: #2E8A6E;
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(46, 138, 110, 0.3);
}

.btn-nav-action:focus-visible {
    box-shadow: 0 0 0 3px rgba(46, 138, 110, 0.2);
}

/* Filled Button - تحقق من أهليتك */
.btn-nav-filled {
    background-color: #2E8A6E;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 24px;
    border-radius: var(--radius-lg);
    border: 1.5px solid #2E8A6E;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn-nav-filled:hover {
    background-color: transparent;
    border-color: #2E8A6E;
    color: #2E8A6E;
    transform: translateY(-1px);
}

.btn-nav-filled:focus-visible {
    box-shadow: 0 0 0 3px rgba(46, 138, 110, 0.3);
}

body.home-new-page #navContact {
    min-height: 45px;
    padding: 0 22px;
    border-radius: 14px;
    background-color: #2E8A6E;
    border-color: #2E8A6E;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
}

body.home-new-page #navContact:hover {
    background-color: #24745c;
    border-color: #24745c;
    color: #ffffff;
    transform: none;
}

body.home-new-page .flag-emoji {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.08rem;
    line-height: 1;
}

/* Toggler */
.navbar-toggler {
    border: 1px solid var(--border-light);
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(0, 105, 80, 0.15);
    border-color: var(--primary);
}

.navbar-toggler-icon {
    width: 22px;
    height: 22px;
}

.sahla-home-wrapper {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    background-color: #f8f9fa;
}

/* Base variables inheriting from global or defining scoped */
.sahla-home-wrapper {
    --sahla-primary: #2E8A6E;
    /* Matches exploration-style.css primary color */
    --sahla-primary-hover: #127a55;
    /* Matches exploration-style.css primary-dark */
    --sahla-dark: #0A0A0A;
    --sahla-text-muted: #7d879c;
    --sahla-border: #e5e9ec;
    --sahla-shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.03);
    --sahla-shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Utilities */
.sahla-home-wrapper .sahla-text-primary {
    color: var(--sahla-primary) !important;
}

.sahla-bg-primary {
    background-color: #2E8A6E !important;
    color: #fff !important;
}

/* Buttons */
.sahla-home-wrapper .btn-sahla-primary {
    background-color: var(--sahla-primary);
    color: #ffffff;
    border: 2px solid var(--sahla-primary);
    transition: all 0.3s ease;
}

.sahla-home-wrapper .btn-sahla-primary:hover {
    background-color: var(--sahla-primary-hover);
    border-color: var(--sahla-primary-hover);
    color: #ffffff;
}

.sahla-home-wrapper .btn-sahla-outline {
    background-color: transparent;
    color: var(--sahla-dark);
    border: 2px solid var(--sahla-border);
    transition: all 0.3s ease;
}

.sahla-home-wrapper .btn-sahla-outline:hover {
    background-color: #f1f3f5;
    border-color: #dee2e6;
    color: var(--sahla-dark);
}

/* Hero Section */
.sahla-hero-section {
    position: relative;
    min-height: calc(100vh - 82px);
    background-image: url('../imgs/sahla-plus/sahla-plus-hero.jpg');
    background-size: cover;
    background-position: center;
}

.sahla-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(98, 116, 142, 0.45) 0%, rgba(249, 250, 251, 0.8) 45%, #F9FAFB 85%, #F9FAFB 100%);
    z-index: 1;
}

.sahla-hero-section .container {
    z-index: 2;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0C1B33;
    letter-spacing: 0.5px;
    line-height: 2;
    white-space: wrap;
}


.hero-subtitle {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0c2340;
    letter-spacing: 0.5px;
}

.hero-description {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    max-width: 650px;
    line-height: 1.6;

}

.hero-btn-group {
    margin-top: 10px;
}

.hero-btn-group .btn {
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
}

.btn-primary-sahla {
    background-color: #1e7e65;
    color: #ffffff;
    border: 2px solid #1e7e65;
    box-shadow: 0 4px 15px rgba(30, 126, 101, 0.3);
}

.btn-primary-sahla:hover {
    background-color: #16634f;
    border-color: #16634f;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(30, 126, 101, 0.4);
}

.btn-outline-sahla {
    background-color: #ffffff;
    color: #0c2340;
    border: 2px solid #ffffff;
}

.btn-outline-sahla:hover {
    background-color: #f8f9fa;
    color: #0c2340;
    border-color: #f8f9fa;
}

/* Features Section */


.sahla-plus-page .section-title {
    font-weight: 400;
}

.sahla-features-section {
    background-color: #F9FAFB !important;
}

.sahla-feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* border-color: var(--sahla-border) !important; */
    background-color: #ffffff;
}

.sahla-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sahla-shadow-hover) !important;
    /* border-color: var(--sahla-primary) !important; */
}



/* Interactive Section */

.sahla-interactive-section {
    background-color: #FFFFFF !important;

}


.sahla-interactive-item {
    transition: all 0.3s ease-in-out !important;
    cursor: pointer;
    outline: none;
    /* reset button outline */
    color: #000000;
    border-bottom: 1px solid #EBEBEB;
}

.sahla-interactive-item:last-child {
    border: none;
}


.sahla-interactive-list {
    border-radius: 16px;
    border: 1px solid #EBEBEB;
    overflow: hidden;
    position: relative;
}



.sahla-interactive-item:hover {
    background: url(../imgs/sahla-plus/plus-pattern.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    box-shadow: var(--sahla-shadow-hover) !important;
}



.sahla-interactive-item i {
    transition: all 0.3s ease;
}

.sahla-interactive-item:hover i {
    transform: rotate(45deg) !important;
}

.sahla-interactive-item h6 {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    transition: color 0.3s ease;
}

.sahla-interactive-item p.sahla-interactive-desc {
    font-size: 16px;
    font-weight: 500;
    color: #667085;
    transition: color 0.3s ease;
}

.sahla-interactive-item .sahla-icon-box {
    width: 44px;
    min-width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sahla-interactive-item .sahla-icon-box img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    flex-shrink: 0;
}

.sahla-interactive-item:hover p.sahla-interactive-desc {
    font-weight: 700;
    color: #3F3F3F;
}


.sahla-interactive-item i {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    transition: color 0.3s ease;
}


@media (max-width:992px) {
    .sahla-interactive-item .sahla-icon-box {
        width: 30px;
        min-width: 30px;
        height: 30px;
        flex: 0 0 30px;
    }

    .sahla-interactive-item .sahla-icon-box img {
        width: 30px;
        height: 30px;
    }

    .sahla-interactive-item h3 {
        font-size: 14px !important;
    }

    .sahla-interactive-item p {
        font-size: 12px !important;
    }

}

/* Hover States for Text Colors */


/* CTA Features Section */
.sahla-features-cta {
    position: relative;
    background-image: url('../imgs/sahla-plus/sahla-plus-hero.jpg');
    background-size: cover;
    background-position: center center;
    min-height: 350px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
}

.sahla-features-cta>img {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    filter: grayscale(80%) opacity(70%);
}

.sahla-features-cta .container {
    position: relative;
    z-index: 2;
}

.sahla-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(46, 49, 50, 0.8) 100%);

}

.sahla-features-cta .cta-main-title {
    color: #9BF4D2 !important;
    font-weight: 700;
    font-size: 1.875rem;
}

.sahla-features-cta .feature-item {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
}

.sahla-features-cta .feature-icon {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    width: fit-content;
    height: fit-content;
}

.sahla-features-cta .btn-cta-white {
    background-color: #ffffff;
    color: #0c2340;
    font-weight: 400;
    font-size: 1.25rem;
    border-radius: 12px;
    padding: 20px 40px;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: none;
    box-shadow: none;
}

.sahla-features-cta .btn-cta-white:hover {
    background-color: #2E8A6E;
    color: #ffffff;
    transform: translateY(-2px);
}


@media (max-width:767px) {
    .sahla-features-cta .btn-cta-white {
        font-size: 1rem;
    }

    .sahla-features-cta .feature-item {
        font-size: 1rem;
    }

    .sahla-features-cta .cta-main-title {
        font-size: 1.25rem;
    }


}

/* Testimonials Section */
.sahla-testimonials {
    overflow: hidden;
    background-color: #F9FAFB;

}

.testimonials-badge {
    background-color: #ffffff;
    color: #667085;
    /* Muted dark text */
    border: 1px solid #e5e9ec;
    /* Subtle gray border */
    border-radius: 32px;
    /* Capsule */
    font-size: 1rem;
    font-weight: 600;
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 16px;
    transition: all 0.4s ease;
    text-align: start;
    padding: 40px 28px;
    transform: scale(0.9);

}

.swiper-slide-active .testimonial-card {
    opacity: 1;
    box-shadow:
        0 1.85px 3.15px 0 rgba(56, 56, 56, 0.0241),
        0 8.15px 6.52px 0 rgba(56, 56, 56, 0.0393) !important;
    position: relative;
    z-index: 2;
}

.testimonial-card:hover {
    transform: scale(0.92);
}

.swiper-slide-active .testimonial-card:hover {
    transform: scale(0.92);
}

.testimonial-card .testimonial-text {
    color: #425466;
    /* Soft charcoal/muted gray */
    font-size: 1rem;
    line-height: 1.7;
}

.testimonial-card .client-name {
    color: #313131;
    /* Sharp solid dark shade */
    font-size: 0.825rem;
}

.swiper-custom-next,
.swiper-custom-prev {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background-color: #ffffff;
    border: 1px solid #e5e9ec;
    color: #313131;
    transition: all 0.3s ease;
    cursor: pointer;
}

.swiper-custom-next:hover,
.swiper-custom-prev:hover {
    background-color: #f8f9fa;
}

.swiper-custom-next.active-btn,
.swiper-custom-prev.active-btn {
    background-color: #2E3132;
    color: #ffffff;
    border-color: #2E3132;
}

/* Contact Us Section */
.sahla-contact {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
}

.sahla-contact>img {
    position: absolute;
}

.sahla-contact .contact-bg1 {
    top: 0;
    right: 0;
}

.sahla-contact .contact-bg2 {
    bottom: 0;
    right: 0;
}

.sahla-contact .contact-bg3 {
    bottom: 0;
    right: 55%;
}

@media (max-width:992px) {
    .sahla-contact .contact-bg3 {
        display: none;
    }
}




.contact-badge {
    background-color: #ffffff;
    color: #667085;
    border: 1px solid #e5e9ec;
    border-radius: 32px;
    font-size: 1rem;
    font-weight: 600;
}

.contact-form-card,
.contact-info-card {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 2;
    border: 1px solid #f1f3f5;
}

.sahla-contact .contact-info-card img {
    position: absolute;
    bottom: 0;
    left: 0;
}

.sahla-contact .social-icon-circle img {
    position: static;
}

.form-title {
    font-size: 1rem;
    font-weight: 500;
    color: #0A0A0A;
}

.form-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #717182;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #0A0A0A;
}

.sahla-input {
    background-color: #F3F4F6;
    border: none;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.95rem;
    color: #1a202c;
    transition: all 0.3s ease;
}

.sahla-input:focus {
    background-color: #F3F4F6;
    box-shadow: 0 0 0 3px rgba(46, 138, 110, 0.15);
    outline: none;
}

.sahla-input::placeholder {
    color: #717182;
    font-size: 0.875rem;
    font-weight: 400;
}

html[lang^="ar"] #contact-email,
html[dir="rtl"] #contact-email {
    direction: rtl;
    text-align: right;
}

html[lang^="ar"] #contact-email::placeholder,
html[dir="rtl"] #contact-email::placeholder {
    text-align: right;
}

html[lang^="ar"] #contact-email:focus,
html[dir="rtl"] #contact-email:focus,
html[lang="ar"] #contact-email:not(:placeholder-shown) {
    direction: ltr;
    text-align: left;
}

.contact-success-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 18px;
    background:

        linear-gradient(135deg, rgba(37, 184, 139, 0.14) 22%, rgb(247 229 229 / 98%) 94%), #fff6f6;
    border: 1px solid rgba(46, 138, 110, 0.18);
    box-shadow: 0 18px 40px rgba(46, 138, 110, 0.08);
}

.contact-success-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #2E8A6E;
    background: linear-gradient(180deg, rgba(46, 138, 110, 0.16) 0%, rgba(46, 138, 110, 0.08) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
    font-size: 24px;
}

.contact-success-card__content strong {
    display: block;
    margin-bottom: 4px;
    color: #0F2A22;
    font-size: 16px;
    font-weight: 700;
}

.contact-success-card__content p {
    color: #5F6C7B;
    font-size: 14px;
    line-height: 1.8;
}

.btn-sahla-dark {
    background-color: #070b19;
    color: #ffffff;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: none;
    padding: 8px 16px;
}

.btn-sahla-dark:hover {
    background-color: #1a202c;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.info-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #313131;
    width: 24px;
}

.info-label {
    color: #0A0A0A;
    font-size: 16px;
    font-weight: 500;
}

.info-value {
    color: #717182;
    font-size: 16px;
    font-weight: 400;

}

a.info-value {
    text-decoration: none !important;
    color: inherit !important;
    display: block;
    transition: opacity 0.2s ease;
}

a.info-value:hover {
    text-decoration: none !important;
    color: #2E8A6E !important;
    opacity: 0.8;
}

/* Blog Section */
.sahla-blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    border-radius: 24px;
}

.info-title {
    font-size: 16px;
    font-weight: 500;
    color: #0A0A0A;
}

.info-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #717182;
}

.sahla-blog-card h5 {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
}

.sahla-blog-card p {
    font-size: 14px;
    font-weight: 400;
    color: #6A7282;
}

.sahla-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sahla-shadow-hover) !important;
}

.card-footer-info {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #E2E8F0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #99A1AF
}

.card-footer-info i {
    color: #99A1AF;
}

.sahla-blog-img-wrapper {
    height: 220px;
}

.sahla-blog-section .btn-link {
    color: #2E8A6E;
    font-size: 14px;
    font-weight: 700;
}

.sahla-blog-section .btn-link:hover {
    color: #2E8A6E;
}

/* CTA Banner Form */
.sahla-cta-form {
    width: 100%;
}

.sahla-input-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.sahla-cta-input {
    border-radius: 14px;
    background-color: #fff;
    border: none;
    color: #99A1AF;
}

.sahla-cta-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(46, 138, 110, 0.2);
}

.eligibility-desc {
    color: rgba(255, 255, 255, 0.7);
}

.eligibility-btn {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 14px;
    background-color: #2E8A6E;
    color: #ffffff;
    border: none;
    transition: all 0.3s ease;
}

.eligibility-btn:hover,
.eligibility-btn:focus,
.eligibility-btn:active {
    color: #ffffff !important;
    background-color: #127a55;
}



.sahla-section-badge {
    background-color: #fff !important;
    color: #667085;
    border: 1px solid #DFE1E5;
    padding: 12px 30px;
    border-radius: 32px;
    font-size: 24px;
    font-weight: 500;
    display: flex;
    width: fit-content;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    margin-bottom: 32px;
}

@media (max-width:767px) {
    .sahla-section-badge {
        font-size: 18px;
    }
}

.sahla-blog-section .section-title {
    font-weight: 600;
    /* margin-bottom: 32px; */
    font-size: 32px;
    text-align: center;
    color: #0A0A0A;
}

body.home-new-page .sahla-blog-section--home-new {
    background: #ffffff;
}

body.home-new-page .sahla-blog-section--home-new .container {
    max-width: 1120px;
}

body.home-new-page .sahla-blog-section__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-bottom: 14px;
}

body.home-new-page .sahla-blog-section--home-new .sahla-section-badge {
    margin-bottom: 26px;
    padding: 11px 28px;
    font-size: 19px;
    line-height: 1.2;
    color: #7b8794;
    border-color: #d8dee5;
    box-shadow: none;
}

body.home-new-page .sahla-blog-section--home-new .section-title {
    max-width: 900px;
    margin: 0 auto;
    color: #0F2A22;
    font-size: 33px;
    font-weight: 500;
    line-height: 1.55;
    letter-spacing: -0.8px;
}

body.home-new-page .sahla-blog-section__link-wrap {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    direction: ltr;
    text-align: left !important;
}

body.home-new-page .sahla-blog-section__link-wrap .btn-link {
    direction: rtl;
}

body.home-new-page .sahla-blog-section--home-new .btn-link {
    padding: 0;
    color: #2e8a6e;
    font-size: 19px;
    font-weight: 700;
}

body.home-new-page .sahla-blog-section--home-new .btn-link:hover {
    color: #2e8a6e;
    opacity: 0.9;
}

body.home-new-page .sahla-blog-card--home-new {
    border-radius: 28px;
    border: 1px solid #ebedf0 !important;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.04) !important;
}

body.home-new-page .sahla-blog-card--home-new .sahla-blog-img-wrapper {
    height: 280px;
    overflow: hidden;
}

body.home-new-page .sahla-blog-card--home-new .sahla-bg-primary {
    background-color: #659f87 !important;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 700;
}

body.home-new-page .sahla-blog-card--home-new .card-body {
    padding: 24px 24px 20px !important;
}

body.home-new-page .sahla-blog-card--home-new .card-title {
    color: #1f2a37;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.65;
}

body.home-new-page .sahla-blog-card--home-new .card-text {
    color: #5f6f82;
    font-size: 15px;
    line-height: 1.95;
}

body.home-new-page .sahla-blog-card--home-new .card-footer-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid #edf0f2;
    color: #5f6f82;
    font-size: 13px;
    font-weight: 500;
}

body.home-new-page .sahla-blog-card--home-new .card-footer-info i {
    color: #5f6f82;
}

body.home-new-page .sahla-blog-card--home-new:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08) !important;
}


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

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }
}

@media (max-width: 991.98px) {
    body.home-new-page .sahla-blog-section--home-new .section-title {
        font-size: 24px;
        line-height: 1.7;
    }

    body.home-new-page .sahla-blog-section--home-new .btn-link {
        font-size: 16px;
    }

    body.home-new-page .sahla-blog-card--home-new .sahla-blog-img-wrapper {
        height: 280px;
    }
}



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

.footer-links-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 13px;
}

.footer-links-list a:hover {
    color: #ffffff;
}

.social-icons .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons .social-icon:hover {
    background-color: #2E8A6E;
    transform: translateY(-3px);
}

@media (min-width:1400px) {
    .container {
        max-width: 1400px;
    }



}


@media (max-width:1400px) {
    .sahla-hero-section .container {
        margin-top: 0 !important;
    }

    .hero-title {
        margin-top: 0 !important;
        font-stretch: normal !important;

    }

    .sahla-hero-overlay {
        background: linear-gradient(180deg, rgba(98, 116, 142, 0.45) 0%, #F9FAFB 100%);
    }
}





/* Feature Section Container */
.features-section {
    width: 100%;
    max-width: 1400px;
    padding: 60px 24px 80px;
    margin: 0 auto;
}

/* Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Pill Badge "ما هي سهلة بلس" */
.pill-badge {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 50px;
    padding: 8px 28px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-gray);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    display: inline-block;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.pill-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(48, 191, 162, 0.1);
    color: var(--primary-teal);
    border-color: rgba(48, 191, 162, 0.2);
}

/* Main Title */
.main-heading {
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1.8;
    color: var(--dark-navy);
    max-width: 850px;
    margin: 0 auto;
}

/* Master Cards Wrapper */
.features-card-container {
    background-color: var(--card-bg);
    border: 1px solid #EBEBEB;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03), 0 1px 3px rgba(0, 0, 0, 0.01);
    overflow: hidden;
}

/* Grid Column Styling */
.feature-column {
    position: relative;
    padding: 80px 30px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

.feature-column .star-icon {
    position: absolute;
    top: 0;
    left: -38px;
    z-index: 1;
    width: 125px;
    opacity: 70%;
}

.feature-column:last-child .star-icon {
    right: -38px;
}

@media (max-width:992px) {
    .feature-column:last-child .star-icon {
        left: -38px;
        right: unset;
    }

}


/* Vertical dividers on desktop */
@media (min-width: 992px) {
    .feature-column:not(:last-child) {
        border-inline-end: 1px solid #EBEBEB;
    }
}

/* Dividers for stacked mobile layout */
@media (max-width: 991.98px) {
    .feature-column {
        padding: 30px 20px;
    }

    .feature-column:not(:last-child) {
        border-bottom: 1px solid #EBEBEB;
    }
}

/* Icon Box & Watermark */
.icon-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon {
    width: 64px;
    height: 64px;
    position: relative;
    z-index: 3;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.watermark-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    z-index: 1;
    pointer-events: none;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    opacity: 0.85;
}

/* Typography */
.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.feature-description {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.7;
    color: #3F3F3F;
    margin: 0;
    max-width: 260px;
    text-align: center;
}

/* Interactive Hover Animations */
.feature-column:hover {
    background-color: rgba(48, 191, 162, 0.01);
}

.feature-column:hover .feature-icon {
    transform: translateY(-8px) scale(1.05);
}

.feature-column:hover .watermark-bg {
    transform: translate(-50%, -50%) scale(1.2) rotate(45deg);
    opacity: 1;
}

.feature-column:hover .feature-title {
    color: var(--primary-teal);
}

/* ============================================
   FOOTER SECTION STYLES
   ============================================ */

.site-footer {
    background: linear-gradient(180deg, #FFFFFF76 0%, #2E8A6E4F 100%);
    padding: 60px 0 0;
    margin-top: auto;
    width: 100%;

}

/* Footer Logo */
.footer-logo {
    max-width: 130px;
    height: auto;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.03);
}

/* Footer Description */
.footer-description {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 15px;
    max-width: 300px;
}

/* Social Media Icons Row */
.social-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
}

.social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.17);
    color: rgba(0, 0, 0, 1);
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-icon-link:hover {
    background-color: #30bfa2;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(48, 191, 162, 0.25);
}

/* Footer Column Headings */
.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: #2E8A6E;
    margin-bottom: 22px;
    position: relative;
}

/* Footer Link Lists */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 0;
}

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

.footer-links a {
    font-size: 12px;
    font-weight: 400;
    color: #000000;
    text-decoration: none;
    transition: all 0.25s ease;
    position: relative;
    padding-inline-end: 0;
}


.footer-links a:hover {
    color: var(--primary-teal);
    padding-inline-end: 6px;
}



/* Copyright Bar */
.copyright-bar {
    padding: 20px 0;
    margin-top: 50px;
    text-align: center;
}

.copyright-text {
    font-size: 0.8rem;
    font-weight: 400;
    color: #333333;
    margin: 0;
}

/* Footer Responsive */
@media (max-width: 991.98px) {
    .site-footer {
        padding: 40px 0 0;
    }

    .footer-col {
        margin-bottom: 32px;
        text-align: start;
    }

    .footer-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }


    .footer-links {
        display: flex;
        flex-direction: column;
    }

    .copyright-bar {
        margin-top: 20px;
    }
}

/* ============================================
   FOLLOW US / SOCIAL ICONS (Contact Info Card)
   ============================================ */
.follow-us-section {
    position: relative;
    z-index: 3;
    padding-top: 8px;
}

.follow-us-title {
    font-size: 16px;
    font-weight: 500;
    color: #0A0A0A;
    text-align: start;
}

.social-icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #f0f0f0;
    color: #313131;
    font-size: 1.15rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
}

.social-icon-circle:hover {
    background-color: #2E8A6E;
    color: #ffffff;
    border-color: #2E8A6E;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(46, 138, 110, 0.3);
}

.social-icon-circle i {
    line-height: 1;
}

@media (max-width:992px) {
    body.sahla-plus .section-title {
        font-size: 1.875rem;
    }


}


@media (max-width:767px) {
    body.sahla-plus .section-title {
        font-size: 1.25rem;
    }

    body.sahla-plus .section-title br {
        display: none;
    }
}
}
