@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&display=swap');

/*******************************/
/********* General CSS *********/
/*******************************/
body {
    color: #4b5563;
    background: #f4f7fb;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

h1,
h2, 
h3, 
h4,
h5, 
h6 {
    color: #030f27;
}

a {
    color: #666666;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: #f59e0b;
    outline: none;
    text-decoration: none;
}

.btn:focus {
    box-shadow: none;
}

.wrapper {
    position: relative;
    width: 100%;
    max-width: 1366px;
    margin: 0 auto;
    background: #ffffff;
}

.back-to-top {
    position: fixed;
    display: none;
    background: linear-gradient(135deg, #f7c948, #f59e0b);
    color: #111827;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 9;
}

.back-to-top:hover {
    color: #ffffff;
    background: #0f172a;
}

.back-to-top i {
    padding-top: 10px;
}

.btn {
    transition: .3s;
}


/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
.top-bar {
    position: relative;
    height: 90px;
    background: #fdbe33;
}

.top-bar .logo {
    padding: 15px 0;
    text-align: left;
    overflow: hidden;
}

.top-bar .logo h1 {
    margin: 0;
    color: #030f27;
    font-size: 60px;
    line-height: 60px;
    font-weight: 700;
}

.top-bar .logo img {
    max-width: 100%;
    max-height: 60px;
}

.top-bar .top-bar-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-bar .top-bar-icon {
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-bar .top-bar-icon [class^="flaticon-"]::before {
    margin: 0;
    color: #030f27;
    font-size: 40px;
}

.top-bar .top-bar-text {
    padding-left: 15px;
}

.top-bar .top-bar-text h3 {
    margin: 0 0 5px 0;
    color: #030f27;
    font-size: 16px;
    font-weight: 400;
}

.top-bar .top-bar-text p {
    margin: 0;
    color: #030f27;
    font-size: 13px;
    font-weight: 400;
}

@media (min-width: 992px) {
    .top-bar {
        padding: 0 60px;
    }
}

@media (max-width: 991.98px) {
    .top-bar .logo {
        text-align: center;
    }
}


/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.nav-bar {
    position: relative;
    background: #fdbe33;
    transition: .3s;
}

.nav-bar .container-fluid {
    padding: 0;
}

.nav-bar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 1366px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    z-index: 999;
}

.nav-bar .navbar {
    height: 100%;
    background: #030f27 !important;
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    padding: 10px 10px 8px 10px;
    color: #ffffff;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #fdbe33;
    transition: none;
}

.nav-bar .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #f8f9fa;
}

.nav-bar .btn {
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 0;
}

.nav-bar .btn:hover {
    color: #030f27;
    background: #fdbe33;
    border-color: #fdbe33;
}

@media (min-width: 992px) {
    .nav-bar {
        padding: 0 75px;
    }
    
    .nav-bar.nav-sticky {
        padding: 0;
    }
    
    .nav-bar .navbar {
        /* padding: 20px; */
    }
    
    .nav-bar .navbar-brand {
        display: none;
    }
    
    .nav-bar a.nav-link {
        padding: 8px 15px;
        font-size: 15px;
        text-transform: uppercase;
    }
}

@media (max-width: 991.98px) {
    .nav-bar .navbar {
        padding: 15px;
        position: relative;
        justify-content: center;
    }

    .nav-bar .navbar-brand {
        margin-right: 0;
    }

    .nav-bar .navbar-brand img {
        margin-right: 0 !important;
    }

    .nav-bar .navbar-toggler {
        position: absolute;
        right: 15px;
    }
    
    .nav-bar a.nav-link {
        padding: 5px;
    }
    
    .nav-bar .dropdown-menu {
        box-shadow: none;
    }
    
    .nav-bar .btn {
        display: none;
    }
}


/*******************************/
/******** Carousel CSS *********/
/*******************************/
.carousel {
    position: relative;
    width: 100%;
    height: calc(100vh - 170px);
    min-height: 400px;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
}

.carousel .carousel-inner,
.carousel .carousel-item {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel .carousel-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .3);
    z-index: 1;
}

.carousel .carousel-caption {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: calc(100vh - 170px);
    min-height: 400px;
}

.carousel .carousel-caption p {
    color: #ffffff;
    font-size: 30px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.carousel .carousel-caption h1 {
    color: #ffffff;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 35px;
}

.carousel .carousel-caption .btn {
    padding: 15px 35px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    background: transparent;
    border: 2px solid #ffffff;
    border-radius: 0;
    transition: .3s;
}

.carousel .carousel-caption .btn:hover {
    color: #030f27;
    background: #fdbe33;
    border-color: #fdbe33;
}

@media (max-width: 767.98px) {
    .carousel .carousel-caption h1 {
        font-size: 40px;
        font-weight: 700;
    }
    
    .carousel .carousel-caption p {
        font-size: 20px;
    }
    
    .carousel .carousel-caption .btn {
        padding: 12px 30px;
        font-size: 18px;
        font-weight: 500;
        letter-spacing: 0;
    }
}

@media (max-width: 575.98px) {
    .carousel .carousel-caption h1 {
        font-size: 30px;
        font-weight: 500;
    }
    
    .carousel .carousel-caption p {
        font-size: 16px;
    }
    
    .carousel .carousel-caption .btn {
        padding: 10px 25px;
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 0;
    }
}

.carousel .animated {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
}


/*******************************/
/******* Page Header CSS *******/
/*******************************/
.page-header {
    position: relative;
    margin-bottom: 45px;
    padding: 90px 0;
    text-align: center;
    background: #fdbe33;
}

.page-header h2 {
    position: relative;
    color: #030f27;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.page-header h2::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    left: calc(50% - 50px);
    bottom: 0;
    background: #030f27;
}

.page-header a {
    position: relative;
    padding: 0 12px;
    font-size: 22px;
    color: #030f27;
}

.page-header a:hover {
    color: #ffffff;
}

.page-header a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -2px;
    right: -7px;
    text-align: center;
    color: #121518;
}

.page-header a:last-child::after {
    display: none;
}

@media (max-width: 991.98px) {
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h2 {
        font-size: 45px;
    }
    
    .page-header a {
        font-size: 20px;
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 45px 0;
    }
    
    .page-header h2 {
        font-size: 35px;
    }
    
    .page-header a {
        font-size: 18px;
    }
}


/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    width: 100%;
    margin-bottom: 45px;
}

.section-header p {
    color: #fdbe33;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.section-header h2 {
    margin: 0;
    position: relative;
    font-size: 50px;
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 30px;
    }
        .email-link {
            font-size: 2px;
        }
    
    
    
}


/*******************************/
/********* Feature CSS *********/
/*******************************/
.feature {
    position: relative;
    margin-bottom: 45px;
}

.feature .col-md-12 {
    background: #030f27;
}
    
.feature .col-md-12:nth-child(2n) {
    color: #030f27;
    background: #fdbe33;
}

.feature .feature-item {
    min-height: 250px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.feature .feature-icon {
    position: relative;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature .feature-icon::before {
    position: absolute;
    content: "";
    width: 80px;
    height: 80px;
    top: -20px;
    left: -10px;
    border: 2px dotted #ffffff;
    border-radius: 60px;
    z-index: 1;
}

.feature .feature-icon::after {
    position: absolute;
    content: "";
    width: 79px;
    height: 79px;
    top: -18px;
    left: -9px;
    background: #030f27;
    border-radius: 60px;
    z-index: 2;
}

.feature .col-md-12:nth-child(2n) .feature-icon::after {
    background: #fdbe33;
}

.feature .feature-icon [class^="flaticon-"]::before {
    position: relative;
    margin: 0;
    color: #fdbe33;
    font-size: 60px;
    line-height: 60px;
    z-index: 3;
}

.feature .feature-text {
    padding-left: 30px;
}

.feature .feature-text h3 {
    margin: 0 0 10px 0;
    color: #fdbe33;
    font-size: 25px;
    font-weight: 600;
}

.feature .feature-text p {
    margin: 0;
    color: #fdbe33;
    font-size: 18px;
    font-weight: 400;
}

.feature .col-md-12:nth-child(2n) [class^="flaticon-"]::before,
.feature .col-md-12:nth-child(2n) h3,
.feature .col-md-12:nth-child(2n) p {
    color: #030f27;
}


/*******************************/
/********** About CSS **********/
/*******************************/
/* About Section Styles */
.about-section {
    padding: 50px 0;
   
}

.section-subtitle{
    color: #fdbe33;
}
.section-title{
    font-size: 10px;
    font-family: 'Courier New', Courier, monospace;
}

.about-text {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.image-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.main-img {
    position: relative;
    width: 95%;
    border-radius: 15px 0 15px 15px;
    box-shadow: 15px 15px 30px rgba(0,0,0,0.1);
    /* transform: rotate(-3deg); */
    transition: all 0.4s ease;
  
}

.main-img:hover {
    transform: rotate(0deg) scale(1.02);
}

.main-img::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 70px;
    height: 80px;
    background: linear-gradient(225deg, #fff 45%, #eee 50%, #ddd 56%);
    box-shadow: -3px 3px 8px rgba(0,0,0,0.1);
    border-radius: 0 0 0 12px;
    transform: rotate(45deg);
    
}

.secondary-img {
    position: absolute;
    bottom: -60px;
    right: 0;
    width: 65%;
    border-radius: 0 15px 15px 15px;
    box-shadow: -10px 10px 30px rgba(0,0,0,0.1);
    border: 5px solid #fff;
    z-index: 1;
    animation: float 4s ease-in-out infinite;
}

.section-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: #ff6b6b;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background: #ff6b6b;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #ff5252;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,107,107,0.3);
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 768px) {
    .image-container {
        margin-bottom: 60px;
    }
    
    .secondary-img {
        bottom: -50px;
        right: -15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
  }
  .timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background: #fdbe33;
    top: 0;
    bottom: 0;
    left: 50%;
  }
  .timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
  }
  .timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
  }
  .timeline-item:nth-child(even) {
    left: 50%;
  }
 
  .timeline-content {
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  .mla-text {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.8;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: justify; /* Ensures text is justified */
    color: #333; /* Darker text color for better readability */
    text-indent: 30px; /* Indentation for the first line of the paragraph */
}


@media screen and (max-width: 768px) {
    .timeline::before {
      left: 8px; /* Shift line to the left */
    }
  
    .timeline-item {
      width: 100%;
      padding-left: 30px;
      padding-right: 15px;
      text-align: left !important; /* Override right alignment on small screens */
      left: 0 !important;
      margin-bottom: 30px;
    }
  }
  
  body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f0f4ff, #e2ecff);
    color: #333;
  }
  
  .vmp-section {
    max-width: 1200px;
    margin: auto;
    padding: 80px 20px;
    text-align: center;
  }
  
  .vmp-heading {
    font-size: 3rem;
    color: #1a202c;
    margin-bottom: 10px;
  }
  
  .vmp-subtext {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 60px;
  }
  
  .vmp-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
  }
  
  .vmp-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.07);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    z-index: 1;
  }
  
  .vmp-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #facc15, #fcd34d);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
  }
  
  .vmp-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #facc15;
    border-radius: 20px;
    transform: scale(0.95);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
  }
  
  .vmp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1),
                0 0 15px rgba(250, 204, 21, 0.4);
  }
  
  .vmp-card:hover::before {
    opacity: 1;
  }
  
  .vmp-card:hover::after {
    transform: scale(1);
    opacity: 1;
  }
  
  .vmp-card i {
    font-size: 40px;
    color: rgb(253, 190, 51);
    margin-bottom: 20px;
  }
  
  .vmp-title {
    font-size: 1.6rem;
    color: #2d3748;
    margin-bottom: 15px;
  }
  
  .vmp-text {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
  }
  
/*******************************/
/********** Fact CSS ***********/
/*******************************/
.fact {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.fact .col-6 {
    display: flex;
    align-items: flex-start;
}

.fact .fact-icon {
    position: relative;
    margin: 7px 15px 0 15px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fact .fact-icon [class^="flaticon-"]::before {
    margin: 0;
    font-size: 60px;
    line-height: 60px;
    background-image: linear-gradient(#ffffff, #fdbe33);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fact .fact-right .fact-icon [class^="flaticon-"]::before {
    background-image: linear-gradient(#ffffff, #030f27);
}

.fact .fact-left,
.fact .fact-right {
    padding-top: 60px;
    padding-bottom: 60px;
}

.fact .fact-text h2 {
    font-size: 35px;
    font-weight: 700;
}

.fact .fact-text p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.fact .fact-left {
    color: #fdbe33;
    background: #030f27;
}

.fact .fact-right {
    color: #030f27;
    background: #fdbe33;
}

.fact .fact-left h2 {
    color: #fdbe33;
}

/* Homepage enquiry form */
.property-enquiry {
    padding: 80px 0;
    background-image:
        linear-gradient(135deg, rgba(3, 15, 39, .72) 0%, rgba(17, 45, 78, .58) 100%),
        url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?auto=format&fit=crop&w=1800&q=85');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.enquiry-kicker {
    margin-bottom: 12px;
    color: #fdbe33;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.enquiry-intro h2 {
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .45);
}

.enquiry-intro > p:not(.enquiry-kicker) {
    margin-bottom: 24px;
    color: rgba(255, 255, 255, .82);
    line-height: 1.8;
    text-shadow: 0 1px 6px rgba(0, 0, 0, .45);
}

.enquiry-benefit {
    margin: 12px 0;
    color: #ffffff;
    font-size: 15px;
}

.enquiry-benefit i {
    margin-right: 9px;
    color: #fdbe33;
}

.enquiry-form-card {
    padding: 35px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .24);
}

.enquiry-form-card h3 {
    margin-bottom: 5px;
    color: #030f27;
    font-weight: 700;
}

.enquiry-form-card > p {
    margin-bottom: 24px;
    color: #64748b;
    font-size: 14px;
}

.enquiry-form-card .form-control {
    height: 48px;
    padding: 10px 14px;
    border: 1px solid #dbe2ea;
    border-radius: 6px;
    color: #24334a;
    box-shadow: none;
}

.enquiry-form-card textarea.form-control {
    height: auto;
    resize: vertical;
}

.enquiry-form-card .form-control:focus {
    border-color: #fdbe33;
    box-shadow: 0 0 0 3px rgba(253, 190, 51, .18);
}

.enquiry-submit {
    padding: 13px 20px;
    border: 0;
    border-radius: 6px;
    color: #030f27;
    background: #fdbe33;
    font-weight: 700;
    transition: .3s;
}

.enquiry-submit:hover {
    color: #ffffff;
    background: #b47a08;
}

@media (max-width: 767.98px) {
    .property-enquiry { padding: 55px 0; }
    .enquiry-intro h2 { font-size: 32px; }
    .enquiry-form-card { padding: 26px 20px; }
}


/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.service .service-item {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.service .service-img {
    position: relative;
    overflow: hidden;
}

.service .service-img img {
    width: 100%;
    height: 350px;
}

.service .service-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(3, 15, 39, .7);
    transition: .5s;
    opacity: 0;
}

.service .service-item:hover .service-overlay {
    opacity: 1;
}

.service .service-overlay p {
    margin: 0;
    color: #ffffff;
}

.service .service-text {
    display: flex;
    align-items: center;
    height: 60px;
    background: #030f27;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.service .service-text h3 {
    margin: 0;
    padding: 0 15px 0 25px;
    width: calc(100% - 60px);
    font-size: 20px;
    font-weight: 700;
    color: #fdbe33;
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.service .service-item a.btn {
    width: 60px;
    height: 60px;
    padding: 3px 0 0 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    line-height: 60px;
    font-weight: 100;
    color: #030f27;
    background: #fdbe33;
    border-radius: 0;
    transition: .3s;
}

.service .service-item:hover a.btn {
    color: #ffffff;
}


/*******************************/
/********** Video CSS **********/
/*******************************/
.video {
    position: relative;
    margin: 45px 0;
    height: 100%;
    min-height: 500px;
    background:  url(../image/img-6.png);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video .btn-play {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #fdbe33;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #fdbe33;
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play:hover:after {
    background-color: darken(#fdbe33, 10%);
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid #030f27;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}


/*******************************/
/*/
/*********** Team CSS **********/
/* /*/
.team {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.team .team-item {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 10px 10px 0px 0px;
    border: 1px solid gray;
   
}

.team .team-img {
    position: relative;
}

.team .team-img img {
    height: 250px;
    width: 100%;
}

@media (max-width: 767px) {
    .team-img {
      width: 100%;
      max-height: 300px;
    }
  }

.team .team-text {
    position: relative;
    padding: 25px 15px;
    text-align: center;
    background: #030f27;
    transition: .5s;
}

.team .team-text h2 {
    font-size: 20px;
    font-weight: 600;
    color: #fdbe33;
    transition: .5s;
}

.team .team-text p {
    margin: 0;
    color: #ffffff;
}

.team .team-item:hover .team-text {
    background: #fdbe33;
}

.team .team-item:hover .team-text h2 {
    color: #030f27;
    letter-spacing: 1px;
}

.team .team-social {
    position: absolute;
    width: 100px;
    top: 0;
    left: -50px;
    display: flex;
    flex-direction: column;
    font-size: 0;
}

.team .team-social a {
    position: relative;
    left: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ffffff;
}

.team .team-item:hover .team-social a:first-child {
    background: #00acee;
    left: 50px;
    transition: .3s 0s;
}

.team .team-item:hover .team-social a:nth-child(2) {
    background: #3b5998;
    left: 50px;
    transition: .3s .1s;
}

.team .team-item:hover .team-social a:nth-child(3) {
    background: #0e76a8;
    left: 50px;
    transition: .3s .2s;
}

.team .team-item:hover .team-social a:nth-child(4) {
    background: #3f729b;
    left: 50px;
    transition: .3s .3s;
} */


/*******************************/
/*********** FAQs CSS **********/
/*******************************/
.faqs {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

/*********************************/
/**** Property Videos CSS ********/
/*********************************/
.property-videos {
    position: relative;
    overflow: hidden;
    padding: 82px 0;
    background: linear-gradient(135deg, #fffaf0 0%, #f4e5c4 52%, #fffdf8 100%);
}

.property-videos::before {
    position: absolute;
    top: -150px;
    right: -120px;
    width: 360px;
    height: 360px;
    content: '';
    border: 1px solid rgba(180, 122, 8, .24);
    border-radius: 50%;
    box-shadow: 0 0 0 30px rgba(253, 190, 51, .07), 0 0 0 60px rgba(253, 190, 51, .035);
}

.property-videos .container { position: relative; z-index: 1; }
.property-videos__heading { max-width: 680px; margin: 0 auto 38px; }
.property-videos__heading p,
.property-video-card__caption span {
    margin-bottom: 7px;
    color: #b47a08;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.property-videos__heading h2 {
    margin: 0 0 12px;
    color: #07162e;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(38px, 5vw, 56px);
    font-weight: 700;
    line-height: 1;
}
.property-videos__heading span { color: #59677b; font-size: 15px; line-height: 1.75; }
.property-video-card {
    height: 100%;
    overflow: hidden;
    background: #fff;
    border: 8px solid #fff;
    box-shadow: 15px 18px 0 rgba(218, 170, 75, .18), 0 18px 42px rgba(7, 22, 46, .14);
}
.property-video-card__media { position: relative; background: #07162e; aspect-ratio: 16 / 9; }
.property-video-card video { display: block; width: 100%; height: 100%; object-fit: cover; }
.property-video-card__caption { padding: 20px 22px 22px; border-top: 3px solid #fbc94f; }
.property-video-card__caption span { display: block; }
.property-video-card__caption h3 { margin: 0; color: #07162e; font-size: 20px; font-weight: 700; }

/*********************************/
/**** Property Types CSS *********/
/*********************************/
.property-types { padding: 82px 0; background: #fff; }
.property-types--project { border-top: 1px solid #ead9ae; background: linear-gradient(135deg, #fffaf0, #fff); }
.property-types__heading { max-width: 700px; margin: 0 auto 38px; }
.property-types__heading p {
    margin-bottom: 7px;
    color: #b47a08;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.property-types__heading h2 {
    margin: 0 0 12px;
    color: #07162e;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(38px, 5vw, 56px);
    font-weight: 700;
    line-height: 1;
}
.property-types__heading span { color: #59677b; font-size: 15px; line-height: 1.75; }
.property-types__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.property-type-card {
    position: relative;
    display: block;
    min-height: 355px;
    overflow: hidden;
    color: #fff;
    background: #07162e;
    box-shadow: 0 15px 32px rgba(7, 22, 46, .14);
}
.property-type-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }
.property-type-card__shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3, 15, 39, .95), rgba(3, 15, 39, .04) 70%); }
.property-type-card__content { position: absolute; right: 0; bottom: 0; left: 0; padding: 24px 22px; }
.property-type-card__content small { display: block; margin-bottom: 6px; color: #fbc94f; font-size: 11px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; }
.property-type-card__content strong { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 30px; font-weight: 700; }
.property-type-card__content i { float: right; margin-top: 10px; color: #fbc94f; transition: transform .25s ease; }
.property-type-card:hover { color: #fff; }
.property-type-card:hover img { transform: scale(1.09); }
.property-type-card:hover .property-type-card__content i { transform: translateX(6px); }
.property-type-details { max-width: 1080px; margin: 0 auto; }
.property-type-feature { margin: 0 0 28px; overflow: hidden; background: #fff; box-shadow: 0 16px 38px rgba(7, 22, 46, .11); }
.property-type-feature:last-child { margin-bottom: 0; }
.property-type-feature__image { min-height: 390px; height: 100%; overflow: hidden; background: #07162e; }
.property-type-feature__image img { width: 100%; height: 100%; min-height: 390px; object-fit: cover; transition: transform .6s ease; }
.property-type-feature:hover .property-type-feature__image img { transform: scale(1.05); }
.property-type-feature__content { display: flex; flex-direction: column; justify-content: center; min-height: 390px; padding: 48px 12%; }
.property-type-feature__label { margin-bottom: 9px; color: #b47a08; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.property-type-feature__content h3 { margin: 0 0 15px; color: #07162e; font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(34px, 4vw, 46px); font-weight: 700; line-height: 1; }
.property-type-feature__content p { margin: 0 0 18px; color: #59677b; line-height: 1.8; }
.property-type-feature__content ul { margin: 0 0 21px; padding: 0; list-style: none; color: #26364d; font-size: 14px; line-height: 2; }
.property-type-feature__content li i { width: 20px; color: #c78d13; }
.property-type-feature__link { align-self: flex-start; padding-bottom: 5px; color: #8d5e00; border-bottom: 2px solid #fbc94f; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.property-type-feature__link:hover { color: #07162e; }
.property-type-feature__link i { margin-left: 7px; transition: transform .25s ease; }
.property-type-feature__link:hover i { transform: translateX(5px); }

/*********************************/
/**** Mountain Hills CSS *********/
/*********************************/
.mountain-hills { position: relative; overflow: hidden; padding: 88px 0; color: #fff; background: linear-gradient(135deg, #09241e 0%, #123a2e 52%, #0a211a 100%); }
.mountain-hills::before { position: absolute; inset: 0; content: ''; opacity: .10; background: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=1800&q=80') center/cover; }
.mountain-hills .container { position: relative; z-index: 1; }
.mountain-hills__heading { max-width: 800px; margin: 0 auto 42px; }
.mountain-hills__heading > span, .mountain-hills__eyebrow, .mountain-hills__card > span, .mountain-hills__closing span { display: block; color: #f6cf72; font-size: 11px; font-weight: 700; letter-spacing: 2.3px; text-transform: uppercase; }
.mountain-hills__heading h2 { margin: 10px 0 13px; color: #fff; font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(39px, 5.4vw, 64px); font-weight: 700; line-height: .96; }
.mountain-hills__heading h2 em { color: #f6cf72; font-style: normal; }
.mountain-hills__heading p { margin: 0; color: rgba(255,255,255,.76); font-size: 16px; }
.mountain-hills__hero { display: grid; grid-template-columns: 1.08fr .92fr; overflow: hidden; background: rgba(4, 22, 17, .54); border: 1px solid rgba(246, 207, 114, .32); box-shadow: 0 22px 50px rgba(0,0,0,.24); }
.mountain-hills__video { position: relative; align-self: center; height: 390px; background: #06140f; }
.mountain-hills__video video { display: block; width: 100%; height: 100%; object-fit: cover; }
.mountain-hills__video::after { position: absolute; inset: 0; content: ''; pointer-events: none; background: linear-gradient(0deg, rgba(2,13,9,.46), transparent 48%); }
.mountain-hills__video-tag { position: absolute; z-index: 2; top: 50%; left: 50%; display: flex; width: 76px; height: 76px; align-items: center; justify-content: center; padding: 0; color: #123a2e; background: #f6cf72; border: 2px solid rgba(255,255,255,.86); border-radius: 50%; box-shadow: 0 8px 24px rgba(0,0,0,.30); cursor: pointer; transform: translate(-50%, -50%); transition: opacity .25s ease, transform .25s ease, background .25s ease; }
.mountain-hills__video-tag:hover { background: #fff0be; transform: translate(-50%, -50%) scale(1.08); }
.mountain-hills__video-tag i { margin-left: 3px; font-size: 23px; }
.mountain-hills__video.is-playing .mountain-hills__video-tag { visibility: hidden; opacity: 0; }
.mountain-hills__intro { display: flex; flex-direction: column; justify-content: center; padding: 48px 42px; }
.mountain-hills__intro h3 { margin: 10px 0 16px; color: #fff; font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(34px, 3.7vw, 48px); font-weight: 700; line-height: 1; }
.mountain-hills__intro > p { margin: 0; color: rgba(255,255,255,.77); font-size: 15px; line-height: 1.8; }
.mountain-hills__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin: 27px 0 26px; background: rgba(246,207,114,.30); }
.mountain-hills__stats div { padding: 13px 9px; background: rgba(255,255,255,.06); }
.mountain-hills__stats strong { display: block; color: #f6cf72; font-size: 18px; line-height: 1.15; }.mountain-hills__stats span { display: block; margin-top: 5px; color: rgba(255,255,255,.72); font-size: 10px; line-height: 1.3; }
.mountain-hills__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }.mountain-hills__button { padding: 13px 18px; color: #102b22; background: #f6cf72; font-size: 12px; font-weight: 700; letter-spacing: .4px; text-transform: uppercase; }.mountain-hills__button:hover { color: #102b22; background: #fff0be; }.mountain-hills__button i { margin-right: 7px; }.mountain-hills__whatsapp { color: #fff; font-size: 12px; font-weight: 700; }.mountain-hills__whatsapp:hover { color: #f6cf72; }.mountain-hills__whatsapp i { margin-right: 6px; color: #5ae28a; font-size: 17px; vertical-align: -1px; }
.mountain-hills__details { margin-top: 26px; }.mountain-hills__card { height: 100%; min-height: 255px; padding: 30px 28px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13); }.mountain-hills__card > i { display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center; margin-bottom: 18px; color: #0e3025; background: #f6cf72; border-radius: 50%; }.mountain-hills__card > span { margin-bottom: 8px; }.mountain-hills__card h3 { margin: 0 0 11px; color: #fff; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 29px; font-weight: 700; }.mountain-hills__card p, .mountain-hills__card li { color: rgba(255,255,255,.75); font-size: 14px; line-height: 1.7; }.mountain-hills__card p { margin: 0 0 12px; }.mountain-hills__card small { color: #f6cf72; font-size: 12px; }.mountain-hills__card ul { margin: 0; padding-left: 18px; }.mountain-hills__card li { margin-bottom: 5px; }
.mountain-hills__closing { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 26px; padding: 28px 32px; background: #f6cf72; color: #102b22; }.mountain-hills__closing span { color: #745b1f; }.mountain-hills__closing h3 { margin: 7px 0 0; font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(26px, 3vw, 35px); font-weight: 700; }.mountain-hills__closing a { flex: 0 0 auto; color: #102b22; border-bottom: 2px solid rgba(16,43,34,.45); font-size: 12px; font-weight: 700; letter-spacing: .7px; text-transform: uppercase; }.mountain-hills__closing a i { margin-left: 7px; }

@media (max-width: 767.98px) {
    .property-videos { padding: 60px 0; }
    .property-videos__heading { margin-bottom: 30px; }
    .property-videos__heading span { font-size: 14px; }
    .property-video-card { border-width: 5px; }
    .property-video-card__caption { padding: 17px 18px 19px; }
    .property-types { padding: 60px 0; }
    .property-types__heading { margin-bottom: 30px; }
    .property-types__heading span { font-size: 14px; }
    .property-types__grid { grid-template-columns: 1fr; gap: 14px; }
    .property-type-card { min-height: 270px; }
    .property-type-feature { margin-bottom: 20px; }
    .property-type-feature__image, .property-type-feature__image img, .property-type-feature__content { min-height: 0; }
    .property-type-feature__image { height: 270px; }
    .property-type-feature__image img { height: 270px; }
    .property-type-feature__content { padding: 34px 26px; }
    .mountain-hills { padding: 62px 0; }
    .mountain-hills__heading { margin-bottom: 30px; }
    .mountain-hills__heading p { font-size: 14px; }
    .mountain-hills__hero { display: block; }
    .mountain-hills__video, .mountain-hills__video video { height: 235px; min-height: 0; }
    .mountain-hills__intro { padding: 34px 26px; }
    .mountain-hills__stats { gap: 1px; }
    .mountain-hills__stats strong { font-size: 15px; }
    .mountain-hills__actions { gap: 14px; }
    .mountain-hills__card { min-height: 0; }
    .mountain-hills__closing { display: block; padding: 26px; }
    .mountain-hills__closing a { display: inline-block; margin-top: 20px; }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .property-types__grid { grid-template-columns: repeat(2, 1fr); }
}

.faqs .row {
    position: relative;
}

.faqs .row::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    top: 0;
    left: calc(50% - .5px);
    background: #fdbe33;
}

.faqs #accordion-1 {
    padding-right: 15px;
}

.faqs #accordion-2 {
    padding-left: 15px;
}

@media(max-width: 767.98px) {
    .faqs .row::after {
        display: none;
    }
    
    .faqs #accordion-1,
    .faqs #accordion-2 {
        padding: 0;
    }
    
    .faqs #accordion-2 {
        padding-top: 15px;
    }
}

.faqs .card {
    margin-bottom: 15px;
    border: none;
    border-radius: 0;
}

.faqs .card:last-child {
    margin-bottom: 0;
}

.faqs .card-header {
    padding: 0;
    border: none;
    background: #ffffff;
}

.faqs .card-header a {
    display: block;
    padding: 10px 25px;
    width: 100%;
    color: #121518;
    font-size: 16px;
    line-height: 40px;
    border: 1px solid rgba(0, 0, 0, .1);
    transition: .5s;
}

.faqs .card-header [data-toggle="collapse"][aria-expanded="true"] {
    background: #fdbe33;
}

.faqs .card-header [data-toggle="collapse"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f067";
    float: right;
    color: #fdbe33;
    font-size: 12px;
    font-weight: 900;
    transition: .5s;
}

.faqs .card-header [data-toggle="collapse"][aria-expanded="true"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f068";
    float: right;
    color: #030f27;
    font-size: 12px;
    font-weight: 900;
    transition: .5s;
}

.faqs .card-body {
    padding: 20px 25px;
    font-size: 16px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .1);
    border-top: none;
}


.vertical-divider {
    position: absolute;
    top: 10%;
    right: 0;
    width: 2px;
    height: 90%;
    background-color: #f7c32e; /* Yellow divider */
}

.vertical-divider.dark {
    background-color: #0b0c2a; /* Dark divider for yellow side */
}
/*******************************/
/******* Testimonial CSS *******/
/*******************************/
.testimonial {
    position: relative;
    margin: 45px 0;
    padding: 90px 0;
    text-align: center;
    overflow: hidden;
    z-index: 1;
}

/* Black Overlay on video */
.testimonial::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* 0.5 is the opacity level – adjust as needed */
    z-index: 0;
}

.testimonial .video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 1; /* Full opacity for the video, black layer comes above this */
}

.testimonial .container {
    max-width: 760px;
    position: relative;
    z-index: 2;
}

/* Keep rest of your existing testimonial styles as is */

.testimonial .container {
    max-width: 760px;
}

.about-page .testimonial {
    padding-bottom: 90px;
}

.testimonial .testimonial-slider-nav {
    position: relative;
    width: 300px;
    margin: 0 auto;
}

.testimonial .testimonial-slider-nav .slick-slide {
    position: relative;
    opacity: 0;
    transition: .5s;
}

.testimonial .testimonial-slider-nav .slick-active {
    opacity: 1;
    transform: scale(1.3);
}

.testimonial .testimonial-slider-nav .slick-center {
    transform: scale(1.8);
    z-index: 1;
}

.testimonial .testimonial-slider-nav .slick-slide img {
    position: relative;
    display: block;
    margin-top: 37px;
    width: 100%;
    height: auto;
    border-radius: 100px;
}

.testimonial .testimonial-slider {
    position: relative;
    margin-top: 15px;
    padding-top: 50px;
}

.testimonial .testimonial-slider::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 50px;
    top: 0;
    left: calc(50% - 30px);
    background: url(../img/quote.png) top center no-repeat;
}

.testimonial .testimonial-slider h3 {
    color: #fdbe33;
    font-size: 22px;
    font-weight: 700;
}

.testimonial .testimonial-slider h4 {
    font-size: 14px;
    font-weight: 300;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial .testimonial-slider p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 300;
    margin: 0;
}

/*******************************/
/***** Channel Partners CSS ****/
/*******************************/
.channel-partners {
    position: relative;
    padding: 70px 0 55px;
    background: #f7f7f7;
}

.channel-partner-panel {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 30px;
    padding: 34px;
    overflow: hidden;
    background: #030f27;
    box-shadow: 0 20px 45px rgba(3, 15, 39, .18);
}

.channel-partner-panel::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 220px;
    height: 220px;
    border: 28px solid rgba(253, 190, 51, .16);
    border-radius: 50%;
}

.channel-partner-intro,
.partner-list {
    position: relative;
    z-index: 1;
}

.partner-badge {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 14px;
    color: #030f27;
    background: #fdbe33;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.channel-partner-intro h3 {
    margin-bottom: 16px;
    color: #ffffff;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 800;
}

.channel-partner-intro p {
    margin-bottom: 24px;
    color: rgba(255, 255, 255, .78);
    font-size: 16px;
    line-height: 1.7;
}

.partner-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 20px;
    color: #030f27;
    background: #fdbe33;
    font-weight: 700;
    transition: .3s;
}

.partner-cta:hover {
    color: #fdbe33;
    background: #ffffff;
}

.partner-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-content: center;
}

.partner-name {
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 14px 16px;
    color: #ffffff;
    background: rgba(255, 255, 255, .08);
    border-left: 4px solid #fdbe33;
    font-size: 16px;
    font-weight: 600;
    transition: .3s;
}

.partner-name i {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 26px;
    margin-right: 12px;
    color: #030f27;
    background: #fdbe33;
    border-radius: 50%;
    font-size: 12px;
}

.partner-name:hover {
    color: #030f27;
    background: #fdbe33;
    transform: translateY(-3px);
}

.partner-name:hover i {
    color: #fdbe33;
    background: #030f27;
}

@media (max-width: 991.98px) {
    .channel-partner-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .channel-partners {
        padding: 50px 0 35px;
    }

    .channel-partner-panel {
        padding: 24px 18px;
    }

    .channel-partner-intro h3 {
        font-size: 25px;
    }

    .partner-list {
        grid-template-columns: 1fr;
    }
}


/* Services Css */

/* About Section Styles */
.sankalp-about-section {
    padding: 50px 0;
}

.sankalp-section-subtitle {
    color: #fdbe33;
}



.sankalp-about-text {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.sankalp-image-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.sankalp-main-img {
    position: relative;
    width: 95%;
    border-radius: 15px 0 15px 15px;
    box-shadow: 15px 15px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

.sankalp-main-img:hover {
    transform: rotate(0deg) scale(1.02);
}

.sankalp-main-img::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 70px;
    height: 80px;
    background: linear-gradient(225deg, #fff 45%, #eee 50%, #ddd 56%);
    box-shadow: -3px 3px 8px rgba(0,0,0,0.1);
    border-radius: 0 0 0 12px;
    transform: rotate(45deg);
}

.sankalp-secondary-img {
    position: absolute;
    bottom: -60px;
    right: 0;
    width: 65%;
    border-radius: 0 15px 15px 15px;
    box-shadow: -10px 10px 30px rgba(0,0,0,0.1);
    border: 5px solid #fff;
    z-index: 1;
    animation: float 4s ease-in-out infinite;
}

.sankalp-section-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
}

.sankalp-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: #ff6b6b;
}

.sankalp-about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.sankalp-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background: #ff6b6b;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sankalp-cta-btn:hover {
    background: #ff5252;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,107,107,0.3);
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 768px) {
    .sankalp-image-container {
        margin-bottom: 60px;
    }

    .sankalp-secondary-img {
        bottom: -50px;
        right: -15px;
    }

    .sankalp-section-title {
        font-size: 2rem;
    }
}


.sankalp-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background-color: black;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.sankalp-btn:hover {
    background-color:black;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 128, 0.3);
}

/*  Header css */

.page-header {
    position: relative;
    overflow: hidden;
    height: 400px; /* Adjust as needed */
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: auto;
    min-height: 100%;
    min-width: 100%;
    z-index: 0;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); /* Optional dark overlay */
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}



/*******************************/
/*********** Blog CSS **********/
/*******************************/
.blog {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.blog .blog-item {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.blog .blog-img {
    position: relative;
    overflow: hidden;
}

.blog .blog-img img {
    width: 100%;
}

.blog .blog-title {
    display: flex;
    align-items: center;
    height: 60px;
    background: #030f27;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.blog .blog-title h3 {
    margin: 0;
    padding: 0 15px 0 25px;
    width: calc(100% - 60px);
    font-size: 18px;
    font-weight: 700;
    color: #fdbe33;
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.blog .blog-title a.btn {
    width: 60px;
    height: 60px;
    padding: 3px 0 0 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    line-height: 60px;
    font-weight: 100;
    color: #030f27;
    background: #fdbe33;
    border-radius: 0;
    transition: .3s;
}

.blog .blog-item:hover a.btn {
    color: #ffffff;
}

.blog .blog-meta {
    position: relative;
    padding: 25px 0 10px 0;
    background: #f3f6ff;
}

.blog .blog-meta::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 1px;
    left: calc(50% - 50px);
    bottom: 0;
    background: #fdbe33;
}

.blog .blog-meta p {
    display: inline-block;
    margin: 0;
    padding: 0 3px;
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
    color: #666666;
}

.blog .blog-meta p a {
    margin-left: 5px;
    font-style: normal;
}

.blog .blog-text {
    padding: 10px 25px 25px 25px;
    background: #f3f6ff;
}

.blog .blog-text p {
    margin: 0;
    font-size: 16px;
}

.blog .pagination .page-link {
    color: #030f27;
    border-radius: 0;
    border-color: #fdbe33;
}

.blog .pagination .page-link:hover,
.blog .pagination .page-item.active .page-link {
    color: #fdbe33;
    background: #030f27;
}

.blog .pagination .disabled .page-link {
    color: #999999;
}


/*******************************/
/******* Single Post CSS *******/
/*******************************/
.single {
    position: relative;
    padding: 45px 0;
}

.single .single-content {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

.single .single-content img {
    margin-bottom: 20px;
    width: 100%;
}

.single .single-tags {
    margin: -5px -5px 41px -5px;
    font-size: 0;
}

.single .single-tags a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    border: 1px solid #dddddd;
}

.single .single-tags a:hover {
    color: #fdbe33;
    background: #030f27;
}

.single .single-bio {
    margin-bottom: 45px;
    padding: 30px;
    background: #f3f6ff;
    display: flex;
}

.single .single-bio-img {
    width: 100%;
    max-width: 100px;
}

.single .single-bio-img img {
    width: 100%;
}

.single .single-bio-text {
    padding-left: 30px;
}

.single .single-bio-text h3 {
    font-size: 20px;
    font-weight: 700;
}

.single .single-bio-text p {
    margin: 0;
}

.single .single-related {
    margin-bottom: 45px;
}

.single .single-related h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .related-slider {
    position: relative;
    margin: 0 -15px;
    width: calc(100% + 30px);
}

.single .related-slider .post-item {
    margin: 0 15px;
}

.single .post-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.single .post-item .post-img {
    width: 100%;
    max-width: 80px;
}

.single .post-item .post-img img {
    width: 100%;
}

.single .post-item .post-text {
    padding-left: 15px;
}

.single .post-item .post-text a {
    font-size: 16px;
    font-weight: 400;
}

.single .post-item .post-meta {
    display: flex;
    margin-top: 8px;
}

.single .post-item .post-meta p {
    display: inline-block;
    margin: 0;
    padding: 0 3px;
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
}

.single .post-item .post-meta p a {
    margin-left: 5px;
    font-size: 14px;
    font-weight: 300;
    font-style: normal;
}

.single .related-slider .owl-nav {
    position: absolute;
    width: 90px;
    top: -55px;
    right: 15px;
    display: flex;
}

.single .related-slider .owl-nav .owl-prev,
.single .related-slider .owl-nav .owl-next {
    margin-left: 15px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #030f27;
    background: #fdbe33;
    font-size: 16px;
    transition: .3s;
}

.single .related-slider .owl-nav .owl-prev:hover,
.single .related-slider .owl-nav .owl-next:hover {
    color: #fdbe33;
    background: #030f27;
}

.single .single-comment {
    position: relative;
    margin-bottom: 45px;
}

.single .single-comment h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .comment-list {
    list-style: none;
    padding: 0;
}

.single .comment-child {
    list-style: none;
}

.single .comment-body {
    display: flex;
    margin-bottom: 30px;
}

.single .comment-img {
    width: 60px;
}

.single .comment-img img {
    width: 100%;
}

.single .comment-text {
    padding-left: 15px;
    width: calc(100% - 60px);
}

.single .comment-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 3px;
}

.single .comment-text span {
    display: block;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 5px;
}

.single .comment-text .btn {
    padding: 3px 10px;
    font-size: 14px;
    color: #030f27;
    background: #dddddd;
    border-radius: 0;
}

.single .comment-text .btn:hover {
    background: #fdbe33;
}

.single .comment-form {
    position: relative;
}

.single .comment-form h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .comment-form form {
    padding: 30px;
    background: #f3f6ff;
}

.single .comment-form form .form-group:last-child {
    margin: 0;
}

.single .comment-form input,
.single .comment-form textarea {
    border-radius: 0;
}

.single .comment-form .btn {
    padding: 15px 30px;
    color: #030f27;
    background: #fdbe33;
}

.single .comment-form .btn:hover {
    color: #fdbe33;
    background: #030f27;
}


/**********************************/
/*********** Sidebar CSS **********/
/**********************************/
.sidebar {
    position: relative;
    width: 100%;
}

@media(max-width: 991.98px) {
    .sidebar {
        margin-top: 45px;
    }
}

.sidebar .sidebar-widget {
    position: relative;
    margin-bottom: 45px;
}

.sidebar .sidebar-widget .widget-title {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 5px;
    font-size: 30px;
    font-weight: 700;
}

.sidebar .sidebar-widget .widget-title::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #fdbe33;
}

.sidebar .sidebar-widget .search-widget {
    position: relative;
}

.sidebar .search-widget input {
    height: 50px;
    border: 1px solid #dddddd;
    border-radius: 0;
}

.sidebar .search-widget input:focus {
    box-shadow: none;
}

.sidebar .search-widget .btn {
    position: absolute;
    top: 6px;
    right: 15px;
    height: 40px;
    padding: 0;
    font-size: 25px;
    color: #fdbe33;
    background: none;
    border-radius: 0;
    border: none;
    transition: .3s;
}

.sidebar .search-widget .btn:hover {
    color: #030f27;
}

.sidebar .sidebar-widget .recent-post {
    position: relative;
}

.sidebar .sidebar-widget .tab-post {
    position: relative;
}

.sidebar .tab-post .nav.nav-pills .nav-link {
    color: #fdbe33;
    background: #030f27;
    border-radius: 0;
}

.sidebar .tab-post .nav.nav-pills .nav-link:hover,
.sidebar .tab-post .nav.nav-pills .nav-link.active {
    color: #030f27;
    background: #fdbe33;
}

.sidebar .tab-post .tab-content {
    padding: 15px 0 0 0;
    background: transparent;
}

.sidebar .tab-post .tab-content .container {
    padding: 0;
}

.sidebar .sidebar-widget .category-widget {
    position: relative;
}

.sidebar .category-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar .category-widget ul li {
    margin: 0 0 12px 22px; 
}

.sidebar .category-widget ul li:last-child {
    margin-bottom: 0; 
}

.sidebar .category-widget ul li a {
    display: inline-block;
    line-height: 23px;
}

.sidebar .category-widget ul li::before {
    position: absolute;
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #fdbe33;
    left: 1px;
}

.sidebar .category-widget ul li span {
    display: inline-block;
    float: right;
}

.sidebar .sidebar-widget .tag-widget {
    position: relative;
    margin: -5px -5px;
}

.single .tag-widget a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    border: 1px solid #dddddd;
}

.single .tag-widget a:hover {
    color: #fdbe33;
    background: #030f27;
}

.sidebar .image-widget {
    display: block;
    width: 100%;
    overflow: hidden;
}

.sidebar .image-widget img {
    max-width: 100%;
    transition: .3s;
}

.sidebar .image-widget img:hover {
    transform: scale(1.1);
}


/*******************************/
/******** Portfolio CSS ********/
/*******************************/
.portfolio {
    position: relative;
    padding: 45px 0;
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: -15px 0 25px 0;
    list-style: none;
    font-size: 0;
    text-align: center;
}

.portfolio #portfolio-flters li,
.portfolio .load-more .btn {
    cursor: pointer;
    display: inline-block;
    margin: 5px;
    padding: 8px 15px;
    color: #030f27;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 0;
    background: #fdbe33;
    border: none;
    transition: .3s;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    background: #030f27;
    color: #fdbe33;
}

.portfolio .load-more {
    text-align: center;
}

.portfolio .load-more .btn {
    padding: 15px 35px;
    font-size: 16px;
    transition: .3s;
}

.portfolio .load-more .btn:hover {
    color: #fdbe33;
    background: #030f27;
}

.portfolio .portfolio-warp {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.portfolio .portfolio-img {
    position: relative;
    overflow: hidden;
}

.portfolio .portfolio-img img {
    width: 100%;
    transition: .3s;
}

.portfolio .portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio .portfolio-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(3, 15, 39, .7);
    transition: .5s;
    opacity: 0;
}

.portfolio .portfolio-warp:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio .portfolio-overlay p {
    margin: 0;
    color: #ffffff;
}

.portfolio .portfolio-text {
    display: flex;
    align-items: center;
    height: 60px;
    background: #030f27;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.portfolio .portfolio-text h3 {
    margin: 0;
    padding: 0 15px 0 25px;
    width: calc(100% - 60px);
    font-size: 20px;
    font-weight: 700;
    color: #fdbe33;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.portfolio .portfolio-warp a.btn {
    width: 60px;
    height: 60px;
    padding: 3px 0 0 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    line-height: 60px;
    font-weight: 100;
    color: #030f27;
    background: #ffffff;
    border-radius: 0;
    transition: .3s;
}

.portfolio .portfolio-warp:hover a.btn {
    color: #ffffff;
    background: #fdbe33;
}


/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.contact .col-md-6 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.contact .col-md-6:first-child {
    background: #030f27;
}

.contact .col-md-6:last-child {
    background: #fdbe33;
}

.contact .contact-info {
    position: relative;
    width: 100%;
    padding: 0 15px;
}

.contact .contact-item {
    position: relative;
    margin-bottom: 30px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    border: 1px solid rgba(256, 256, 256, .2);
}

.contact .contact-item [class^="flaticon-"]::before {
    margin: 0;
    color: #fdbe33;
    font-size: 40px;
}

.contact .contact-text {
    position: relative;
    width: auto;
    padding-left: 20px;
}

.contact .contact-text h2 {
    color: #fdbe33;
    font-size: 20px;
    font-weight: 600;
}

.contact .contact-text p {
    margin: 0;
    color: #ffffff;
    font-size: 18px;
}

.contact .contact-item:last-child {
    margin-bottom: 0;
}

.contact .contact-form {
    position: relative;
    padding: 0 15px;
}

.contact .contact-form input {
    color: #ffffff;
    height: 40px;
    border-radius: 0;
    border-width: 1px;
    border-color: rgba(256, 256, 256, .4);
    background: transparent;
}

.contact .contact-form textarea {
    color: #ffffff;
    height: 185px;
    border-radius: 0;
    border-width: 1px;
    border-color: rgba(256, 256, 256, .4);
    background: transparent;
}

.contact .contact-form input:focus,
.contact .contact-form textarea {
    box-shadow: none;
}

.contact .contact-form .form-control::placeholder {
  color: #ffffff;
  opacity: 1;
}

.contact .contact-form .form-control::-ms-input-placeholder {
  color: #ffffff;
}

.contact .contact-form .form-control::-ms-input-placeholder {
  color: #ffffff;
}

.contact .contact-form .btn {
    padding: 16px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #fdbe33;
    background: #030f27;
    border: none;
    border-radius: 0;
    transition: .3s;
}

.contact .contact-form .btn:hover {
    color: #030f27;
    background: #ffffff;
}

.contact .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}


/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    margin-top: 45px;
    padding-top: 40px;
    background: #030f27;
    color: #ffffff;
}

.footer .footer-contact,
.footer .footer-link,
.footer .newsletter {
    position: relative;
    margin-bottom: 45px;
}

.footer h2 {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
    color: #fdbe33;
}

.footer h2::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    left: 0;
    bottom: 0;
    background: #fdbe33;
}

.footer .footer-link a {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    transition: .3s;
}

.footer .footer-link a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .footer-link a:hover {
    color: #fdbe33;
    letter-spacing: 1px;
}

.footer .footer-contact p i {
    width: 25px;
}

.footer .footer-social {
    position: relative;
    margin-top: 20px;
}

.footer .footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    padding: 7px 0;
    text-align: center;
    border: 1px solid rgba(256, 256, 256, .3);
    border-radius: 60px;
    transition: .3s;
}

.footer .footer-social a i {
    font-size: 15px;
    color: #ffffff;
}

.footer .footer-social a:hover {
    background: #fdbe33;
    border-color: #fdbe33;
}

.footer .footer-social a:hover i {
    color: #030f27;
}

.footer .newsletter .form {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.footer .newsletter input {
    height: 50px;
    border: 2px solid #121518;
    border-radius: 0;
}

.footer .newsletter .btn {
    position: absolute;
    top: 5px;
    right: 5px;
    height: 40px;
    padding: 8px 10px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: #fdbe33;
    background: #121518;
    border-radius: 0;
    border: 2px solid #fdbe33;
    transition: .3s;
}

.footer .newsletter .btn:hover {
    color: #121518;
    background: #fdbe33;
}

.footer .footer-menu .f-menu {
    position: relative;
    padding: 15px 0;
    font-size: 0;
    text-align: center;
    border-top: 1px solid rgba(256, 256, 256, .1);
    border-bottom: 1px solid rgba(256, 256, 256, .1);
}

.footer .footer-menu .f-menu a {
    color: #ffffff;
    font-size: 16px;
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu .f-menu a:hover {
    color: #fdbe33;
}

.footer .footer-menu .f-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}


.footer .copyright {
    padding: 30px 15px;
}

.footer .copyright p {
    margin: 0;
    color: #ffffff;
}

.footer .copyright .col-md-6:last-child p {
    text-align: right;
}

.footer .copyright p a {
    color: #fdbe33;
    font-weight: 500;
    letter-spacing: 1px;
}

.footer .copyright p a:hover {
    color: #ffffff;
}

.whatsapp-float {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 999;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #25d366;
    border-radius: 40%;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .25);
    transition: .3s;
}

.whatsapp-float i {
    font-size: 30px;
}

.whatsapp-float:hover {
    color: #ffffff;
    background: #1ebe5d;
    transform: translateY(-3px);
}

/* Premium experience layer */
:root { --ink: #07162e; --gold: #fdbe33; --paper: #f5f7fb; }
html { scroll-behavior: smooth; }
body { background: var(--paper); overflow-x: hidden; }
.nav-bar .navbar { box-shadow: 0 8px 24px rgba(3,15,39,.10); }
.nav-bar a.nav-link { position: relative; }
@media (min-width: 992px) {
  .nav-bar a.nav-link::after { content: ''; position: absolute; left: 15px; right: 15px; bottom: 4px; height: 2px; background: var(--gold); transform: scaleX(0); transition: transform .3s ease; }
  .nav-bar a.nav-link:hover::after, .nav-bar a.nav-link.active::after { transform: scaleX(1); }
}
.page-header { overflow: hidden; background: var(--ink); }
.page-header::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 20%, rgba(253,190,51,.38), transparent 35%); z-index: 1; pointer-events: none; }
.page-header h2, .page-header a { color: #fff; text-shadow: 0 3px 14px rgba(0,0,0,.35); }
.section-header p { letter-spacing: 2px; text-transform: uppercase; }
.section-header h2 { line-height: 1.15; }

/* A calmer, editorial treatment suited to premium real estate. */
.page-header h2, .section-header h2, .property-showcase h2, .enquiry-banner h2, .signature-copy h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  letter-spacing: .4px;
}
.page-header h2 { font-size: clamp(46px, 6vw, 76px); }
.page-header h2::after { background: var(--gold); width: 72px; left: calc(50% - 36px); height: 3px; }
.top-bar { background: linear-gradient(100deg, #d99a10, #fdc94e, #d99a10); }
.footer { border-top: 3px solid var(--gold); }
.carousel .carousel-caption h1 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(48px, 6vw, 78px); letter-spacing: 1px; }
.carousel .carousel-caption p { color: #ffe8a5; text-transform: uppercase; font-size: 14px; font-weight: 600; letter-spacing: 4px; }
.carousel .carousel-caption .btn { border-radius: 0; border-color: var(--gold); color: var(--gold); }
.carousel .carousel-caption .btn:hover { background: var(--gold); color: var(--ink); }
.hero-mobile-title { display: none; }
@media (max-width: 767.98px) {
  .carousel .hero-desktop-title { display: none; }
  .carousel .hero-mobile-title { display: block; margin: 8px 15px 22px; font-size: clamp(30px, 9vw, 42px); line-height: 1.02; }
  .carousel .carousel-caption p { margin-bottom: 6px; font-size: 10px; letter-spacing: 2px; }
  .carousel .carousel-caption .btn { padding: 10px 21px; font-size: 14px; }
  .carousel-indicators { bottom: 4px; }
}

/* Light, polished navigation across the site. */
.top-bar { background: linear-gradient(100deg, #fff8e8, #f8e4aa, #fff8e8); border-bottom: 1px solid rgba(180,122,8,.20); }
.top-bar .top-bar-text h3, .top-bar .top-bar-text p, .top-bar .top-bar-icon [class^="flaticon-"]::before { color: #26364d; }
.nav-bar { background: #fffdf7; border-bottom: 1px solid rgba(180,122,8,.20); }
.nav-bar .navbar { background: #fffdf7 !important; box-shadow: 0 7px 22px rgba(7,22,46,.07); }
.navbar-dark .navbar-nav .nav-link, .navbar-dark .navbar-nav .nav-link:focus { color: #24334a; }
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link.active { color: #a66c00; }
.nav-bar a.nav-link.active { font-weight: 700; }
.nav-bar .btn { color: #24334a; border-color: #c78d13; background: transparent; }
.nav-bar .btn:hover { color: #fff; background: #b47a08; border-color: #b47a08; }
.navbar-dark .navbar-toggler { border-color: rgba(36,51,74,.35); }
.navbar-dark .navbar-toggler-icon { filter: invert(20%); }
.nav-bar.nav-sticky { box-shadow: 0 8px 24px rgba(7,22,46,.12); }
@media (min-width: 992px) {
  .nav-bar .navbar-nav.mr-auto { margin-left: auto !important; margin-right: 22px !important; }
}

/* Consistent content typography for the original page sections. */
.about-section p, .about p, .service p, .team p, .contact p, .portfolio p, .testimonial p, .feature p,
.vmp-section p, .timeline-content p, .mla-text, .footer p {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: .05px;
}
.about-section h2, .about h2, .service h2, .team h2, .contact h2, .portfolio h2, .testimonial h2,
.vmp-section h2, .timeline-content h3, .feature h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  letter-spacing: .25px;
}
.about-section h3, .about h3, .service h3, .team h3, .contact h3, .portfolio h3, .testimonial h3,
.vmp-section h3, .timeline-content h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: .15px;
}
.section-header { margin-bottom: 34px; }
.section-header p { font-size: 12px; font-weight: 700; letter-spacing: 2.2px; }
.section-header h2 { font-size: clamp(36px, 4vw, 52px); }
.about-text, .mla-text { color: #586579; text-align: left; }
.contact .contact-text h2 { font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 700; }
.contact .contact-text p { color: #59677b; }
.footer p { font-size: 14px; line-height: 1.7; }
@media (max-width: 767.98px) {
  .about-section p, .about p, .service p, .team p, .contact p, .portfolio p, .testimonial p, .feature p,
  .vmp-section p, .timeline-content p, .mla-text { font-size: 14px; line-height: 1.75; }
}

/* Airy architectural layers inspired by contemporary real-estate editorial layouts. */
body {
  background-color: #f7f1e4;
  background-image:
    linear-gradient(135deg, rgba(255, 250, 239, .60), rgba(248, 236, 202, .54)),
    url('https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1800&q=70');
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.wrapper { background: rgba(255, 253, 247, .38); }
.about-section, .contact, .team, .portfolio, .journey-section, .story-ribbon, .home-gallery, .visit-section {
  isolation: isolate;
  overflow: hidden;
  position: relative;
}
.about-section::before, .contact::before, .team::before, .portfolio::before {
  content: '';
  position: absolute;
  width: 430px;
  height: 430px;
  z-index: 0;
  pointer-events: none;
  background: url('https://images.unsplash.com/photo-1600585152915-d208bec867a1?auto=format&fit=crop&w=1000&q=70') center/cover;
  opacity: .055;
  filter: saturate(.5) sepia(.25);
}
.about-section::before, .portfolio::before { top: 30px; right: -160px; border-radius: 50%; }
.contact::before, .team::before { left: -165px; bottom: 20px; border-radius: 36% 64% 60% 40%; }
.about-section > *, .contact > *, .team > *, .portfolio > * { position: relative; z-index: 1; }
.journey-section .container, .story-ribbon .container, .home-gallery .container, .visit-section .container { position: relative; z-index: 1; }
.story-ribbon {
  background-image: linear-gradient(90deg, rgba(255,253,248,.96), rgba(255,253,248,.91)), url('https://images.unsplash.com/photo-1600607688969-a5bfcd646154?auto=format&fit=crop&w=1400&q=75');
  background-position: center;
  background-size: cover;
}
.journey-section {
  background-image: linear-gradient(145deg, rgba(255,250,240,.96), rgba(255,255,255,.92)), url('https://images.unsplash.com/photo-1600047509807-ba8f99d2cdde?auto=format&fit=crop&w=1400&q=70');
  background-position: center;
  background-size: cover;
}
.journey-section::before, .home-gallery::before, .visit-section::before {
  content: '';
  position: absolute;
  width: 370px;
  height: 370px;
  border: 1px solid rgba(188,133,20,.24);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  box-shadow: 0 0 0 30px rgba(253,190,51,.045), 0 0 0 60px rgba(253,190,51,.025);
}
.journey-section::before { right: -190px; top: -190px; }
.home-gallery::before { left: -215px; bottom: -220px; }
.visit-section::before { right: -190px; bottom: -190px; }
.journey-steps > div, .story-ribbon .row, .visit-card, .people-panel { backdrop-filter: blur(5px); }
.property-showcase { background-image: linear-gradient(180deg, rgba(255,255,255,.94), rgba(245,247,251,.96)), url('https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1400&q=65'); background-size: cover; background-position: center; }
.project-landing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1600&q=65') center/cover;
  opacity: .075;
  mix-blend-mode: screen;
  pointer-events: none;
}
.project-landing::after {
  content: '';
  position: absolute;
  right: -90px;
  top: 160px;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(247,201,72,.34);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(247,201,72,.05), 0 0 0 68px rgba(247,201,72,.03);
  pointer-events: none;
}
@media (max-width: 767.98px) {
  .about-section::before, .contact::before, .team::before, .portfolio::before { width: 280px; height: 280px; opacity: .04; }
  .journey-section::before, .home-gallery::before, .visit-section::before { transform: scale(.68); }
}
.signature-section { position: relative; overflow: hidden; padding: 82px 0; color: #fff; background: #07162e; }
.signature-section::before { content: 'SUNSHINE'; position: absolute; right: -20px; bottom: -40px; color: rgba(255,255,255,.035); font: 700 clamp(80px, 16vw, 230px)/1 'Cormorant Garamond', Georgia, serif; pointer-events: none; }
.signature-section::after { content: ''; position: absolute; width: 420px; height: 420px; top: -240px; left: -120px; border: 1px solid rgba(253,190,51,.35); border-radius: 50%; box-shadow: 0 0 0 35px rgba(253,190,51,.05), 0 0 0 70px rgba(253,190,51,.035); }
.signature-section .container { position: relative; z-index: 1; }
.signature-kicker { display: flex; align-items: center; gap: 13px; color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; }
.signature-kicker::before { content: ''; width: 38px; height: 1px; background: var(--gold); }
.signature-copy h2 { max-width: 570px; margin: 12px 0 16px; color: #fff; font-size: clamp(36px, 5vw, 58px); line-height: .98; }
.signature-copy p { max-width: 555px; color: rgba(255,255,255,.76); line-height: 1.8; }
.signature-points { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 26px; }
.signature-point { padding: 15px 0; border-top: 1px solid rgba(253,190,51,.35); color: #fff; font-size: 14px; }
.signature-point i { margin-right: 9px; color: var(--gold); }
.signature-image { min-height: 400px; margin-top: 8px; position: relative; overflow: hidden; border: 1px solid rgba(253,190,51,.48); }
.signature-image img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; filter: saturate(.72) contrast(1.06); }
.signature-image::after { content: 'Private property consultation'; position: absolute; right: 0; bottom: 0; padding: 12px 18px; color: var(--ink); background: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: 1.3px; text-transform: uppercase; }
/* Home is intentionally bright, warm and aspirational. */
.signature-home { color: var(--ink); background: linear-gradient(135deg, #fffaf0 0%, #f8ecd2 52%, #fff 100%); }
.signature-home::before { color: rgba(180,122,8,.07); }
.signature-home::after { border-color: rgba(180,122,8,.25); box-shadow: 0 0 0 35px rgba(253,190,51,.10), 0 0 0 70px rgba(253,190,51,.06); }
.signature-home .signature-copy h2 { color: var(--ink); }
.signature-home .signature-copy p { color: #5e6470; }
.signature-home .signature-point { color: var(--ink); border-top-color: rgba(180,122,8,.25); }
.signature-home .signature-image { border: 8px solid #fff; box-shadow: 16px 18px 0 rgba(218,170,75,.22), 0 18px 45px rgba(7,22,46,.14); }
.home-gallery { padding: 95px 0; overflow: hidden; background: #fff; }
.home-gallery h2 { margin: 10px 0 18px; color: var(--ink); font: 700 clamp(38px, 4.5vw, 57px)/.98 'Cormorant Garamond', Georgia, serif; }
.home-gallery p:not(.gallery-label) { max-width: 440px; color: #627084; line-height: 1.8; }
.gallery-label { color: #b47a08; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.gallery-link { display: inline-block; margin-top: 12px; padding-bottom: 5px; color: var(--ink); border-bottom: 2px solid var(--gold); font-weight: 700; }
.gallery-link i { margin-left: 8px; color: #c78d13; transition: transform .25s ease; }.gallery-link:hover i { transform: translateX(5px); }
.gallery-mosaic { height: 480px; position: relative; margin-left: 22px; }
.gallery-mosaic img { position: absolute; display: block; object-fit: cover; box-shadow: 0 18px 38px rgba(7,22,46,.13); }
.gallery-main { left: 0; bottom: 0; width: 72%; height: 88%; }
.gallery-top { top: 0; right: 0; width: 47%; height: 46%; border: 9px solid #fff; }
.gallery-note { position: absolute; right: 4%; bottom: 4%; display: flex; flex-direction: column; padding: 18px 22px; color: var(--ink); background: #fbc94f; box-shadow: 0 10px 25px rgba(7,22,46,.14); }
.gallery-note b { font: 700 25px/1 'Cormorant Garamond', Georgia, serif; }.gallery-note span { margin-top: 5px; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.story-ribbon { padding: 80px 0; background: #fffdf8; border-top: 1px solid #ead9ae; border-bottom: 1px solid #ead9ae; }
.story-ribbon h2, .journey-section h2, .people-panel h2, .visit-card h2 { font: 700 clamp(36px, 5vw, 56px)/1 'Cormorant Garamond', Georgia, serif; color: var(--ink); }
.story-label, .journey-label { color: #b47a08; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.story-ribbon p:not(.story-label) { margin: 0; color: #536174; font-size: 18px; line-height: 1.8; }
.story-copy { margin-top: 16px !important; }
.story-values { display: flex; flex-wrap: wrap; gap: 15px 24px; margin-top: 25px; color: var(--ink); font-size: 14px; font-weight: 600; }
.story-values i { color: #c78d13; margin-right: 7px; }
.story-image { height: 370px; position: relative; border: 9px solid #fff; box-shadow: 17px 18px 0 rgba(218,170,75,.20), 0 18px 40px rgba(7,22,46,.12); }
.story-image img { width: 100%; height: 100%; object-fit: cover; }.story-image span { position: absolute; right: 0; bottom: 0; padding: 12px 18px; color: var(--ink); background: #fbc94f; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.journey-section { padding: 82px 0; background: linear-gradient(145deg, #fffaf0, #fff); }
.journey-section h2 { margin: 8px 0 16px; }.journey-intro { max-width: 340px; color: #647084; line-height: 1.8; }
.journey-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; overflow: hidden; background: #d9c48d; border: 1px solid #d9c48d; }
.journey-steps > div { min-height: 220px; padding: 34px; background: #fff; transition: background .3s ease; }
.journey-steps > div:hover { background: #07162e; }
.journey-steps b { color: #c78d13; font: 700 44px/1 'Cormorant Garamond', Georgia, serif; }
.journey-steps h3 { margin: 22px 0 10px; font-size: 20px; }
.journey-steps p { margin: 0; color: #657083; line-height: 1.7; font-size: 14px; }
.journey-steps > div:hover h3 { color: #fff; }.journey-steps > div:hover p { color: rgba(255,255,255,.72); }
.people-section { padding: 80px 0; background: #fffaf0; }
.people-panel { padding: 60px 8%; text-align: center; border: 1px solid #ead9ae; background: linear-gradient(120deg, rgba(255,255,255,.90), rgba(255,250,240,.70)), url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1500&q=85') center/cover; box-shadow: 0 18px 40px rgba(7,22,46,.09); }
.people-panel p { margin-bottom: 10px; color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.people-panel h2 { max-width: 630px; margin: 0 auto 14px; color: var(--ink); }
.people-panel span { display: block; max-width: 620px; margin: 0 auto; color: #536174; line-height: 1.75; }
.people-panel a { display: inline-block; margin-top: 25px; color: #8d5e00; font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.people-panel a i { margin-left: 8px; }
.visit-section { padding: 70px 0; background: #fffaf0; }
.visit-card { display: grid; grid-template-columns: 1.3fr .7fr; align-items: stretch; gap: 35px; padding: 0 0 0 50px; border-left: 4px solid var(--gold); background: #fff; box-shadow: 0 16px 34px rgba(3,15,39,.12); }
.visit-card p { margin: 0 0 8px; color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.visit-card h2 { margin: 0 0 10px; color: var(--ink); }.visit-card span { color: #657083; }
.visit-card > div:first-child { align-self: center; padding: 40px 0; }.visit-card .btn { padding: 14px 22px; border-radius: 0; color: var(--ink); background: var(--gold); font-weight: 700; }
.visit-card .btn i { margin-right: 8px; }
.visit-image { min-height: 260px; overflow: hidden; }.visit-image img { width: 100%; height: 100%; object-fit: cover; }

.experience-strip { position: relative; margin: 0 auto; padding: 0 15px; max-width: 1200px; transform: translateY(-30px); z-index: 4; }
.experience-strip__inner { display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden; border-radius: 16px; background: var(--ink); box-shadow: 0 18px 42px rgba(3,15,39,.24); }
.experience-stat { min-height: 110px; display: flex; align-items: center; gap: 15px; padding: 22px 28px; color: #fff; border-right: 1px solid rgba(255,255,255,.15); }
.experience-stat:last-child { border: 0; }
.experience-stat i { color: var(--gold); font-size: 30px; }
.experience-stat strong { display: block; color: var(--gold); font-size: 25px; line-height: 1; }
.experience-stat span { display: block; font-size: 13px; margin-top: 7px; color: rgba(255,255,255,.8); }

.property-showcase { position: relative; padding: 40px 0 80px; background: linear-gradient(180deg, #fff, #f5f7fb); }
.property-showcase .eyebrow { color: #c68300; font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.property-showcase h2 { margin: 8px 0 12px; font-size: clamp(28px, 4vw, 46px); }
.property-showcase .intro { max-width: 650px; margin: 0 auto 30px; color: #637083; }
.showcase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.showcase-card { min-height: 370px; position: relative; display: flex; align-items: end; overflow: hidden; border-radius: 14px; color: #fff; background: var(--ink); box-shadow: 0 14px 32px rgba(7,22,46,.12); }
.showcase-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.showcase-card:hover img { transform: scale(1.09); }
.showcase-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,15,39,.94), rgba(3,15,39,.06) 70%); }
.showcase-copy { position: relative; z-index: 1; width: 100%; padding: 25px; }
.showcase-copy small { color: var(--gold); letter-spacing: 1px; font-weight: 700; text-transform: uppercase; }
.showcase-copy h3 { color: #fff; margin: 7px 0; font-size: 23px; }
.showcase-copy p { margin: 0; font-size: 14px; color: rgba(255,255,255,.85); }
.enquiry-banner { margin: 0 15px 70px; padding: 45px 30px; text-align: center; color: #fff; border-radius: 16px; background: linear-gradient(110deg, #07162e, #183b69), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1400&q=80') center/cover; background-blend-mode: multiply; box-shadow: 0 16px 35px rgba(3,15,39,.2); }
.enquiry-banner h2 { color: #fff; margin-bottom: 10px; }
.enquiry-banner p { max-width: 600px; margin: 0 auto 22px; color: rgba(255,255,255,.88); }
.enquiry-banner .btn { padding: 12px 26px; font-weight: 700; color: var(--ink); border-radius: 30px; background: var(--gold); }
.enquiry-banner .btn:hover { color: #fff; background: #e49d00; transform: translateY(-2px); }
.reveal-on-scroll { opacity: 0; transform: translateY(26px); transition: opacity .75s ease, transform .75s ease; }
.reveal-on-scroll.is-visible { opacity: 1; transform: none; }

@media (max-width: 767.98px) {
  .experience-strip { transform: translateY(-20px); }
  .experience-strip__inner { grid-template-columns: 1fr; }
  .experience-stat { min-height: 80px; padding: 16px 20px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.15); }
  .experience-stat strong { font-size: 21px; }
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-card { min-height: 300px; }
  .signature-section { padding: 60px 0; }
  .signature-image { min-height: 280px; margin-top: 34px; }
  .story-image { margin-top: 34px; height: 300px; }
  .home-gallery { padding: 65px 0; }
  .gallery-mosaic { height: 390px; margin: 42px 0 0; }
  .journey-steps { grid-template-columns: 1fr; }
  .journey-steps > div { min-height: 0; }
  .visit-card { display: block; padding: 35px 26px 0; }
  .visit-card > div:first-child { padding: 0; }
  .visit-card .btn { margin-top: 22px; }
  .visit-image { margin: 30px -26px 0; min-height: 220px; }
  .enquiry-banner { margin-bottom: 45px; padding: 35px 20px; }
}

@media (max-width: 768px) {
    .whatsapp-float {
        left: 16px;
        bottom: 16px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float i {
        font-size: 27px;
    }

    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
        margin: 5px 0;
        text-align: center;
    }
    .contact .contact-text p {
        font-size: 12px;
    }
}
