@font-face {
  font-family: "adelia";
  src:
    local("adelia"),
    local("Adelia"),
    url("../fonts/adelia.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "BravenRegular";
  src:
    local("BravenRegular"),
    local("Braven Regular"),
    url("../fonts/BravenRegular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src:
    local("Montserrat"),
    local("Montserrat"),
    url("../fonts/Montserrat.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Signatrue";
  src:
    local("Signatrue"),
    local("Signatrue"),
    url("../fonts/Signatrue.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Candlescript";
  src: url("../fonts/Candlescript-Demo.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap; /* Prevents hidden text while loading */
}

:root {
  --bg-dark-green: #143021;
  --gold-accent: #c0a262;
  --gold-border: #4a5d4d;
  --btn-border: #2e4d3a;
  --text-muted: #8fa396;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--bg-dark-green);
  color: #ffffff;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Fixed Green Top Navigation Header */
.logo {
  width: 130px;
  height: auto;
}
.navbar-custom {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 60px;
  background-color: var(--bg-dark-green);
  border-bottom: 1px solid rgba(192, 162, 98, 0.2);
}

.brand-logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo-icon {
  width: 38px;
  height: 38px;
}

.brand-text-title {
  font-family: "Cinzel", serif;
  color: #ffffff;
  font-size: 1.5rem;
  letter-spacing: 3px;
  line-height: 1;
}

.brand-text-sub {
  font-family: "Cinzel", serif;
  color: var(--gold-accent);
  font-size: 0.55rem;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 3px;
}

.nav-link-custom {
  color: #ffffff !important;
  font-family: "BravenRegular", serif;
  font-size: 1.3rem;
  margin-left: 35px;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: opacity 0.3s;
}

.nav-link-custom:hover {
  opacity: 0.8;
  color: var(--gold-accent) !important;
}

/* Hero Carousel (Offset top padding for fixed green navbar) */
.hero-carousel,
.carousel-inner,
.carousel-item {
  height: calc(100vh - 10px);
  min-height: 600px;
  /* margin-top: 80px; */
}

.carousel-item {
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.25);
}

.hero-content {
  position: absolute;
  top: 53%;
  left: 6%;
  transform: translateY(-50%);
  max-width: 880px;
  z-index: 10;
}

.hero-title {
  font-family: "Cinzel", serif;
  font-size: 5.8rem;
  font-weight: 200;
  line-height: 1.1;
  letter-spacing: 3px;
  color: #ffffff;
  margin-bottom: 25px;
}
.hero-title span {
  /* font-family: "Cinzel", serif; */
  font-size: 5.8rem;
  font-weight: 200;
  line-height: 1.1;
  letter-spacing: 3px;
  color: #f6c54e;
  margin-bottom: 25px;
}

.hero-description {
  font-size: 1.2rem;
  font-weight: 300;
  color: #e0e0e0;
  margin-bottom: 40px;
  line-height: 1.4;
  letter-spacing: 0.5px;
}

/* Pill Buttons */
.btn-pill {
  /* border: 1px solid #3c5946; */
  border: 1px solid #f7c64f;
  color: #ffffff;
  padding: 12px 32px;
  border-radius: 50px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  background: rgba(10, 31, 24, 0.5);
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-pill:hover {
  border-color: #3c5946;
  color: #ffffff;
  background: rgba(10, 31, 24, 0.8);
}

.carousel-copyright {
  position: absolute;
  bottom: 20px;
  right: 40px;
  font-size: 0.65rem;
  color: #b0b0b0;
  z-index: 10;
  letter-spacing: 0.5px;
}

.carousel-copyright a {
  color: #b0b0b0;
  text-decoration: none;
}

/* Footer / Contact Section */
.footer-section {
  background-color: var(--bg-dark-green);
  padding: 50px 6% 30px 6%;
  position: relative;
}

.footer-title {
  font-family: "adelia", cursive;
  font-size: 2rem;
  letter-spacing: 4px;
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 20px;
}

.footer-description {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.5;
  margin-bottom: 35px;
}

.btn-connect-large {
  /* border: 1px solid #3c5946; */
  border: 1px solid #f6c54e;
  color: #ffffff;
  padding: 16px 60px;
  border-radius: 50px;
  font-family: "Cinzel", serif;
  font-size: 1.25rem;
  letter-spacing: 3px;
  background: rgba(5, 18, 14, 0.6);
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.btn-connect-large:hover {
  border-color: #3c5946;
  color: #ffffff;
}

.social-container {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-label {
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--text-muted);
  font-weight: 500;
}

.social-btn {
  width: 26px;
  height: 26px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.7rem;
  text-decoration: none;
  transition: all 0.3s;
}

.social-btn:hover {
  color: var(--gold-accent);
  border-color: var(--gold-accent);
}

.bottom-nav-links {
  margin-top: 25px;
  display: flex;
  gap: 12px;
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}

.bottom-nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.bottom-nav-links a:hover {
  color: #ffffff;
}

/* Big Watermark Logo Background */
.bg-watermark {
  position: absolute;
  left: 0px;
  bottom: 15px;
  /* width: 320px; */
  opacity: 0.8;
  pointer-events: none;
}

.footer-logo-main {
  text-align: center;
}

.footer-brand-title {
  font-family: "Cinzel", serif;
  font-size: 4rem;
  letter-spacing: 8px;
  color: #ffffff;
  line-height: 1;
  margin-top: 10px;
}

.footer-brand-sub {
  font-family: "Cinzel", serif;
  color: var(--gold-accent);
  font-size: 1.1rem;
  letter-spacing: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-brand-sub::before,
.footer-brand-sub::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background-color: var(--gold-accent);
}

.city-skyline {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 60px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'%3E%3Cpath fill='%2305100c' fill-opacity='0.5' d='M0,100 L0,80 L20,80 L20,60 L35,60 L35,80 L50,80 L50,40 L70,40 L70,80 L90,80 L90,100 Z M100,100 L100,50 L120,50 L120,30 L140,30 L140,100 Z M150,100 L150,70 L180,70 L180,100 Z M200,100 L200,40 L220,40 L220,20 L240,20 L240,100 Z M260,100 L260,60 L300,60 L300,100 Z M800,100 L800,50 L830,50 L830,20 L860,20 L860,100 Z M880,100 L880,60 L910,60 L910,100 Z M930,100 L930,40 L970,40 L970,100 Z'%3E%3C/path%3E%3C/svg%3E");
  background-size: cover;
  pointer-events: none;
  opacity: 0.3;
}

/* about us */

/* Background Architecture Wireframe Grid Effect */
.bg-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(192, 162, 98, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192, 162, 98, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Executive Profiles Display */
.executives-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 0;
  z-index: 2;
}

.executive-person {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.5));
}

.executive-person img {
  /* max-height: 400px; */
  width: auto;
  display: block;
  margin: 0 auto;
}

/* Gold Decorative Side Logos */
.side-emblem-left,
.side-emblem-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 220px;
  opacity: 0.85;
  z-index: 1;
}

.side-emblem-left {
  left: -40px;
}
.side-emblem-right {
  right: -40px;
}

/* Divider Line with Flourish */
.flourish-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
  position: relative;
  z-index: 2;
}

.flourish-line {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-accent),
    transparent
  );
  width: 80%;
  position: relative;
}

.flourish-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--bg-dark-green);
  padding: 0 15px;
  color: var(--gold-accent);
  font-size: 1.2rem;
}

/* Statement Heading & Typography */
.statement-title {
  font-family: "BravenRegular";
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-align: center;
  margin-bottom: 25px;
  color: #ffffff;
  z-index: 2;
  position: relative;
}

.statement-title span {
  color: var(--gold-accent);
}

.statement-text {
  font-size: 1.2rem;
  font-weight: 300;
  color: #d0d8d3;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 15px;
  line-height: 1.6;
  z-index: 2;
  position: relative;
}

.section-copyright {
  text-align: right;
  padding-right: 40px;
  padding-bottom: 15px;
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.section-copyright a {
  color: var(--text-muted);
  text-decoration: none;
}
.city-skyline {
  position: absolute;
  bottom: 0;
  right: 10%;
  width: 30%;
  height: 60px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'%3E%3Cpath fill='%23020805' fill-opacity='0.7' d='M0,100 L0,80 L20,80 L20,60 L35,60 L35,80 L50,80 L50,40 L70,40 L70,80 L90,80 L90,100 Z M100,100 L100,50 L120,50 L120,30 L140,30 L140,100 Z M150,100 L150,70 L180,70 L180,100 Z M200,100 L200,40 L220,40 L220,20 L240,20 L240,100 Z M260,100 L260,60 L300,60 L300,100 Z M800,100 L800,50 L830,50 L830,20 L860,20 L860,100 Z M880,100 L880,60 L910,60 L910,100 Z M930,100 L930,40 L970,40 L970,100 Z'%3E%3C/path%3E%3C/svg%3E");
  background-size: cover;
  pointer-events: none;
  opacity: 0.4;
}

.pt-5em {
  padding-top: 5em;
  padding-bottom: 5em;
}

/* coming Soon */
/* Interactive Showcase Gallery Section */
.showcase-section {
  margin-top: 75px;
  position: relative;
  background-color: #000000;
}

.gallery-container {
  display: flex;
  width: 100%;
  height: 800px;
}

.gallery-card {
  position: relative;
  flex: 1;
  height: 100%;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  border-right: 1px solid rgba(0, 0, 0, 0.4);
  transition: flex 0.5s ease;
}

.gallery-card:last-child {
  border-right: none;
}

.gallery-card:hover {
  flex: 1.2;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: none;
  object-position: center;
  transition: transform 0.6s ease;
}

/* Dark overlay for base state and hover transformation */
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s ease;
}

.gallery-card:hover .gallery-overlay {
  background: rgba(0, 0, 0, 0.45);
}

.gallery-title {
  /* font-family: "Alex Brush", cursive; */
  font-family: "Candlescript", cursive, sans-serif !important;
  font-size: 4.8rem;
  color: #ffffff;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
  opacity: 0;
  transform: translateY(15px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  pointer-events: none;
  user-select: none;
}

/* Reveal Script Text on Hover */
.gallery-card:hover .gallery-title {
  opacity: 1;
  transform: translateY(0);
}

/* Section Copyright Bar */
.section-copyright {
  background-color: #143021;
  text-align: right;
  padding: 10px 40px;
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  border-top: 1px solid rgba(192, 162, 98, 0.1);
}

.section-copyright a {
  color: var(--text-muted);
  text-decoration: none;
}

/* Our Vision */

/* Values Content Section (Light Cream Background) */
.values-section {
  margin-top: 80px;
  padding: 80px 0 0 0;
  position: relative;
  /* background-color: #f7ede3; */
  background-image: url(../images/vision_bg.png);
  color: var(--text-dark);
}

/* Title Area */
.values-header {
  text-align: center;
  margin-bottom: 60px;
}

.main-heading {
  font-family: "Cinzel", serif;
  font-size: 2.8rem;
  letter-spacing: 4px;
  color: #2f3325;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
  font-weight: 400;
}

.heading-script {
  font-family: "Signatrue", cursive;
  font-size: 4.5rem;
  color: var(--gold-accent);
  font-weight: 400;
  line-height: 0.8;
  text-transform: none;
  margin-left: 5px;
}

.sub-heading {
  font-size: 1rem;
  color: #8d847b;
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* 4 Core Pillars / Values Layout */
.pillar-card {
  text-align: center;
  padding: 20px 15px;
}

.circle-icon-wrapper {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  padding: 10px;
  background-color: var(--bg-dark-green);
  border: #d1a544 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  position: relative;
  box-shadow: 0 10px 25px rgba(10, 31, 24, 0.15);
  transition: transform 0.3s ease;
}

.circle-icon-wrapper:hover {
  transform: translateY(-5px);
}

.circle-icon-wrapper i {
  font-size: 3.2rem;
  color: var(--gold-accent);
}

.pillar-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 4px;
  color: #2f3325;
  margin-bottom: 15px;
  font-weight: 500;
}

.pillar-description {
  font-size: 1rem;
  color: #2f3325;
  line-height: 1.6;
  max-width: 240px;
  margin: 0 auto;
}
.pillar-descriptions {
  font-size: 1rem;
  color: #2f3325;
  line-height: 1.6;
  margin: 10px auto;
}

/* City Skyline Border Section */
.skyline-divider-container {
  margin-top: 60px;
  position: relative;
  width: 100%;
}

.skyline-svg {
  width: 100%;
  height: 120px;
  display: block;
}

.skyline-copyright {
  background-color: #1a1a1a;
  color: #888888;
  text-align: right;
  padding: 10px 40px;
  font-size: 0.65rem;
  letter-spacing: 0.5px;
}

.skyline-copyright a {
  color: #888888;
  text-decoration: none;
}
/* Architectural Building Overlay Background (Right Side) */
.building-bg-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background:
    linear-gradient(
      90deg,
      var(--bg-dark-green) 0%,
      rgba(10, 31, 24, 0.4) 30%,
      rgba(10, 31, 24, 0) 100%
    ),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=1200&auto=format&fit=crop")
      center right/cover no-repeat;
  mix-blend-mode: luminosity;
  opacity: 0.85;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Main Heading with Script Accent */
.title-wrapper {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
}

.title-wrapper.soon-title > .title-main {
  font-family: "Cinzel", serif;
  font-size: 2.8rem;
  letter-spacing: 5px;
  color: #ffffff;
  font-weight: 400;
  margin: 0;
}

.title-main {
  font-family: "Cinzel", serif;
  font-size: 2.8rem;
  letter-spacing: 32px;
  color: #ffffff;
  font-weight: 400;
  margin: 0;
}

.title-script {
  font-family: "Signatrue", cursive;
  font-size: 5.5rem;
  color: var(--gold-accent);
  line-height: 0.8;
  margin: 0;
}

.subtitle-text {
  font-size: 0.9rem;
  color: var(--text-body);
  font-weight: 400;
  margin-bottom: 35px;
  max-width: 580px;
  line-height: 1.5;
}

/* Feature Blocks */
.feature-item {
  margin-bottom: 22px;
  max-width: 600px;
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.feature-desc {
  font-size: 1rem;
  color: var(--text-body);
  font-weight: 300;
  line-height: 1.45;
  margin: 0;
}

/* Section Copyright Bar */
/* .section-copyright {
  position: relative;
  z-index: 2;
  text-align: right;
  padding: 12px 40px;
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  background: rgba(10, 31, 24, 0.9);
  margin-top: 40px;
} */
/* coming soon */
/* Architectural Building Overlay Background (Right Side) */
.building-bg-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background:
    linear-gradient(
      90deg,
      var(--bg-dark-green) 0%,
      rgba(10, 31, 24, 0.4) 30%,
      rgba(10, 31, 24, 0) 100%
    ),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=1200&auto=format&fit=crop")
      center right/cover no-repeat;
  mix-blend-mode: luminosity;
  opacity: 0.85;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Main Heading with Script Accent */
.title-wrapper {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
}

.title-main {
  font-family: "Cinzel", serif;
  font-size: 2.8rem;
  letter-spacing: 32px;
  color: #ffffff;
  font-weight: 400;
  margin: 0;
}

.title-script {
  font-family: "Signatrue", cursive;
  font-size: 5.5rem;
  color: var(--gold-accent);
  line-height: 0.8;
  margin: 0;
}

.subtitle-text {
  font-size: 0.9rem;
  color: var(--text-body);
  font-weight: 400;
  margin-bottom: 35px;
  max-width: 580px;
  line-height: 1.5;
}

/* Feature Blocks */
.feature-item {
  margin-bottom: 22px;
  max-width: 600px;
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.feature-desc {
  font-size: 1rem;
  color: var(--text-body);
  font-weight: 300;
  line-height: 1.45;
  margin: 0;
}
/* Architectural Building Overlay Background (Right Side) */
.building-bg-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: url(../images/clarity_building.png) center right/cover no-repeat;
  mix-blend-mode: luminosity;
  opacity: 0.85;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Main Heading with Script Accent */
.title-wrapper {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
}

.title-main {
  font-family: "Cinzel", serif;
  font-size: 2.8rem;
  letter-spacing: 32px;
  color: #ffffff;
  font-weight: 400;
  margin: 0;
}

.title-script {
  font-family: "Signatrue", cursive;
  font-size: 4.5rem;
  color: var(--gold-accent);
  line-height: 0.8;
  margin: 0;
}

.subtitle-text {
  font-size: 1.1rem;
  color: var(--text-body);
  font-weight: 400;
  margin-bottom: 35px;
  max-width: 580px;
  line-height: 1.5;
}

/* Feature Blocks */
.feature-item {
  margin-bottom: 22px;
  max-width: 600px;
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.feature-desc {
  font-size: 1rem;
  color: var(--text-body);
  font-weight: 300;
  line-height: 1.45;
  margin: 0;
}

/* Section Copyright Bar */
.section-copyright {
  position: relative;
  z-index: 2;
  text-align: right;
  padding: 12px 40px;
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  background: #143021;
  /* margin-top: 40px; */
}
/* Hero Main Section */
.hero-section {
  margin-top: 75px;
  position: relative;
  min-height: 640px;
  background-color: var(--bg-dark-green);
  overflow: hidden;
  padding: 60px 0 0 0;
}

.hero-section.light {
  margin-top: 75px;
  position: relative;
  min-height: 640px;
  background-color: #ece1d4;
  background-image: none;
  overflow: hidden;
  padding: 60px 0 0 0;
}

/* Hero Main Section (Cream Theme) */
.hero-section {
  margin-top: 75px;
  position: relative;
  /* background-color: var(--cream-bg); */
  background-image: url(../images/clarity.jpg);
  color: var(--text-dark);
  padding: 70px 0 0 0;
  min-height: 620px;
  overflow: hidden;
}

.hero-title {
  font-family: "BravenRegular", serif;
  font-size: 5.5rem;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 3px;
  color: var(--text-dark);
  margin-bottom: 40px;
}

.bullet-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.bullet-list li {
  position: relative;
  padding-left: 18px;
  font-size: 1rem;
  color: #2c2c2c;
  line-height: 1.6;
  margin-bottom: 25px;
  font-weight: 400;
}

.bullet-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--text-subtle);
  font-size: 1.2rem;
}

/* Right Side Portrait Graphic Container */
.portrait-container {
  position: relative;
  text-align: right;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.portrait-img {
  max-height: 520px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.15));
  position: relative;
  z-index: 2;
}

/* City Silhouette Overlay Background */
.skyline-divider-container {
  position: relative;
  width: 100%;
  margin-top: -80px;
  z-index: 1;
}

.skyline-svg {
  width: 40%;
  /* height: 120px; */
  display: block;
  position: absolute;
  z-index: 1;
  bottom: 41px;
  right: 0;
}

.green {
  color: #233928 !important;
}

.green span.sm-font {
  font-size: 3.8rem;
}

.skyline-copyright {
  background-color: #1a1a1a;
  color: #888888;
  text-align: right;
  padding: 8px 40px;
  font-size: 0.65rem;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 3;
}

.skyline-copyright a {
  color: #888888;
  text-decoration: none;
}

/* greens */
/* Hero / Features Hero Banner Section */
.hero-section-container {
  margin-top: 75px;
  position: relative;
  min-height: 680px;
  background:
    linear-gradient(
      180deg,
      rgba(10, 31, 24, 0.6) 0%,
      rgba(10, 31, 24, 0.2) 40%,
      rgba(10, 31, 24, 0.95) 100%
    ),
    url(../images/greens.png) center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 50px 0 0 0;
}
.hero-section-container.lifestyle_bg {
  margin-top: 75px;
  position: relative;
  min-height: 680px;
  background:
    linear-gradient(
      180deg,
      rgba(10, 31, 24, 0.6) 0%,
      rgba(10, 31, 24, 0.2) 40%,
      rgba(10, 31, 24, 0.95) 100%
    ),
    url(../images/lifestyle.png) center/cover no-repeat !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 50px 0 0 0;
}
.hero-section-container.club_bg {
  margin-top: 75px;
  position: relative;
  min-height: 680px;
  background:
    linear-gradient(
      180deg,
      rgba(10, 31, 24, 0.6) 0%,
      rgba(10, 31, 24, 0.2) 40%,
      rgba(10, 31, 24, 0.95) 100%
    ),
    url(../images/club.png) center/cover no-repeat !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 50px 0 0 0;
}

/* Heading Styles */
.hero-header-container {
  text-align: center;
  margin-bottom: 40px;
  margin: 0 auto;
}
.green {
  max-width: 740px;
}
.lifestyle {
  max-width: 1140px;
}

/* Circular Amenity Icon Nodes */
.features-grid-container {
  max-width: 1050px;
  margin: 20px auto 40px auto;
}

.feature-node {
  text-align: center;
  margin-bottom: 35px;
  transition: transform 0.3s ease;
}

.feature-node:hover {
  transform: translateY(-5px);
}

.feature-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  background: transparent;
  /* backdrop-filter: blur(5px); */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px auto;
  /* box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.5),
    inset 0 0 10px rgba(192, 162, 98, 0.2); */
  transition: all 0.3s ease;
}

.feature-node:hover .feature-circle {
  /* background: rgba(10, 31, 24, 0.9); */
  border-color: #ffffff;
  box-shadow: 0 0 20px rgba(192, 162, 98, 0.5);
}

.feature-circle svg {
  width: 42px;
  height: 42px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #ffffff;
  line-height: 1.3;
  max-width: 160px;
  margin: 0 auto;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
}

.hero-subtitle {
  font-size: 0.95rem;
  color: #e0e0e0;
  font-weight: 300;
  letter-spacing: 3px;
  margin-top: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.title-script {
  font-family: "Signatrue", cursive;
  font-size: 4.8rem;
  color: var(--gold-accent);
  line-height: 0.8;
  margin-bottom: 5px;
  display: block;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
}

.blackbg {
  background-color: rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.f-logo {
  max-width: 232px;
}

/* Modal Css */
/* Custom Styling to Match Image Aesthetic */
.custom-modal-content {
  background-color: #0b2219; /* Deep Green Background */
  border: 2px solid #d4af37; /* Gold Border */
  border-radius: 40px; /* Rounded Corners */
  color: #ffffff;
  padding: 2rem 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
}

.custom-modal-header {
  border-bottom: none;
  justify-content: center;
  position: relative;
  padding-bottom: 0.5rem;
}

.custom-modal-title {
  font-family: "Cinzel", "Georgia", serif;
  letter-spacing: 2px;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
}

/* Custom Close Icon */
.btn-close-custom {
  position: absolute;
  top: -10px;
  right: 0px;
  background: none;
  border: none;
  color: #d4af37;
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn-close-custom:hover {
  transform: scale(1.1);
  color: #ffffff;
}

/* Form Inputs */
.custom-input {
  background-color: #071711 !important;
  border: 1px solid #d4af37 !important;
  border-radius: 30px !important;
  color: #ffffff !important;
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.custom-input::placeholder {
  color: #a0aab0;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.custom-input:focus {
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

/* Custom Submit Button */
.btn-submit-gold {
  background-color: transparent;
  border: 1px solid #d4af37;
  color: #ffffff;
  border-radius: 30px;
  padding: 0.75rem 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-submit-gold:hover {
  background-color: #d4af37;
  color: #0b2219;
  font-weight: 600;
}

.Candlescript {
  font-family: "Candlescript", cursive, sans-serif !important;
}

@media (max-width: 991px) {
  .navbar-custom {
    padding: 15px 20px;
  }
  .nav-link-custom {
    padding: 10px 0 !important;
  }
  .hero-carousel,
  .carousel-inner,
  .carousel-item {
    margin-top: 70px;
  }
  .hero-title,
  .hero-title span {
    font-size: 2.2rem;
  }
  .footer-title {
    font-size: 1.2rem;
    margin: 15px 0;
  }
  .footer-logo-main {
    margin-top: 50px;
  }
  .statement-title {
    font-size: 2rem;
  }
  .side-emblem-left,
  .side-emblem-right {
    display: none;
  }
  .gallery-container {
    flex-direction: column;
    height: auto;
  }
  .gallery-card {
    height: 350px;
  }
  .gallery-title {
    font-size: 3.5rem;
    opacity: 1;
    transform: translateY(0);
  }
  .gallery-overlay {
    background: rgba(0, 0, 0, 0.35);
  }
  .main-heading {
    font-size: 2rem;
    line-height: 5rem;
  }
  .heading-script {
    font-size: 2.5rem;
  }
  .pillar-card {
    margin-bottom: 40px;
  }
  .title-main {
    font-size: 2rem;
    letter-spacing: 3px;
  }
  .title-script {
    font-size: 4rem;
  }
  .building-bg-overlay {
    width: 100%;
    opacity: 0.3;
  }
  .skyline-divider-container {
    margin-top: 0;
  }
  .portrait-container {
    justify-content: center;
    margin-top: 30px;
  }
  .portrait-img {
    max-height: 380px;
  }
  .title-main {
    font-size: 2.2rem;
    letter-spacing: 3px;
  }
  .title-script {
    font-size: 3.5rem;
  }
  .bg-watermark {
    display: none;
  }
  .title-wrapper {
    gap: 42px;
  }
}
@media (max-width: 400px) {
  .btn-pill {
    padding: 12px !important;
  }
  .btn-connect-large {
    padding: 16px 30px !important;
  }
  .bottom-nav-links {
    display: block !important;
  }
}
