/* ==================================== */
/* **********   COMMON CSS   ********** */
/* ==================================== */
:root {
    --body-bg: #FFFFFF;

    --bg-primary: #104777;
    --text-primary: #104777;
    --primary-button-color: #212C68;
    --border-primary: #104777;

    --bg-white: #FFFFFF;
    --text-white: #FFFFFF;
    --border-white: #FFFFFF;
    --border-primary: #3AAF4A99;

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

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

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

    --bg-green: #2EC1AC;
    --text-green: #2EC1AC;
    --border-green: #2EC1AC;

    --bg-yellow: #FFC700;
    --text-yellow: #FFC700;
    --border-yellow: #FFC700;

    --bg-blue: #007CC1;
    --text-blue: #007CC1;
    --border-blue: #007CC1;

    --icon-bg: #3AAF4A99;

    --bg-dark-yellow: #E09F28;
    --text-dark-yellow: #E09F28;
    --border-dark-yellow: #E09F28;

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

    --bg-gray: #DDDDDD;
    --text-gray: #898989;
    --border-gray: #DDDDDD;

    --color-transparent: transparent;

    --primary-font:  "Poppins", sans-serif;

    --font-60px: 3.75rem;
    --font-48px: 3rem;
    --font-46px: 2.875rem;
    --font-44px: 2.75rem;
    --font-42px: 2.625rem;
    --font-40px: 2.5rem;
    --font-38px: 2.375rem;
    --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;
}

a {
    text-decoration: none;
}

*,
*::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: smooth;
    height: -webkit-fill-available;
}

body {
    background-color: var(--body-bg);
    font-family: "Poppins", sans-serif !important;
    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 140px;
}

.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;
}

.banner-image {
    background-image: url(../img/banner-image.svg);
    background-position: center;
    background-size: cover;
    padding: 30px 0px;
}

.header-left-right {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-primary {
    border-radius: 49px;
    border: 1px solid var(--border-primary);
    background: var(--Gradient-blue01, linear-gradient(180deg, #212C68 0%, #11183A 100%));
    color: var(--text-white);
    padding: 10px 25px;
    display: flex;
    align-items: center;
    width: max-content;
    font-size: 16px;
    justify-content: space-between;
    gap: 18px;

}

.btn-primary .icon-gradient {
    padding: 7px;
    background-color: #3AAF4A;
    font-size: 15px;
    border-radius: 50%;
    font-weight: 700;
    width: 35px;
    height: 35px;
    display: flex;
    color: var(--primary-button-color);
    justify-content: center;
    align-items: center;
}

.bannner-content h3 {
    font-family: Poppins;
    font-weight: 600;
    font-size: 42px;
    color: var(--text-white);
    letter-spacing: 0%;
}

.bannner-content p {
    font-family: Poppins;
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 0%;

}

.bannner-content h2 {
    font-family: Poppins;
    font-weight: 600;
    font-size: 72px;
    color: var(--text-white);
    letter-spacing: 0%;
}

a {
    text-decoration: none !important;

}

a:hover {
    color: var(--text-white) !important;
}

.content-width {
    max-width: 800px;
}

.icon-image-banner img {
    width: auto;
}

.form-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    width: 100%;
    max-width: 470px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.form-card h2 {
    font-family: Poppins;
    font-weight: 400;
    font-size: 38px;
}

.form-card h2 span {
    color: #2c3474;
    font-weight: 700;
    font-family: Poppins;
    font-size: 38px;
}

.input-group {
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    font-size: 13px;
    margin-bottom: 5px;
    color: #444;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

.input-group input:focus,
.input-group select:focus {
    border-color: #2c3474;
}

button {
    width: max-content;
    padding: 14px 55px;
    background: #2c3474;
    color: #fff;
    border: none;
    border-radius: 10px !important;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 20px;
}

button:hover {
    background: #1f255a;
}

/* Responsive */
@media (max-width: 480px) {
    .form-card {
        padding: 25px 20px;
    }

    .form-card h2 {
        font-size: 22px;
    }
}

form {
    max-width: 400px;
    margin: auto;
}

.input-data {
    position: relative;
    margin: 20px 0 10px 0;
}

.input-data label {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #2c3474;
    padding: 0 6px;
    pointer-events: none;
    transition: 0.3s ease;
    background: #fff;
}

.input-data input:focus~label,
.input-data input:valid~label,
.input-data textarea:focus~label,
.input-data textarea:valid~label {
    top: 0;
    transform: translateY(-50%) scale(0.9);
}

.input-data input:focus,
.input-data textarea:focus {
    border-color: #2c3474;
}

.input-data input:focus-visible,
.input-data textarea:focus-visible {
    outline: none;
    box-shadow: none;
}

.input-data input,
.input-data select {
    width: 100%;
    padding: 13px 14px;
    border: 2px solid #CCCCCC;
    border-radius: 10px;
    font-size: 14px;
    background: transparent;
    outline: none;
}

.select-box select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 40px;
}

.select-box::after {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #2E356E;
    border-bottom: 2px solid #2E356E;
    transform: translateY(-50%) rotate(45deg);
    pointer-events: none;
}

.ngi-section {
    position: relative;
    background-image: url(../img/banner-why.svg);
    background-position: top;
    background-size: cover;
    color: #fff;
    padding: 80px 0;
}

.ngi-section .hero-left h1 {
    font-size: 50px;
    font-weight: 300;
}

.ngi-section .hero-left h1 span {
    font-weight: 700;
}

.ngi-section .tag {
    font-size: 12px;
    letter-spacing: 2px;
    opacity: 0.7;
}


.ngi-section .content-block h4 {
    font-weight: 600;
}


.ngi-section .hero-right {
    padding-left: 40px;
}

.ngi-section .hero-right h4 {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 36px;
}

.ngi-section .hero-right ul {
    padding-left: 18px;

    margin-bottom: 20px;
}

.ngi-section .hero-right ul li {
    list-style-type: disc;
}

.ngi-section .features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    background-color: transparent !important;
}

.ngi-section .features h5 {
    font-size: 14px;
    font-weight: 600 !important;
}

.ngi-section .features p {
    font-size: 16px;
}

.ngi-section .stat-box {
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 10px;
    padding: 20px;
}

.ngi-section .stat-box p {
    font-size: 20px;
    font-weight: 600;
}

.ngi-section .stat-box .number {
    font-size: 38px;
    font-weight: bold;
    color: rgba(58, 175, 74, 1);
}

.ngi-section .status-grid {
    width: 75%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.ngi-section .stat-box {
    border: 1px solid #fff;
}

.ngi-section .stat-box p {
    line-height: normal;
    margin-bottom: 3px;
}

.ngi-section .stat-box-left {
    flex: 1;
}

.ngi-section .stat-box-right img {
    width: 100%;
    max-width: 110px;
    height: 110px;
    object-fit: contain;
}

@media (max-width: 992px) {
    .ngi-section .hero-left h1 {
        font-size: 30px;
    }

    .ngi-section .hero-right {
        padding-left: 0;
        margin-top: 30px;
    }

    .ngi-section .features {
        grid-template-columns: 1fr;
    }
}

.space-short {
    padding: 30px 0px;
}


.content-block h4 {
    font-size: 36px;
}
.content-block p {
    font-size: 16px;
}


.features h5 {
    font-weight: 500 !important;
}

.stat-box-right {
    width: 110px;
}

.white-shadow {
    position: relative;
}
.background-image-white {
    background-image: url(../img/white-background-banner.svg);
    background-position: top;
    background-size: cover;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.white-shadow {
    position: relative;
}

.white-shadow::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 600px;
    z-index: 2;
    pointer-events: none;

    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.8) 40%,
        rgba(255, 255, 255, 0) 100%
    );
}

.white-shadow::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 2;
    background: linear-gradient(to top, rgb(255 255 255) 0%, rgb(255 255 255 / 38%) 40%, rgb(255 255 255 / 0%) 100%)
}

.image-ss{
    z-index: 11111;
}

.content-z {
    position: relative;
    z-index: 11;
}
.content-top {
    position: relative;
    z-index: 11;
    text-align: center;
}
.content-top h1 {
    font-family: Poppins;
    font-size: 50px;
    color: #000000;
}

.content-top h1 span {
    font-weight: 600;
    color: #48B457;
}

.content-top p {
    font-family: Poppins;
    font-weight: 600;
    font-size: 20px;
}

.content-z h4 {
    font-family: Poppins;
    font-weight: 800;
    font-style: ExtraBold;
    font-size: 40px;
    color: #212C68;
}

.content-z h3 {
    font-family: Poppins;
    font-weight: 500;
    font-size: 64px;
    color: #3AAF4A;
}

.content-z .top-p {
    font-weight: 500 !important;
    font-size: 20px !important;
 
}
.content-z p {
   font-family: Poppins;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
}

.content-z a {
    color: #000;
}
.features {
  background:#fff;
  padding: 30px 0;
}

.container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 23%;
}

.feature-item img {
  width: 55px;
  height: auto;
}

.shodow-p  p {
  font-size: 16px;
  color: #1f2a5a;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}

.highlighted-features {
    background-color:#E1E2EA ;
}

.box-content {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 26px;
    gap: 20px;
}

.highlighted-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    width: 92%;
    padding: 40px 0px;
    margin: auto;
}

.box-content h2 {
    font-weight: 400;
    font-size: 30px;
    text-align: center;
    margin: 0px;
}

.box-content h2 span {
    font-weight: 600;
}

.box-content p {
    font-weight: 400;
    margin: 0px;
    font-size: 14px;
    text-align: center;
}

.box-content img {
    height: 50px;
}

.lets-talk h2 {
    font-family: Poppins;
    font-weight: 900;
    font-style: Black;
    font-size: 191px;
    text-align: center;
    color: #bcbfd1;
}

.lest-arrow {
    position: relative;
    padding: 40px 0px;
    width: 100%;
}

.lest-arrow-image {
    position: absolute;
    top: 20px;
    right: 20px;
}

.full-section {
    width: 100%;
}


.content-data {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    max-width: 300px;
    color: #fff;
    margin: auto;
    padding: 20px 0px;
}
.icon-form{
    display: flex;
    align-items: center;
    color: #fff;
}


.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    padding-bottom: 100px;
    max-width: 350px;
    color: #fff;
    margin: 0 auto;
}


.contact-details h2 {
    font-size: 24px;
}

.contact-details p {
    font-weight: 400;
    font-size: 16px;
    color: #C9C9C9;
}

.info-item{
    display: flex;
    gap: 20px;
}

.info-item img {
    height: 20px;
    object-fit: contain;
    width: 20px;
    margin-top: 4px;
}

.side-image{
    position: absolute;
    right: -120px;
    bottom: -37px;
}

.info-item span {
    font-size: 14px;
}

.info-main{
    display: flex;
    gap: 30px;
    flex-direction: column;
}

.info-item a {
    color: #fff;
}

.last-icons-main a{
    background-color: #fff;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.last-icons-main {
    gap: 15px;
    display: flex;
}

.last-icons-main a:hover{
    background-color: #3AAF4A;

}



.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px 40px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #bdbdbd;
    padding: 15px 0;
    font-size: 14px;
    background: transparent;
    outline: none;
    color: #333;
}

.form-group select {
    appearance: none;
    color: #666;
}

.form-group label {
    position: absolute;
    top: -14px;
    left: 0;
    font-size: 14px;
    color: #000;
    pointer-events: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
    font-size: 13px;
}

textarea {
    resize: none;
}

.full {
    grid-column: span 2;
}


@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .full {
        grid-column: span 1;
    }

    .right-section {
        padding: 30px;
    }
}

.side-by-side{
    display: flex;
}

.right-section form {
    max-width: 100% !important;
    margin: unset !important;
}

.submit-btn{
    margin-top: 10px;
}

.footer-section {
    background-color: #212C68;
    color: #fff;
    padding: 60px 0 20px;
    position: relative;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-section i {
    margin-right: 10px;
    color: #8aa0ff;
}

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

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

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

.footer-links a:hover {
    color: #8aa0ff;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 15px;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-section {
        text-align: center;
    }
}

.background-blue {
    position: relative;
    z-index: 1;
}

.background-blue::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 37%; 
    height: 100%;
    background: #212C68; 
    z-index: -1;
}

.contact-section form {
    max-width: 650px;
}

.footer-section p {
    font-weight: 700;
    font-style: Bold;
    font-size: 16px;

}

.footer-bottom p {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    text-align: center;

}

