:root {
  --primary: #214a7f;
  --primary-dark: #244b7f;
  --primary-deep: #173b68;
  --primary-soft: #dfeeff;
  --orange: #ff8518;
  --text: #16375e;
  --muted: #61728a;
  --line: #e4eaf1;
  --white: #fff;
}


@font-face {
    font-family: "Cairo";
    src: url("../../fonts/cairo/Cairo-Regular.ttf") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Cairo";
    src: url("../../fonts/cairo/Cairo-SemiBold.ttf") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Cairo";
    src: url("../../fonts/cairo/Cairo-Bold.ttf") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

 /* Questions */
.question-group{
    border:1px solid #d5deea;
    border-radius:12px;
    padding:16px 18px;
    background:#fff;
}

.question-title{
    display:block;
    margin-bottom:12px;
    font-size:15px;
    font-weight:600;
    color:#163a69;
}

.question-title span{
    color:#ff7a00;
}

.radio-group{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.radio-item{
    display:flex;
    align-items:center;
    cursor:pointer;
    user-select:none;
    margin:0;
    padding:8px 16px;
    border:1px solid #d5deea;
    border-radius:30px;
    transition:.25s;
    background:#fff;
}

.radio-item:hover{
    border-color:#5d85c3;
    background:#f8fbff;
}

.radio-item input[type="radio"]{
    margin-left:8px;
    accent-color:#ff7a00;
    width:18px;
    height:18px;
}

.radio-item span{
    color:#163a69;
    font-size:14px;
}
      .contact-card .form-group {
    position: relative;
    margin-bottom: 16px;
}

.contact-card .form-control {
    width: 100%;
    height: 49px;
    padding: 0 18px;
    border: 1px solid #d5deea;
    border-radius: 11px;
    background-color: #fff;
    color: #163a69;
    font-size: 15px;
    text-align: right;
    direction: rtl;
    box-shadow: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-card .form-control:focus {
    border-color: #5d85c3;
    box-shadow: 0 0 0 3px rgba(93, 133, 195, 0.12);
    outline: none;
}

/* إزالة السهم الافتراضي */
.contact-card .select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    cursor: pointer;

    /* مساحة للسهم في الجهة اليسرى */
    padding-left: 55px;
    padding-right: 18px;
}

/* خلفية منطقة السهم */
.contact-card .select-wrapper::before {
    content: "";
    position: absolute;
    left: 1px;
    top: 1px;
    bottom: 1px;
    width: 45px;
    background-color: #f7f9fc;
    border-right: 1px solid #d5deea;
    border-radius: 10px 0 0 10px;
    pointer-events: none;
    z-index: 1;
}

/* السهم المخصص */
.contact-card .select-wrapper::after {
    content: "";
    position: absolute;
    left: 19px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-left: 2px solid #163a69;
    border-bottom: 2px solid #163a69;
    transform: translateY(-65%) rotate(-45deg);
    pointer-events: none;
    z-index: 2;
    transition: transform 0.2s ease;
        border-right: #f7f9fc;
}

/* تغيير لون النص قبل اختيار قيمة */
.contact-card select:invalid {
    color: #68778d;
}

.contact-card select option {
    color: #163a69;
    background-color: #fff;
}





/* =========================================
   Contact Section
========================================= */

.contact-section {
    position: relative;
    padding: 85px 0 90px;
    background: #ffffff;
    overflow: hidden;
}

.contact-row {
    min-height: 570px;
}

/* =========================================
   Contact Form Card
========================================= */

.contact-card {
    width: 100%;
    margin: 0 auto;
    padding: 42px 32px 36px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow:
        0 8px 28px rgba(17, 45, 86, 0.08),
        0 2px 8px rgba(17, 45, 86, 0.04);
}

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




/* =========================================
   Select Fields
========================================= */

.select-wrapper {
    position: relative;
}



.select-wrapper select.form-control {
    padding-right: 20px;
    padding-left: 40px;

    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.select-wrapper select.form-control::-ms-expand {
    display: none;
}

/* =========================================
   Radio Questions
========================================= */


.question-title {
    display: block;
    margin: 0 0 9px;
    color: #112d56;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
}

.question-title span {
    color: #f58220;
}

.radio-group {
    display: flex;
    align-items: center;
    gap: 25px;
}

.radio-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 0;
    color: #344b70;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
}

.radio-item input {
    width: 15px;
    height: 15px;
    margin: 0;
    accent-color: #f58220;
    cursor: pointer;
}


/* =========================================
   Contact Content
========================================= */

.contact-content {
    width: 100%;
    max-width: 540px;
    margin-right: 40px;
}

.contact-title {
    margin: 0 0 38px;
    color: #112d56;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.7px;
}

/* =========================================
   Benefits List
========================================= */

.contact-benefits {
    margin: 0 0 36px;
    padding: 0;

    list-style: none;
}

.contact-benefits li {
    position: relative;
    margin-bottom: 15px;
    padding-right: 23px;
    color: #274568;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.55;
    list-style: none;
}

.contact-benefits li:last-child {
    margin-bottom: 0;
}

.contact-benefits li::before {
    content: "";
    position: absolute;
    top: 11px;
    right: 2px;
    width: 5px;
    height: 5px;
    background: #112d56;
}

/* =========================================
   Certification Box
========================================= */

.certification-box {
    width: 100%;
    max-width: 460px;

    padding: 22px 25px 20px;

    background: #eef4ff;
    border-radius: 18px;

    text-align: center;
}

.certification-title {
    margin: 0 0 17px;

    color: #112d56;

    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.certification-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 12px;
}

.certification-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 62px;
    height: 62px;
}

.certification-logo-item img {
    display: block;

    max-width: 100%;
    max-height: 100%;

    object-fit: contain;

    transition: transform 0.25s ease;
}

.certification-logo-item:hover img {
    transform: translateY(-3px);
}

/* =========================================
   Responsive
========================================= */

@media (max-width: 1199.98px) {
    .contact-card {
        padding-right: 27px;
        padding-left: 27px;
    }

    .contact-title {
        font-size: 36px;
    }

    .contact-benefits li {
        font-size: 16px;
    }
}

@media (max-width: 991.98px) {
    .contact-section {
        padding: 65px 0 70px;
    }

    .contact-row {
        min-height: auto;
    }

    .contact-content {
        max-width: 650px;

        margin: 0 auto 45px;

        text-align: center;
    }

    .contact-title {
        margin-bottom: 28px;

        font-size: 35px;
    }

    .contact-benefits {
        display: inline-block;

        margin-bottom: 32px;

        text-align: left;
    }

    .certification-box {
        margin: 0 auto;
    }

    .contact-card {
        max-width: 560px;
    }
}

@media (max-width: 575.98px) {
    .contact-section {
        padding: 45px 0 50px;
    }

    .contact-title {
        font-size: 29px;
        letter-spacing: -0.3px;
    }

    .contact-title br {
        display: none;
    }

    .contact-benefits {
        width: 100%;
    }

    .contact-benefits li {
        padding-left: 20px;

        font-size: 15px;
    }

    .contact-card {
        padding: 28px 19px 25px;

        border-radius: 17px;
    }

    .contact-card .form-control {
        height: 44px;

        font-size: 12px;
    }

    .question-title {
        font-size: 11px;
    }

    .radio-group {
        gap: 20px;
    }

    .certification-box {
        padding: 20px 15px;

        border-radius: 16px;
    }

    .certification-logos {
        gap: 10px;
    }

    .certification-logo-item {
        width: 55px;
        height: 55px;
    }

    
}












.header-navbar{
    width: 100%;
    transition: all .35s ease;
}

.header-navbar.sticky{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    width: 100%;
    z-index: 9999;

    background: rgba(255,255,255,.98);
    backdrop-filter: blur(12px);

    box-shadow: 0 8px 25px rgba(0,0,0,.08);

    padding: 12px 40px;
}


/* =========================================
   Customer Logos
========================================= */

.customer-logos {
    display: grid;

    /* 6 شعارات في سطر واحد */
    grid-template-columns: repeat(6, minmax(0, 1fr));

    align-items: center;
    gap: 18px;

    width: 100%;
    max-width: 1050px;

    margin: 0 auto;
}

.customer-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 110px;
    padding: 12px;
    background: #ffffff;
    border: 1px solid #edf1f6;
    border-radius: 12px;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.customer-logo-item img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100px;
    object-fit: contain;
}

.customer-logo-item:hover {
    border-color: #dce4ee;
    box-shadow: 0 7px 20px rgba(17, 45, 86, 0.07);
    transform: translateY(-3px);
}

/* =========================================
   Tablet and Mobile
   3 شعارات في كل سطر = سطرين
========================================= */

@media (max-width: 767.98px) {
    .trusted-section {
        padding: 50px 0;
    }

    .trusted-section .small-title {
        margin-bottom: 28px;

        font-size: 27px;
    }

    .trusted-section .small-title br {
        display: none;
    }

    .customer-logos {
        grid-template-columns: repeat(3, minmax(0, 1fr));

        gap: 12px;
    }

    .customer-logo-item {
        height: 76px;
        padding: 9px;
    }

    .customer-logo-item img {
        max-height: 60px;
    }
}

/* =========================================
   Very Small Mobile
   يبقى 3 شعارات في كل سطر
========================================= */

@media (max-width: 380px) {
    .customer-logos {
        gap: 8px;
    }

    .customer-logo-item {
        height: 68px;
        padding: 7px;
        border-radius: 9px;
    }

    .customer-logo-item img {
        max-height: 32px;
    }

  }

/* English / LTR page */


        /* Question Cards */
.lang-en .question-group {
    border:1px solid #d5deea;
    border-radius:12px;
    padding:16px 18px;
    background:#fff;
}

.lang-en .question-title {
    display:block;
    margin-bottom:12px;
    font-size:15px;
    font-weight:600;
    color:#163a69;
    line-height:1.5;
}

.lang-en .question-title span {
    color:#ff7a00;
}

/* Radio Buttons */
.lang-en .radio-group {
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.lang-en .radio-item {
    display:flex;
    align-items:center;
    gap:8px;
    padding:8px 16px;
    border:1px solid #d5deea;
    border-radius:30px;
    cursor:pointer;
    background:#fff;
    transition:.25s ease;
    margin:0;
}

.lang-en .radio-item:hover {
    border-color:#5d85c3;
    background:#f8fbff;
}

.lang-en .radio-item input[type="radio"] {
    margin:0;
    width:18px;
    height:18px;
    accent-color:#ff7a00;
}

.lang-en .radio-item span {
    color:#163a69;
    font-size:14px;
}
        .lang-en .contact-card .form-group {
    position: relative;
    margin-bottom: 16px;
}



/* إزالة السهم الافتراضي */
.lang-en .contact-card .select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;

    /* مساحة للسهم على اليمين */
    padding-right: 55px;
}

/* خلفية السهم */
.lang-en .contact-card .select-wrapper::before {
    content: "";
    position: absolute;
    right: 1px;
    top: 1px;
    bottom: 1px;
    width: 45px;
    background: #f7f9fc;
    border-left: 1px solid #d5deea;
    border-radius: 0 10px 10px 0;
    pointer-events: none;
}

/* السهم */
.lang-en .contact-card .select-wrapper::after {
    content: "";
    position: absolute;
    right: 19px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #163a69;
    border-bottom: 2px solid #163a69;
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
    transition: .2s;
}

.lang-en .contact-card select:invalid {
    color: #68778d;
}

.lang-en .contact-card select option {
    color: #163a69;
    background: #fff;
}







.lang-en .header-navbar {
    width: 100%;
    transition: all .35s ease;
}

.lang-en .header-navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    width: 100%;
    z-index: 9999;

    background: rgba(255,255,255,.98);
    backdrop-filter: blur(12px);

    box-shadow: 0 8px 25px rgba(0,0,0,.08);

    padding: 12px 40px;
}


/* =========================================
   Contact Section
========================================= */

.lang-en .contact-section {
    position: relative;
    padding: 85px 0 90px;
    background: #ffffff;
    overflow: hidden;
}

.lang-en .contact-row {
    min-height: 570px;
}

/* =========================================
   Contact Form Card
========================================= */

.lang-en .contact-card {
    width: 100%;
    margin: 0 auto;
    padding: 42px 32px 36px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow:
        0 8px 28px rgba(17, 45, 86, 0.08),
        0 2px 8px rgba(17, 45, 86, 0.04);
}

.lang-en .contact-card .form-group {
    margin-bottom: 13px;
}



/* =========================================
   Select Fields
========================================= */

.lang-en .select-wrapper {
    position: relative;
}

.lang-en .select-wrapper::after {
    content: "\f078";

    position: absolute;
    top: 50%;
    right: 19px;

    color: #52698a;

    font-family: "Font Awesome 5 Free";
    font-size: 11px;
    font-weight: 900;

    pointer-events: none;

    transform: translateY(-50%);
}

.lang-en .select-wrapper select.form-control {
    padding-right: 42px;

    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.lang-en .select-wrapper select.form-control::-ms-expand {
    display: none;
}

/* =========================================
   Radio Questions
========================================= */


.lang-en .question-title {
    display: block;
    margin: 0 0 9px;
    color: #112d56;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
}

.lang-en .question-title span {
    color: #f58220;
}

.lang-en .radio-group {
    display: flex;
    align-items: center;
    gap: 25px;
}

.lang-en .radio-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 0;
    color: #344b70;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
}

.lang-en .radio-item input {
    width: 15px;
    height: 15px;
    margin: 0;
    accent-color: #f58220;
    cursor: pointer;
}

.lang-en .contact-card .form-control {
    width: 100%;
    height: 49px;
    padding: 0 18px;
    border: 1px solid #d5deea;
    border-radius: 11px;
    background-color: #fff;
    color: #163a69;
    font-size: 15px;
    text-align: left;
    direction: ltr;
    box-shadow: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.lang-en .contact-card .select-wrapper::before {
    content: "";
    position: absolute;
    right: 1px;
    left: inherit;
    top: 1px;
    bottom: 1px;
    width: 45px;
    background: #f7f9fc;
    border-left: 1px solid #d5deea;
    border-radius: 0 10px 10px 0;
    pointer-events: none;
}

.lang-en .contact-card .select-wrapper::after {
    content: "";
    position: absolute;
    right: 19px;
    left: inherit;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #163a69;
    border-bottom: 2px solid #163a69;
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
    transition: .2s;
        border-left: aquamarine;
}


/* =========================================
   Contact Content
========================================= */

.lang-en .contact-content {
    width: 100%;
    max-width: 540px;
}

.lang-en .contact-title {
    margin: 0 0 38px;

    color: #112d56;

    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.7px;
}

/* =========================================
   Benefits List
========================================= */

.lang-en .contact-benefits {
    margin: 0 0 36px;
    padding: 0;

    list-style: none;
}

.lang-en .contact-benefits li {
    position: relative;
    margin-bottom: 15px;
    padding-left: 23px;
    color: #274568;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.55;
    list-style: none;
}

.lang-en .contact-benefits li:last-child {
    margin-bottom: 0;
}

.lang-en .contact-benefits li::before {
    content: "";

    position: absolute;
    top: 11px;
    left: 2px;

    width: 5px;
    height: 5px;

    background: #112d56;
}

/* =========================================
   Certification Box
========================================= */

.lang-en .certification-box {
    width: 100%;
    max-width: 460px;

    padding: 22px 25px 20px;

    background: #eef4ff;
    border-radius: 18px;

    text-align: center;
}

.lang-en .certification-title {
    margin: 0 0 17px;

    color: #112d56;

    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.lang-en .certification-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 12px;
}

.lang-en .certification-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 62px;
    height: 62px;
}

.lang-en .certification-logo-item img {
    display: block;

    max-width: 100%;
    max-height: 100%;

    object-fit: contain;

    transition: transform 0.25s ease;
}

.lang-en .certification-logo-item:hover img {
    transform: translateY(-3px);
}

/* =========================================
   Responsive
========================================= */

@media (max-width: 1199.98px) {
    .lang-en .contact-card {
        padding-right: 27px;
        padding-left: 27px;
    }

    .lang-en .contact-title {
        font-size: 30px;
    }

    .lang-en .contact-benefits li {
        font-size: 16px;
    }
}

@media (max-width: 991.98px) {
    .lang-en .contact-section {
        padding: 65px 0 70px;
    }

    .lang-en .contact-row {
        min-height: auto;
    }

    .lang-en .contact-content {
        max-width: 650px;

        margin: 0 auto 45px;

        text-align: center;
    }

    .lang-en .contact-title {
        margin-bottom: 28px;

        font-size: 35px;
    }

    .lang-en .contact-benefits {
        display: inline-block;

        margin-bottom: 32px;

        text-align: left;
    }

    .lang-en .certification-box {
        margin: 0 auto;
    }

    .lang-en .contact-card {
        max-width: 560px;
    }
}

@media (max-width: 575.98px) {
    .lang-en .contact-section {
        padding: 45px 0 50px;
    }

    .lang-en .contact-title {
        font-size: 29px;
        letter-spacing: -0.3px;
    }

    .lang-en .contact-title br {
        display: none;
    }

    .lang-en .contact-benefits {
        width: 100%;
    }

    .lang-en .contact-benefits li {
        padding-left: 20px;

        font-size: 15px;
    }

    .lang-en .contact-card {
        padding: 28px 19px 25px;

        border-radius: 17px;
    }

    .lang-en .contact-card .form-control {
        height: 44px;

        font-size: 12px;
    }

    .lang-en .question-title {
        font-size: 11px;
    }

    .lang-en .radio-group {
        gap: 20px;
    }

    .lang-en .certification-box {
        padding: 20px 15px;

        border-radius: 16px;
    }

    .lang-en .certification-logos {
        gap: 10px;
    }

    .lang-en .certification-logo-item {
        width: 55px;
        height: 55px;
    }

    
}


/* =========================================
   Trusted Customers Section
========================================= */

.lang-en .trusted-section {
    padding: 70px 0;
    background: #ffffff;
    overflow: hidden;
}

.lang-en .trusted-section .small-title {
    max-width: 720px;
    margin: 0 auto 38px;

    color: #112d56;

    font-size: 34px;
    font-weight: 700;
    line-height: 1.35;
}

.lang-en .trusted-section .small-title span {
    color: #f58220;
}

/* =========================================
   Customer Logos
========================================= */

.lang-en .customer-logos {
    display: grid;

    /* 6 شعارات في سطر واحد */
    grid-template-columns: repeat(6, minmax(0, 1fr));

    align-items: center;
    gap: 18px;

    width: 100%;
    max-width: 1050px;

    margin: 0 auto;
}

.lang-en .customer-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 110px;
    padding: 12px;
    background: #ffffff;
    border: 1px solid #edf1f6;
    border-radius: 12px;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.lang-en .customer-logo-item img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100px;
    object-fit: contain;
}

.lang-en .customer-logo-item:hover {
    border-color: #dce4ee;
    box-shadow: 0 7px 20px rgba(17, 45, 86, 0.07);
    transform: translateY(-3px);
}

/* =========================================
   Tablet and Mobile
   3 شعارات في كل سطر = سطرين
========================================= */

@media (max-width: 767.98px) {
    .lang-en .trusted-section {
        padding: 50px 0;
    }

    .lang-en .trusted-section .small-title {
        margin-bottom: 28px;

        font-size: 27px;
    }

    .lang-en .trusted-section .small-title br {
        display: none;
    }

    .lang-en .customer-logos {
        grid-template-columns: repeat(3, minmax(0, 1fr));

        gap: 12px;
    }

    .lang-en .customer-logo-item {
        height: 76px;
        padding: 9px;
    }

    .lang-en .customer-logo-item img {
        max-height: 60px;
    }
}

/* =========================================
   Very Small Mobile
   يبقى 3 شعارات في كل سطر
========================================= */

@media (max-width: 380px) {
    .lang-en .customer-logos {
        gap: 8px;
    }

    .lang-en .customer-logo-item {
        height: 68px;
        padding: 7px;
        border-radius: 9px;
    }

    .lang-en .customer-logo-item img {
        max-height: 60px;
    }
}




