
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Inter",  sans-serif;
  --main-heading-font: "Marcellus", serif;
}

/* Global Colors — Rich green theme */
:root { 
  --black-color: #052e1f;
  --main-yellow-color: #1b6b47;
  --main-yellow-hover: #22855a;
  --logo-green-color: #2d9b6a;
  --logo-green-dark: #0a3d2a;
  --logo-properties-color: #6ecf9a;
  --schedule-rour-color: #d4f0e0;
  --head-text-color: #e8f5ec;
  --background-color: #ffffff; 
  --default-color: #3d5248; 
  --heading-color: #0f3d2e; 
  --accent-color: #22855a; 
  --surface-color: #ffffff; 
  --contrast-color: #ffffff; 
}

/* Nav Menu Colors */
:root {
  --nav-color: #d4f0e0;
  --nav-hover-color: #a8e6bc;
  --nav-active-color: #6ecf9a;
  --nav-scrolled-color: #0d5c2e;
  --nav-scrolled-hover-color: #1a7a3e;
  --nav-scrolled-active-color: #22855a;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #0a3d2a;
  --nav-dropdown-hover-color: #22855a;
}

/* Color Presets */

.light-background {
  --background-color: #f0f7f3;
  --surface-color: #ffffff;
}

.dark-background {
  --banner-bg-color: rgba(10, 61, 42, 0.55);
  --background-color: rgba(10, 61, 42, 0.92);
  --default-color: #e8f5ec;
  --heading-color: #ffffff;
  --surface-color: #0a3d2a;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/* Position carousel buttons outside the images */
#projectUpdateCarousel .carousel-control-prev,
#projectUpdateCarousel .carousel-control-next {
    width: auto;           /* Remove default 15% width */
    top: 50%;              /* Keep vertical center */
    transform: translateY(-50%);
}

#projectUpdateCarousel .carousel-control-prev {
    left: -100px;           /* Move left outside image */
}

#projectUpdateCarousel .carousel-control-next {
    right: -100px;          /* Move right outside image */
}

/* Make buttons black */
#projectUpdateCarousel .carousel-control-prev-icon,
#projectUpdateCarousel .carousel-control-next-icon {
    background-color: black;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-size: 100%, 100%;
}

/* Optional: darken on hover */
#projectUpdateCarousel .carousel-control-prev:hover .carousel-control-prev-icon,
#projectUpdateCarousel .carousel-control-next:hover .carousel-control-next-icon {
    background-color: #333;
}


/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  overflow-y: scroll !important;
  padding-right: 0 !important;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.jn-btn {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 4px;
  transition: 0.3s;
  /* text-transform: uppercase; */
}
 
.jn-yellow {
  background: var(--main-yellow-color);
  color: var(--contrast-color);
  border-color: var(--main-yellow-color);
}

.jn-yellow:hover {
  background: var(--main-yellow-hover);
  border-color: var(--main-yellow-hover);
  color: var(--contrast-color);
}

.jn-black {
  background: var(--black-color);
  color: var(--contrast-color);
  border-color: var(--black-color);
}


.jn-black:hover {
  background: color-mix(in srgb, var(--black-color), transparent 20%);
  color: var(--contrast-color);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: var(--accent-color);
  background: transparent;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
  padding-right: 0 !important;
}

.header .logo {
  line-height: 1;
}

.header .logo img,
.header .logo .header-logo {
  max-height: 55px;
  width: auto;
  height: auto;
  margin-right: 10px;
  object-fit: contain;
  flex-shrink: 0;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--head-text-color);
}

.header .cta-btn,
.header .cta-btn:focus {
  color: var(--contrast-color);
  font-size: 13px;
  padding: 7px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  text-transform: uppercase;
  border: 2px solid var(--contrast-color);
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: var(--contrast-color);
  background: var(--main-yellow-color);
  border-color: var(--main-yellow-color);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .cta-btn {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .mobile-nav-toggle {
    order: 3;
    margin-left: auto;
  }

  .header .navmenu {
    order: 4;
  }
}

.scrolled .header {
  --background-color: rgba(255, 255, 255, 0.92);
  --default-color: var(--nav-scrolled-color);
  --heading-color: var(--nav-scrolled-color);
  --contrast-color: var(--nav-scrolled-color);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(13, 92, 46, 0.12);
}

.scrolled .header .logo .sitename,
.scrolled .header .logo .logo-tagline {
  color: var(--nav-scrolled-color);
}

.scrolled .header .cta-btn,
.scrolled .header .cta-btn:focus {
  color: var(--nav-scrolled-color);
  border-color: color-mix(in srgb, var(--nav-scrolled-color), transparent 20%);
}

@media (min-width: 1200px) {
  .scrolled .navmenu > ul > li > a,
  .scrolled .navmenu > ul > li > a:focus,
  .scrolled .navmenu .dropdown > a {
    color: var(--nav-scrolled-color);
  }

  .scrolled .navmenu > ul > li:hover > a,
  .scrolled .navmenu > ul > li > a.active,
  .scrolled .navmenu > ul > li > a.active:focus,
  .scrolled .navmenu .dropdown:hover > a,
  .scrolled .navmenu .dropdown > a.active {
    color: var(--nav-scrolled-active-color);
  }

  .scrolled .navmenu .dropdown ul a,
  .scrolled .navmenu .dropdown > ul > li.dropdown > ul a {
    color: var(--nav-scrolled-color);
  }

  .scrolled .navmenu .dropdown ul a:hover,
  .scrolled .navmenu .dropdown ul a.active,
  .scrolled .navmenu .dropdown > ul > li.dropdown > ul a:hover,
  .scrolled .navmenu .dropdown > ul > li.dropdown > ul a.active {
    color: var(--nav-scrolled-hover-color);
  }
}

@media (max-width: 1199px) {
  .scrolled .mobile-nav-toggle {
    color: var(--nav-scrolled-color);
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 20px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu > ul > li > a,
  .navmenu > ul > li > a:focus,
  .navmenu .dropdown > a {
    color: var(--logo-green-dark);
    font-size: 16px;
    padding: 0 2px;
    font-family: var(--nav-font);
    /* font-weight: 500; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    /* text-transform: uppercase; */
    letter-spacing: 1px;
  }

  .navmenu a,
  .navmenu a:focus {
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu > ul > li > a::after,
  .navmenu > ul > li > a:focus::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 3px;
    border-radius: 2px;
    background-color: var(--nav-scrolled-active-color);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
  }

  .navmenu > ul > li > a.active::after,
  .navmenu > ul > li > a.active:focus::after {
    transform: scaleX(1);
  }

  .navmenu > ul > li:hover > a,
  .navmenu > ul > li > a.active,
  .navmenu > ul > li > a.active:focus,
  .navmenu .dropdown:hover > a,
  .navmenu .dropdown > a.active {
    color: var(--nav-scrolled-active-color);
  }

  .navmenu .dropdown > ul > li > a {
    font-family: var(--main-heading-font);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.03em;
    line-height: 1.35;
    padding: 14px 20px 14px 24px;
    text-transform: none;
    color: var(--logo-green-dark);
    border-radius: 6px;
    position: relative;
    transition: color 0.25s ease, background-color 0.25s ease, padding-left 0.25s ease;
  }

  .navmenu .dropdown > ul > li > a::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    border-radius: 2px;
    background: linear-gradient(
      180deg,
      var(--logo-properties-color),
      var(--logo-green-color)
    );
    transition: height 0.25s ease;
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown > ul > li > a:hover,
  .navmenu .dropdown > ul > li > a.active,
  .navmenu .dropdown ul li:hover > a,
  .navmenu .dropdown ul .active:hover {
    color: var(--logo-properties-color);
    background-color: color-mix(in srgb, var(--logo-properties-color), transparent 92%);
    padding-left: 28px;
  }

  .navmenu .dropdown > ul > li > a:hover::before,
  .navmenu .dropdown > ul > li > a.active::before {
    height: 55%;
  }

  .footer{
    background-color: var(--logo-green-dark) !important;
  }

  .navmenu .dropdown > ul {
    margin: 0;
    padding: 8px;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: opacity 0.3s ease, top 0.3s ease, visibility 0.3s;
    border-radius: 10px;
    border: 1px solid color-mix(in srgb, var(--logo-green-dark), transparent 82%);
    z-index: 99;
    min-width: 220px;
    overflow: hidden;
    box-shadow:
      0 4px 6px rgba(6, 55, 32, 0.04),
      0 16px 40px rgba(6, 55, 32, 0.12);
  }

  .navmenu .dropdown ul li {
    min-width: 0;
  }

  .navmenu .dropdown > ul > li + li {
    border-top: 1px solid color-mix(in srgb, var(--logo-green-dark), transparent 78%);
  }

  .navmenu .dropdown > ul > li.dropdown {
    position: relative;
  }

  .navmenu .dropdown > ul > li.dropdown > ul {
    position: absolute;
    top: 0;
    left: 100%;
    margin: 0 0 0 6px;
    padding: 8px;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    display: block;
    background: var(--nav-dropdown-background-color);
    border-radius: 10px;
    border: 1px solid color-mix(in srgb, var(--logo-green-dark), transparent 82%);
    box-shadow:
      0 4px 6px rgba(6, 55, 32, 0.04),
      0 16px 40px rgba(6, 55, 32, 0.12);
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 100;
  }

  .navmenu .dropdown > ul > li.dropdown:hover > ul {
    opacity: 1;
    visibility: visible;
  }

  .navmenu .dropdown > ul > li.dropdown > ul > li + li {
    border-top: 1px solid color-mix(in srgb, var(--logo-green-dark), transparent 78%);
  }

  .navmenu .dropdown > ul > li.dropdown > ul a {
    font-family: var(--nav-font);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.02em;
    padding: 12px 18px 12px 22px;
    white-space: nowrap;
    color: var(--logo-green-dark);
    border-radius: 6px;
    position: relative;
    transition: color 0.25s ease, background-color 0.25s ease, padding-left 0.25s ease;
  }

  .navmenu .dropdown > ul > li.dropdown > ul a::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    border-radius: 2px;
    background: linear-gradient(
      180deg,
      var(--logo-properties-color),
      var(--logo-green-color)
    );
    transition: height 0.25s ease;
  }

  .navmenu .dropdown > ul > li.dropdown > ul a:hover,
  .navmenu .dropdown > ul > li.dropdown > ul a.active {
    color: var(--logo-properties-color);
    background-color: color-mix(in srgb, var(--logo-properties-color), transparent 92%);
    padding-left: 26px;
  }

  .navmenu .dropdown > ul > li.dropdown > ul a:hover::before,
  .navmenu .dropdown > ul > li.dropdown > ul a.active::before {
    height: 55%;
  }

  .navmenu .dropdown > ul > li.dropdown > a .toggle-dropdown {
    font-size: 11px;
    margin-left: 8px;
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .header {
    --mobile-header-height: 88px;
    padding: 12px 0;
  }

  .header .container-fluid.container-xl {
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
  }

  .header .logo {
    min-width: 0;
    flex: 1 1 auto;
  }

  .header .logo h1 {
    font-size: clamp(18px, 4.2vw, 26px);
    line-height: 1.15;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--logo-green-dark);
    font-size: 28px;
    line-height: 0;
    margin-right: 0;
    padding: 8px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s;
    flex-shrink: 0;
  }

  .mobile-nav-toggle i {
    font-size: inherit;
    line-height: inherit;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
    flex-shrink: 0;
    display: block;
    width: 0;
    height: 0;
    overflow: visible;
  }

  .header .mobile-nav-toggle {
    flex-shrink: 0;
    z-index: 10003;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 0;
    padding: 10px 0;
    margin: 0;
    border-radius: 8px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid rgba(10, 61, 42, 0.12);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    overflow-y: auto;
    transition: 0.3s;
  }

  .navmenu > ul > li > a,
  .navmenu > ul > li > a:focus {
    color: var(--logo-green-dark) !important;
  }

  .navmenu li {
    border-bottom: 1px solid #e1e1e1;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--logo-green-dark);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--logo-green-dark), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--logo-properties-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--logo-green-color);
  }

  .navmenu > ul > li > a.active,
  .navmenu > ul > li > a.active:focus {
    border-left: 3px solid var(--accent-color);
    padding-left: 17px;
    color: var(--accent-color);
    font-weight: 600;
  }

  .navmenu .dropdown > ul > li > a {
    font-family: var(--main-heading-font);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.03em;
    line-height: 1.35;
    padding: 14px 18px 14px 24px;
    border-radius: 6px;
    position: relative;
    color: var(--logo-green-dark);
    transition: color 0.25s ease, background-color 0.25s ease, padding-left 0.25s ease;
  }

  .navmenu .dropdown > ul > li > a::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    border-radius: 2px;
    background: linear-gradient(
      180deg,
      var(--logo-properties-color),
      var(--logo-green-color)
    );
    transition: height 0.25s ease;
  }

  .navmenu .dropdown > ul > li > a:hover,
  .navmenu .dropdown > ul > li > a.active {
    color: var(--logo-properties-color);
    background-color: color-mix(in srgb, var(--logo-properties-color), transparent 92%);
    padding-left: 28px;
  }

  .navmenu .dropdown > ul > li > a:hover::before,
  .navmenu .dropdown > ul > li > a.active::before {
    height: 55%;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--logo-properties-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown > ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 8px;
    margin: 8px 16px 12px;
    background-color: color-mix(in srgb, var(--logo-green-dark), transparent 96%);
    border: 1px solid color-mix(in srgb, var(--logo-green-dark), transparent 82%);
    border-radius: 10px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.35s ease-in-out;
  }

  .navmenu .dropdown > ul.dropdown-active,
  .navmenu .dropdown > ul > li.dropdown > ul.dropdown-active {
    display: block;
  }

  .navmenu .dropdown > ul > li + li {
    border-top: 1px solid color-mix(in srgb, var(--logo-green-dark), transparent 78%);
  }

  .navmenu .dropdown > ul > li.dropdown > ul {
    margin: 6px 8px 8px 16px;
    padding: 6px;
    background-color: color-mix(in srgb, var(--logo-green-dark), transparent 94%);
  }

  .navmenu .dropdown > ul > li.dropdown > ul > li + li {
    border-top: 1px solid color-mix(in srgb, var(--logo-green-dark), transparent 78%);
  }

  .navmenu .dropdown > ul > li.dropdown > ul a {
    font-size: 15px;
    font-weight: 500;
    padding: 12px 16px 12px 20px;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .header {
    z-index: 10002;
    background-color: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    /* backdrop-filter creates a containing block that traps position:fixed navmenu inside the header bar */
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  body:not(.scrolled).mobile-nav-active .header {
    background-color: rgba(33, 37, 41, 0.96) !important;
  }

  body:not(.scrolled).mobile-nav-active .header .logo .sitename,
  body:not(.scrolled).mobile-nav-active .header .logo h1,
  body:not(.scrolled).mobile-nav-active .header .logo .logo-tagline {
    color: #ffffff;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: var(--nav-scrolled-color) !important;
  }

  body:not(.scrolled).mobile-nav-active .mobile-nav-toggle {
    color: #ffffff !important;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    width: auto;
    height: auto;
    padding: calc(var(--mobile-header-height) + 12px) 16px 16px;
    margin: 0;
    background: rgba(33, 37, 41, 0.55);
    overflow: hidden;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
    inset: auto;
    z-index: 1;
  }

  .mobile-nav-active .navmenu > ul > li > a,
  .mobile-nav-active .navmenu > ul > li > a:focus,
  .mobile-nav-active .navmenu > ul > li > a:hover,
  .mobile-nav-active .navmenu > ul > li > a.active {
    color: var(--logo-green-dark) !important;
  }

  .mobile-nav-active .navmenu > ul > li > a.active {
    color: var(--accent-color) !important;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: #273d4e !important;
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  padding-right: 3px;
  font-size: 13px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--background-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--background-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--main-yellow-color) transparent var(--main-yellow-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Schedule Tour Button
--------------------------------------------------------------*/
.schedule-tour {
  width: 308px;
  height: 75px;
  background-color: var(--main-yellow-color);
  position: fixed;
  right: 15px;
  bottom: 60px;
  z-index: 5;
  transition: all 0.4s;
  border-radius: 4px;
}
.schedule-tour span{
  color: var(--heading-color);
  font-size: 22px;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Footer (expanded)
--------------------------------------------------------------*/
.footer.dark-background {
  color: rgba(255, 255, 255, 0.88);
  background-color: var(--logo-green-dark) !important;
}

.footer.dark-background .footer-top {
  padding: 50px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer.dark-background h4,
.footer.dark-background .footer-social-title {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer.dark-background .footer-about .logo span,
.footer.dark-background .sitename {
  color: #fff;
}

.footer.dark-background .footer-tagline,
.footer.dark-background .footer-links a,
.footer.dark-background .footer-contact p {
  color: rgba(255, 255, 255, 0.78);
}

.footer.dark-background .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer.dark-background .footer-links li {
  padding: 8px 0;
}

.footer.dark-background .footer-links a:hover,
.footer.dark-background .footer-contact a:hover {
  color: var(--main-yellow-color);
}

.footer.dark-background .social-links a,
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.85);
  transition: 0.3s;
}

.footer.dark-background .social-links a:hover,
.footer-social-link:hover {
  color: var(--main-yellow-color);
  border-color: var(--main-yellow-color);
}

.footer-social-link--pending {
  opacity: 0.45;
  pointer-events: none;
}

.footer.dark-background .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0;
}

.contact-subscribe-card {
  background-color: var(--surface-color);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}

.contact-subscribe-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

/*--------------------------------------------------------------
# Floating actions (scroll top + WhatsApp)
--------------------------------------------------------------*/
.floating-actions {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.floating-whatsapp-btn {
  display: inline-flex;
  align-items: stretch;
  flex-shrink: 0;
  text-decoration: none;
  border-radius: 6px;
  overflow: hidden;
  color: #fff;
  font-family: var(--heading-font);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp-btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  background: #1a9c4d;
  font-size: 1.5rem;
}

.floating-whatsapp-btn__label {
  display: inline-flex;
  align-items: center;
  padding: 0 1rem;
  white-space: nowrap;
  background: #2fd06a;
}

.floating-whatsapp-btn:hover,
.floating-whatsapp-btn:focus-visible {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
}

.floating-whatsapp-btn:active {
  transform: translateY(0);
}

.floating-whatsapp-btn[hidden] {
  display: none !important;
}

/*--------------------------------------------------------------
# Header logo tagline (Govardhana)
--------------------------------------------------------------*/
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.header .logo .logo-tagline {
  font-size: 0.72rem;
  font-weight: 500;
  font-family: var(--main-heading-font);
  color: var(--head-text-color);
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color 0.3s ease;
}

body:not(.scrolled) .header .logo .logo-tagline {
  color: #ffffff;
}

.scrolled .header .logo .logo-tagline {
  color: var(--nav-scrolled-color);
}

@media (max-width: 991px) {
  .logo-tagline {
    display: none;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: relative;
  visibility: hidden;
  opacity: 0;
  right: auto;
  bottom: auto;
  background-color: var(--main-yellow-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
  flex-shrink: 0;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--main-yellow-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: var(--heading-font);
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 76px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 40px;
  position: relative;
}

.section-title h1 {
  color: var(--heading-color);
  margin: 20px 0px 0px 0px;
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--heading-font);
}

.section-title h2 {
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
  margin-bottom: 15px;
}

.section-title h3 {
  font-size: 16px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 36px;
  font-weight: 800;
  /* text-transform: uppercase; */
  font-family: var(--heading-font);
}

@media (max-width: 768px) {
  .section-title p {
    font-size: 24px;
  }
}

/* Contact section title: align and spacing for mobile S, M, L (match reference layout) */
@media (max-width: 991px) {
  .contact .section-title,
  .portfolio .section-title {
    text-align: left;
    padding-left: 12px;
    padding-right: 12px;
    padding-bottom: 24px;
  }
  /* Project Updates: section-title inside .container – avoid double padding so heading aligns with body */
  .portfolio .container .section-title {
    padding-left: 0;
    padding-right: 0;
  }
  .contact .section-title h2,
  .portfolio .section-title h2 {
    margin-bottom: 8px;
    font-size: 1rem;
    letter-spacing: 1.2px;
    color: color-mix(in srgb, var(--default-color), transparent 45%);
  }
  .contact .section-title p,
  .portfolio .section-title p {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--heading-color);
  }
  .portfolio .container .content {
    padding-left: 0;
    padding-right: 0;
    margin-top: 1.25rem !important; /* spacing between heading (Begun!) and body (We're excited...) – match laptop */
  }
  .portfolio .container .section-title {
    padding-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .contact .section-title,
  .portfolio .section-title {
    padding-left: 15px;
    padding-right: 15px;
  }
  .portfolio .container .section-title,
  .portfolio .container .content {
    padding-left: 0;
    padding-right: 0;
  }
  .portfolio .container .content {
    margin-top: 1.25rem !important;
  }
  .portfolio .container .section-title {
    padding-bottom: 1rem;
  }
  .contact .section-title p,
  .portfolio .section-title p {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .contact .section-title,
  .portfolio .section-title {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 20px;
  }
  .portfolio .container .section-title,
  .portfolio .container .content {
    padding-left: 0;
    padding-right: 0;
  }
  .portfolio .container .content {
    margin-top: 1.25rem !important;
  }
  .portfolio .container .section-title {
    padding-bottom: 0.75rem;
  }
  .contact .section-title h2,
  .portfolio .section-title h2 {
    margin-bottom: 6px;
    font-size: 0.95rem;
  }
  .contact .section-title p,
  .portfolio .section-title p {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 720px;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  /* background: url(../img/banner.webp);
	background-size: cover;
  background-position: top;
  background-attachment: fixed;
  background-repeat: no-repeat; */
  overflow: hidden;
}

.hero-banner {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-banner__slide {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-banner__slide.is-active {
  opacity: 1;
}

.hero:before {
  content: "";
  background: transparent;
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h1 {
  margin: 0;
  font-size: 70px;
  font-weight: 700;
  /* text-transform: uppercase; */
}

.hero h2 {
  margin: 0;
  font-size: 50px;
  font-weight: 700;
  color: var(--head-text-color);
  margin-bottom: 20px;
  /* text-transform: uppercase; */
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 30px 0 10px 0;
  font-size: 30px;
}
.hero ul.hero-list {
  list-style-type: disc;
  padding: 0px;
}

.hero ul.hero-list li {
  display: inline-block;
  padding: 10px 20px 20px 0px;
  font-size: 18px;
}
.hero a {
  margin-top: 50px;
}
.hero a i {
  color: var(--head-text-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
}

.hero .btn-get-started {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 4px;
  transition: 0.3s;
  text-transform: uppercase;
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-weight: 400;
  color: var(--default-color);
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

@media (max-width: 768px) {
  .hero {
    min-height: clamp(28rem, 72svh, 36rem);
    padding: 7rem 0 3rem;
  }

  .hero-banner__slide {
    object-fit: cover;
    object-position: center;
  }

  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.portfolio-img {
  position: relative;
}
.portfolio-img img {
   width: 100%;
   height: 760px;
}

/*--------------------------------------------------------------
# Our Story Section
--------------------------------------------------------------*/

/* .Our-Story {
  position: relative;
  background-color: transparent;
  background-image: linear-gradient(90deg, #EDF6F7 84%, #FFFFFF00 82%);
}

.Our-Story .background-overlay {
  background-image: url(../img/shape-1.webp);
  background-position: center left;
  background-repeat: no-repeat;
  opacity: 1;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
} */

/*--------------------------------------------------------------
# Jn-About Section
--------------------------------------------------------------*/
.jn-about {
  position: relative;
}
.jn-about .about-heading h1 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 40px;
}

.jn-about .about-box .about-img {
  width: 80px;
  height: 80px;
  margin: 0 auto 10px;
}

.jn-about .about-box .about-img img {
  max-width: 100%;
  height: auto;
}

/* .jn-about .about-box img {
   width: 60%;
   height: auto;
} */

.jn-about .about-box h4 {
  font-size: 18px;
  margin: 30px 0px;
}

.jn-about .about-box .head-title h2.title {
  /* position: relative; */
  font-size: 28px;
  font-weight: 600;
  margin-top: 0px;
  margin-bottom: 0px;
}
.jn-about .about-box .head-title h3 {
  /* position: relative; */
  font-size: 20px;
  font-weight: 600;
  margin-top: 0px;
  margin-bottom: 0px;
  color: rgba(0, 0, 0, 0.4);
}
.jn-about .about-box .head-title h2.title span.subtitle {
  position: absolute;
  display: inline-block;
  top: 0%;
  left: 0%;
  width: 100%;
  color: rgba(0, 0, 0, 0.1);
  font-size: 55px;
  font-weight: 700;
  line-height: 12px;
}

.jn-about p {
  font-size: 19px;
  margin: 0px 0px 30px;
}

.jn-about .pr-hibox {
  border-bottom: 5px solid var(--main-yellow-color);
}

/* .jn-about .pr-hibox::after {
   content: "";
   height: 5px; 
   background-color: #fdca1f;
} */
.jn-about .pr-hibox h2.pr-list {
  font-size: 60px !important; 
  align-self: self-start;
}

.jn-about .pr-hibox h3.pr-name {
  margin-top: 0px; 
  font-size: 18px !important; 
  margin-bottom: 30px;
  align-self: self-start; 
  color: rgb(139, 138, 138);
}

/* .jn-about a {
  font-size: 22px;
  font-weight: 500;
  text-decoration:none;
  margin: 30px 0px;
  background-color: var(--schedule-rour-color);
  padding: 3px 0px;
  cursor: pointer;
}

.jn-about a::after {
  content: "";
  width: 95px;
  height: 3px;
  display: block;
  background: var(--heading-color);
  margin: 0px;
} */

/*--------------------------------------------------------------
# jn-Map Section
--------------------------------------------------------------*/
.map-sec {
  margin-bottom: -6px;
}

/*--------------------------------------------------------------
# jn-video Section
--------------------------------------------------------------*/
.jn-video {
  position: relative;
  /* width: 100%; */
  height: 400px;
}

.jn-video:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 40%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.jn-video-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.jn-video .container {
  position: relative;
  z-index: 3;
}

.jn-video .container .video-box {
  height: 350px;
}

.jn-video .container .video-box h2{
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 30px;
}

.jn-video .container .video-box h3{
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 30px;
}

.jn-video .container .video-box .btn-watch-video {
  font-size: 18px;
  transition: 0.5s;
  margin-left: 25px;
  font-weight: 400;
  color: var(--head-text-color);
  margin-top: 20px;
}

.jn-video .container .video-box .btn-watch-video i {
  color: var(--head-text-color);
  font-size: 42px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 18px;
}

.jn-video .container .video-box .btn-watch-video:hover {
  color: var(--main-yellow-color);
}

.jn-video .container .video-box .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--main-yellow-color), transparent 20%);
}

/*--------------------------------------------------------------
# carousel with Thumbnails
--------------------------------------------------------------*/
/* .carousel-item:before {
  content: "";
  background: color-mix(in srgb, var(--banner-bg-color), transparent 0%);
  position: absolute;
  inset: 0;
  z-index: 1;
} */
.carousel-indicators button.thumbnail {
  width: 70px;
  height: 70px;
  margin-bottom: 5px;
}

.carousel-indicators button.thumbnail img {
  max-width: 100%;
  max-height: 100%;
}
.carousel-indicators button.thumbnail {
  border: 2px solid #444444;
}
.carousel-indicators button:hover {
  border-color: color-mix(in srgb, var(--main-yellow-color) 90%, white 15%);
}
.carousel-indicators button.thumbnail.active {
  border-color: color-mix(in srgb, var(--main-yellow-color) 90%, white 15%);
}
.carousel-indicators button.thumbnail:not(.active) {
  opacity: 0.7;
}

.carousel-indicators {
  position: static;
  flex-direction: column;
}

.horizontal {
  position: static;
  flex-direction: row !important;
  margin-right: 0% !important;
  margin-left: 0% !important;
  margin-top: 20px;
}

.horizontal button.thumbnail {
  width: 80px;
  height: 60px;
  margin-bottom: 5px;
}

.horizontal button.thumbnail img {
  max-width: 100%;
  max-height: 100%;
}

.horizontal button:hover {
  border-color: color-mix(in srgb, var(--main-yellow-color) 90%, white 15%) !important;
}
.horizontal button.thumbnail.active {
  border-color: color-mix(in srgb, var(--main-yellow-color) 90%, white 15%) !important;
}
.horizontal button.thumbnail:not(.active) {
  opacity: 0.7 !important;
}

@media screen and (min-width: 992px) {
  .carousel {
    max-width: 70%;
    margin: 0 auto;
  }
}


/*--------------------------------------------------------------
# Schedule a Tour Contact Modal
--------------------------------------------------------------*/
.jn-modal-header {
  position: relative;
  border-bottom: none;
}
.jn-modal-header button{
  position: absolute;
  right: 15px;
  top: 12px;
}
.modal-contact {
  padding: 0px 20px;
}
.modal-contact h3 {
  margin-bottom: 30px;
  font-size: 25px;
  font-weight: 700;
  text-align: center;
}
.modal-contact .info-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 24px 0 30px 0;
}

.modal-contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.modal-contact .info-item h3 {
  font-size: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.modal-contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.modal-contact .php-email-form {
  background-color: var(--surface-color);
  /* box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1); */
  height: 100%;
  padding: 0px;
}

@media (max-width: 575px) {
  .modal-contact .php-email-form {
    padding: 20px;
  }
}

.modal-contact .php-email-form input[type=text],
.modal-contact .php-email-form input[type=email],
.modal-contact .php-email-form input[type=tel],
.modal-contact .php-email-form input[type=number],
.modal-contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.modal-contact .php-email-form input[type=text]:focus,
.modal-contact .php-email-form input[type=email]:focus,
.modal-contact .php-email-form input[type=tel]:focus,
.modal-contact .php-email-form input[type=number]:focus,
.modal-contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.modal-contact .php-email-form input[type=text]::placeholder,
.modal-contact .php-email-form input[type=email]::placeholder,
.modal-contact .php-email-form input[type=tel]::placeholder,
.modal-contact .php-email-form input[type=number]::placeholder,
.modal-contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.modal-contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--main-yellow-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.modal-contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--main-yellow-color), transparent 20%);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
}

.about .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 10px 30px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--accent-color);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.stats .stats-item i {
  color: var(--accent-color);
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 36px;
  display: block;
  font-weight: 600;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .img {
  border-radius: 0px;
  overflow: hidden;
}

.services .img img {
  transition: 0.6s;
}

.services .details {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
  transition: all ease-in-out 0.3s;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
}

.services .details .top-sec { 
  padding: 30px 25px;
  border-bottom: 1px solid #e6e5e5;
}
.services .details .bottom-sec {
  padding: 30px 25px;
}

/* .services .details .icon {
  margin: 0;
  width: 72px;
  height: 72px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 6px solid var(--contrast-color);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
} */

.services .details h3 {
  font-weight: 700;
  margin: 10px 0 4px 0;
  font-size: 20px;
  transition: ease-in-out 0.3s;
}

.services .details p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/* .services .service-item:hover .details h3 {
  color: var(--accent-color);
} */

.services .service-item:hover .details .icon {
  background: var(--surface-color);
  border: 2px solid var(--accent-color);
}

.services .service-item:hover .details .icon i {
  color: var(--accent-color);
}

.services .service-item:hover .img img {
  transform: scale(1.2);
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 20px 0;
}
.clients h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}
.clients p {
  font-size: 18px;
}
.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.clients .client-logo img {
  padding: 20px 40px;
  max-width: 90%;
  transition: 0.3s;
  opacity: 0.5;
  filter: grayscale(100);
}

.clients .client-logo img:hover {
  filter: none;
  opacity: 1;
}

@media (max-width: 640px) {
  .clients .client-logo img {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  background-color: var(--surface-color);
  color: var(--heading-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 15px 20px;
  transition: 0.3s;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.features .nav-link:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.features .nav-link.active {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.features .nav-link.active h4 {
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .features .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .features .nav-link {
    padding: 15px;
  }

  .features .nav-link i {
    font-size: 24px;
  }
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 26px;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-bottom: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services 2 Section
--------------------------------------------------------------*/
.services-2 .service-item {
  background-color: var(--surface-color);
  padding: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  transition: 0.3s;
}

.services-2 .service-item .icon {
  font-size: 36px;
  line-height: 0;
  margin-right: 30px;
  color: var(--accent-color);
}

.services-2 .service-item .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.services-2 .service-item .title a {
  color: var(--heading-color);
}

.services-2 .service-item .description {
  line-height: 24px;
  font-size: 14px;
  margin: 0;
}

.services-2 .service-item:hover {
  border-color: var(--accent-color);
}

.services-2 .service-item:hover .title a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  position: relative;
}

.testimonials:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 40%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.testimonials .testimonials-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.testimonials .container {
  position: relative;
  z-index: 3;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  margin: 0 0 15px 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 50%);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--default-color);
  opacity: 1;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio {
  position: relative;
}
/* .portfolio img {
   width: 100%;
   height: 760px;
} */
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 40px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--main-yellow-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
  height: 100%;
  width: 100%;
}
.portfolio .site-img {
  border:1px solid rgba(0, 0, 0,0.5);
  -webkit-box-shadow: 0px 0px 8px -4px rgba(0,0,0,0.5);
  -moz-box-shadow: 0px 0px 8px -4px rgba(0,0,0,0.5);
  box-shadow: 0px 0px 8px -4px rgba(0,0,0,0.5);
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--main-yellow-color);
}

.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 20px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--main-yellow-color);
}

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}

/* Open plots: venture details below image */
.portfolio .portfolio-content.portfolio-content--details-below {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: visible;
  background: var(--surface-color);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(10, 61, 42, 0.08);
}

.portfolio .portfolio-content.portfolio-content--details-below img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.portfolio .portfolio-content.portfolio-content--details-below:hover img {
  transform: none;
}

.featured-card-slider {
  position: relative;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  z-index: 2;
}

.featured-card-slider__track {
  position: relative;
}

.featured-card-slider__slide {
  display: none;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.featured-card-slider__slide.is-active {
  display: block;
}

.portfolio .portfolio-content.portfolio-content--details-below .portfolio-info-below {
  position: static;
  opacity: 1;
  inset: auto;
  background: transparent;
  padding: 1rem 1.25rem 1.25rem;
  text-align: center;
}

.portfolio .portfolio-content.portfolio-content--details-below .portfolio-info-below h4 {
  font-family: var(--main-heading-font);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--logo-green-dark);
  background: none;
  padding: 0;
  margin: 0 0 0.35rem;
  display: block;
}

.portfolio .portfolio-content.portfolio-content--details-below .portfolio-info-below .project-type {
  position: static;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent-color);
  margin: 0 0 0.25rem;
}

.portfolio .portfolio-content.portfolio-content--details-below .portfolio-info-below .project-location {
  position: static;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--default-color);
  margin: 0;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
  position: relative;
}

.team .member .pic {
  overflow: hidden;
  margin-bottom: 50px;
}

.team .member .member-info {
  background-color: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: -50px;
  left: 20px;
  right: 20px;
  padding: 20px 15px;
  overflow: hidden;
  transition: 0.5s;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  position: relative;
  padding-bottom: 10px;
}

.team .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  bottom: 0;
  left: 0;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member .social {
  position: absolute;
  right: 15px;
  bottom: 15px;
}

.team .member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.team .member .social a:hover {
  color: var(--accent-color);
}

.team .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 24px 0 30px 0;
}

.contact .info-item > i {
  font-size: 24px;
  color: var(--main-yellow-color);
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--main-yellow-color), transparent 40%);
}

.contact .info-item h3 {
  font-size: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item--subscribe .contact-subscribe-text {
  max-width: 420px;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  padding: 0 16px;
}

.contact .info-item--subscribe .social-links a,
.contact .info-item--subscribe .contact-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--main-yellow-color), transparent 40%);
  color: var(--main-yellow-color);
  background: transparent;
  font-size: 1.15rem;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.contact .info-item--subscribe .social-links a:hover,
.contact .info-item--subscribe .contact-social-link:hover {
  background: var(--main-yellow-color);
  color: #fff;
  border-color: var(--main-yellow-color);
}

.contact .info-item--subscribe .social-links a i,
.contact .info-item--subscribe .contact-social-link i {
  width: auto;
  height: auto;
  border: none;
  border-radius: 0;
  font-size: inherit;
  color: inherit;
}

.contact .info-item--subscribe .footer-social-link--pending {
  opacity: 0.45;
  pointer-events: none;
}

.contact .php-email-form {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 30px;
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form input[type=tel],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form input[type=tel]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--main-yellow-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form input[type=tel]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--main-yellow-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--main-yellow-color), transparent 20%);
}

.contact-form-fallback-wrap {
  margin: 0.85rem 0 0;
}

.contact-form-fallback {
  font-size: 0.9rem;
  color: var(--accent-color);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form-fallback:hover {
  color: var(--logo-green-dark);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/* mobile */
@media screen and (max-width:426px){
  .cta-btn{
    display: none;
  }

  .header {
    --mobile-header-height: 76px;
  }

  /* Align hamburger menu icon at small dimensions (e.g. 320px) */
  .header .container-fluid.container-xl {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding-left: 15px;
    padding-right: 15px;
  }
  .header .logo {
    flex-shrink: 1;
    min-width: 0;
  }
  .header .logo img,
  .header .logo .header-logo {
    max-height: 42px;
    margin-right: 8px;
  }
  .header .logo h1 {
    font-size: clamp(16px, 4.8vw, 20px);
  }
  .header .navmenu {
    flex-shrink: 0;
    margin-left: auto;
  }
  .header .mobile-nav-toggle {
    margin-right: 0;
    padding: 8px;
    width: 44px;
    height: 44px;
    color: var(--logo-green-dark);
  }
  .mobile-nav-toggle i {
    font-size: 26px;
  }
  .jn-about, .portfolio-img {
    padding-left: 8px;
  }
  .footer{
 background-color: black;
  }
  .footer p{
    color: white;
  }
  .get-in-touch{
    font-size: 30px !important;
  }
  .phone a{
    font-size: 25px;
  }
  .img-3, .img{
 position: relative;
  }
  .zoom{
position:absolute !important;
top: -3px !important;
  }
  .site-zoom{
    position:absolute !important;
    right: 40px !important;
    font-size: 14px !important;
  }
}

/* 🔹 Force fixed height for main (right-side) carousel images */
.carousel .carousel-inner .carousel-item img {
  height: 700px !important;   /* Force a fixed height */
  width: 100% !important;
  object-fit: contain;         /* Change to "cover" if you want it to fill */
  background-color: #fff;      /* Optional, fills gaps */
}

/* 🔹 Project Updates carousel: match tablet spacing on mobile (S, M, L) – less gap above/below image */
@media (max-width: 991px) {
  #projectUpdateCarousel {
    margin-top: 0.75rem !important;
    margin-bottom: 0 !important;
  }
  #projectUpdateCarousel .carousel-inner .carousel-item {
    padding: 0;
  }
  #projectUpdateCarousel .portfolio-content.site-img {
    margin-top: 0 !important;
    height: auto;
    min-height: 0;
  }
  #projectUpdateCarousel .carousel-inner .carousel-item img {
    height: auto !important;
    max-height: 55vh !important;
    width: 100% !important;
    object-fit: contain;
    background-color: #fff;
  }
}
@media (max-width: 768px) {
  #projectUpdateCarousel {
    margin-top: 0.5rem !important;
  }
  #projectUpdateCarousel .carousel-inner .carousel-item img {
    max-height: 50vh !important;
  }
}
@media (max-width: 576px) {
  #projectUpdateCarousel {
    margin-top: 0.5rem !important;
  }
  #projectUpdateCarousel .carousel-inner .carousel-item img {
    max-height: 48vh !important;
  }
}

.project-btn {
  background-color: white;
  color: #000910;
  border-radius: 5px;
  border: 1px solid black;
}

a.project-btn:hover {
  color: white !important;
  background-color: var(--main-yellow-color) !important;
  border: none;
}


/* Mobile Project Updates button override */
.project-btn.jn-yellow {
  background: transparent !important;
  border: 2px solid var(--main-yellow-color) !important;
  color: var(--main-yellow-color) !important;
}

/*--------------------------------------------------------------
# Rich Green Theme — Nav on hero & accents
--------------------------------------------------------------*/
.header .logo .sitename {
  color: var(--head-text-color);
  font-family: var(--main-heading-font);
}

body:not(.scrolled) .header .logo .sitename {
  color: #ffffff;
}

/* Plot details: no dark hero — use visible header like scrolled inner pages */
body.property-details-page .header {
  --background-color: rgba(255, 255, 255, 0.92);
  --default-color: var(--nav-scrolled-color);
  --heading-color: var(--nav-scrolled-color);
  --contrast-color: var(--nav-scrolled-color);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(13, 92, 46, 0.12);
}

body.property-details-page .header .logo .sitename,
body.property-details-page .header .logo .logo-tagline {
  color: var(--nav-scrolled-color);
}

body.property-details-page .header .cta-btn,
body.property-details-page .header .cta-btn:focus {
  color: var(--nav-scrolled-color);
  border-color: color-mix(in srgb, var(--nav-scrolled-color), transparent 20%);
}

@media (min-width: 1200px) {
  body.property-details-page:not(.scrolled) .header .navmenu > ul > li > a,
  body.property-details-page:not(.scrolled) .header .navmenu > ul > li > a:focus,
  body.property-details-page:not(.scrolled) .header .navmenu .dropdown > a {
    color: var(--nav-scrolled-color);
  }

  body.property-details-page:not(.scrolled) .header .navmenu > ul > li:hover > a,
  body.property-details-page:not(.scrolled) .header .navmenu .dropdown:hover > a {
    color: var(--nav-scrolled-hover-color);
  }

  body.property-details-page:not(.scrolled) .header .navmenu > ul > li > a.active,
  body.property-details-page:not(.scrolled) .header .navmenu > ul > li > a.active:focus,
  body.property-details-page:not(.scrolled) .header .navmenu .dropdown > a.active {
    color: var(--nav-scrolled-active-color);
  }

  body.property-details-page:not(.scrolled) .header .navmenu > ul > li > a::after,
  body.property-details-page:not(.scrolled) .header .navmenu > ul > li > a:focus::after {
    background-color: var(--nav-scrolled-active-color);
  }
}

@media (max-width: 1199px) {
  body.property-details-page .header .mobile-nav-toggle {
    color: var(--nav-scrolled-color);
  }
}

@media (min-width: 1200px) {
  body:not(.scrolled) .header .navmenu > ul > li > a,
  body:not(.scrolled) .header .navmenu > ul > li > a:focus,
  body:not(.scrolled) .header .navmenu .dropdown > a {
    color: var(--nav-color);
  }

  body:not(.scrolled) .header .navmenu > ul > li:hover > a,
  body:not(.scrolled) .header .navmenu .dropdown:hover > a {
    color: var(--nav-hover-color);
  }

  body:not(.scrolled) .header .navmenu > ul > li > a.active,
  body:not(.scrolled) .header .navmenu > ul > li > a.active:focus,
  body:not(.scrolled) .header .navmenu .dropdown > a.active {
    color: var(--nav-active-color);
  }

  body:not(.scrolled) .header .navmenu > ul > li > a::after,
  body:not(.scrolled) .header .navmenu > ul > li > a:focus::after {
    background-color: var(--nav-active-color);
  }

  body.scrolled .header .navmenu > ul > li > a.active,
  body.scrolled .header .navmenu > ul > li > a.active:focus {
    color: var(--nav-scrolled-active-color);
  }

  body.scrolled .header .navmenu > ul > li > a::after,
  body.scrolled .header .navmenu > ul > li > a:focus::after {
    background-color: var(--nav-scrolled-active-color);
  }
}

@media (max-width: 1199px) {
  body:not(.scrolled) .header .mobile-nav-toggle {
    color: var(--nav-color);
  }
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  background: var(--main-yellow-color);
  border-color: var(--main-yellow-color);
  color: var(--contrast-color);
}

.scrolled .header .cta-btn:hover,
.scrolled .header .cta-btn:focus:hover {
  background: var(--main-yellow-color);
  border-color: var(--main-yellow-color);
  color: #ffffff;
}

.contact .info-item a {
  color: var(--logo-green-color) !important;
}

.contact .info-item a:hover {
  color: var(--main-yellow-hover) !important;
}

.section-title h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--logo-green-color);
  margin-top: 10px;
  border-radius: 2px;
}

.php-email-form button[type=submit] {
  background: var(--main-yellow-color);
  border: 0;
  padding: 10px 30px;
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 4px;
}

.php-email-form button[type=submit]:hover {
  background: var(--main-yellow-hover);
}

.info-item i {
  color: var(--logo-green-color);
}

.footer {
  background-color: var(--logo-green-dark) !important;
}

/* Home — Our Services: solid background, no hero/image bleed-through */
#services-preview {
  position: relative;
  z-index: 2;
  background-color: var(--background-color);
  background-image: none;
}

#services-preview .info-item {
  background-color: var(--surface-color);
  box-shadow: 0 0 20px rgba(10, 61, 42, 0.08);
  border-radius: 8px;
}

.index-page .main > section:not(.hero) {
  position: relative;
  z-index: 1;
}

/*--------------------------------------------------------------
# Plot details page
--------------------------------------------------------------*/
.property-details-page .property-details-main {
  padding-top: 100px;
}

.property-details {
  padding-bottom: 60px;
}

.plot-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  font-size: 0.875rem;
  color: var(--default-color);
}

.plot-breadcrumb li + li::before {
  content: "/";
  margin-right: 0.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.plot-breadcrumb a {
  color: var(--accent-color);
}

.plot-breadcrumb a:hover {
  color: var(--main-yellow-hover);
}

.plot-gallery {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 24px rgba(10, 61, 42, 0.1);
}

.plot-gallery__stage {
  position: relative;
}

.plot-gallery__main {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.plot-gallery__stage--zoomable .plot-gallery__main {
  cursor: zoom-in;
}

.plot-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  box-shadow: none;
  cursor: pointer;
  transition: opacity 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.plot-gallery-zoom {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  top: auto;
  left: auto;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  box-shadow: none;
  cursor: pointer;
  transform: none;
  transition: opacity 0.2s ease, background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.plot-gallery-zoom:hover {
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  transform: scale(1.06);
}

.plot-gallery-zoom[hidden] {
  display: none;
}

@media (min-width: 768px) {
  .plot-gallery__stage .plot-gallery-nav:not([hidden]),
  .plot-gallery__stage .plot-gallery-zoom:not([hidden]) {
    opacity: 0;
    pointer-events: none;
  }

  .plot-gallery__stage:hover .plot-gallery-nav:not([hidden]),
  .plot-gallery__stage:hover .plot-gallery-zoom:not([hidden]),
  .plot-gallery__stage:focus-within .plot-gallery-nav:not([hidden]),
  .plot-gallery__stage:focus-within .plot-gallery-zoom:not([hidden]) {
    opacity: 1;
    pointer-events: auto;
  }

  .plot-gallery-thumbs-row .plot-gallery-thumbs-nav:not([hidden]) {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  }

  .plot-gallery-thumbs-row:hover .plot-gallery-thumbs-nav:not([hidden]),
  .plot-gallery-thumbs-row:focus-within .plot-gallery-thumbs-nav:not([hidden]) {
    opacity: 1;
    pointer-events: auto;
  }
}

.plot-gallery-nav:hover {
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
}

.plot-gallery-nav--prev {
  left: 0.75rem;
}

.plot-gallery-nav--next {
  right: 0.75rem;
}

.plot-gallery-nav[hidden] {
  display: none;
}

.plot-gallery__mobile-track {
  display: none;
}

.plot-gallery__mobile-track[hidden] {
  display: none !important;
}

.plot-gallery__stage.is-mobile-slider .plot-gallery__main {
  display: none;
}

@media (max-width: 767.98px) {
  .plot-gallery-nav {
    display: none !important;
  }

  .plot-gallery-zoom:not([hidden]) {
    opacity: 1;
    pointer-events: auto;
  }

  .plot-gallery__mobile-track:not([hidden]) {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
  }

  .plot-gallery__mobile-track:not([hidden])::-webkit-scrollbar {
    display: none;
  }

  .plot-gallery__mobile-slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
  }

  .plot-gallery__mobile-slide img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
  }

  .plot-gallery__mobile-video {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
  }

  .plot-gallery__mobile-video img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
  }
}

.plot-gallery__stage-video {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: rgba(10, 61, 42, 0.25);
  cursor: pointer;
}

.plot-gallery__stage-video[hidden] {
  display: none !important;
}

.plot-gallery-thumbs-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding: 0 0.25rem;
}

.plot-gallery-thumbs-nav {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 1px solid rgba(10, 61, 42, 0.2);
  border-radius: 50%;
  background: #fff;
  color: var(--logo-green-dark);
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.plot-gallery-thumbs-nav:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #fff;
}

.plot-gallery-thumbs-nav[hidden] {
  display: none;
}

.plot-gallery-thumbs {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.75rem;
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.plot-gallery-thumbs::-webkit-scrollbar {
  display: none;
}

.plot-gallery-thumb {
  position: relative;
  flex: 0 0 auto;
  width: 7.5rem;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  background: none;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.plot-gallery-thumb img {
  width: 7.5rem;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.plot-gallery-thumb:hover,
.plot-gallery-thumb.is-active {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 1px var(--accent-color);
}

.plot-gallery-thumb--video .plot-gallery-thumb__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 61, 42, 0.45);
  color: #fff;
  font-size: 2rem;
  pointer-events: none;
}

.plot-video-modal .modal-content {
  border: none;
  border-radius: 8px;
  overflow: hidden;
}

.plot-video-modal .modal-title {
  font-family: var(--main-heading-font);
  color: var(--logo-green-dark);
}

@media (max-width: 575px) {
  .plot-gallery-thumbs {
    gap: 0.5rem;
  }

  .plot-gallery-thumb,
  .plot-gallery-thumb img {
    width: 5.5rem;
  }

  .plot-gallery-thumbs-nav {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 0.875rem;
  }

  .plot-gallery-thumb--video .plot-gallery-thumb__play {
    font-size: 1.5rem;
  }
}

.plot-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.25rem;
  margin-bottom: 0.35rem;
}

.plot-header h1 {
  font-family: var(--main-heading-font);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--logo-green-dark);
  margin: 0;
  flex: 1 1 auto;
  min-width: min(100%, 12rem);
}

.plot-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  padding: 0.65rem 1.15rem 0.65rem 0.85rem;
  font-family: var(--heading-font);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--logo-green-dark);
  text-decoration: none;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    color-mix(in srgb, var(--schedule-rour-color), #ffffff 35%) 100%
  );
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 65%);
  border-radius: 4px;
  box-shadow:
    0 2px 8px rgba(10, 61, 42, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.plot-share-btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 4px;
  background: #25d366;
  color: #fff;
  font-size: 1.15rem;
  box-shadow: 0 2px 6px rgba(37, 211, 102, 0.35);
}

.plot-share-btn__text {
  white-space: nowrap;
}

.plot-share-btn:hover,
.plot-share-btn:focus-visible {
  color: var(--logo-green-dark);
  border-color: var(--accent-color);
  box-shadow:
    0 4px 16px rgba(10, 61, 42, 0.12),
    0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 82%);
  transform: translateY(-1px);
}

.plot-share-btn:active {
  transform: translateY(0);
}

@media (max-width: 575px) {
  .plot-header {
    flex-direction: column;
    align-items: stretch;
  }

  .plot-share-btn {
    justify-content: center;
    width: 100%;
  }
}

.plot-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  list-style: none;
  padding: 1rem 0;
  margin: 0 0 1.5rem;
  border-top: 1px solid rgba(10, 61, 42, 0.1);
  border-bottom: 1px solid rgba(10, 61, 42, 0.1);
}

.plot-highlights li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--heading-color);
}

.plot-highlights i {
  color: var(--accent-color);
}

@media (max-width: 767.98px) {
  .plot-highlights {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }

  .plot-highlights li {
    width: 100%;
  }
}

.plot-map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: var(--heading-color);
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  text-underline-offset: 3px;
}

.plot-map-link:hover {
  color: var(--accent-color);
}

.plot-map-modal .modal-title,
.plot-video-modal .modal-title {
  font-family: var(--main-heading-font);
  color: var(--logo-green-dark);
}

.plot-map-modal__address {
  font-weight: 600;
  color: var(--heading-color);
}

.plot-map-modal__open {
  font-size: 0.9rem;
  color: var(--accent-color);
  text-decoration: none;
}

.plot-map-modal__open:hover {
  color: var(--main-yellow-hover);
}

.plot-block {
  margin-bottom: 2rem;
}

.plot-block__title {
  font-family: var(--main-heading-font);
  font-size: 1.25rem;
  color: var(--logo-green-dark);
  margin-bottom: 0.75rem;
  padding-bottom: 0.35rem;
  border-bottom: 3px solid var(--accent-color);
  display: inline-block;
}

.plot-block--property-details .plot-block__title {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.3rem;
  border-bottom-width: 2px;
}

.property-details-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 3rem;
  row-gap: 2.25rem;
  margin: 0;
}

.property-details-list > div {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 0;
}

.property-details-list dt {
  font-family: var(--default-font);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  font-weight: 400;
  line-height: 1.4;
}

.property-details-list dd {
  margin: 0;
  font-family: var(--default-font);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--logo-green-dark);
  line-height: 1.5;
}

@media (max-width: 767px) {
  .property-details-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1.5rem;
    row-gap: 1.5rem;
  }
}

@media (max-width: 479px) {
  .property-details-list {
    grid-template-columns: 1fr;
    row-gap: 1.25rem;
  }
}

.plot-block--amenities .plot-block__title {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.3rem;
  border-bottom-width: 2px;
}

.plot-features--rich {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 1.25rem;
  row-gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.plot-features--rich > li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 0.85rem;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 88%);
  border-radius: 6px;
  min-height: 0;
  text-align: left;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--logo-green-dark);
}

.plot-features__icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.plot-features__icon .bi {
  font-size: 1rem;
  line-height: 1;
}

/* Custom tar road icon — inset to fit circular badge */
.plot-features__icon--road,
.plot-nearby-item__icon--road {
  overflow: hidden;
  color: transparent;
  background: color-mix(in srgb, var(--background-color), var(--surface-color) 50%);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--default-color), transparent 85%);
}

.plot-icon--road-tar {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: center / 78% 78% no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M9 25 L13.2 9 L18.8 9 L23 25 Z' fill='%231c1c1c'/%3E%3Cpath d='M13.2 9 L10.8 25' stroke='%23ececec' stroke-width='0.9' stroke-linecap='round'/%3E%3Cpath d='M18.8 9 L21.2 25' stroke='%23ececec' stroke-width='0.9' stroke-linecap='round'/%3E%3Cpath d='M16 10.2 L16 24' stroke='%23f0c020' stroke-width='1.15' stroke-dasharray='2.2 2' stroke-linecap='butt'/%3E%3C/svg%3E");
}

.plot-features__text {
  flex: 1;
  min-width: 0;
  font-weight: 500;
}

/* Multi-line: keep icon aligned with first line */
.plot-features--rich > li.plot-features__item--multiline {
  align-items: flex-start;
}

.plot-features--rich > li.plot-features__item--multiline .plot-features__text {
  padding-top: 0.12rem;
}

@media (max-width: 991px) {
  .plot-features--rich {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 479px) {
  .plot-features--rich {
    grid-template-columns: 1fr;
    row-gap: 0.65rem;
  }
}

.plot-block--nearby .plot-block__title {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.3rem;
  border-bottom-width: 2px;
}

.plot-nearby-list--rich {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.25rem;
  row-gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.plot-nearby-list--rich .plot-nearby-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 0.85rem;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 88%);
  border-radius: 6px;
  min-height: 0;
}

.plot-nearby-item__icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.plot-nearby-item__icon .bi {
  font-size: 1rem;
  line-height: 1;
}

.plot-nearby-item__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.plot-nearby-list--rich .plot-nearby-item.plot-nearby-item--multiline {
  align-items: flex-start;
}

.plot-nearby-list--rich .plot-nearby-item.plot-nearby-item--multiline .plot-nearby-item__body {
  padding-top: 0.1rem;
}

.plot-nearby-item__time {
  font-family: var(--default-font);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-color);
  line-height: 1.35;
}

.plot-nearby-item__label {
  font-family: var(--default-font);
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--logo-green-dark);
}

@media (max-width: 767px) {
  .plot-nearby-list--rich {
    grid-template-columns: 1fr;
    row-gap: 0.65rem;
  }
}

.plot-sidebar {
  position: sticky;
  top: 100px;
}

.plot-card {
  background: var(--surface-color);
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 20px rgba(10, 61, 42, 0.08);
}

.plot-card--price {
  border: 1px solid rgba(10, 61, 42, 0.1);
}

.plot-card__label {
  font-size: 0.85rem;
  color: var(--default-color);
  margin: 0 0 0.25rem;
}

.plot-card__price {
  font-family: var(--main-heading-font);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--logo-green-dark);
  margin: 0 0 1rem;
}

.plot-card__heading {
  font-size: 1.1rem;
  color: var(--logo-green-dark);
  margin-bottom: 1rem;
}

.plot-card__phone {
  text-align: center;
  margin: 1rem 0 0;
  font-size: 0.9rem;
}

.plot-card__phone a {
  color: var(--accent-color);
}

.plot-btn-outline {
  display: inline-block;
  text-align: center;
  background: transparent;
  color: var(--logo-green-dark);
  border: 2px solid var(--logo-green-dark);
  padding: 10px 30px;
  border-radius: 4px;
  transition: 0.3s;
}

.plot-btn-outline:hover {
  background: var(--logo-green-dark);
  color: var(--contrast-color);
}

.plot-enquiry-form .form-control {
  font-size: 0.9rem;
}

.plot-card--brochure p {
  font-size: 0.9rem;
  color: var(--default-color);
  margin-bottom: 1rem;
}

.portfolio-content--details-below {
  cursor: pointer;
}

.portfolio-content--details-below a.stretched-link {
  z-index: 2;
}

@media (max-width: 991px) {
  .plot-sidebar {
    position: static;
  }
}

/*--------------------------------------------------------------
# Services page — icon left of heading
--------------------------------------------------------------*/
#services-grid .service-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.25rem;
  text-align: left;
  background-color: var(--surface-color);
  box-shadow: 0 0 20px rgba(10, 61, 42, 0.08);
  border-radius: 8px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

#services-grid .service-card:hover {
  box-shadow: 0 8px 28px rgba(10, 61, 42, 0.12);
  transform: translateY(-2px);
}

#services-grid .service-card__icon {
  flex-shrink: 0;
  font-size: 3rem;
  line-height: 1;
  color: var(--logo-green-color);
  width: 4.5rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background-color: color-mix(in srgb, var(--logo-green-color), transparent 88%);
  border: 2px dotted color-mix(in srgb, var(--logo-green-color), transparent 50%);
}

#services-grid .service-card__content {
  flex: 1;
  min-width: 0;
}

#services-grid .service-card__content h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

#services-grid .service-card__content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--default-color);
}

@media (max-width: 575px) {
  #services-grid .service-card__icon {
    font-size: 2.5rem;
    width: 3.75rem;
    height: 3.75rem;
  }

  #services-grid .service-card__content h3 {
    font-size: 1.1rem;
  }
}
