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

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

*,
*::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: 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 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;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.background-image {
    background-image: url(../img/final-banner.jpeg);
    height: 100vh;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
}

body {
    font-family: 'Playfair Display', serif !important;
}

.nav-link {
    color: #f5dabc !important;
    text-transform: uppercase !important;
}

.custom-navbar {
    position: absolute;
    width: 100%;
    z-index: 999;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 215, 160, 0.2);
}

.custom-navbar .nav-link {
    color: #f5dabc !important;
    font-size: 15px;
    padding: 0px !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 12px;
    transition: 0.3s;
}

.custom-navbar .nav-link:hover {
    color: #f5dabc;
}


.left-menu .nav-item:not(:last-child)::after {
    content: "|";
    margin-left: 15px;
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 991px) {

    .custom-navbar {
        background: #1a0f05;
        padding: 0px !important;
    }

    .navbar-brand {
        position: static;
    }
    .background-image {
        height: 56vh !important;
        background-position: right !important;
    }
    img.logo-img {
        height: 68px !important;
    }
    .hero h1 {
        font-size: 35px !important;
    }
    .left-menu,
    .right-menu {
        text-align: center;
    }

    .custom-navbar .nav-link {
        padding: 10px 0;
        margin: 0;
    }

    .left-menu .nav-item::after {
        display: none;
    }
    .hero-content {
        padding-bottom: 50px;
    }
    .btn-primary {
        background-color: #130806;
        color: #f5dabc;
        padding: 13px 10px !important;
        margin: auto;
            border: 1px solid #f5dabc;
        font-size: 16px !important;
        text-transform: uppercase;
    }
    .background-image {
        align-items: flex-end;
    }
}




li.nav-item {
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 600px;
    color: #f5dabc;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    color: #f5dabc;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 30px;
    color: #f5dabc;
}


.btn-secondary {
    margin-top: 15px;
    display: inline-block;
    color: #000;
    font-size: 14px;
    text-decoration: underline;
}

.three-columns {
    background-image: url(../img/card1.png);
    background-size: cover;
    background-position: center;
}

.three-columns h3 {
    font-size: 30px !important;
    font-family: 'Playfair Display', serif !important;
    font-weight: 400 !important;
}

.three-columns p {
    font-weight: 700 !important;
    font-family: 'Playfair Display', serif;
    font-size: 18px !important;
}

.card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    margin-bottom: 20px;
}

.card h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.story {
    background-image: url(../img/craftsmanship.png);
    background-position: right;
    background-size: cover;
    color: #f5dabc;
    padding-top:100px;
}

.story-content {
    max-width: 600px;
}

.story-content p {
    color: #f5dabc !important;
}

.story h2 {
    margin-bottom: 20px;
    font-size: 45px !important;
    color: #f5dabc !important;
}

.trust {
    text-align: center;
    padding: 60px 20px;
}

.trust h3 {
    font-size: 30px !important;
    font-weight: 400 !important;
    font-family: 'Playfair Display', serif !important;

}

.trust p {
    font-weight: 700 !important;
    font-family: 'Playfair Display', serif;
    font-size: 18px !important;
}
 

.footer {
    background: #111;
    color: #f5dabc;
    text-align: center;
    padding: 20px;
    font-size: 13px;
}

.comman-card {
    padding: 20px 35px !important;

}

.border-right {
    border-right: 1px solid #0000004d;
}

.btn-primary {
    background-color: #130806;
    color: #f5dabc;
    padding: 14px 25px !important;
    margin: auto;
        border: 1px solid #f5dabc;
    font-size: 18px !important;
    text-transform: uppercase;
}

.button-update {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
}



.offcanvas {
    background: #000;
    color: #fff;
    width: 280px;
}

.offcanvas .nav-link {
    color: #fff;
    padding: 12px 0;
    font-size: 18px;
}

.offcanvas .nav-link:hover {
    color: #c8a96a;
}

.navbar-toggler {
    background-color: #f5dabc;
    border: none;
}


.navbar-toggler:focus {
    box-shadow: none;
}

.trust {
    background-image: url(../img/card1.png);
    background-size: cover;
    background-position: center;
}

.side-by-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.trust img {
    width: 200px;
    margin: auto;
}


.border-left-custom{
    border-left: 1px solid #000;
}


.trusted-logos .col-lg {
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.trusted-logos .col-lg:not(:first-child)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 80px; 
    width: 1px;
    background-color: #d6c3a1;
}

@media (max-width: 991px) {
    .trusted-logos .col-6:nth-child(odd)::before {
        display: none;
    }
}



.luxury-bar {
    padding: 14px 0;
    margin-top: 40px;
    position: relative;
    text-align: center;
}

.luxury-bar::before,
.luxury-bar::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, #f5dabc, transparent);
}
.luxury-bar::before {
    top: 0;
}

.luxury-bar::after {
    bottom: 0;
}

.luxury-content {
    color: #f5dabc;
    font-family: "Playfair Display", serif;
    letter-spacing: 1px;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.luxury-content .divider {
    color: #f5dabc;
    opacity: 0.7;
}

.footer{
     background-image: url(../img/footer-backhround.png);
     background-position: center;
     background-size: cover;
}

.topbar {
  background: transparent;
  padding: 10px 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.topbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.topbar-right {
    padding-left: 10px;
}
.topbar-item {
  color: #f5dabc;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s ease;
}

.topbar-item:hover {
  color: #fff;
}

.follow-text {
  color: #f5dabc;
  font-weight: 500;
}

.social-icon {
  color: #f5dabc;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s ease;
}

.social-icon:hover {
  color: #fff;
}

.icon {
  font-size: 13px;
}

@media (max-width: 768px) {
  .topbar-container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .topbar-left,
  .topbar-right {
    justify-content: center;
  }
  .luxury-content {
    display: block !important;
  }
}