:root {
    --primary-color: #121e30;
    --secondary-color: #b3bac6;
}
/* //////////////////////  nav*/
@media (min-width: 768px) {
    .sidebar {
        display: none;
    }
}
@media (max-width: 768px) {
    .sidebar {
        position: fixed;
        top: 0;
        /* right: -200px; */
        /* left: auto; */
        width: 200px;
        height: 100vh;
        background-color: var(--primary-color);
        color: var(--secondary-color);
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        padding: 60px 20px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        transition: all 0.3s ease-in-out;
        z-index: 999;
    }

    .ltr.sidebar {
        right: -200px;
        left: auto;
    }
    .rtl.sidebar {
        left: -200px;
        right: auto;
    }

    .ltr.sidebar.active {
        right: 0;
    }
    .rtl.sidebar.active {
        left: 0;
    }

    /* Overlay */
    .sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100vw;
        background-color: rgba(0, 0, 0, 0.4);
        z-index: 998;
        display: none;
    }
    .sidebar-overlay.active {
        display: block;
    }

    /* Sidebar links */
    .sidebar a {
        color: var(--secondary-color);
        text-decoration: none;
        font-size: 16px;
        transition: color 0.2s;
        padding: 5px;
    }
    .sidebar a:hover {
        color: white;
    }

    /* Sidebar buttons */
    .sidebar .btn-lang,
    .sidebar .btn-join {
        background-color: var(--secondary-color);
        color: var(--primary-color);
        border: none;
        padding: 8px 12px;
        border-radius: 4px;
        font-weight: bold;
        cursor: pointer;
        transition: background-color 0.2s;
    }
    .sidebar .btn-lang:hover,
    .sidebar .btn-join:hover {
        background-color: white;
    }

    /* Hamburger */
    .menu-icon {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }
    .menu-icon span {
        /* height: 3px;
  width: 25px; */
        height: 4.5px;
        width: 25px;
        /* background: #333; */
        background: var(--secondary-color);
        display: block;
        border-radius: 2px;
    }
}
/* Responsive: show hamburger only on phones */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .menu-icon {
        display: flex;
        /* padding: 5px 5px 5px 20px; */
        padding: 5px 10px;
    }

    .rtl .menu-icon {
        padding: 5px 20px 5px 5px;
        justify-content: flex-end;
    }
}

/* ////////////////////// */
input.form-control::placeholder {
    font-size: 14px; /* or any size you want */
    /* color: #888;      */
}

/* .hero-title {
    font-size: 44px;
} */
@media (max-width: 768px) {
    .hero-title {
        font-size: 25px;
    }
    #home .input-group {
        width: 90%;
    }
}
@media (min-width: 768px) {
    .hero-title {
        font-size: 44px;
    }
    #home .input-group {
        width: 50%;
    }
}
/* //////// */
.container2 {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container2 {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .container2 {
        max-width: 850px;
    }
}
@media (min-width: 992px) {
    .container2 {
        max-width: 1070px;
    }
}
@media (min-width: 1200px) {
    .container2 {
        max-width: 1180px;
    }
}
@media (min-width: 1400px) {
    .container2 {
        max-width: 1420px;
    }
}
/* //////////////////// */

.services {
    padding: 1%;
    background-color: #b3bac67c;
}
/* //////////////////// */

.jobs-section {
    /* background-color: #eee; */
    padding: 50px 20px;
}

.jobs-header {
    text-align: center;
    margin-bottom: 40px;
}

.jobs-header h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 5px;
}

.jobs-header p {
    font-size: 14px;
    color: #777;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;

    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.job-card {
    background-color: #fff;
    border-radius: 6px;
    padding: 20px;
    /* box-shadow: 0 2px 5px rgba(0,0,0,0.08); */
    box-shadow: 0 2px 5px rgb(0 0 0 / 26%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.job-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.job-title img {
    /* height: 18px; */
    height: 32px;
    width: 35px;
    border-radius: 45%;
}

.job-time {
    font-size: 11px;
    color: #999;
}

.job-details p {
    font-size: 13px;
    color: #555;
    margin: 4px 0;
}

.job-footer {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
}

.jobs-button {
    text-align: center;
    margin-top: 40px;
}

.jobs-button a {
    background-color: #f7941d;
    color: white;
    padding: 10px 25px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s;
}

.jobs-button a:hover {
    background-color: #ec8700;
}

/* ///////////// popular-services */
.popular-services {
    /* background-color: var(--primary-color); */
    /* background-color: #f1f5f9; */
    margin: 5% 0;
}
.popular-services .scroll-wrapper {
    padding: 5px 0;
}
.popular-services .card {
    /* background-color: var(--secondary-color)!important; */
    /* background-color: var(--secondary-color)!important; */
    background-color: #f1f5f9 !important;
    width: 190px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(179, 186, 198, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-radius: 12px !important;
}
.popular-services .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 12px rgba(179, 186, 198, 0.25);
}
.popular-services .card img {
    /* width: 90%;
     margin: 5%; */
    border-radius: 0.375rem 2.375rem;
    position: relative;
    left: 0;
    top: 0;
}
@media (max-width: 768px) {
    .popular-services .inServices {
        gap: 0.4rem;
    }
    .popular-services #rightArrow-ar,
    .popular-services #leftArrow-ar,
    .popular-services #rightArrow,
    .popular-services #leftArrow {
        display: none !important;
    }
    .popular-services .card img {
        width: 90%;
        height: 70%;
    }
    .popular-services .card {
        /* width: 90px; */
        /* width: 105px; */
        width: 115px;
    }
    .popular-services h6 {
        /* font-size: 10px; */
        font-size: 14px;
    }
    .popular-services .card-body {
        padding: 10px 5px;
    }
}
@media (min-width: 768px) {
    .popular-services .inServices {
        gap: 1rem;
    }
    .popular-services .card img {
        /* width: 90%; */
        width: 95%;
        height: 70%;
    }
    .popular-services .card {
        width: 170px;
    }
    .popular-services h6 {
        font-size: 1rem;
    }
}
/* @media (min-width: 768px) {
    .popular-services .card img {
        width: 90%;
    height: 70%;
    }
    .popular-services .card {
        width: 190px;
    }
} */
.popular-services h3 {
    /* color: var(--primary-color); */
    /* border-left: 4px solid #b3bac6;
    padding-left: 12px; */
    color: #1e293b;
    font-weight: 600;
}
.popular-services h6 {
    /* color: var(--primary-color)!important; */
    color: #475569; /* Softer than pure black */
}

.overflow-auto::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome, Safari */
}

.d-flex.overflow-auto {
    overflow-x: auto;
    overflow-y: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
    white-space: nowrap;
}

.d-flex.overflow-auto::-webkit-scrollbar {
    display: none;
}
.scroll-wrapper::-webkit-scrollbar {
    display: none;
}
.card {
    scroll-snap-align: start;
}
.arrow-btn {
    padding: 2% 0.5%;
    border: none;
    background: none; /* this cancels out your background-color line */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    cursor: pointer;
    /* background-color: var(--secondary-color);  */
    border-radius: 4px;
    transition: background 0.3s ease;
    background-color: #b3bac6;
}
.arrow-btn:hover {
    background-color: #94a3b8; /* Slightly darker gray-blue */
}
.arrow-btn:hover {
    opacity: 0.8;
}
.arrow-btn i {
    font-size: 16px;
    line-height: 1;
    color: var(--primary-color);
}

.arrow-btn {
    transition: opacity 0.2s ease;
}

/* html[dir="rtl"] #leftArrow {
  order: 2;
}
html[dir="rtl"] #rightArrow {
  order: 0;
} */
/* //////*/
/* ////// aboutus */
.aboutus {
    background-color: #b3bac6;
    padding: 3% 4%;
    max-width: 1200px;
    /* margin: 60px auto; */
    /* margin: 40px auto; */
    /* padding: 40px; */
    /* background-color: #fff; */
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}
.aboutuscont {
    /* max-width: 1200px; */
    /* margin: 60px auto; */
    /* margin: 40px auto; */
    /* padding: 40px; */
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-wrap: wrap;
    /* gap: 40px; */
    align-items: center;
}

.aboutus-left {
    flex: 1 1 50%;
}

.aboutus-left h2 {
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.aboutus-left p.subtext {
    /* font-size: 18px; */
    margin-bottom: 30px;
    color: #555;
}

.feature {
    margin-bottom: 20px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.feature-icon {
    color: #6ecc52;
    font-size: 18px;
    line-height: 1.5;
}

.feature-content h4 {
    margin: 0;
    /* font-size: 16px; */
    font-weight: bold;
}

.feature-content p {
    margin: 4px 0 0 0;
    font-size: 14px;
    color: #666;
}

.aboutus-right {
    flex: 1 1 40%;
}

.aboutus-right img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
    .aboutuscont {
    padding: 40px;
    gap: 40px;
}
    .service-right p {
        font-size: 16px;
    }
    .service-right h2 {
        font-size: 24px;
        margin-bottom: 16px;
            font-weight: bolder;
    }
    .service-right p.subtext {
        font-size: 18px;
    }
    .service-right .feature .feature-content h2 {
        font-size: 15px;
    }
        .feature-content h4 {
            font-size: 16px;
    }

}
@media (max-width: 768px) {
        .aboutuscont {
    padding: 15px;
    gap: 10px;
}
        .aboutus {
        flex-direction: column;
        padding: 20px;
    }
    .aboutus-left,
    .aboutus-right {
        flex: 1 1 100%;
    }
    .aboutus h2 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .service-right p {
        font-size: 14px;
    }

    .service-buttons a {
        padding: 7px 10px;
        font-size: 14px;
    }
    .aboutus-left p.subtext {
        font-size: 15px;
    }
        .feature-content h4 {
            font-size: 14.5px;
    }
}
/* ////// service */
/* ////// */
.services-section {
    background-color: #ffffff;
    padding-top: 5%;
    padding-bottom: 5%;
}
.service {
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    background-color: #112d42;
    border-radius: 20px;
}

.service-left {
    flex: 1 1 40%;
    position: relative;
}

.service-left img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.service-right {
    flex: 1 1 55%;
}

.service-right h2 {
    /* font-size: 24px; */
    /* margin-bottom: 16px; */
    color: #ffffff;
}

.service-right p {
    /* font-size: 16px; */
    line-height: 1.6;
    margin-bottom: 24px;
    color: #cbd5e1;
}
@media (min-width: 768px) {
    .service-right p {
        font-size: 16px;
    }
    .service-right h2 {
        font-size: 24px;
        margin-bottom: 16px;
    }
}
@media (max-width: 768px) {
    .service-right p {
        font-size: 14px;
    }
    .service-right h2 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .service-buttons a {
        padding: 7px 10px;
        font-size: 14px;
    }
}
.service-buttons {
    display: flex;
    gap: 15px;
}

.btn-yellow {
    background-color: #ffc43d;
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-yellow:hover {
    background-color: #e0ac2e;
}

.btn-green {
    background-color: #2dd4bf;
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-green:hover {
    background-color: #1bb9a8;
}

@media (max-width: 768px) {
    .service {
        flex-direction: column;
    }
}
/* ////// */
/* ////// navbar*/
.navbar {
    /* background-color: #0f2d3f; */
    background-color: #121e30;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.navbar .logo {
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    color: #ffffffed;
    /* color: #ffffff; */
    /* color: var(--secondary-color); */
}

.navbar .nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navbar .nav-links a {
    text-decoration: none;
    color: #cbd5e1;
    font-size: 16px;
    transition: color 0.3s;
}

.navbar .nav-links a:hover {
    color: #2dd4bf;
}

.navbar .nav-actions {
    display: flex;
    gap: 15px;
}
@media (max-width: 768px) {
    .navbar .nav-actions {
        display: flex;
        gap: 5px;
        align-items: center;
    }
}

.navbar .btn-lang,
.navbar .btn-join {
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}
@media (max-width: 768px) {
    .navbar .btn-lang,
    .navbar .btn-join {
        padding: 6px 8px;
        font-size: 13px;
    }
}
@media (min-width: 768px) {
    .navbar .btn-lang,
    .navbar .btn-join {
        padding: 8px 16px;
        font-size: 14px;
    }
}
.navbar .btn-lang {
    background-color: #2dd4bf;
    color: #000;
}

.navbar .btn-lang:hover {
    background-color: #1bb9a8;
}

.navbar .btn-join {
    /* background-color: #ffc43d; */
    background-color: #b3bac6;
    color: #000;
}

.navbar .btn-join:hover {
    background-color: #e0ac2e;
}

@media (max-width: 768px) {
    .navbar .nav-links {
        display: none;
    }
}
/* ////// */
/* ////// */
.site-footer {
    background-color: #1e293b; /* Dark blue-gray */
    color: #f1f5f9; /* Light text */
    padding: 50px 20px 25px;
    /* font-family: "Segoe UI", sans-serif; */
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-about,
.footer-links,
.footer-contact {
    flex: 1 1 250px;
    min-width: 250px;
}

.site-footer h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-about p,
.footer-contact p {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.6;
}

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

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

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f97316; /* Orange hover */
}

.footer-socials a {
    display: inline-block;
    margin-right: 12px;
    color: #f1f5f9;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-socials a:hover {
    color: #f97316;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 13px;
    color: #94a3b8;
    border-top: 1px solid #334155;
    padding-top: 15px;
}

/* ////// */


@media (min-width: 768px) {

}
@media (max-width: 768px) {
.job-container .job-title {
      flex-direction: column;
        padding-bottom: 10px;

}
}


/* //////////////////// */
@media (min-width: 768px) {
    .form .boxCont .box{
        width: 45%;
        flex: 1;
    }
}
@media (max-width: 768px) {
    .form h2 {
        font-size: 20px;
        font-weight: bold;
    }
    .form .boxCont {

    }
    .form .boxCont .box{
        width: 100%;
        flex: none;
    }
    .form .boxCont .box input{
        height: 25px;
    }
    .form .boxCont .box label{
  font-size: 14px;
    }
    .form .boxCont .box select{
  font-size: 14px;
    }

}







/* ///////////////////// */
