@charset "utf-8";

:root {
    --primary_color: #003E66;
    --secondary_color: #F15A29;
    --white: #ffffff;
    --black: #000000;
    --prograph_light: #696969;
    --prograph: #626262;
    --bg_light: #F7F9FA;
}

/* Start recall fonts*/
@font-face {
    font-family: 'Almarai-Bold';
    src: url('fonts/Almarai-Bold.woff2') format('woff2'), url('fonts/Almarai-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Almarai-Regular';
    src: url('fonts/Almarai-Regular.woff2') format('woff2'), url('fonts/Almarai-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'KonkhmerSleokchher-Regular';
    src: url('fonts/KonkhmerSleokchher-Regular.woff2') format('woff2'), url('fonts/KonkhmerSleokchher-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter-Regular';
    src: url('fonts/Inter18pt-Regular.woff2') format('woff2'), url('fonts/Inter18pt-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



/* End recall fonts*/


::-moz-selection {
    /* Code for Firefox */
    background: var(--primary_color);
    color: var(--white);
    opacity: 10%;
}

::selection {
    background: var(--primary_color);
    color: var(--white);
    opacity: 10%;
}
/*--- .lg-outer This class is most important in light gallary  ---*/
.lg-outer {
    direction: ltr;
}

.ltr {
    direction: ltr;
}

.rtl {
    direction: rtl;
}

body[dir="rtl"] .font_bold {
    font-family: "Almarai-Bold" !important;
}

body[dir="rtl"] .font_regular {
    font-family: "Almarai-Regular" !important;
}

body[dir="ltr"] .font_bold {
    font-family: "KonkhmerSleokchher-Regular" !important;
}

body[dir="ltr"] .font_regular {
    font-family: "KonkhmerSleokchher-Regular" !important;
}

body[dir="ltr"] .font_intr_regular {
    font-family: 'Inter-Regular' !important;
}



.prograph_color {
    color: var(--prograph);
}

.white_color {
    color: var(--white);
}

.black_color {
    color: var(--black);
}

.prograph_light_color {
    color: var(--prograph_light);
}

.primary_color {
    color: var(--primary_color) !important;
}

.secondary_color {
    color: var(--secondary_color) !important;
}

.bg_secondary_color {
    background-color: var(--secondary_color);
}

.bg_primary_color {
    background-color: var(--primary_color);
}

.bg_white {
    background-color: var(--white);
}

.bg_black {
    background-color: var(--black);
}

.bg_light {
    background-color: var(--bg_light);
}



body[dir="rtl"] a,
body[dir="rtl"] h3,
body[dir="rtl"] h2,
body[dir="rtl"] h1,
body[dir="rtl"] h4,
body[dir="rtl"] h5,
body[dir="rtl"] p,
body[dir="rtl"] span,
body[dir="rtl"] div,
body[dir="rtl"] li {
    font-family: 'Almarai-Regular' !important;
}

body[dir="ltr"] a,
body[dir="ltr"] h3,
body[dir="ltr"] h2,
body[dir="ltr"] h1,
body[dir="ltr"] h4,
body[dir="ltr"] h5,
body[dir="ltr"] p,
body[dir="ltr"] span,
body[dir="ltr"] div,
body[dir="ltr"] li {
    font-family: 'KonkhmerSleokchher-Regular' !important;
}

body[dir="ltr"] p {
    font-family: 'Inter-Regular' !important;
}

html, body {
    margin: 0;
    padding: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
ul {
    margin: 0;
}

a {
    text-decoration: none !important;
}

    a:hover {
        color: var(--scoundary_color);
    }

.center {
    display: block !important;
    margin: auto !important;
}

.left {
    float: left !important;
}

.right {
    float: right !important;
}

.justify {
    text-align: justify !important;
}

.sticky {
    position: fixed;
    background-color: var(--primary_color);
    top: 0;
    right: 0;
    padding-top: 5px;
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    animation: navbarAnimation 0.5s ease-in-out; /* Animation when it sticks */
}
/* Animation keyframes for the navbar */
@keyframes navbarAnimation {
    from {
        top: -60px; /* Start from above the screen */
        opacity: 0;
    }

    to {
        top: 0; /* End at the top of the page */
        opacity: 1;
    }
}


/* to change the tooltips color and the background color */
.tooltip-inner {
    color: var(--white);
    font-size: 0.7rem;
}

.bs-tooltip-bottom .arrow::before,
.bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
    border-bottom-color: var(--scoundary_color) !important;
}

.form-control:focus, .form-select:focus {
    border: none !important;
    box-shadow: 0 0 0 1px var(--primary_color);
}

.form-control, .form-select {
    border: 1px solid #9F9FA442 !important;
}

body[dir="rtl"] .form-control::placeholder, .form-select {
    color: var(--prograph_light);
    font-family: 'Almarai-Regular';
}

body[dir="ltr"] .form-control::placeholder, .form-select {
    color: var(--prograph_light);
    font-family: 'Almarai-Regular';
}

body[dir="rtl"] [type=email], body[dir="rtl"] [type=number], body[dir="rtl"] [type=tel], body[dir="rtl"] [type=url] {
    direction: rtl;
}

.underline-link {
    position: relative;
    display: inline-block;
    text-decoration: none;
}

    .underline-link::after {
        content: '';
        position: absolute;
        bottom: -5px; /* Adjust based on font size */
        width: 0;
        height: 2px; /* Adjust based on the thickness of the underline */
        background-color: var(--secondary_color); /* Color of the underline */
        transition: width 0.3s ease; /* Adjust duration and easing as needed */
    }

body[dir="ltr"] .underline-link::after {
    left: 3px;
}

body[dir="rtl"] .underline-link::after {
    right: 3px;
}

.underline-link.active::after {
    width: 80%;
}

.underline-link:hover::after {
    width: 80%;
}

body[dir="ltr"] .d-rtl {
    display: none;
}

body[dir="rtl"] .d-ltr {
    display: none;
}
/*--------------------Start page style ---------------------------*/
header {
    position: relative;
    z-index: 100;
}

.navbar-nav .nav-link {
    color: #ffffffb9
}

    .navbar-nav .nav-link:hover, .navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
        color: var(--white) !important;
    }

.carousel, .breadcrumb {
    margin-top: -87px;
}

.gradient {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: -webkit-linear-gradient(to bottom, #0B2D42, #003E6600);
    background: linear-gradient(to bottom, #0B2D42,#003E6600);
}

.gradient_gradient_primary_color {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: #003E6633;
}

.gradient_img {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-image: url(../images/Vectorslide.svg);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: 100%;
}

.close {
    cursor: pointer;
    transition: all 0.3s ease;
}

    .close:hover {
        color: var(--white) !important;
        transform: rotate(180deg);
    }

.btn-secondary {
    --bs-btn-color: var(--white);
    --bs-btn-bg: var(--secondary_color);
    --bs-btn-border-color: var(--secondary_color);
    --bs-btn-hover-color: var(--white);
    --bs-btn-hover-bg: var(--whitecc);
    --bs-btn-hover-border-color: var(--white);
    --bs-btn-focus-shadow-rgb: 130, 138, 145;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--secondary_color);
    --bs-btn-active-border-color: var(--secondary_color);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #6c757d;
    --bs-btn-disabled-border-color: #6c757d;
}

.search {
    background-color: var(--primary_color);
    border: 1px solid #ffffffb9;
    width: 56px;
    height: 56px;
}

.language {
    background-color: #D8DADF21;
    border: 1px solid #D8DADF21;
    width: 56px;
    height: 56px;
}

    .language:hover, .search:hover {
        border-color: var(--secondary_color);
    }

        .language:hover .hvr-grow span, .search:hover i {
            color: var(--secondary_color);
        }



/* Fullscreen overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 64, 101, 0.95); /* dark blue transparent */
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 9999;
}

    /* When active */
    .search-overlay.active {
        visibility: visible;
        opacity: 1;
    }

/* Search form */
.search-form {
    width: 80%;
    max-width: 600px;
    position: relative;
}

    .search-form input {
        width: 100%;
        padding: 20px 60px 20px 20px;
        font-size: 20px;
        border: none;
        border-radius: 50px;
        outline: none;
    }

    .search-form button {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: var(--secondary_color);
        color: #fff;
        border: none;
        border-radius: 50px;
        width: 120px;
        height: 50px;
        font-size: 20px;
        cursor: pointer;
    }

body[dir="ltr"] .search-form button {
    right: 15px;
}

body[dir="rtl"] .search-form button {
    left: 15px;
}

.search-form button:hover {
    background-color: var(--primary_color);
}

.close-btn {
    position: absolute;
    top: 20px;
    font-size: 35px;
    color: white;
    cursor: pointer;
}

body[dir="ltr"] .close-btn {
    right: 40px;
}

body[dir="rtl"] .close-btn {
    left: 40px;
}

.circle {
    width: 9px;
    height: 9px;
    border-radius: 50% !important;
    margin-right: 10px;
}

.border_white {
    border: 1px solid #FFFFFF2E !important;
}

.carousel-caption h1 {
    font-size: 5rem;
}

.carousel-caption.main {
    top: 22%;
}

.carousel-caption img {
    width: 55px;
    height: 55px;
}

.border-white {
    border: 3px solid var(--white) !important;
}

body[dir="ltr"] .carousel-caption.links {
    background-color: #003E6680;
    border: 1px solid #16579680;
    border-radius: 50px 0 0 0;
    right: 8%;
    left: 8%;
}

body[dir="rtl"] .carousel-caption.links {
    background-color: #003E6680;
    border: 1px solid #16579680;
    border-radius: 0 50px 0 0;
    right: 8%;
    left: 8%;
}

a.text-white:hover {
    color: var(--secondary_color) !important;
}

body[dir="ltr"] .bottom_rectangle {
    background: url(../images/Rectangle_slide_bottom.png) no-repeat;
    background-position: right bottom;
    background-size: contain;
    position: absolute;
    width: 612px;
    height: 180px;
    bottom: -5px;
    right: 0;
}

body[dir="rtl"] .bottom_rectangle {
    background: url(../images/Rectangle_slide_bottom.png) no-repeat;
    transform: scaleX(-1);
    background-position: right bottom;
    background-size: contain;
    position: absolute;
    width: 612px;
    height: 180px;
    bottom: -5px;
    left: 0;
}


/* === Base Animation Setup === */
.animated {
    opacity: 0;
    transform: translateY(20px);
    animation-fill-mode: forwards;
}

/* === Fade In Up (Text) === */
.fadeInUp {
    animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === Fade In Down === */
.fadeInDown {
    animation: fadeInDown 1s ease-out forwards;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === Fade In Left (for hero image or text) === */
.fadeInLeft {
    animation: fadeInLeft 1.2s ease-out forwards;
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-60px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* === Fade In Right (alternate slide) === */
.fadeInRight {
    animation: fadeInRight 1.2s ease-out forwards;
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(60px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* === Hero Image Zoom In + Fade === */
.heroZoomIn {
    animation: heroZoomIn 3s ease-in-out forwards;
}

@keyframes heroZoomIn {
    0% {
        opacity: 0;
        transform: scale(1.08);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* === Hero Text Sequential Animation (delays) === */
.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

/* === Combined Slide Section === */
.hero-slide {
    position: relative;
    overflow: hidden;
}

    .hero-slide .hero-bg {
        animation: slideBg 8s ease-in-out infinite alternate;
    }

@keyframes slideBg {
    0% {
        transform: scale(1.1) translateX(-2%);
    }

    100% {
        transform: scale(1.1) translateX(2%);
    }
}

body[dir="ltr"] .about_bg {
    background: url(../images/about_bg_img.svg) no-repeat;
    background-position: 0px 245px;
    background-size: auto 670px;
}

body[dir="rtl"] .about_bg {
    background: url(../images/about_bg_rtl_img.svg) no-repeat;
    background-position: 100% 245px;
    background-size: auto 670px;
}

.about_bg h1 {
    font-size: 80px !important;
}

.about_bg .bg_primary_color {
    position: relative;
    left: 0;
    top: -100px;
    width: 200px;
}

.custom_btn i {
    width: 35px;
    height: 35px;
}

.custom_btn_nothover i {
    width: 35px;
    height: 35px;
}

.link-underline {
    border-bottom: 2px solid var(--white);
}

#lightgallery .item {
    cursor: pointer;
}

.custom_btn:hover span {
    color: var(--white) !important;
}

.hvr-bounce-to-right:before {
    background: var(--secondary_color);
    border-radius: var(--bs-border-radius-xxl) !important;
}

.hvr-bounce-to-right:before {
    background: var(--secondary_color);
    border-radius: var(--bs-border-radius-xxl) !important;
}

.custom_btn i {
    display: inline-block;
    transition: transform 0.5s ease;
}

.custom-card .border_icon {
    border: 3px solid #F7F9FA;
    position: relative;
    width: 100px;
    height: 100px;
}

.Products .border_icon {
    border: 3px solid #E3E3E8;
    position: relative;
    width: 100px;
    height: 100px;
}

.Products .border {
    border: 3px solid #E3E3E8;
}

.Products a:hover .card h5, a:hover .custom-card h5 {
    color: var(--secondary_color);
}

body[dir="ltr"] .corner-icon {
    position: absolute;
    top: 5px;
    right: 28%;
    border-radius: var(--bs-border-radius-xl) 0 0 0 !important;
    height: 35px;
    width: 93px;
}

.our_Solutions .swiper-slide a:hover .corner-icon, .Industries_Serve a:hover .corner-icon, .our_Leadership_Team a:hover .corner-icon {
    background-color: var(--secondary_color);
}

body[dir="rtl"] .corner-icon {
    position: absolute;
    top: 5px;
    left: 28%;
    border-radius: 0 var(--bs-border-radius-xl) 0 0 !important;
    height: 35px;
    width: 93px;
}



/* Rotate on hover */
body[dir="ltr"] .custom_btn:hover i {
    transform: rotate( 45deg);
}

body[dir="rtl"] .custom_btn:hover i.hgi-arrow-up-right-01 {
    transform: rotate( -135deg);
}

body[dir="rtl"] .custom_btn i.hgi-arrow-up-right-01 {
    transform: rotate( -90deg);
}


.custom_list {
    list-style: none;
}

    .custom_list li {
        position: relative;
    }

        .custom_list li::before {
            content: "";
            position: absolute;
            top: 0;
            width: 16px;
            height: 16px;
            background: url('../images/checkmark-circle-04.svg') no-repeat center/contain;
        }

.Vision .custom_list li::before {
    content: "";
    position: absolute;
    top: 0;
    width: 25px;
    height: 25px;
    background: url('../images/vision_list_icon.svg') no-repeat center/contain;
}

.Vision .custom_list li {
    margin-bottom: 20px;
}

body[dir="ltr"] .custom_list li::before {
    left: 0;
}

body[dir="rtl"] .custom_list li::before {
    right: 0;
}

.Vision .bg_primary_color {
    position: relative;
    left: 0;
    top: -100px;
    width: 250px;
}

.Client_Testimonials {
    background: url(../images/Client_Testimonials_bg.svg) no-repeat;
    background-color: var(--bg_light);
    background-position: 0 50px;
}

.Our_Partner hr {
    margin: -1.4rem 0;
    border-width: 2px;
}

.footer_bg {
    background: url(../images/footer.jpg) no-repeat;
    background-size: cover;
}

    .footer_bg .gradient_black {
        height: 100%;
        width: 100%;
        position: absolute;
        top: 0;
        right: 0;
        background: #000000BF;
    }

    .footer_bg .gradient_gradient_primary_color {
        background: #003E66A6;
    }

    .footer_bg ul li a:hover img {
        filter: invert(53%) sepia(80%) saturate(3889%) hue-rotate(344deg) brightness(96%) contrast(97%);
    }

    .footer_bg ul li {
        margin-bottom: 12px;
    }

.breadcrumb .carousel-caption.main {
    top: 60%;
    left: 8%;
    right: 8%;
}

.bg_green_color {
    background-color: #71BA44;
}

.btn_green.hvr-bounce-to-right:before {
    background: #71BA44 !important;
    border-radius: var(--bs-border-radius-xxl) !important;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--secondary_color);
}

.swiper-pagination-bullet {
    background-color: #D9D9D9;
    width: 13px;
    height: 13px;
    opacity: 1;
}

.Industries_Serve .custom-card {
    min-height: 390px;
}

.Industries_Serve .border_icon {
    border-color: var(--white);
}

.link.black_color:hover h4 {
    color: var(--secondary_color);
}

.jobs .time {
    background-color: #1967D226;
    color: #1967D2;
}

.pagination {
    --bs-pagination-padding-x: 0.75rem;
    --bs-pagination-padding-y: 0.375rem;
    --bs-pagination-font-size: 1rem;
    --bs-pagination-color: #1C1C1D;
    --bs-pagination-bg: var(--bs-body-bg);
    --bs-pagination-border-width: 0;
    --bs-pagination-border-color: #0;
    --bs-pagination-border-radius: 50px;
    --bs-pagination-hover-color: var(--secondary_color);
    --bs-pagination-hover-bg: var(--bs-body-bg);
    --bs-pagination-hover-border-color: var(--bs-border-color);
    --bs-pagination-focus-color: var(--secondary_color);
    --bs-pagination-focus-bg: var(--bs-secondary-bg);
    --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(13, 109, 253, 0);
    --bs-pagination-active-color: #fff;
    --bs-pagination-active-bg: var(--secondary_color);
    --bs-pagination-active-border-color: var(--secondary_color);
    --bs-pagination-disabled-color: var(--bs-secondary-color);
    --bs-pagination-disabled-bg: var(--bs-secondary-bg);
    --bs-pagination-disabled-border-color: var(--bs-border-color);
    display: flex;
    padding-left: 0;
    list-style: none;
}

    .pagination .page-link {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.contact_information .bg_primary_color p {
    color: #98B7E0;
}

.btn.bg_secondary_color:hover {
    color: var(--secondary_color) !important;
    border-color: var(--secondary_color);
}

.linkUnderLine {
    border-bottom: 3px solid var(--secondary_color);
}

    .linkUnderLine:hover {
        color: var(--secondary_color);
    }

.Recent_Post a:hover p {
    color: var(--secondary_color);
}

.circle_secoundery_color {
    width: 18px;
    height: 18px;
    border-radius: 50px;
    background-color: var(--secondary_color);
}

    .circle_secoundery_color.position-absolute {
        width: 10px;
        height: 10px;
        top: 3px;
    }

.Our_History .content .divider {
    width: 100%;
    height: 2px;
    background-color: #DDDDDD;
    position: absolute;
    top: 270px;
    left: 0;
}

.bg_primary_color_gradent {
    background: linear-gradient(180deg, #003d66f1, #3e7396f1);
}

.our_Leadership_Team .text {
    margin-top: -40px;
    position: relative;
}

.zoom-container img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.news-Link:hover .zoom-container img {
    transform: scale(1.2);
}

.gallery_item .card:hover .zoom-container img {
    transform: scale(1.2);
}

.news-Link:hover h4 {
    color: var(--secondary_color);
}

.newsGradent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #003d66, #003d6600);
}

.newsContent {
    position: absolute;
    bottom: 20px;
    left: 0;
}

.our_gallery {
    background: linear-gradient(0deg, #042133E6, #003E66E6), url(../images/our_galleryBg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

    .our_gallery .border, .Our_Services .border {
        border-color: #FFFFFF4D !important;
    }

.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: var(--swiper-navigation-top-offset, 100%);
    margin-top: calc(-20px - (var(--swiper-navigation-size) / 1));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

body[dir="ltr"] .swiper-button-next {
    left: 65px;
}

body[dir="rtl"] .swiper-button-next {
    right: 65px;
}

body[dir="rtl"] .swiper-button-prev {
    right: 0;
}

body[dir="ltr"] .swiper-button-prev {
    left: 0;
}

.swiper-button-next, .swiper-button-prev {
    width: 45px;
    height: 45px;
    border: 2px solid var(--white);
    border-radius: 50px;
}

    .swiper-button-next:hover, .swiper-button-prev:hover {
        color: var(--secondary_color);
        border: 2px solid var(--secondary_color);
    }

    .swiper-button-next::after, .swiper-button-prev::after {
        display: none;
    }

body[dir="ltr"] .custom-card {
    clip-path: polygon(63% 10%, 73% 0, 100% 0, 100% 100%, 0 100%, 0 10%);
    overflow-x: hidden;
    height: 100%;
}

body[dir="rtl"] .custom-card {
    clip-path: polygon(30% 0, 35% 10%, 100% 10%, 100% 100%, 0 100%, 0 0);
    overflow-x: hidden;
    height: 100%;
}

body[dir="ltr"] .swiper {
    direction: ltr;
}

body[dir="rtl"] .swiper {
    direction: rtl;
}

body[dir="ltr"] .Our_Services .bg_primary_color .custom_bg {
    background: url(../images/Isolation_Mode_ourservices.svg) no-repeat;
    background-position: 120% 100%;
}

body[dir="rtl"] .Our_Services .bg_primary_color .custom_bg {
    background: url(../images/Isolation_Mode_ourservices_rtl.svg) no-repeat;
    background-position: -20% 80%;
}

.Our_Services {
    position: relative;
    overflow: hidden;
}

.scroll-container {
    width: 100%;
    height: 100vh;
}

.Our_Services .panel {
    width: 100%;
    height: 80vh;
    display: block;
}


body[dir="ltr"] .Our_Services .title {
    top: 60px;
    left: 8%;
}

body[dir="rtl"] .Our_Services .title {
    top: 60px;
    right: 8%;
}

.Our_Services ul li {
    color: #BFDAEB;
    font-size: 0.7rem;
}

.Our_Services ul {
    padding: 0;
}

.Our_Services .custom_list li::before {
    filter: brightness(1000%) contrast(1000%);
}

.Client_Testimonials .swiper-slide .content p {
    color: #9F9FA4;
}

body[dir="ltr"] footer h6.font_regular, body[dir="ltr"] footer a, body[dir="ltr"] footer .bg_primary_color h6 span, body[dir="ltr"] .news-Link span, .Recent_Post span.prograph_color {
    font-family: 'Inter-Regular' !important;
}

    body[dir="ltr"] footer .bg_primary_color h6 span.secondary_color {
        font-family: 'KonkhmerSleokchher-Regular' !important;
    }

    body[dir="ltr"] footer a.text-decoration-underline {
        font-family: 'KonkhmerSleokchher-Regular' !important;
        text-decoration: none !important;
        border-bottom: 1px solid var(--secondary_color);
    }

body[dir="ltr"] .breadcrumb .carousel-caption.links, body[dir="rtl"] .breadcrumb .carousel-caption.links {
    background-color: #003E66CC;
}

.Recent_Post p.text {
    font-family: "KonkhmerSleokchher-Regular" !important;
}

.blogs .bg_secondary_color, .blogs span.secondary_color, .blogs span.prograph_light_color {
    font-family: 'Inter-Regular' !important;
}

.swiper-slide-next .news-Link.small {
    display: none !important;
}

.swiper-slide-next .news-Link.big.d-none {
    display: Block !important;
}

.card-img-top {
    object-fit: cover;
    width: 100% !important;
    height: 217px !important;
}

.gallery_item, .gallery_item a, .gallery_item .card {
    height: 100% !important;
}

.Our_Services .scroll-container .panel img {
    height: 646px !important;
}


/*----------------------------------------------------------------*/
/*--                  The media query Started                   --*/
/*----------------------------------------------------------------*/
/*--------------------Start mobile device style ---------------------------*/
@media screen and (max-width: 480px) {
    body, html {
        overflow-x: hidden;
    }

    .navbar-dark {
        background-color: var(--primary_color);
    }

    .breadcrumb .carousel-caption.main {
        top: 40%;
    }

    .breadcrumb .slide_img {
        height: 30rem;
    }

    .navbar-brand img {
        width: 120px !important;
    }

    .carousel-caption.links {
        right: 0%;
        left: 3%;
    }

    .carousel-caption.main {
        right: 3%;
        left: 3%;
    }

    .carousel-caption.links a {
        margin: 0 0 20px 0 !important;
    }

    .slide_img {
        height: 52rem;
    }

    .carousel-caption.main {
        top: 7%;
    }

    .carousel-caption h1 {
        font-size: 3rem;
    }

    body[dir="ltr"] .about_bg {
        background-position: 0px 1150px;
        background-size: auto 380px;
    }

    body[dir="rtl"] .about_bg {
        background-position: 0px 1150px;
        background-size: auto 380px;
    }


    .swiper-button-next,
    .swiper-button-prev {
        margin-top: calc(-10px - (var(--swiper-navigation-size) / 1));
    }

    body[dir="ltr"] .swiper-button-next {
        left: 60% !important;
    }

    body[dir="rtl"] .swiper-button-next {
        right: 60%;
    }

    body[dir="rtl"] .swiper-button-prev {
        right: 40%;
    }

    body[dir="ltr"] .swiper-button-prev {
        left: 40%;
    }

    .Our_Services .panel {
        height: 90vh;
    }

    body[dir="ltr"] .Our_Services .bg_primary_color .custom_bg {
        background-position: -100% 110%;
        background-size: 460px 180px;
    }

    body[dir="rtl"] .Our_Services .bg_primary_color .custom_bg {
        background-position: 188% 105%;
        background-size: 460px 180px;
    }

    body[dir="ltr"] .Our_Services .title {
        position: relative !important;
        top: 0;
        left: 0;
        background-color: var(--primary_color);
        padding: 50px 20px;
        text-align: center;
        margin-bottom: 0 !important;
    }

    body[dir="rtl"] .Our_Services .title {
        position: relative !important;
        top: 0;
        right: 0;
        background-color: var(--primary_color);
        padding: 50px 20px;
        text-align: center;
        margin-bottom: 0 !important;
    }

    .Our_Services .scroll-container .panel img {
        height: 100% !important;
    }
}


/*--------------------Start ipade and device style ---------------------------*/
@media (max-width: 991px) and (min-width: 480px) {
    body, html {
        overflow-x: hidden;
    }

    .navbar-dark {
        background-color: var(--primary_color);
    }

    .breadcrumb .carousel-caption.main {
        top: 40%;
    }

    .breadcrumb .slide_img {
        height: 30rem;
    }

    .carousel-caption.links {
        right: 0%;
        left: 3%;
    }

    .slide_img {
        height: 40rem;
    }

    .carousel-caption.links h4 {
        font-size: 14px;
    }

    .carousel-caption.links img {
        width: 30px;
        height: 30px;
    }

    body[dir="ltr"] .about_bg {
        background-position: 0px 820px;
        background-size: auto 580px;
    }

    body[dir="rtl"] .about_bg {
        background-position: 0px 820px;
        background-size: auto 580px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        margin-top: calc(-10px - (var(--swiper-navigation-size) / 1));
    }

    body[dir="ltr"] .swiper-button-next {
        left: 55% !important;
    }

    body[dir="rtl"] .swiper-button-next {
        right: 55%;
    }

    body[dir="rtl"] .swiper-button-prev {
        right: 45%;
    }

    body[dir="ltr"] .swiper-button-prev {
        left: 45%;
    }

    .Our_Services .panel {
        height: 100vh;
    }

    body[dir="ltr"].Our_Services .title {
        position: relative !important;
        top: 0;
        left: 0;
        background-color: var(--primary_color);
        padding: 50px 20px;
        text-align: center;
        margin-bottom: 0 !important;
    }

    body[dir="rtl"].Our_Services .title {
        position: relative !important;
        top: 0;
        right: 0;
        background-color: var(--primary_color);
        padding: 50px 20px;
        text-align: center;
        margin-bottom: 0 !important;
    }

    .Our_Services .scroll-container .panel img {
        height: 100% !important;
    }
}

/*--------------------Start small device style ---------------------------*/
@media (max-width: 1300px) and (min-width: 991px) {
    body, html {
        overflow-x: hidden;
    }

    .carousel, .breadcrumb {
        margin-top: -114px;
    }

    header .search {
        display: none !important;
    }

    .nav-link, .btn_section .btn-secondary, .dropdown .dropdown-item {
        font-size: 0.75rem;
    }

    .carousel-caption.links h4 {
        font-size: 0.8rem;
    }

    .carousel-caption img {
        width: 35px;
        height: 35px;
    }

    body[dir="ltr"] .bottom_rectangle, body[dir="rtl"] .bottom_rectangle {
        height: 150px;
    }

    body[dir="ltr"] .carousel-caption.links {
        right: 21%;
        left: 2%;
    }

    body[dir="rtl"] .carousel-caption.links {
        right: 2%;
        left: 21%;
    }

    body[dir="ltr"] .about_bg {
        background-position: 0px 380px;
        background-size: auto 425px;
    }

    body[dir="rtl"] .about_bg {
        background-position: 100% 380px;
        background-size: auto 425px;
    }

    body[dir="ltr"] .Our_Services .title {
        position: relative !important;
        top: 0;
        left: 0;
        background-color: var(--primary_color);
        padding: 30px 20px 5px 20px;
        text-align: center;
        margin-bottom: 0 !important;
    }

    body[dir="rtl"] .Our_Services .title {
        position: relative !important;
        top: 0;
        right: 0;
        background-color: var(--primary_color);
        padding: 30px 20px 5px 20px;
        text-align: center;
        margin-bottom: 0 !important;
    }

    .title .border h5 {
        font-size: 0.85rem;
    }

    .title .border {
        padding: 8px 18px !important;
    }

    footer .fs-2 {
        font-size: 1.6rem !important;
    }

    footer .list-inline h6 {
        font-size: 0.8rem;
    }

    .our_Leadership_Team .bg_primary_color_gradent h5 {
        font-size: 0.9rem;
    }

    body[dir="ltr"] .our_Leadership_Team .custom-card {
        clip-path: polygon(63% 14%, 73% 0, 100% 0, 100% 100%, 0 100%, 0 14%);
    }

    .our_gallery .ms-lg-5 {
        margin: 0 !important;
    }

    .our_gallery img {
        height: 300px;
    }

    .our_gallery .col-lg-4, .our_gallery .col-lg-8 {
        width: 100%;
    }

    .Recent_Post .col-auto, .Recent_Post .col-auto img {
        width: 100%;
    }

    .blogs h2 {
        font-size: 1.8rem;
    }

    .contact_us .contact_information .bg_primary_color .col-md-5 {
        width: 100% !important;
    }
}
/*--------------------Start laptop device (not HD screen) style ---------------------------*/
@media (min-width: 1300px) and (max-width: 1899px) {
    body, html {
        overflow-x: hidden;
    }

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1200px;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        font-size: 12px;
    }

    .breadcrumb .slide_img {
        height: 25rem;
    }

    .btn.btn-secondary {
        font-size: 12px;
    }

    body[dir="ltr"] .carousel-caption.links {
        right: 24%;
        left: 4%;
    }

    body[dir="rtl"] .carousel-caption.links {
        left: 24%;
        right: 4%;
    }

    .carousel-caption.links h4 {
        font-size: 14px;
    }

    .carousel-caption.links img {
        width: 40px;
        height: 40px;
    }

    body[dir="ltr"] .bottom_rectangle {
        width: 480px;
        height: 155px;
        bottom: -3px;
    }

    body[dir="rtl"] .bottom_rectangle {
        width: 480px;
        height: 155px;
        bottom: -3px;
    }

    .slide_img {
        height: 42rem;
    }

    body[dir="ltr"] .about_bg {
        background-position: 0px 360px;
        background-size: auto 450px;
    }

    body[dir="rtl"] .about_bg {
        background-position: 100% 360px;
        background-size: auto 450px;
    }

    .footer_bg .fs-2 {
        font-size: 1.5rem !important;
    }

    .footer_bg h6 {
        font-size: 0.8rem !important;
    }

    .blogs .row {
        width: 100%;
    }

    body[dir="ltr"] .Our_Services .bg_primary_color .custom_bg {
        background: url(../images/Isolation_Mode_ourservices.svg) no-repeat;
        background-position: 140% 80%;
    }

    body[dir="rtl"] .Our_Services .bg_primary_color .custom_bg {
        background: url(../images/Isolation_Mode_ourservices_rtl.svg) no-repeat;
        background-position: -40% 60%;
    }

    .Our_Services .panel {
        height: 89vh;
    }

    body[dir="ltr"] .Our_Services .title {
        position: relative !important;
        top: 0;
        left: 0;
        background-color: var(--primary_color);
        padding: 30px 20px 5px 20px;
        text-align: center;
        margin-bottom: 0 !important;
    }

    body[dir="rtl"] .Our_Services .title {
        position: relative !important;
        top: 0;
        right: 0;
        background-color: var(--primary_color);
        padding: 30px 20px 5px 20px;
        text-align: center;
        margin-bottom: 0 !important;
    }

    .our_Leadership_Team .bg_primary_color_gradent h5 {
        font-size: 0.9rem;
    }

    body[dir="ltr"] .our_Leadership_Team .custom-card {
        clip-path: polygon(63% 13%, 73% 0, 100% 0, 100% 100%, 0 100%, 0 13%);
    }

    .our_gallery .ms-lg-5 {
        margin: 0 !important;
    }

    .our_gallery img {
        height: 300px;
    }

    .Recent_Post .col-auto, .Recent_Post .col-auto img {
        width: 100%;
    }

    .contact_us .contact_information .bg_primary_color .col-md-5 {
        width: 100% !important;
    }
}



/*--------------------Start Full HD device style ---------------------------*/
@media screen and (min-width: 1900px) {
    body, html {
        overflow-x: hidden;
    }

    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1400px !important;
    }

    .blogs .row {
        width: 100%;
    }

    body[dir="ltr"] .our_Leadership_Team .custom-card {
        clip-path: polygon(63% 12%, 73% 0, 100% 0, 100% 100%, 0 100%, 0 12%);
    }
}
