@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Syne:wght@400..800&family=Yantramanav:wght@100..900&display=swap');
@import url('https://maxst.icons8.com/vue-static/landings/line-awesome/line-awesome/1.3.0/css/line-awesome.min.css');

/* ============================================================== 
     # Variables & Design Tokens
=================================================================== */
:root {
    --dark1: #1C1C1C;
    --dark2: #454545;
    --light_white: #F9F9F9;
    --primary_color: #1351D8;
    --primary_color2: #4F8DFF;
    --primary_light: #F3F6FD;
    --primary_light2: rgba(19, 81, 216, 0.1);
    --gray: #D9D9D9;
    --font_syne: 'Syne', sans-serif;
    --font_yantramanv: 'Yantramanav', sans-serif;
    --font_dm: 'DM Sans', sans-serif;
    --yellow_color: #FFD600;
    --white: #ffffff;
    --border_radius: 10px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ============================================================== 
     # Global Resets & Scrollbars
=================================================================== */
*, *:before, *:after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font_dm);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark2);
    background-color: var(--light_white);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none !important;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font_yantramanv);
    color: var(--dark1);
    font-weight: 700;
}

/* Scrollbar Design */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: var(--light_white);
}
::-webkit-scrollbar-thumb {
    background: var(--gray);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--dark2);
}

/* ============================================================== 
     # Layout Components
=================================================================== */
.custom-container {
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 30px;
}

@media (max-width: 768px) {
    .custom-container {
        padding: 0 15px;
    }
}

.d-flex {
    display: flex;
}
.align-items-center {
    align-items: center;
}
.justify-content-between {
    justify-content: space-between;
}
.justify-content-center {
    justify-content: center;
}
.flex-column {
    flex-direction: column;
}
.flex-wrap {
    flex-wrap: wrap;
}
.flex-1 {
    flex: 1;
}
.w-full {
    width: 100%;
}
.gap-24 {
    gap: 24px;
}
.gap-12 {
    gap: 12px;
}

/* Typography elements */
.section-subtitle {
    font-family: var(--font_syne);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--primary_color);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font_yantramanv);
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: var(--dark1);
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .section-title {
        font-size: 42px;
    }
}
@media (max-width: 575px) {
    .section-title {
        font-size: 32px;
    }
}

/* ============================================================== 
     # Buttons (Synck Hover Effect)
=================================================================== */
.theme-btn, .theme-btn2 {
    font-family: var(--font_dm);
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    background: var(--primary_color);
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    border-radius: 30px;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
    z-index: 1;
    overflow: hidden;
    gap: 8px;
    border: none;
}

.theme-btn::before, .theme-btn::after,
.theme-btn2::before, .theme-btn2::after {
    content: '';
    width: 50%;
    height: 0;
    background: var(--dark1);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: var(--transition);
}

.theme-btn::after, .theme-btn2::after {
    left: auto;
    right: 0;
    top: auto;
    bottom: 0;
}

.theme-btn:hover::before, .theme-btn:hover::after,
.theme-btn2:hover::before, .theme-btn2:hover::after {
    height: 100%;
}

.theme-btn:hover, .theme-btn2:hover {
    color: var(--white);
}

.theme-btn:hover i, .theme-btn2:hover i {
    transform: rotate(45deg);
}

.theme-btn i, .theme-btn2 i {
    font-size: 16px;
    transition: transform 0.5s ease;
}

/* Button 2 Variant */
.theme-btn2 {
    background: #ffffff;
    color: var(--primary_color);
}

.theme-btn2::before, .theme-btn2::after {
    background: var(--primary_color);
}

.theme-btn2:hover {
    color: var(--white);
}

/* Simple shadow wrapper */
.simple-shadow {
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.03);
    border-radius: var(--border_radius);
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.simple-shadow:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.08);
}

/* ============================================================== 
     # Header & Navigation
=================================================================== */
.header-bar {
    background: var(--dark1);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
    font-family: var(--font_dm);
}

.header-bar .header-bar-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-bar .left-info span {
    margin-right: 20px;
}

.header-bar .left-info span a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.header-bar .left-info span a:hover {
    color: var(--primary_color2);
}

.header-bar .left-info span i {
    color: var(--primary_color2);
    margin-right: 6px;
}

.header-bar .right-marquee {
    color: var(--gray);
}

.header-bar .right-marquee a {
    color: var(--white);
    font-weight: 600;
    border-bottom: 1px solid;
    padding-bottom: 2px;
}

.header-area {
    background: var(--white);
    border-bottom: 1px solid var(--gray);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0px 2px 20px rgba(0,0,0,0.02);
}

.mobile-menu-btn-wrap, .mobile-drawer-info {
    display: none;
}

.header-area .custom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header-area .logo img {
    height: 45px;
    width: auto;
}

.header-area .navbar-wrapper ul {
    display: flex;
    gap: 35px;
    list-style: none;
}

.header-area .navbar-wrapper ul li a {
    font-family: var(--font_dm);
    font-size: 16px;
    font-weight: 600;
    color: var(--dark1);
    position: relative;
    padding: 10px 0;
}

.header-area .navbar-wrapper ul li a:hover,
.header-area .navbar-wrapper ul li.current-menu-item a {
    color: var(--primary_color);
}

.header-area .navbar-wrapper ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary_color);
    transition: var(--transition);
}

.header-area .navbar-wrapper ul li a:hover::after,
.header-area .navbar-wrapper ul li.current-menu-item a::after {
    width: 100%;
}

.header-area .menu-btn-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    color: var(--dark1);
    cursor: pointer;
}

/* ============================================================== 
     # Mobile Navigation Drawer
=================================================================== */
@media (max-width: 991px) {
    .header-area .navbar-wrapper {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: var(--white);
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
        padding: 80px 40px;
        transition: var(--transition);
        z-index: 2000;
        overflow-y: auto; /* تفعيل التمرير الرأسي لمنع اقتطاع المحتوى */
    }
    
    .header-area .navbar-wrapper.active {
        right: 0;
    }

    .header-area .navbar-wrapper ul {
        flex-direction: column;
        gap: 20px;
    }

    .header-bar {
        display: none !important;
    }

    .header-area .menu-btn-wrap .theme-btn {
        display: none;
    }

    .mobile-menu-btn-wrap {
        display: block;
    }

    .mobile-drawer-info {
        display: block;
        margin-top: 30px;
        text-align: left;
    }

    .drawer-info-divider {
        height: 1px;
        background: rgba(0, 0, 0, 0.08);
        margin-bottom: 20px;
        width: 100%;
    }

    .drawer-info-item {
        margin-bottom: 12px;
        font-size: 14px;
        font-family: var(--font_dm);
    }

    .drawer-info-item a {
        color: var(--dark1);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 500;
        transition: var(--transition);
    }

    .drawer-info-item a:hover {
        color: var(--primary_color);
    }

    .drawer-info-item i {
        color: var(--primary_color);
        font-size: 18px;
    }

    .drawer-info-item.text-muted {
        color: var(--gray);
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 500;
    }

    .drawer-info-item.text-muted i {
        color: var(--primary_color);
        font-size: 18px;
    }

    .drawer-info-rep {
        margin-top: 20px;
        background: var(--light_white);
        padding: 12px 15px;
        border-radius: 8px;
        font-size: 12px;
        line-height: 1.5;
        color: var(--dark2);
        border: 1px solid rgba(0,0,0,0.03);
    }

    .drawer-info-rep strong {
        color: var(--primary_color);
        font-weight: 700;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .close-menu {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 28px;
        background: none;
        border: none;
        cursor: pointer;
    }

    /* تنسيق القائمة المنسدلة للمنتجات في شاشات الجوال والتابلت */
    .mobile-only-item {
        display: block !important;
    }

    .header-area .navbar-wrapper .has-dropdown {
        width: 100%;
    }
    
    .header-area .navbar-wrapper .dropdown-menu {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        box-shadow: none !important;
        border: none !important;
        background: rgba(0, 0, 0, 0.02) !important;
        border-radius: 8px !important;
        padding: 10px !important;
        margin-top: 10px !important;
        display: none !important; /* إخفاء افتراضي على الموبايل */
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .header-area .navbar-wrapper .has-dropdown.open .dropdown-menu {
        display: flex !important;
    }
    
    .header-area .navbar-wrapper .dropdown-menu li a {
        padding: 10px !important;
        box-shadow: none !important;
        background: transparent !important;
    }
    
    .header-area .navbar-wrapper .dropdown-menu li a:hover {
        background: rgba(0, 0, 0, 0.04) !important;
    }

    .header-area .navbar-wrapper .has-dropdown > a i {
        transition: transform 0.3s ease;
    }

    /* تدوير السهم عند فتح القائمة المنسدلة */
    .header-area .navbar-wrapper .has-dropdown.open > a i {
        transform: rotate(180deg) !important;
    }
}

/* ============================================================== 
     # Hero Section (Empowerment)
=================================================================== */
.hero-empowerment-area {
    min-height: calc(100vh - 110px);
    display: flex;
    align-items: center;
    padding: 60px 0;
    background-color: #0f0f0f;
    position: relative;
    overflow: hidden;
}

.hero-empowerment-area .custom-container {
    width: 100%;
}

.hero-empowerment-area .custom-row {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-empowerment-left-content {
    flex: 1.1;
}

.hero-empowerment-left-content p {
    font-size: 18px;
    color: var(--dark2);
    margin-bottom: 35px;
    max-width: 600px;
}

.hero-empowerment-left-content .btns-group {
    display: flex;
    gap: 15px;
}

.hero-empowerment-right-content {
    flex: 0.9;
    position: relative;
}

.hero-empowerment-right-content .top-content {
    position: relative;
}

.hero-empowerment-right-content .top-content .desktop {
    width: 100%;
    border-radius: var(--border_radius);
    object-fit: cover;
}

.hero-badges-wrapper {
    position: absolute;
    bottom: -30px;
    left: -40px;
    display: flex;
    gap: 20px;
    z-index: 10;
}

.experience-box {
    background: var(--white);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.experience-box img {
    width: 50px;
    height: 50px;
}

.experience-box h1 {
    font-size: 40px;
    line-height: 1;
    color: var(--primary_color);
}

.experience-box p {
    font-size: 14px;
    color: var(--dark2);
}

.experience-box p span {
    display: block;
    font-weight: 700;
    color: var(--dark1);
}

.bottom-content {
    margin-top: 50px;
    display: flex;
    gap: 20px;
}

.our-expert-team-box, .google-reviews-box {
    flex: 1;
    background: var(--white);
    padding: 20px;
}

.our-expert-team-box-inner {
    display: flex;
    align-items: center;
    gap: 15px;
}

.our-expert-team-box .imgs {
    display: flex;
}

.our-expert-team-box .imgs img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--white);
    margin-left: -12px;
}

.our-expert-team-box .imgs img:first-child {
    margin-left: 0;
}

.our-expert-team-box p {
    font-size: 14px;
    color: var(--dark2);
}

.our-expert-team-box p span {
    display: block;
    font-weight: 700;
    color: var(--dark1);
}

.google-reviews-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.google-reviews-box .left span {
    font-size: 12px;
    color: var(--dark2);
    display: block;
}

.google-reviews-box .left img {
    height: 25px;
    margin-top: 5px;
}

.google-reviews-box .right {
    text-align: right;
}

.google-reviews-box .right .stars {
    color: var(--yellow_color);
    font-size: 16px;
    margin-bottom: 5px;
}

.google-reviews-box .right p {
    font-size: 14px;
    color: var(--dark2);
}

.google-reviews-box .right p span {
    display: block;
    font-weight: 700;
    color: var(--dark1);
}

@media (max-width: 991px) {
    .hero-empowerment-area {
        min-height: auto;
        padding: 120px 0 60px 0;
    }
    
    .hero-empowerment-area .custom-row {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-empowerment-left-content {
        text-align: center;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-empowerment-left-content .btns-group {
        justify-content: center;
    }
    
    .hero-empowerment-right-content {
        width: 100%;
        max-width: 100%;
        padding-left: 0px !important;
    }
    
    .hero-products-slideshow {
        height: 340px;
    }
    
    .hero-badges-wrapper {
        position: static;
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 25px;
        width: 100%;
    }
    
    .hero-badges-wrapper .experience-box {
        flex: 1;
        max-width: 180px;
        padding: 15px;
        min-width: unset;
    }
    
    .experience-box {
        left: 0;
        bottom: 0;
    }
    
    .bottom-content {
        flex-direction: column;
        margin-top: 30px;
    }
}

@media (max-width: 575px) {
    .hero-empowerment-area {
        padding: 100px 0 50px 0;
    }
    
    .hero-empowerment-left-content h1 {
        font-size: 28px !important;
        line-height: 1.3 !important;
    }
    
    .hero-empowerment-left-content p {
        font-size: 15px !important;
    }

    .hero-empowerment-left-content .btns-group {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        width: 100%;
    }

    .hero-empowerment-left-content .btns-group a {
        width: 100%;
        max-width: 290px;
        justify-content: center;
        text-align: center;
    }
    
    .hero-products-slideshow {
        height: 230px;
    }
    
    .hero-badges-wrapper {
        gap: 10px;
    }
    
    .hero-badges-wrapper .experience-box {
        padding: 10px 15px;
    }
    
    .hero-badges-wrapper .experience-box h1 {
        font-size: 24px !important;
    }
    
    .hero-badges-wrapper .experience-box p {
        font-size: 10px !important;
    }
    
    .hero-badges-wrapper .experience-box img {
        max-width: 80px !important;
        height: 30px !important;
    }

    .about-cards-grid {
        grid-template-columns: 1fr !important;
    }

    .projects-container-premium {
        border-radius: 12px !important;
        margin-top: 30px !important;
    }
    
    .project-row, .banner-row {
        padding: 25px 20px !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 15px !important;
    }
    
    .project-row > div, .banner-row > div {
        min-width: unset !important;
        width: 100% !important;
        flex: none !important;
    }
    
    .project-row h3, .banner-row h3 {
        font-size: 20px !important;
    }
    
    .project-row p {
        font-size: 14px !important;
    }
    
    .banner-row a {
        width: 100% !important;
        justify-content: center !important;
    }

    /* تقليص الفراغات والتباعد الرأسي للأقسام على شاشات الجوال */
    .how-we-do-area, 
    .about-area, 
    .service-area, 
    .case-studio-area, 
    .contact-area {
        padding: 55px 0 !important;
    }

    .about-iso-section {
        min-width: unset !important;
        width: 100% !important;
        margin: 0 auto !important;
        text-align: center !important;
    }

    .about-iso-grid {
        grid-template-columns: 1fr !important;
    }

    .about-tech-demand {
        min-width: unset !important;
        width: 100% !important;
        margin: 0 auto !important;
        text-align: center !important;
    }

    .case-studio-tabs {
        gap: 8px !important;
        margin-bottom: 25px !important;
    }

    .case-studio-tabs .nav-item button {
        font-size: 13px !important;
        padding: 8px 16px !important;
    }
}

/* ============================================================== 
     # Partners Marquee (Clients logo scrolling)
=================================================================== */
.client-area {
    background: var(--light_white);
    padding: 60px 0;
    border-bottom: 1px solid var(--gray);
    overflow: hidden;
}

.clients-marquee-row {
    display: flex;
    gap: 40px;
    width: max-content;
}

.clients-marquee-rtl {
    animation: scrollMarqueeRTL 35s linear infinite;
}

.clients-marquee-ltr {
    animation: scrollMarqueeLTR 35s linear infinite;
}

.client-logo {
    background: var(--white);
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    width: 200px;
    border-radius: var(--border_radius);
    border: 1px solid rgba(0,0,0,0.05);
}

.client-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    opacity: 0.95;
    transition: var(--transition);
}

.client-logo:hover img {
    transform: scale(1.05);
    opacity: 1;
}

@keyframes scrollMarqueeRTL {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scrollMarqueeLTR {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* ============================================================== 
     # How We Do (Our Process Section)
=================================================================== */
.how-we-do-area {
    padding: 120px 0;
    position: relative;
}

.how-we-do-area .custom-row {
    display: flex;
    gap: 50px;
}

.how-we-do-left-content {
    flex: 0.8;
}

.how-we-do-left-content .top {
    margin-bottom: 30px;
}

.how-we-do-left-content p {
    font-size: 18px;
    color: var(--dark2);
    margin-top: 15px;
}

.how-we-do-right-content {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.how-we-do-items {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.how-we-do-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border_radius);
    border: 1px solid rgba(0,0,0,0.05);
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}

.how-we-do-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary_color);
}

.how-we-do-icon {
    width: 70px;
    height: 70px;
    background: var(--primary_light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary_color);
}

.how-we-do-icon img {
    width: 35px;
    height: 35px;
}

.how-we-do-content h5 {
    font-size: 20px;
    margin-bottom: 8px;
}

.how-we-do-content p {
    font-size: 14px;
    color: var(--dark2);
}

@media (max-width: 991px) {
    .how-we-do-area .custom-row {
        flex-direction: column;
    }
    .how-we-do-items {
        flex-direction: column;
    }
}

/* ============================================================== 
     # Service Cards & Grid
=================================================================== */
.service-area {
    padding: 120px 0;
    background: var(--white);
}

.service-section-header {
    margin-bottom: 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.service-section-header .left {
    max-width: 700px;
}

.service-section-header p {
    max-width: 500px;
    font-size: 17px;
    color: var(--dark2);
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border_radius);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: var(--transition);
}

.service-card .service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
    object-fit: contain;
}

.service-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--dark2);
    font-size: 15px;
    margin-bottom: 20px;
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--yellow_color);
    color: var(--dark1);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .service-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

/* ============================================================== 
     # Products (Case Studies Tabs)
=================================================================== */
.case-studio-area {
    padding: 120px 0;
    background: var(--light_white);
}

.case-studio-header {
    text-align: center;
    margin-bottom: 50px;
}

.case-studio-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.case-studio-tabs .nav-item button {
    font-family: var(--font_dm);
    font-size: 16px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 30px;
    border: 1px solid var(--gray);
    background: var(--white);
    color: var(--dark1);
    cursor: pointer;
    transition: var(--transition);
}

.case-studio-tabs .nav-item button.active,
.case-studio-tabs .nav-item button:hover {
    background: var(--primary_color);
    color: var(--white);
    border-color: var(--primary_color);
}

.case-studio-tab-content .tab-pane {
    display: none;
}

.case-studio-tab-content .tab-pane.active {
    display: block;
}

.case-studio-body {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.case-studio-body .left {
    flex: 1.2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.case-studio-img-card {
    position: relative;
    border-radius: var(--border_radius);
    overflow: hidden;
    height: 380px;
}

.case-studio-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.case-studio-img-card:hover img {
    transform: scale(1.05);
}

.case-studio-cat {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--white);
    color: var(--primary_color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    z-index: 10;
}

.case-studio-body .right {
    flex: 0.8;
    display: flex;
}

.case-studio-contents {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
    height: 100%;
}

.case-studio-contents img {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
}

.case-studio-contents h4 {
    font-size: 28px;
    margin-bottom: 15px;
}

.case-studio-contents p {
    font-size: 16px;
    color: var(--dark2);
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .case-studio-body {
        flex-direction: column;
    }
    .case-studio-body .left {
        grid-template-columns: 1fr;
    }
    .case-studio-img-card {
        height: 280px;
    }
}

/* ============================================================== 
     # About Page (Timeline & Checklists)
=================================================================== */
.about-area {
    padding: 120px 0;
    background: var(--white);
}

.about-area .custom-row {
    display: flex;
    gap: 60px;
}

.about-area .left-content {
    flex: 1;
}

.about-area .left-content p {
    font-size: 18px;
    color: var(--dark2);
    margin-bottom: 30px;
}

.about-area .left-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.about-area .left-content ul li {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark1);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-area .left-content ul li i {
    color: var(--white);
    background: var(--primary_color);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.about-area .right-content {
    flex: 1;
}

.about-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    padding-left: 30px;
}

.about-timeline::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 8px;
    width: 2px;
    height: calc(100% - 40px);
    background: var(--gray);
}

.about-timeline-item {
    position: relative;
}

.about-timeline-item .number {
    position: absolute;
    left: -37px;
    top: 0;
    width: 30px;
    height: 30px;
    background: var(--white);
    border: 2px solid var(--primary_color);
    color: var(--primary_color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.about-timeline-item-inner h4 {
    font-size: 22px;
    margin-bottom: 10px;
}

.about-timeline-item-inner p {
    color: var(--dark2);
}

@media (max-width: 991px) {
    .about-area .custom-row {
        flex-direction: column;
    }
}

/* ============================================================== 
     # Testimonials (Swiper Slider Styling)
=================================================================== */
.testimonial-area {
    padding: 120px 0;
    background: var(--primary_light);
}

.testimonial-slider-wrap {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-item {
    background: var(--white);
    padding: 50px;
    border-radius: var(--border_radius);
    position: relative;
}

.testimonial-item .platform-name {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 24px;
    color: var(--primary_color);
}

.testimonial-item h2 {
    font-size: 28px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 20px;
}

.testimonial-item p {
    font-size: 16px;
    color: var(--dark2);
    margin-bottom: 30px;
}

.author-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-box img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-box-content h5 {
    font-size: 18px;
    margin-bottom: 4px;
}

.author-box-content p {
    margin-bottom: 0;
    font-size: 14px;
    color: var(--dark2);
}

/* Swiper navigation buttons */
.swiper-button-prev, .swiper-button-next {
    color: var(--primary_color);
    background: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.swiper-button-prev:hover, .swiper-button-next:hover {
    background: var(--primary_color);
    color: var(--white);
}

/* ============================================================== 
     # Footer Section
=================================================================== */
footer {
    background: var(--dark1);
    color: var(--white);
    padding: 80px 0 30px 0;
}

footer .footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 60px;
    margin-bottom: 40px;
}

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

footer .footer-about p {
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 25px;
    max-width: 350px;
}

footer .social-links {
    display: flex;
    gap: 15px;
}

footer .social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
}

footer .social-links a:hover {
    background: var(--primary_color);
}

footer .footer-column h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 25px;
    font-family: var(--font_syne);
}

footer .footer-column ul {
    list-style: none;
}

footer .footer-column ul li {
    margin-bottom: 15px;
}

footer .footer-column ul li a {
    color: var(--gray);
    font-size: 15px;
}

footer .footer-column ul li a:hover {
    color: var(--primary_color2);
}

footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray);
    font-size: 14px;
}

@media (max-width: 991px) {
    footer .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575px) {
    footer .footer-top {
        grid-template-columns: 1fr;
    }
    footer .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* ============================================================== 
     # Pages Styles (Contact / FAQ / Products Details)
=================================================================== */

/* Breadcrumb area */
.breadcrumb-area {
  padding: 100px 0;
  background: linear-gradient(rgba(9, 29, 41, 0), rgba(9, 29, 41, 0)), url('../imgs/breadcrumb_bg.jpg') no-repeat center center / cover;
  text-align: center;
  color: var(--white);
}

.breadcrumb-area h1 {
    font-size: 48px;
    margin-bottom: 10px;
    color: var(--white);
}

.breadcrumb-list {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-list a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.breadcrumb-list a:hover {
    color: var(--primary_color2);
}

.breadcrumb-list li a:hover {
    color: var(--primary_color);
}

/* Contact page structures */
.contact-area {
    padding: 120px 0;
}

.contact-row {
    display: flex;
    gap: 60px;
}

.contact-info-wrap {
    flex: 0.8;
}

.contact-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border_radius);
    border: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-card .icon {
    font-size: 32px;
    color: var(--primary_color);
    background: var(--primary_light);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.contact-card p {
    color: var(--dark2);
    font-size: 15px;
}

.contact-form-wrap {
    flex: 1.2;
    background: var(--white);
    padding: 50px;
    border-radius: var(--border_radius);
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark1);
    margin-bottom: 8px;
}

.contact-form .form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--gray);
    border-radius: var(--border_radius);
    font-family: var(--font_dm);
    font-size: 15px;
    transition: var(--transition);
}

.contact-form .form-control:focus {
    border-color: var(--primary_color);
}

/* Accordion for FAQ */
.faq-area {
    padding: 120px 0;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border_radius);
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-header {
    padding: 24px 30px;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark1);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-header i {
    transition: var(--transition);
}

.faq-item.active .faq-header i {
    transform: rotate(180deg);
}

.faq-body {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--dark2);
    font-size: 15px;
}

.faq-item.active .faq-body {
    padding: 0 30px 24px 30px;
    max-height: 500px;
}

/* Product Details specifics */
.product-details-area {
    padding: 120px 0;
}

.product-details-row {
    display: flex;
    gap: 60px;
}

.product-details-img {
    flex: 1;
}

.product-details-img img {
    width: 100%;
    border-radius: var(--border_radius);
    box-shadow: 0px 10px 40px rgba(0,0,0,0.05);
}

.product-details-content {
    flex: 1;
}

.product-details-content .desc1 {
    font-size: 18px;
    color: var(--dark1);
    margin-bottom: 20px;
}

.product-details-content .desc2 {
    color: var(--dark2);
    margin-bottom: 35px;
}

.advantages-list-title {
    font-size: 22px;
    margin-bottom: 20px;
}

.advantages-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    list-style: none;
    margin-bottom: 35px;
}

.advantages-list li {
    width: calc(50% - 10px);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--dark2);
}

.advantages-list li i {
    color: var(--primary_color);
    font-size: 18px;
    margin-top: 2px;
}

@media (max-width: 991px) {
    .contact-row, .product-details-row {
        flex-direction: column;
    }
    .advantages-list li {
        width: 100%;
    }
}

/* Navigation Dropdown Menu styling */
.has-dropdown {
    position: relative;
}

@media (min-width: 992px) {
    .mobile-only-item {
        display: none !important;
    }
    .has-dropdown:hover .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateX(-50%) translateY(0) scale(1) !important;
    }
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px) scale(0.97);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-radius: 14px;
    width: 380px;
    padding: 15px !important;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
    border: 1px solid rgba(0, 0, 0, 0.06);
    text-align: left;
}

.dropdown-menu li {
    margin: 0 !important;
    width: 100% !important;
}

.dropdown-menu li a {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    padding: 12px 14px !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
    background: transparent !important;
    border: none !important;
    width: 100%;
}

.dropdown-menu li a::after {
    display: none !important;
}

.dropdown-menu li a .dp-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--light_white);
    color: var(--dark1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.dropdown-menu li a .dp-item-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dropdown-menu li a .dp-item-title {
    font-family: var(--font_syne);
    font-size: 14px;
    font-weight: 700;
    color: var(--dark1);
    transition: color 0.25s ease;
    display: block;
}

.dropdown-menu li a .dp-item-desc {
    font-size: 11px;
    color: var(--dark2);
    display: block;
}

/* Hover effects */
.dropdown-menu li a:hover {
    background: var(--primary_light) !important;
}

.dropdown-menu li a:hover .dp-item-icon {
    background: var(--primary_color);
    color: var(--white);
}

.dropdown-menu li a:hover .dp-item-title {
    color: var(--primary_color);
}

/* Quote Request Modal CSS */
.quote-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 24, 63, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.quote-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.quote-modal-card {
    background: var(--white);
    border-radius: 16px;
    width: 100%;
    max-width: 650px;
    padding: 40px;
    position: relative;
    box-shadow: 0 30px 70px rgba(6, 24, 63, 0.25);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.quote-modal-overlay.active .quote-modal-card {
    transform: translateY(0) scale(1);
}

.quote-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--light_white);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 22px;
    line-height: 36px;
    text-align: center;
    cursor: pointer;
    color: var(--dark1);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-modal-close:hover {
    background: #ff4d4d;
    color: var(--white);
}

.quote-modal-header {
    text-align: left;
    margin-bottom: 30px;
}

.quote-modal-header .modal-badge {
    background: var(--primary_light);
    color: var(--primary_color);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-block;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.quote-modal-header h3 {
    font-family: var(--font_syne);
    font-size: 26px;
    font-weight: 600;
    color: var(--dark1);
    margin: 0 0 8px 0;
}

.quote-modal-header p {
    font-size: 14px;
    color: var(--dark2);
    margin: 0;
    line-height: 1.5;
}

.quote-modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.modal-form-row {
    display: flex;
    gap: 20px;
}

.modal-form-row .modal-form-group {
    flex: 1;
}

.modal-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.modal-form-group label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--dark1);
    letter-spacing: 0.5px;
}

.modal-form-group input,
.modal-form-group select,
.modal-form-group textarea {
    width: 100%;
    padding: 12px 18px;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.08);
    background: var(--white);
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: var(--font_dm);
}

.modal-form-group input:focus,
.modal-form-group select:focus,
.modal-form-group textarea:focus {
    border-color: var(--primary_color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 71, 255, 0.1);
}

.modal-form-group select {
    height: 48px;
    cursor: pointer;
}

@media (max-width: 575px) {
    .quote-modal-overlay {
        align-items: flex-start !important;
        overflow-y: auto !important;
        padding: 40px 15px !important;
    }

    .modal-form-row {
        flex-direction: column;
        gap: 20px;
    }

    .quote-modal-card {
        padding: 25px 15px !important;
        margin: 0 auto !important;
        max-width: 100% !important;
    }

    .quote-modal-header h3 {
        font-size: 20px !important;
    }

    .quote-modal-header p {
        font-size: 12px !important;
    }

    .modal-form-group label {
        font-size: 13px !important;
    }

    .modal-form-group input, 
    .modal-form-group select, 
    .modal-form-group textarea {
        padding: 10px 12px !important;
        font-size: 13px !important;
    }
}

/* Custom Floating Toast Notification */
.custom-toast-notification {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 20px 40px rgba(6, 24, 63, 0.15);
    border-radius: 50px;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 11000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 71, 255, 0.08);
}

.custom-toast-notification.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.custom-toast-notification .toast-icon {
    width: 28px;
    height: 28px;
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.custom-toast-notification .toast-message {
    font-family: var(--font_dm);
    font-size: 14px;
    font-weight: 600;
    color: var(--dark1);
    white-space: nowrap;
}

/* Tech Grid Background */
.tech-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.tech-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 30%, #0f0f0f 100%);
    pointer-events: none;
    z-index: 0;
}

@keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

/* Wavy flowing wind currents in Hero */
.wind-currents-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
}

.wind-line {
    position: absolute;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(0, 71, 255, 0.28) 50%, rgba(255,255,255,0) 100%);
    border-radius: 50%;
    animation: flowWind 10s infinite ease-in-out;
    opacity: 0;
}

@keyframes flowWind {
    0% {
        left: -400px;
        transform: translateY(0) scaleX(0.5);
        opacity: 0;
    }
    15% {
        opacity: 0.8;
    }
    50% {
        transform: translateY(30px) scaleX(1.3);
    }
    85% {
        opacity: 0.8;
    }
    100% {
        left: 100%;
        transform: translateY(-20px) scaleX(0.5);
        opacity: 0;
    }
}

.wind-line.line-1 {
    top: 15%;
    width: 350px;
    height: 4px;
    animation-duration: 9s;
    animation-delay: 0s;
}

.wind-line.line-2 {
    top: 30%;
    width: 250px;
    height: 3px;
    animation-duration: 7s;
    animation-delay: 2.5s;
}

.wind-line.line-3 {
    top: 45%;
    width: 400px;
    height: 5px;
    animation-duration: 11s;
    animation-delay: 1.2s;
}

.wind-line.line-4 {
    top: 60%;
    width: 300px;
    height: 4px;
    animation-duration: 8.5s;
    animation-delay: 4.8s;
}

.wind-line.line-5 {
    top: 75%;
    width: 280px;
    height: 3px;
    animation-duration: 6.5s;
    animation-delay: 3s;
}

.wind-line.line-6 {
    top: 25%;
    width: 380px;
    height: 4px;
    animation-duration: 10s;
    animation-delay: 5.5s;
}

.wind-line.line-7 {
    top: 85%;
    width: 320px;
    height: 4px;
    animation-duration: 12s;
    animation-delay: 1.8s;
}

/* Hero Products Slideshow CSS */
.hero-products-slideshow {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 10px; /* حواف ناعمة بمقدار 10px */
    overflow: hidden;
    border: none; /* بدون أي إطار خارجي */
    box-shadow: 0 20px 40px rgba(6, 24, 63, 0.08);
}

.product-slide {
    position: absolute;
    top: 8%;
    left: 8%;
    width: 84%;
    height: 84%;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
    transform: scale(0.95); /* تأثير التكبير الطفيف للأمام للظهور بشكل منبثق ناعم */
    z-index: 0;
}

.product-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

/* Global Scroll Reveal Animation */
.reveal-section, .reveal-left, .reveal-right {
    opacity: 0;
    will-change: opacity, transform;
}

.reveal-section {
    transform: translateY(50px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0s;
}

.reveal-left {
    transform: translateX(-60px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.2s;
}

.reveal-right {
    transform: translateX(60px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.2s;
}

/* Revealed States */
.reveal-section.global-revealed,
.reveal-left.global-revealed,
.reveal-right.global-revealed {
    opacity: 1;
    transform: translate(0, 0);
}

/* Unique Breadcrumb Backgrounds */
.breadcrumb-area.bg-about {
  background: linear-gradient(rgba(7, 11, 20, 0.75), rgba(7, 11, 20, 0.75)), url('../imgs/section-bg2-algiers.png') no-repeat center center / cover;
}
.breadcrumb-area.bg-products {
  background: linear-gradient(rgba(7, 11, 20, 0.75), rgba(7, 11, 20, 0.75)), url('../imgs/breadcrumb_products.png') no-repeat center center / cover;
}
.breadcrumb-area.bg-services {
  background: linear-gradient(rgba(7, 11, 20, 0.75), rgba(7, 11, 20, 0.75)), url('../imgs/cta_bg.jpg') no-repeat center center / cover;
}
.breadcrumb-area.bg-location {
  background: linear-gradient(rgba(7, 11, 20, 0.75), rgba(7, 11, 20, 0.75)), url('../imgs/section-bg-algiers.png') no-repeat center center / cover;
}
.breadcrumb-area.bg-contact {
  background: linear-gradient(rgba(7, 11, 20, 0.75), rgba(7, 11, 20, 0.75)), url('../imgs/cliref_banner_4.jpg') no-repeat center center / cover;
}
.breadcrumb-area.bg-faqs {
  background: linear-gradient(rgba(7, 11, 20, 0.75), rgba(7, 11, 20, 0.75)), url('../imgs/breadcrumb_faqs.png') no-repeat center center / cover;
}
.breadcrumb-area.bg-testimonials {
  background: linear-gradient(rgba(7, 11, 20, 0.75), rgba(7, 11, 20, 0.75)), url('../imgs/breadcrumb_bg.jpg') no-repeat center center / cover;
}

