    /* ==================================== */
    /* **********   COMMON CSS   ********** */
    /* ==================================== */
    :root {
        --project-primary-font: 'primary-font';
        --project-secondry-font: 'secondary-font';

        --bg-primary: #0B3454;
        --text-primary: #0B3454;
        --border-primary: #0B3454;

        --bg-blue: #007DC3;
        --bg-blue-60: rgba(0, 125, 195, 0.6);
        --text-blue: #007DC3;
        --border-blue: #007DC3;

        --bg-white: #FFFFFF;
        --text-white: #FFFFFF;
        --border-white: #FFFFFF;

        --bg-off-white: #F8F8F8;
        --text-off-white: #F8F8F8;
        --border-off-white: #F8F8F8;

        --bg-orange: #E7B368;
        --text-orange: #E7B368;
        --border-orange: #E7B368;

        --bg-light-blue: #A6D9F5;
        --text-light-blue: #A6D9F5;
        --border-light-blue: #A6D9F5;

        --bg-dark-blue: #0A3352;
        --text-dark-blue: #0A3352;
        --border-dark-blue: #0A3352;

        --bg-light-gray: #E4DDCD;
        --text-light-gray: #E4DDCD;
        --border-light-gray: #E4DDCD;

        --bg-black: #000000;
        --bg-black-40: rgba(0, 0, 0, 0.4);
        --text-black: #000000;
        --border-black: #000000;

        --bg-light-black: #404041;
        --bg-light-black-80: rgba(64, 64, 65, 0.8);
        --bg-light-black-40: rgba(64, 64, 65, 0.4);
        --text-light-black: #404041;
        --border-light-black: #404041;

        --bg-gray: #7F8285;
        --text-gray: #7F8285;
        --border-gray: #7F8285;

        --bg-dark-gray: #414044;
        --text-dark-gray: #414044;
        --border-dark-gray: #414044;

        --bg-red: #D11242;
        --text-red: #D11242;
        --border-red: #D11242;

        --bg-purple: #51378E;
        --text-purple: #51378E;
        --border-purple: #51378E;

        --primary-font: "Poppins", sans-serif;
        --color-transparent: transparent;
        --font-64px: 4rem;
        --font-60px: 3.75rem;
        --font-54px: 3.375rem;
        --font-48px: 3rem;
        --font-44px: 2.75rem;
        --font-42px: 2.625rem;
        --font-40px: 2.5rem;
        --font-36px: 2.25rem;
        --font-34px: 2.125rem;
        --font-32px: 2rem;
        --font-30px: 1.875rem;
        --font-28px: 1.75rem;
        --font-26px: 1.625rem;
        --font-24px: 1.5rem;
        --font-22px: 1.375rem;
        --font-20px: 1.25rem;
        --font-18px: 1.125rem;
        --font-16px: 1rem;
        --font-14px: 0.875rem;
        --font-12px: 0.75rem;
        --max-width: 980px;
    }

    a {
        text-decoration: none;
    }

    @font-face {
        font-family: "secondary-font";
        src: url("../fonts/Axiforma-Light.woff") format("woff2");
        font-weight: 400;
        font-style: normal;
    }

    @font-face {
        font-family: "secondary-font";
        src: url("../fonts/Axiforma-Regular.woff") format("woff2");
        font-weight: 500;
        font-style: normal;
    }

    @font-face {
        font-family: "secondary-font";
        src: url("../fonts/Axiforma-Bold.woff") format("woff2");
        font-weight: 700;
        font-style: normal;
    }

    @font-face {
        font-family: "primary-font";
        src: url("../fonts/impact.woff") format("woff2");
        font-weight: 700;
        font-style: normal;
    }


    *,
    *::before,
    *::after {
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        list-style: none;
        list-style-type: none;
        text-decoration: none;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }

    html {
        font-size: 100%;
        box-sizing: inherit;
        scroll-behavior: auto !important;
        height: -webkit-fill-available;
    }

    body {
        background-color: var(--body-bg);
        font-family: var(--project-secondry-font);
        transition: all 0.3s ease;
        position: relative;
    }

    section {
        overflow: hidden;
    }

    a,
    button {
        cursor: pointer;
        border: none;
        outline: none;
        color: inherit;
        background: none;
        box-shadow: none;
    }

    img,
    video {
        display: block;
        max-width: 100%;
        height: auto;
        object-fit: cover;
    }

    img,
    picture {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: -moz-crisp-edges;
        image-rendering: crisp-edges;
    }

    .section-padding-top {
        padding-top: 70px;
    }

    .section-padding-bottom {
        padding-bottom: 70px;
    }

    .main-container {
        padding: 0 110px !important;
    }

    .right-container {
        padding-right: 140px;
    }

    .left-container {
        padding-left: 140px;
    }

    .header-container {
        padding: 0 120px;
    }

    .cd-flex {
        display: flex;
    }

    .flex-heading {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .common-heading {
        width: 100%;
        max-width: 80%;
        margin: 0 auto 36px;
        text-align: center;
    }

    .heading-select {
        display: flex;
        gap: 10px;
    }

    select.form-control {
        appearance: auto;
        -webkit-appearance: auto;
        -moz-appearance: auto;
    }

    .heading-btn-position {
        text-align: right;
    }

    .main-heading-row {
        display: flex;
        justify-content: space-between;
    }

    .heading-col-right h2 {
        font-size: var(--font-48px) !important;
    }

    .common-heading h6 {
        font-family: var(--project-primary-font);
        color: var(--text-dark-gray);
        font-size: var(--font-20px);
        text-transform: capitalize;
        font-weight: 400;
        margin-bottom: 10px;
        text-align: left;
    }

    .common-heading h2 {
        font-family: var(--project-primary-font);
        color: var(--text-gray);
        font-size: var(--font-54px);
        text-transform: capitalize;
        font-weight: 400;
        line-height: normal;
    }

    .common-heading h2 span {
        font-weight: 500;
    }

    .common-heading p {
        font-family: var(--project-primary-font);
        color: var(--text-dark-gray);
        font-size: var(--font-20px);
        text-transform: capitalize;
        font-weight: 400;
        margin-top: 25px;
        margin-bottom: 0;
    }

    /* ==================================== */
    /* *****   CUSTOM CARD CSS START  ***** */
    /* ==================================== */
    .custom-card {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .custom-card .custom-card-top {
        position: relative;
    }

    .custom-card .custom-card-top img {
        width: 100%;
        height: 350px;
        object-fit: cover;
    }

    .custom-card .custom-card-bottom {
        padding: 20px 0;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .custom-card .custom-card-bottom .custom-card-content-top {
        flex: 1;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .custom-card .custom-card-bottom .custom-card-content-top h4 {
        font-family: var(--project-secondry-font);
        color: var(--text-gray);
        font-size: var(--font-22px);
        font-weight: 400;
        flex: 1;
    }

    .custom-card .custom-card-bottom .custom-card-content-top p {
        font-family: var(--project-secondry-font);
        color: var(--text-dark-gray);
        font-size: var(--font-16px);
        font-weight: 400;
        flex: 1;
    }

    .custom-card .custom-card-bottom .custom-card-content-top .card-badge-group {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 24px;
    }

    .custom-card .custom-card-bottom .custom-card-content-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: wrap;
    }

    .custom-card .custom-card-bottom .custom-card-content-bottom .date {
        display: block;
        font-family: var(--project-secondry-font);
        color: var(--text-blue);
        font-size: var(--font-16px);
    }

    .product-card {
        background: var(--bg-blue);
        padding: 30px 15px;
    }

    .product-card .product-card-top img {
        width: 70px;
        height: 70px;
        margin: 0 auto 26px;
        object-fit: contain;
    }

    .product-card .product-card-content .product-card-content-top p {
        font-family: var(--project-secondry-font);
        color: var(--text-white);
        font-size: var(--font-18px);
        font-weight: 400;
        text-align: center;
        margin-bottom: 0;
    }

    /* ==================================== */
    /* ******   CUSTOM CARD CSS END  ****** */
    /* ==================================== */

    /* ==================================== */
    /* *********   HOME PAGE CSS   ******** */
    /* ==================================== */

    /* ==================================== */
    /* *********  ARABIC CONTENT  ********* */
    /* ==================================== */
    body.ar .luxury-living-section .luxury-text-block {
        text-align: left;
    }

    body.ar .luxury-living-section .luxury-text-block h2 {
        margin-right: auto;
        margin-left: 0;
    }

    body.ar .luxury-living-section .luxury-text-block .desc {
        margin-right: auto;
        margin-left: 0;
    }

    body.ar .amenities-section .accordion-button::after {
        right: auto;
        left: 20px;
    }

    body.ar .close-btn {
        right: auto;
        left: 40px;
    }

    body.ar .footer-help {
        right: auto;
        left: 40px;
    }

    .logo {
        width: 275px;
    }

    .navbar {
        padding: 35px 0px !important;
    }

    .fixed-body-bg {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-image: url("../img/body-image.jpg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;

        z-index: -1;
        pointer-events: none;
    }



    .nav-link {
        font-size: 24px !important;
        font-family: var(--project-primary-font) !important;
        color: #23272C !important;
    }

    .navbar .nav-link {
        position: relative;
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .navbar .nav-link:hover {
        color: #025D4E;
    }


    .navbar .nav-link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -5px;
        width: 0%;
        height: 2px;
        background: #025D4E;
        transition: width 0.3s ease;
    }

    .navbar .nav-link:hover::after {
        width: 100%;
    }


    .navbar-nav {
        gap: 40px;
    }

    .comman-green-background {
        padding: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .comman-green-background img {
        width: 79%;
        margin: auto;
    }

    p {
        font-weight: 500;
        font-size: 18px;
        font-family: var(--project-secondry-font) !important;
        color: #23272C !important;
    }


    .about-section h4 {
        font-weight: 600;
        font-size: 36px;
        font-family: var(--project-secondry-font) !important;
        color: #A5A4A5;
        padding-top: 32px;
        line-height: 40px;
    }

    .comman-green {
        background-color: #0E5C4E !important;

    }

    #foundation h2 {
        font-family: var(--project-primary-font);
        font-weight: 400;
        line-height: 50px;
        font-size: 62px;
        color: #fff;
        text-transform: uppercase;
    }

    #foundation .comman-green h2 {
        font-family: var(--project-primary-font);
        font-weight: 400;
        line-height: 30px;
        font-size: 62px;
        color: #fff;
        text-transform: uppercase;
    }

    .comman-green p {
        color: #FFFFFF !important;
        font-size: 14px;
        line-height: 25px;
        font-family: var(--project-secondry-font) !important;
    }

    .comman-green p span {
        font-weight: 500;
        font-size: 14px;
        font-family: var(--project-secondry-font) !important;
        color: #FFFFFF !important;
    }

    .paading-common {
        padding-top: 70px;
    }

    .comman-green h4 {
        font-weight: 500;
        font-size: 21px;
        font-family: var(--project-secondry-font) !important;
        color: #D5A84E !important;
        padding-bottom: 20px;
    }

    .card-hover {
        position: relative;
        width: 100%;
        height: 400px;
        overflow: hidden;
        cursor: pointer;
        padding: 40px;
    }

    .defult-card {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.3s ease;
    }

    .defult-card img {
        width: 150px;
        height: 150px;
        object-fit: contain;
    }

    .defult-card h4 {
        color: #D5A84E !important;
        font-size: 18px;
        font-weight: 600;
    }

    .overlay-card {
        position: absolute;
        inset: 0;
        background: #7a6248;
        padding: 25px;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s ease;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    .overlay-card h4 {
        color: #fff !important;
        font-size: 18px;
        font-weight: 700;
    }

    .overlay-card p {
        color: #fff;
        font-size: 16px;
        line-height: 1.6;
        max-width: 90%;
    }

    .card-hover:hover .overlay-card {
        opacity: 1;
        visibility: visible;
    }

    .card-hover:hover .defult-card {
        opacity: 0;
        visibility: hidden;
    }



    .heading-technology h2 {
        font-weight: 400;
        font-family: var(--project-primary-font);
        font-size: 64px;
        color: #025D4E;
    }

    .more-text {
        display: none;
    }

    .read-more-btn {
        background: none;
        border: none;
        color: #025D4E;
        font-weight: 600;
        cursor: pointer;
        padding: 0;
        transition: 0.3s ease;
    }

    .text-content .bold-text {
        font-weight: 600;
    }

    .primary-btn {
        background-color: #025D4E;
        color: #FFFFFF;
        justify-content: center;
        width: fit-content;
        text-decoration: none;
        display: flex;
        text-align: center;
        width: 100%;
        font-weight: 600;
        line-height: 20px;
        font-size: 16px;
        padding: 6px 22px;
    }



    .color-yellow {
        font-weight: 600;
        text-transform: uppercase;
        font-family: var(--project-primary-font);
        margin: 0px;
        font-size: 65px;
        color: #D5A84E !important;
    }


    .image-card h5 {
        font-weight: 600;
        font-size: 21px;
        color: #fff !important;
    }

    .black-background {
        background-color: #23272C;
    }

    .black-background h2 {
        font-family: var(--project-primary-font);
        font-weight: 400;
        font-size: 62px;
        color: #fff;
        line-height: 50px;
    }

    .black-background p {
        font-family: var(--project-secondry-font);
        font-weight: 400;
        font-size: 14px;
        color: #FFFFFF !important;
    }

    .swiper {
        width: 100%;
        height: 100%;
    }

    .mySwiper h3 {
        color: #fff !important;
        font-size: 18px;
        font-weight: 400;
        margin: 0px;
    }

    .mySwiper .heading-small-p {
        font-weight: 400;
        font-size: 14px;
        color: #fff !important;
    }

    .swiper-button-prev {
        color: #fff !important;
    }

    .swiper-button-next {
        color: #fff !important;
    }

    .backgeound-card {
        background-color: #D5A84E;
        height: 100%;
        border: 1px solid #fff;

    }

    .backgeound-card p {
        color: #000000 !important;
        font-weight: 400;
        font-size: 13px;
        line-height: 16px !important;
    }

    .backgeound-card h3 {
        font-weight: 400;
        font-family: var(--project-primary-font);
        font-size: 40px;
        color: #fff !important;
    }

    .image-icon img {
        width: 60px;
        height: 60px;
        object-fit: contain;
        background-color: #025D4E;
        padding: 10px;
    }

    .more-text {
        display: none;
    }

    #success p {
        color: #025D4E !important;
        font-size: 14px;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 0 !important;
    }

    .about-image {
        padding-top: 10px;
        width: 32%;
    }

    .about-section p {
        font-size: 14px;
    }

    .mission-image {
        width: 42%;
    }

    .core-image {
        width: 46%;
    }

    .core-titles {
        padding-top: 30px;
    }

    .text-content {
        font-size: 14px;
    }

    .media-image {
        width: 27%;
    }

    .swiper-button-prev {
        left: -9px !important;
    }

    .swiper-button-next {
        right: -9px !important;
    }

    .mySwiper .swiper-slide img {
        border: 1px solid #fff;
    }

    .success-img {
        width: 44%;
    }

    .image-flip {
        -webkit-transform: scaleX(-1);
        transform: scaleX(-1);
        height: 204px;
    }


    .swiper-button-prev {
        left: -9px !important;
    }

    .swiper-button-next {
        right: -9px !important;
    }


    .last-section {
        width: 66%;
    }

    .bg-black-color {
        background: #025D4E !important;
    }


    .bg-black-color p {
        color: #fff !important;
        font-size: 14px !important;
    }

    .comman-orenge {
        background-color: #025D4E;
    }

    .openx {
        width: 142px;
    }

    .navi {
        width: 200px;
    }

    .icon-image-nav img {
        height: 30px;
        width: 30px;
    }


    .overlay-card {
        position: absolute;
        inset: 0;
        background: #7a6248;
        padding: 25px;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s ease;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        overflow: hidden;
    }

    .overlay-icon {
        position: absolute;
        top: 40%;
        right: 0;
        left: 0;
        transform: translateY(-50%);
        width: 40%;
        margin: auto;
        object-fit: contain;
        height: 40%;
        z-index: 0;
        pointer-events: none;
    }

    .overlay-card h4,
    .overlay-card p {
        position: relative;
        z-index: 2;
    }

    .mySwiper .swiper-slide {
        display: flex;
        justify-content: center;
    }

    .mySwipers .swiper-button-prev {
        position: absolute;
        left: -10px !important;
    }

    .mySwipers .swiper-button-next {
        position: absolute;
        right: -10px !important;
    }

    .mySwipers {
        padding: 0px 49px !important;
    }

    .btn-whatsaap {
        position: fixed;
        right: 30px;
        bottom: 60px;
        z-index: 11111;
        background-color: #025D4E;
        height: 50px;
        padding: 5px;
    }

    .parallax-section {
        position: relative;
        overflow: hidden;
    }

    .parallax-section img {
        will-change: transform;
    }


    html,
    body {
        height: 100%;
        scroll-behavior: auto !important;
    }

    body {
        overflow-x: hidden !important;
        background: transparent !important;
        position: relative;
    }

    .navbar .nav-link {
        color: #fff;
        font-weight: 500;
        padding: 10px 16px;
        transition: 0.3s ease;
        position: relative;
    }

    .navbar .nav-link:hover {
        color: #0E5C4E !important;
    }


    .parallax-section .gif-img {
        width: 100%;
        height: auto;
        display: block;
    }

    .gif-img {
        background-image: url(../img/XXX.gif);
        background-position: center;
        background-size: cover;
        height: 100vh;
    }

    .comman-green {
        background-color: #025D4E;
    }

    :root {
        --bg: url("./img/body-image - Copy.png");
    }

    body {
        background: var(--bg) center/cover no-repeat fixed;
    }

    .mission-section {
        background: #025D4E;
    }

    .mission-section h2,
    .mission-section p {
        color: transparent;
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
        background: var(--bg) center/cover no-repeat fixed;
    }

    .tech-backhground {
        background-image: url(../img/back-ground-image.svg);
        background-position: center;
        background-size: cover;
    }

    .btn-width {
        width: 220px;
    }

  
.mission-img{
    width: 37%;
}
    
.image-human{
   width: 37%; 
}



.butn:link,
.butn:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  text-decoration: none;
  background-color: #025D4E;
  height: 60px;
  width: 210px;
  margin-right: 13px;
  border: none;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.butn::before {
  background: #fff;
  content: "";
  height: 155px;
  opacity: 0;
  position: absolute;
  top: -50px;
  transform: rotate(35deg);
  width: 50px;
  transition: all 3000ms cubic-bezier(0.19, 1, 0.22, 1);
}
.butn::after {
  background: #fff;
  content: "";
  height: 20rem;
  opacity: 0;
  position: absolute;
  top: -50px;
  transform: rotate(35deg);
  transition: all 3000ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 8rem;
}
.butn__new::before {
  left: -50%;
}

.butn__new::after {
  left: -100%;
}

.butn:hover,
.butn:active {
  transform: translateY(-3px);
  color: #fff;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.3);
}

.butn__new:hover::before {
  left: 120%;
  opacity: 0.5s;
}

.butn__new:hover::after {
  left: 200%;
  opacity: 0.6;
}
.butn span {
  z-index: 20;
}


.background-image-mission{
    background-image: url(../img/MISSION_VISION.jpg.jpeg);
    background-position: center;
    background-size: cover;
}

.person-slide {
    max-height: 270px !important;
}
     
.award-image img {
      max-height: 270px !important;
}