/*Home*/
* {
    box-sizing: border-box;
}

body {
    font-family: "Space Grotesk", sans-serif !important;
    padding: 0;
    margin: 0;
}

/* Arabic Specific */
[lang="ar"] body {
    direction: rtl;
    text-align: right;
    font-family: "Cairo", sans-serif !important;
}

[lang="ar"] body .back_to_top {
    left: 30px;
    right: unset;
}

a {
    text-decoration: none !important;
}

.header_wrap ul.navbar-nav li.nav-item a.active {
    color: #217abc;
    font-weight: 800;
}

.navbar-nav .nav-link:hover {
    color: #217abc;
}

.btn-custom {
    background-color: #18bc9c;
    color: #fff;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 30px;
}

.btn-custom:hover {
    background-color: #149e83;
}

/* Base container-large for LTR (English) */
.container-large {
    max-width: 1800px;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
    /* Center container horizontally */
    display: block;
    box-sizing: border-box;
    /* include padding in width */
    position: relative;
    /* prevent RTL weird offset */
}

.container-small {
    width: 100%;
    max-width: 1350px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* Header */
.page-header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 9;
}

.page-header.is-sticky {
    position: fixed;
    animation: slideDown 0.35s ease-out;
    margin: 10px auto;
    z-index: 999;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.page-header.is-sticky .header_wrap {
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
    margin-top: 0;
}

/* .page-header.is-sticky .header_wrap .logo_main img {
    max-width: 70px;
}
.page-header.is-sticky .header_wrap .logo_company_name {
        font-size: 24px;
} */
.header_wrap {
    background-color: #ffffff;
    border-radius: 25px;
    margin-top: 30px;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    width: 100%;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.logo_main {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
    margin-right: 0px !important;
}

.logo_main img {
    width: 100%;
    max-width: 360px;
    height: auto;
}

.logo_company_name {
    display: none;
    text-decoration: none;
    font-size: 26px;
    text-align: left;
    font-weight: bolder;
    font-family: "Cairo", sans-serif !important;
    color: #144443;
}

.language_toggle_btn {
    display: flex;
    justify-content: end;
    align-items: center;
}

/* Hide on medium screens (tablets: 768px to 1024px) */
@media screen and (max-width: 1024px) {
    .logo_company_name {
        display: none;
    }
}

/* Hide on small screens (mobiles: < 768px) */
@media screen and (max-width: 768px) {
    .logo_company_name {
        display: none;
    }
}


.navbar-nav .nav-link {
    margin-left: 15px;
    color: #222;
    font-weight: 700;
    font-size: 18px;
}

/* .header_wrap .toggle_btn {
    background-color: #217abc;
    border-radius: 75px;
    justify-content: center;
    align-items: center;
    padding: 14px 40px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    position: relative;
    overflow: hidden;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 1px solid #ffffff00;
}

.header_wrap .toggle_btn:hover {
    background-color: #fff;
    color: #144443;
    border: 1px solid #144443;
} */
.toggle_btn {
    display: inline-block;
    padding: 14px 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    background-image: linear-gradient(to left top, #227abc, #0081af, #008495, #008374, #348054);
    background-size: 200% 200%;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    font-family: "Cairo", sans-serif !important;
}

/* Hover state */
.toggle_btn:hover {
    background-position: right center;
    /* animate gradient */
    transform: translateY(-3px);
    /* lift */
    box-shadow: 0 6px 20px rgba(0, 129, 175, 0.4);
    /* glow */
}

/* Optional: Active/Click effect */
.toggle_btn:active {
    transform: translateY(0);
    /* pressed down */
    box-shadow: 0 3px 8px rgba(0, 129, 175, 0.3);
}

/* Hero Section */
.hero-section {
    background: #227ABC20;
}

.hero-content-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-rows: auto;
    grid-template-columns: 1.1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
    padding-top: 180px;
}

.hero-content {
    /* background-color: #144443; */
    border-radius: 25px;
    padding: 100px;
    /* background-image: linear-gradient(to left top, #227abc, #0081af, #008495, #008374, #348054); */
    background-image: linear-gradient(to left top, #26314b, #004661, #005b6b, #006f65, #348054);
}

/* .hero_img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
} */
.hero_img {
    height: 943px;
}

.hero_img img {
    object-fit: cover;
    border-radius: 20px;
    height: 100%;
    max-width: 100%;
    display: inline-block;
    width: 100%;
}

.hero-section h1 {
    font-size: 58px;
    font-weight: bold;
    color: #fff;
}

.hero-content p {
    font-size: 26px;
    line-height: 38px;
    color: #fff;
    margin-top: 30px;
}

.hero-content a.theme_btn {
    margin-top: 60px;
}

.theme_btn {
    background-color: #fff;
    color: #144443;
    border-radius: 75px;
    padding: 16px 60px;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    font-size: 18px;
    display: inline-block;
    transition: all 0.3s ease;
}

.theme_btn:hover {
    background-color: #26314b;
    color: #fff;
}
.theme_para_dark {
    font-size: 18px;
    line-height: 1.5em;
    color: #545454;
}
/* Consulting Section */
.consulting-section img {
    border-radius: 10px;
}

/* About Section */
.about-section .counter {
    font-size: 2.5rem;
    font-weight: bold;
    color: #18bc9c;
}

/* Services Section */
/*
.services-section .card {
    background-color: #143c3c;
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}

.services-section .card:hover {
    background-color: #18bc9c;
    transform: translateY(-5px);
}

/* Why Choose Us
.why-choose-us {
    background-color: #f8f9fa;
    padding: 60px 0;
}*/

/* Client Logos */
.client-logos img {
    max-height: 60px;
    opacity: 0.8;
    transition: 0.3s;
}

.client-logos img:hover {
    opacity: 1;
}

/* FAQ */
.faq-section .accordion-button:not(.collapsed) {
    background-color: #18bc9c;
    color: #fff;
}

.floating_lang_btn .toggle_btn {
    display: none;
}

/* Footer */
footer {
    /* background: #002727; */
    color: #fff;
    background-image: linear-gradient(to bottom, #26314b, #004661, #005b6b, #006f65, #348054);
}

/* footer */
.footer_mid_box img {
    border-radius: 10px;
    background-color: #ffffff;
    object-fit: cover;
    padding: 10px;
}

.footer_asidebox {
    flex-flow: column;
    justify-content: flex-start;
    padding-top: 70px;
    padding-bottom: 20px;
    display: flex;
}

.footer_asidebox:last-child {
    padding-left: 100px;
}

.footer_mid_box.text-center {
    border-left: 1px solid #ffffff1a;
    border-right: 1px solid #ffffff1a;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    padding: 70px 20px;
    display: flex;
    gap: 25px;
}

h4.footer_title {
    margin-bottom: 25px;
    font-size: 20px;
    display: block;
}

.footer_links {
    list-style: none;
    margin-bottom: 12px;
}

.footer_links a {
    color: #fff;
    font-family: Spacegrotesk, Arial, sans-serif;
    font-size: 20px;
    font-weight: 400;
    text-decoration: none;
    transition: all .35s;
}

.footer_links a:hover {
    color: #23b07e;
}

.footer_mid_box .logo_main .logo_company_name {
    color: #fafafa;
}

.footer_title_lg {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2em;
}

.footer-copyright-area {
    text-align: center;
    border-top: 1px solid #ffffff26;
    padding-top: 15px;
    padding-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cmpny_details_wrap {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.footer-copyright-area .color-white {
    font-size: 18px;
}

.cmpny_details_wrap .details {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.9px;
    font-family: "Cairo", sans-serif !important;
}

.scrolling_wrapper {
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0;
    position: relative;
}
[lang="ar"] body .scrolling_wrapper{
     padding: 20px 0;
}
/* Inner content */
.scrolling_wrapper .scrolling_content {
    display: inline-block;
    /* Start off screen */
    animation: scroll-left 60s linear infinite;

}

.scrolling_txt_1 {
    color: #002b2b00;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #26314b;
    text-transform: uppercase;
    flex: none;
    font-size: 120px;
    font-weight: 700;
    line-height: 1em;
}

.scrolling_txt_2 {
    color: #26314b;
    text-transform: uppercase;
    flex: none;
    font-size: 120px;
    font-weight: 700;
    line-height: 1em;
}

/* Animation */
@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.hero-section .scrolling_wrapper {
    padding-top: 80px;
}

.stats-container {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    display: flex;
    position: relative;
}

.about-border-wrap {
    grid-column-gap: 3px;
    grid-row-gap: 3px;
    display: flex;
    position: absolute;
    inset: 11% auto 0% 0%;
}

.about-experience-border {
    background-color: #144443;
    flex: none;
    width: 2px;
    height: 100%;
}

.abt_stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding-left: 60px;
}

.abt_content {
    margin-bottom: 60px;
}

.stats-container .stat {
    padding-left: 50px;
    text-align: center;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 130px;
}

.stats-container .stat .odometer {
    font-size: 170px;
    font-weight: bold;
    display: inline-block;
    font-family: "Space Grotesk", sans-serif !important;
}

.stats-container .stat .type {
    color: #002b2b;
    font-family: Spacegrotesk, Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2em;
}

.odometer.plus {
    position: relative;
}

.odometer.plus::after {
    content: "+";
    position: absolute;
    top: 0;
    right: -85px;
    font-size: 140px;
}


.section-subtitle {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    border: 1px solid #26314b;
    border-radius: 100px;
    justify-content: flex-start;
    align-items: center;
    padding: 6px 20px;
    font-weight: 400;
    line-height: 1.2em;
    display: inline-flex;
    font-weight: 700;
    font-size: 18px;
}

.subtitle-dot {
    background-color: #26314b;
    border-radius: 50%;
    width: 10px;
    height: 10px;
}


.about-heading {
    margin-top: 30px;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2em;
    color: #26314b;
}

.custom_padding {
    padding: 80px 0px;
}

.about-experience {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    place-items: stretch start;
    display: grid;
}

.about-mission-vission-content {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    padding-top: 60px;
    padding-right: 170px;
    display: flex;
}

.abt_img {
    width: 100%;
}

.abt_img img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.about-missoin-title {
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.5em;
}

/* .theme_btn_dark {
    background-color: #144443;
    color: #fff;
    background-image: linear-gradient(to left top, #227abc, #0081af, #008495, #008374, #348054);
}

.theme_btn_dark:hover {
    background-color: #002b2b;
    color: #fff;
} */
.theme_btn_dark,
.contact-us-form-button {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    background-image: linear-gradient(to left top, #227abc, #0081af, #008495, #008374, #348054);
    background-size: 200% 200%;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Hover state */
.theme_btn_dark:hover,
.contact-us-form-button:hover {
    background-position: right center;
    /* animate gradient */
    transform: translateY(-3px);
    /* lift */
    box-shadow: 0 6px 20px rgba(0, 129, 175, 0.4);
    /* glow */
    color: #ffffff;
}

/* Optional: Active/Click effect */
.theme_btn_dark:active,
.contact-us-form-button:active {
    transform: translateY(0);
    /* pressed down */
    box-shadow: 0 3px 8px rgba(0, 129, 175, 0.3);
}

/*
#conteneur {
    width: 80%;
    margin: 30px auto;
    height: 80vh;
    font-family: 'Montserrat', sans-serif;
}

.accordeon {
    border:none;
    border-radius: 25px;
    width: 100%;
    height: 100%;
    background-color: #dde9e8;
    transform: translateZ(0);
}

.accordeon:hover .link {
    width: 5%;
}

.accordeon .link {
    border:none;
    border-radius: 25px;
    position: relative;
    float: left;
    width: 25%;
    height: 100%;
    color: black;
    border-right: 2px solid #dde9e8;
    overflow: hidden;
    cursor: pointer;
    transition: .5s ease-out;
}

.accordeon .link:last-child {
    border-right: 0;
}

.accordeon .link:hover {
    width: 85%;
    background-color: #eaeaea;
}

.accordeon .link:hover img {
    filter: brightness(0%);
}

.accordeon .link .small {
    position: absolute;
    top: 10px;
    width: 100px;
    line-height: 78px;
    text-align: center;
    font-size: 24px;
}

.accordeon .link .small img {
    transition: .5s ease-out;
    width: 30px;
}

.accordeon .link .full {
    position: absolute;
    top: 22px;
    left: 100px;
    text-transform: uppercase;
}

.accordeon .link .full .f1,
.accordeon .link .full .f2 {
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
    text-align: justify;
    margin-right:5px;
}

.accordeon .link .full .f2 {
    margin-top: 8px;
    font-size: 12px;
}

.accordeon .link .prev {
    position: absolute;
    bottom: 20px;
    left: 10px;
    font-size: 12px;
    line-height: 78px;
    transition: .5s opacity;
    opacity: 0;
}

.accordeon .link .prev img {
    width: 30px;
}

.accordeon .link:hover .prev {
    opacity: 0;
}

.accordeon:hover .prev {
    opacity: 1;
}*/
.section-subtitle.yellow-title {
    border-color: #fff;
    color: #fff;
}

.background-yellow {
    background-color: #fff;
}

h2.title_white_lg {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2em;
    color: #fff;
}

.service-section-heading {
    text-align: center;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    max-width: 840px;
    position: relative;
    z-index: 4;
}

.about-heading-title {
    margin: 30px 0;
}

.service-area {
    background-image: url('../images/ai-technology-microchip-background-digital-transformation-concept.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}

.service-area:after {
    content: '';
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#conteneur {
    width: 90%;
    margin: 0px auto;
    /* height: 80vh; */
    position: relative;
    z-index: 4;
}


/* .accordeon {
    display: flex;
    height: 500px;
    border-radius: 25px;
    overflow: hidden;
    background: #dde9e8;
}

.accordeon .link {
    flex: 1 1 0;
    transition: flex-grow 0.4s ease-in-out, padding .3s ease, background-color .3s ease;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;
    border-right: 1px solid #ddd;
    cursor: pointer;

    position: relative;
    isolation: isolate;
    writing-mode: vertical-rl;
    text-orientation: mixed;

    padding: 25px;
    overflow: hidden;
}

.accordeon .link::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgb(0 0 0 / 0), rgb(0 0 0 / 0.45));
    opacity: 0;
    transition: opacity .5s ease;
    pointer-events: none;
    z-index: 0;
}

.accordeon .link:hover::before {
    opacity: 1;
}
.accordeon .number,
.accordeon .title,
.accordeon .card-content {
    position: relative;
    z-index: 1;
}

.accordeon .link:hover {
    flex-grow: 3;
    writing-mode: horizontal-tb;
    text-orientation: initial;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px;
    background: #eaff72;
    flex-direction: column;
    gap: 16px;
}

.accordeon .link .number {
    order: 0;
}

.accordeon .link .title {
    order: 1;
    margin: 0;
}

.accordeon .link .card-content {
    order: 2;
    display: none;
    width: 100%;
}

.accordeon .link:hover .card-content {
    display: block;
}

.accordeon .link:hover .card-content img {
    display: block;
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    margin: 8px 0 0;
}

.accordeon .link:hover .card-content p {
    text-align: left;
    font-weight: 600;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
        Arial, "Noto Sans", "Liberation Sans", sans-serif;
    margin-top: 10px;
}

.accordeon .number {
    font-size: 20px;
    font-weight: bold;
    border: 2px solid #000;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 36px;
    text-align: center;
    margin-bottom: 10px;
}

.accordeon .title {
    font-size: 25px;
    font-weight: 700;
} */
.accordeon {
    display: flex;
    height: 620px;
    border-radius: 25px;
    overflow: hidden;
    background: #dde9e8;
}

.accordeon .link {
    flex: 1 1 0;
    transition: flex-grow 0.25s ease, padding 0.25s ease, background-color 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-right: 1px solid #ddd;
    cursor: pointer;
    position: relative;
    isolation: isolate;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    padding: 50px 40px;
    overflow: hidden;
}

.accordeon .link::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgb(0 0 0 / 0), rgb(0 0 0 / 0.35));
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
    z-index: 0;
}

.accordeon .link:hover::before {
    opacity: 1;
}

.link_head_wrap {
    justify-content: center;
    align-items: center;
    display: flex;
    gap: 26px;
}

.accordeon .number,
.accordeon .title,
.accordeon .card-content {
    position: relative;
    z-index: 1;
}

.accordeon .link:hover {
    flex-grow: 3;
    writing-mode: horizontal-tb;
    text-orientation: initial;
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
    background-image: linear-gradient(to left top, #227abc, #0081af, #008495, #008374, #348054);
    flex-direction: column;
    gap: 12px;
}

.accordeon .link .card-content {
    order: 2;
    width: 100%;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.2s linear, opacity 0.2s linear;
}

.accordeon .link:hover .card-content {
    max-height: 100%;
    opacity: 1;
    height: 100%;
}

.accordeon .link .card-content img {
    width: 100%;
    max-width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.accordeon .link .card-content p {
    text-align: left;
    font-weight: 500;
    margin-top: 10px;
    color: #fff;
    font-size: 22px;
    line-height: 28px;
}

.accordeon .number {
    font-size: 22px;
    font-weight: 700;
    border: 2px solid #000;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    text-align: center;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.accordeon .title {
    font-size: 36px;
    font-weight: 700;
}

.accordeon .link:hover .number {
    font-size: 22px;
}

.accordeon .link:hover .number,
.accordeon .link:hover .title {
    color: #fff;
    border-color: #fff;
}

.why-choose-us {
    padding: 80px 0;
}

.split-bg {
    /* back layer (lime) sized to 35% width), front layer is plain white */
    background:
        linear-gradient(#ffffff, #ffffff) 0 0 / 75% 100% no-repeat,
        linear-gradient(#e5ff5e, #e5ff5e) 100% 0 / 25% 100% no-repeat;
}
[lang="ar"] body .split-bg {
    background: linear-gradient(#ffffff, #ffffff) 0 0 / 75% 100% no-repeat,
        linear-gradient(#e5ff5e, #e5ff5e) 100% 0 / 25% 100% no-repeat;
    background-repeat: no-repeat;
    background-size: 75% 100%, 25% 100%;
    background-position: 100% 0, 0 0;
}

.shell {
    width: min(1500px, 92vw);
    margin-inline: auto;
    display: grid;
    /* grid-based 2-col layout */
    grid-template-columns: 1.05fr 0.95fr;
    /* left text + right image */
    gap: 220px;
}

.section-title {
    font-size: 40px;
    margin: 15px 0;
    color: #26314b;
}

/* Numbered list */
.reasons {
    list-style: none;
    margin: 0;
    padding: 0;
}

.reason {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px 18px;
    padding: 18px 0;
    border-bottom: 2px solid #545454;
}

.reason:last-child {
    border-bottom: 2px solid #144443;
}

.num {
    font-weight: 800;
    font-size: clamp(22px, 2.5vw, 28px);
    line-height: 1;
    letter-spacing: .04em;
    align-self: start;
    margin-top: 4px;
    min-width: 2.3ch;
    /* keep 01,02 aligned */
}

.title {
    margin: 0 0 6px 0;
    font-size: 25px;
    font-weight: 800;
}

.desc {
    margin: 0;
    line-height: 1.5em;
    font-size: 20px;
    opacity: .95;
    color: #545454;
}

/* Right column image fills height and crops nicely */
.right {
    width: 100%;
    max-width: 460px;
    overflow: hidden;
    position: relative;
    max-height: 460px;
    /* similar vertical scale as screenshot */
}

.right img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    /* keep aspect and cover area */
    object-position: right;
}

/* Testimonials
.testimonials {
    background: #143c3c;
    color: #fff;
    padding: 60px 0;
}

.testimonial-card {
    background: #fff;
    color: #000;
    padding: 20px;
    border-radius: 10px;
}*/
/* Section */
.testimonials {
    background: linear-gradient(180deg, #0f3b36 0%, #0e2f2b 100%);
    color: #fff;
}

/* Wrapper, header, and consistent inline edge */
.slider-wrapper {
    position: relative;
    max-width: 1350px;
    margin: 0 auto;
    padding-inline: 20px;
    /* shared inline padding */
}

.slider-header {
    display: grid;
    grid-template-columns: 1fr auto;
    /* title | arrows */
    align-items: center;
    column-gap: 16px;
    margin: 0 0 14px;
    /* space before track */
}

.section-title-testimonials {
    color: #fff;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    margin-top: 20px;
}

.section-subtitle-testimonial {
    margin-left: 20px;
    margin-bottom: 40px;
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    border: 1px solid #144443;
    border-radius: 100px;
    justify-content: center;
    align-items: center;
    padding: 6px 20px;
    font-weight: 400;
    line-height: 1.2em;
    display: inline-flex;
}

/* Track (scroll-snap) */
.testimonial-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: min(680px, 92vw);
    gap: 28px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding: 20px;
    padding-block: 10px 6px;
    /* vertical only—left aligns with header */
    padding-inline: 0;
    scroll-behavior: smooth;
}

.testimonial-slider {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

/* Arrow placement aligned to same edge */
.slider-controls {
    position: relative;
    right: 0;
    display: flex;
    gap: 12px;
}

/* Card */
.testimonial-card {
    background: #fff;
    color: #0c3b36;
    border-radius: 16px;
    border: 1px solid rgba(20, 68, 67, .12);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .18);
    padding: 20px;
    display: grid;
    grid-template-columns: 340px 1fr;
    /* photo | copy */
    gap: 28px;

    align-items: stretch;
    /* equal column heights */
    scroll-snap-align: center;
    scroll-snap-stop: always;
}

.t-photo {
    width: 100%;
    /* fills the grid column */
    aspect-ratio: 1 / 1;
    /* perfect square */
    height: auto;
    /* override previous height */
    max-height: none;
    /* remove the 100px cap */
    align-self: start;
    /* prevent grid stretch from breaking the square */
    border-radius: 12px;
    overflow: hidden;
    background: #0e2f2b;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .12);
}

.t-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    /* crop without distortion */
    object-position: center;
}


/* Right column: quote image on top, then paragraph, then author */
.t-copy {
    display: grid;
    grid-template-rows: auto 1fr auto;
    /* img | text | author */
    align-items: start;
    justify-items: start;
    row-gap: 14px;
    /* space between rows (incl. quote-img and text) */
    padding: 16px 12px 10px;
}

/* Decorative quote image element (in HTML) */
.quote-img {
    width: 56px;
    height: 28px;
    object-fit: contain;
    object-position: left;
    /* keep aspect */
    align-self: start;
    justify-self: start;
    margin-bottom: 6px;
    /* extra pad above paragraph */
}

/* Paragraph now has no side padding; sits under the icon */
.quote {
    margin: 0;
    padding: 0;
    line-height: 1.6;
    font-size: 18px;
}

/* Remove any old pseudo-quote marks if they existed */
.quote::before,
.quote::after {
    content: none;
}

/* Author block */
.author {
    margin-top: 8px;
}

.name {
    margin: 0 0 6px 0;
    font-size: 28px;
    font-weight: 800;
    color: #0c3b36;
}

.role {
    margin: 0;
    font-weight: 600;
    opacity: .85;
    color: #0c3b36;
}

/* Slider controls */
.slider-controls {
    position: absolute;
    right: 20px;
    display: flex;
    gap: 12px;
    z-index: 20;
}

.slider-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    color: #0c3b36;
    border: none;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
    transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.slider-arrow:hover {
    background: #e5ff5e;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .2);
}

.slider-arrow:active {
    transform: scale(0.95);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .testimonial-slider {
        scroll-behavior: auto;
    }

    .slider-arrow {
        transition: none;
    }
}

/* Responsive */
@media (max-width: 980px) {
    .testimonial-card {
        grid-template-columns: 1fr;
    }

    .t-photo {
        min-height: 220px;
    }
}

/**How We Work**/
.process-style1 {
    position: relative;
    color: #000;
    font-weight: 500;
}

.process-style1:before {
    background: #000;
    content: "";
    height: 1px;
    left: 50%;
    margin: auto;
    position: absolute;
    right: 0;
    top: 36px;
    width: 100%;
}

.process-style1 .process-number-wrap {
    position: relative;
    margin: 0 auto 40px;
    text-align: center;
}

.process-style1 .process-number {
    display: inline-block;
    transform: translateY(10%);
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: #22b07d;
    border-radius: 50%;
    color: #000;
    font-size: 20px;
    font-weight: 600;
    z-index: 1;
}

.process-style1 .process-number:before {
    content: '';
    display: block;
    position: absolute;
    top: 30px;
    right: 0;
    z-index: -1;
    bottom: 0;
    left: 30px;
    border-radius: 50%;
    border: 1px solid #22b07d;
    height: 75px;
    width: 75px;
    animation: pulse-border 1500ms ease-out infinite;
}

.process-style1 .process-number:after {
    content: '';
    display: block;
    position: absolute;
    top: 30px;
    right: 0;
    z-index: -1;
    bottom: 0;
    left: 30px;
    border-radius: 50%;
    border: 1px solid #22b07d;
    height: 60px;
    width: 60px;
    animation: pulse-border 1500ms ease-out infinite;
}

.process-style1.last:before {
    content: unset !important;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0
    }
}

/* Case Studies */
/*
.case-study-card {
    margin-top: 100px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
}*/

.case-study-section-heading {
    text-align: center;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 983px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
}

.case-study-img img {
    text-decoration: underline;
}
.partner_brand_logo {
    width: 100%;
    max-width: 260px;
    display: block;
    margin: 0 auto;
}
/* Case Studies: side-by-side layout + vertical snap */

/* Scroll container for vertical slide between cards */
.case-studies-scroller {
    margin: 0 auto;
    height: 90vh;
    /* viewport for vertical slider */
    overflow-y: auto;
    /* enable vertical scroll */
    scroll-snap-type: y mandatory;
    /* snap vertically */
    /* [web:202][web:205] */
    overscroll-behavior-y: contain;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.case-studies-scroller::-webkit-scrollbar {
    display: none;
}

/* Each card snaps into view */
.case-study-card {
    scroll-snap-align: start;
    /* snap card’s top to viewport */
    /* [web:210] */
    margin: 40px 20px;
    border: 1px solid #e0e0e0;
    /* space around each card */
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: transform .3s ease;
    will-change: transform;
}

/* Two-column horizontal layout inside the card */
.case-study-inner {
    display: grid;
    /* [web:272] */
    grid-template-columns: 1fr 1.1fr;
    /* image | content */
    gap: 0;
}

/* Image block (kept separate for full-height crops) */
.case-study-img {
    aspect-ratio: 16 / 11;
    /* keeps a nice rectangle on small screens */
    height: 100%;
    overflow: hidden;
}

.case-study-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* fill + crop cleanly */
    /* [web:127] */
    display: block;
    text-decoration: none;
    /* no underline on images */
}

/* Right content */
/*.case-card-content {
    border-left: 1px solid #002b2b;
    background: #ffffff;
    padding: 36px 40px;
    display: grid;
    align-content: start;
    row-gap: 12px;
}*/

/* Typography and bits */
.case-serial-number {
    font-size: 30px;
    font-weight: 500;
}

.case-category {
    margin-top: 16px;
    display: flex;
    gap: 8px;
}

.case-category h4 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3em;
    color: #26314b;
}

.case-card-content {
    background: #ffffff;
    padding: 36px 100px;
    display: grid;
    align-content: center;
    row-gap: 22px;
}

/* .theme_para_dark {
    color: #000;
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    text-decoration: none;
} */

.case-button {
    margin-top: 28px;
    display: flex;
}


/* Optional: subtle scale on hover when not snapping */
.case-study-card:hover {
    transform: translateY(-2px);
}

/* Sticky variant kept for large screens if desired */
.single-feature-case-card {
    position: sticky;
    top: 0;
}

/* Responsive adjustments */
@media (max-width: 960px) {
    .case-study-inner {
        grid-template-columns: 1fr;
    }

    /* stack image over content */
    /*.case-card-content {
        border-left: none;
        border-top: 1px solid #002b2b;
    }*/

    .case-study-img {
        aspect-ratio: 16 / 9;
    }
}

/* Optional: reduce spacing on very large screens */
@media (min-width: 1280px) {

    .case-category,
    .case-button {
        margin-top: 24px;
    }
}

.contact-us-section-heading {
    text-align: center;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 983px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
    display: flex;
}


.contact-us-form-wrapper {
    background-color: #fff;
    border-radius: 30px;
    padding: 30px;
    margin-top: 40px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}

.contact-us-form-heading {
    margin-bottom: 15px;
    font-family: Spacegrotesk, Arial, sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3em;
}

.contact-us-form-description {
    margin-bottom: 35px;
    font-weight: 400;
}

.contact-us-form-container {
    margin-top: 45px;
    margin: 0 0 15px;
}

/* Borderless input: static and focused */
.contact-us-form-input {
    border: 0 solid #000;
    border-bottom: 1px solid #002b2b26;
    margin-bottom: 45px;
    padding-bottom: 10px;
    padding-left: 0;
    padding: 8px 12px;
    font-size: 20px;
    line-height: 1.42857;
    display: block;
    width: 100%;
    height: 38px;
    background-color: #fff;
    color: #333;
}

/* Ensure no border/outline on interactive states */
.contact-us-form-input:hover,
.contact-us-form-input:focus,
.contact-us-form-input:focus-visible,
.contact-us-form-input:active {
    border-bottom-color: #0e2f2b;
    outline: none;
    box-shadow: none;
}


.contact-us-form-textarea {
    border: 0 solid #000;
    border-bottom: 1px solid #002b2b26;
    min-height: 148px;
    margin-bottom: 24px;
    padding-bottom: 10px;
    padding-left: 0;
    padding: 8px 12px;
    font-size: 20px;
    line-height: 1.42857;
    display: block;
    width: 100%;
    height: 38px;
    background-color: #fff;
    color: #333;
}

.contact-us-form-textarea:hover,
.contact-us-form-textarea:focus,
.contact-us-form-textarea:focus-visible,
.contact-us-form-textarea:active {
    border-bottom-color: #0e2f2b;
    outline: none;
    box-shadow: none;
}


section.about_hero_sec {
    padding: 170px 0 20px;
}

.bg_light_green {
    background: #227ABC20;
}

.about-area {
    padding-top: 20px;
}

.inner-hero-content {
    justify-content: space-between;
    display: flex;
    position: absolute;
    top: 50%;
    left: 60px;
    right: 60px;
    transform: translate(0, -50%);
}

.inner-hero-title {
    max-width: 700px;
    font-size: 54px;
    color: #fff;
}

.inner-hero-wrapper {
    background-position: 0 0, 50%;
    background-size: auto, cover;
    border-radius: 25px;
    width: 100%;
    /* padding-top: 238px; */
    /* padding-bottom: 238px; */
    height: 480px;
    position: relative;
}

.about_us_hero {
    background-image: linear-gradient(#000f0fb3, #000f0fb3), url("../images/portrait-business-partners-greeting-one-another-by-handshaking-way-office.jpg");
}

.services_hero {
    background-image: linear-gradient(#000f0fb3, #000f0fb3), url("../images/services.jpg");

}

.contact_hero {
    background-image: linear-gradient(#000f0fb3, #000f0fb3), url("../images/contact.jpg");
}

.aiml_hero {
    background-image: linear-gradient(#000f0fb3, #000f0fb3), url("../images/aiml.jpg");
}

.custom_software_hero {
    background-image: linear-gradient(#000f0fb3, #000f0fb3), url("../images/customsoftware.jpg");
}

.digitalsocial_hero {
    background-image: linear-gradient(#000f0fb3, #000f0fb3), url("../images/digitalsocial.jpg");
}

.ecommerce_hero {
    background-image: linear-gradient(#000f0fb3, #000f0fb3), url("../images/ecommerce.jpg");
}

.erpnext_hero {
    background-image: linear-gradient(#000f0fb3, #000f0fb3), url("../images/erp.jpg");
}

.odoo_hero {
    background-image: linear-gradient(#000f0fb3, #000f0fb3), url("../images/odoo.jpg");
}

.oracle_hero {
    background-image: linear-gradient(#000f0fb3, #000f0fb3), url("../images/oracle.jpg");
}

.staffingservices_hero {
    background-image: linear-gradient(#000f0fb3, #000f0fb3), url("../images/staffingservices.jpg");
}

.webmobile_hero {
    background-image: linear-gradient(#000f0fb3, #000f0fb3), url("../images/webmobile.jpg");
}

.about-content-wrapper {
    background-color: #fff;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    grid-template-rows: auto;
    grid-auto-columns: 1fr;
    padding: 60px;
    display: grid;
    grid-column-gap: 120px;
    grid-row-gap: 120px;
    grid-template-columns: 1fr 1.5fr;
}

.about-image-element {
    object-fit: cover;
    height: 100%;
    height: 730px;
    border-radius: 15px;
    width: 100%;
}

.vmv_tabing_box {
    border-bottom: 1px solid #002b2b26;
    justify-content: space-between;
    padding-top: 45px;
}
[lang="ar"] body .vmv_tabing_box {
padding-right: 0;
}
.vmv_tabing_box .vmv_menu_link.active {
    border-bottom: 1px solid #002b2b !important;
}

.vmv_tabing_box .vmv_menu_link:focus-visible {
    box-shadow: unset !important;
}

.vmv_menu_link {
    color: #002b2b !important;
    background-color: #ddd0 !important;
    padding: 0 0 15px !important;
    font-size: 26px !important;
    font-weight: 600 !important;
    line-height: normal;
    border-left: 0px !important;
    border-right: 0px !important;
    border-top: 0px !important;
}

.vmv_tab_content {
    padding-top: 30px;
    height: 260px;
}

/* .about_stats_box .stats-container {
            border: 1px solid #002b2b;
            border-radius: 50%;
            flex-flow: column;
            justify-content: center;
            align-items: center;
            width: 220px;
            height: 220px;
            display: flex;
        } */
.about_stats_box {
    padding: 80px 0;
    background-color: #ffffff;
}

.about_stats_box .stats-container {
    justify-content: center;
    gap: 180px;
}

.about_stats_box .stat {
    flex-direction: column;
    gap: 0px;
    padding: 0;
    width: 340px;
    height: 340px;
    border: 1px solid #002b2b;
    border-radius: 50%;
}

.about_stats_box .stats-container .stat .odometer {
    font-size: 90px;
    padding-right: 30px;

}

.about_stats_box .stats-container .stat .odometer.plus::after {
    right: -30px;
    font-size: 100px;
}

.percent::after {
    content: "%";
    position: absolute;
    top: 0;
    right: -35px;
    font-size: 80px;
}

.about-right {
    position: relative;
}

.abt_years_box {
    background-color: #ffffff;
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 20px 0 0 0;
    padding: 20px 0 0;
}

/*Services*/
.service-card-wrap {
    margin: 20px 18px 20px 18px;
    grid-column-gap: 54px;
    grid-row-gap: 54px;
    background-image: url("https://cdn.prod.website-files.com/67c08a4d2c679a26a0626aa2/67ce49c63112315f92824b20_shape.avif");
    background-position: 50%;
    background-size: cover;
    border-radius: 25px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    padding: 60px;
    display: grid;
}

.single-service-card {
    background-color: #ffffff;
    border-radius: 25px;
    padding: 45px 30px;
}

.service-card-title {
    margin-top: 30px;
    margin-bottom: 27px;
    font-size: 34px;
    line-height: 1.2em;
}

.service-arrow-button {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    color: #002b2b;
    justify-content: flex-start;
    align-items: center;
    margin-top: 30px;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
}

.service-card-desc {
    font-size: 18px;
    line-height: 1.5em;
    color: #545454;
}

.about-single-slider-content {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    height: 100%;
    display: grid;
    margin: 20px 18px 20px 18px;
}

.about-content {
    grid-column-gap: 140px;
    grid-row-gap: 140px;
    background-color: #144443;
    color: #ffffff;
    border-radius: 20px;
    flex-flow: column;
    height: 100%;
    padding: 10px;
    display: flex;
    justify-content: flex-start;
    font-size: 44px;
    font-weight: 500;
}

.service-about-text {
    color: #ffffff;
    max-width: 440px;
    font-family: Spacegrotesk, Arial, sans-serif;
    font-weight: 700;
    line-height: 1.3em;
}

.about-button-group {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-left: 20px;
    margin-bottom: 20px;
}

/* .button-primary {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    background-color: #ffffff;
    color: #0e2f2b;
    border-radius: 75px;
    justify-content: center;
    align-items: center;
    padding: 16px 60px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    position: relative;
    overflow: hidden;
    font-size: 18px;
} */

.about-image {
    object-fit: cover;
    border-radius: 20px;
    width: 100%;
    height: 100%;
}

@media screen and (min-width: 1280px) {
    .about-content {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media screen and (min-width: 1280px) {
    h2 {
        font-size: 40px;
    }
}


@media screen and (min-width: 1280px) {
    .about-button-group {
        grid-column-gap: 15px;
        grid-row-gap: 15px;
    }
}

.service-details {
    margin: 50px;
}

.service-content-group {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
    margin-top: 60px;
    display: flex;
    position: relative;
    font-size: 25px;
    font-weight: 400;
}

.service-group-title {
    font-size: 44px;
    font-weight: 600;
}

.service-details-list {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-flow: column;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 20px;
    font-weight: 400;
    display: flex;
}

.contact-address {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-top: 60px;
    display: grid;
    margin: 18px 20px 18px 20px;
}

@media screen and (min-width: 1280px) {
    .contact-address {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

.single-contact-box {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 35px;
}

.contact-address-title {
    margin-bottom: 10px;
    font-family: Spacegrotesk, Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.content-online {
    color: #144443;
    margin-bottom: 5px;
}

.content-online a {
    max-width: 100%;
    display: inline-block;
    text-decoration: none;
}

.contact-address-details {
    font-weight: 400;
    line-height: 1.4em;
}

.contact-social-media {
    background-color: #144443;
    border-radius: 10px;
    padding: 35px;
}

.contact-social-heading {
    color: #ffffff;
    font-family: Spacegrotesk, Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.contact-social-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 13px;
    justify-content: flex-start;
    align-items: center;
    margin-top: 20px;
    display: flex;
}

.contact-social-wrapper a i {
    color: #ffffff;
    font-size: 35px;
}

/* Back to top button styling */
.back_to_top {
    position: fixed;
    bottom: 50px;
    right: 30px;
    width: 40px;
    height: 40px;
    background-color: #144443;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.back_to_top:hover {
    background-color: #002b2b;
    transform: translateY(-3px);
}

.back_to_top:active {
    transform: translateY(1px);
}

.back_to_top.visible_btn {
    visibility: visible !important;
    opacity: 1 !important;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.back_to_top i {
    color: #fff;
    font-size: 20px;
    line-height: normal;
}

.clients_slider .owl-stage {
    transition-timing-function: linear !important;
}

section.our_clients {
    padding-bottom: 80px;
}

/* arabic pages css */
[lang="ar"] body .about_box .abt_stats {
    padding-right: 60px;
    padding-left: 0;
}

[lang="ar"] body .abt_sec .stats-container .stat {
    padding-right: 130px;
    padding-left: 0;
}

[lang="ar"] body .about-border-wrap {
    right: 0;
    left: unset;
}

[lang="ar"] body .about-mission-vission-content {
    padding-left: 170px;
    padding-right: unset;
}

[lang="ar"] body .abt_years_box {
    right: unset;
    left: 0;
    border-radius: 0px 20px 0px 0px;
}

[lang="ar"] body .about-area .abt_years_box .stat {
    padding-left: unset;
    padding-right: 100px;
}

@media (min-width: 320px) and (max-width: 767px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        grid-auto-flow: dense;
    }

    /* Reverse column order */
    .hero-content-wrapper>*:first-child {
        order: 2;
    }

    .hero-content-wrapper>*:last-child {
        order: 1;
    }

    .hero_img {
        height: 460px;
    }

    .theme_btn {
        padding: 12px 40px;
        font-size: 16px;
    }

    .hero-section .scrolling_wrapper {
        padding-top: 15px;
    }

    .hero-content {
        padding: 25px;
    }

    .hero-section h1 {
        font-size: 32px;
        line-height: 42px;
    }

    .about-heading {
        font-size: 28px;
    }

    .abt_stats {
        padding-left: 0;
    }

    .scrolling_txt_2,
    .scrolling_txt_1 {
        font-size: 42px;
    }

    .custom_padding {
        padding: 50px 0px;
    }

    .section-subtitle {
        font-size: 14px;
        padding: 5px 15px;
    }

    .subtitle-dot {
        width: 8px;
        height: 8px;
    }

    .case-card-content {
        padding: 36px 20px;
    }

    .case-category h4 {
        font-size: 28px;
    }

    h2.title_white_lg {
        font-size: 28px;
    }

    button.back_to_top.visible_btn,
    .language_toggle_btn {
        display: none;
    }

    .header_wrap {
        grid-template-columns: 1fr 1fr;
        padding-left: 15px;
        padding-right: 15px;
    }

    button.navbar-toggler {
        border: 0;
        font-size: 24px;
        display: flex;
        justify-content: end;
        align-items: center;
        padding: 0;
    }

    footer .row .col-md-3 {
        order: 1;
    }

    .footer_mid_box.text-center {
        border: 0 !important;
        padding: 50px 10px;
    }

    .footer_title_lg {
        font-size: 28px;
    }

    h4.footer_title {
        font-size: 22px;
    }

    .footer_asidebox:last-child {
        padding-left: 10px;
        padding-top: 20px;
    }

    .process-style1:before {
        content: unset;
    }

    .process-style1 {
        padding: 20px 0;
    }

    .floating_lang_btn .toggle_btn {
        position: fixed;
        bottom: 20px;
        right: 15px;
        padding: 6px 20px;
        display: inline-block !important;
        z-index: 999999;
    }

    .about-experience {
        grid-template-columns: 1fr;
        grid-auto-flow: dense;
        margin-top: 50px;
    }

    /* Reverse column order */
    .about-experience>.about-mission-vission-content {
        order: 2;
    }

    .about-experience>img {
        order: 1;
    }

    .abt_content {
        margin-bottom: 0;
    }

    .stats-container .stat {
        padding-left: 0;
        gap: 80px;
    }

    .about-border-wrap {
        display: none;
    }

    .stats-container .stat .odometer {
        font-size: 140px;
    }

    .odometer.plus::after {
        right: -75px;
        font-size: 120px;
    }

    .about-missoin-title {
        font-size: 22px;
    }

    .about-mission-vission-content {
        padding-top: 30px;
        padding-right: 0;
    }

    .case-study-card {
        margin: 10px 0px;
    }

    .shell {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 40px;
        grid-auto-flow: dense;
    }

    .shell>.right {
        order: 1;
    }

    .shell>.left {
        order: 2;
    }

    .section-title {
        font-size: 28px;
    }

    .title,
    .contact-us-form-heading {
        font-size: 22px;
    }

    .desc {
        font-size: 18px;
    }

    /* homepage-hover boxes */
    .service-area {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    #conteneur {
        width: 100%;
    }

    .accordeon {
        flex-direction: column;
        height: auto;
    }

    .accordeon .link {
        flex: none;
        width: 100%;
        writing-mode: horizontal-tb;
        text-orientation: initial;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 15px !important;
        background: #fff !important;
        border-right: none;
        border-bottom: 1px solid #ddd;
        cursor: default;
    }

    .accordeon .link::before {
        display: none;
    }

    .accordeon .link .card-content {
        max-height: none !important;
        opacity: 1 !important;
        overflow: visible;
        transition: none;
    }

    .accordeon .link:hover {
        flex-grow: 1;
        gap: 0;
    }

    .accordeon .link .card-content p {
        color: #000;
        font-size: 20px;
    }

    .accordeon .link .number,
    .accordeon .link .title {
        color: #000 !important;
        border-color: #000 !important;
    }

    .accordeon .title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    /* about us page */
    .inner-hero-title {
        font-size: 32px;
    }

    .inner-hero-content {
        left: 20px;
    }

    .inner-hero-wrapper {
        height: 280px;
    }

    section.about_hero_sec {
        padding: 140px 0 10px;
    }

    .about-area {
        padding-top: 10px;
    }

    .about-content-wrapper {
        padding: 35px 15px;
        grid-template-columns: 1fr;
        grid-row-gap: 50px;
    }

    .about_stats_box {
        padding: 40px 0;
    }

    .about_stats_box .stats-container {
        gap: 20px;
        flex-direction: column;
    }

    .about_stats_box .stat {
        gap: 0px;
    }
    .service-card-wrap {
    grid-row-gap: 15px;
    grid-template-columns: 1fr;
    padding: 15px;
}
.service-card-title {
    font-size: 26px;
}
.service-arrow-button {
    font-size: 18px;
}
.about-single-slider-content {
    grid-template-columns: 1fr;
}
.about-content {
    grid-row-gap: 20px;
    padding: 10px;
    font-size: 28px;
}
.footer-copyright-area {
    flex-direction: column;
    gap: 20px;
}

}

@media (min-width: 320px) and (max-width: 580px) {
    .hero-content-wrapper {
        padding-top: 140px;
    }
}