  :root {
      --primary-color: #127856;
      /* 🔁 Change this for theme color */
      --nav-active-color: var(--primary-color);
  }

  body {
      scroll-behavior: smooth;
      overflow-x: hidden;
  }

  .over {
      overflow: hidden;
  }

  .navbar {
      transition: all 0.3s ease-in-out;
  }

  .text-primary {
      color: var(--primary-color) !important;
  }

  section {
      padding: 0;

  }

  .pb-30 {
      padding-top: 30px;
      padding-bottom: 30px;
  }

  .navbar-nav .nav-link.active {
      color: var(--nav-active-color) !important;
      font-weight: 600;
      border-bottom: 2px solid var(--nav-active-color);
  }

  .btn-primary {
      background-color: var(--primary-color);
  }

  .navbar-toggler {
      border: none;
  }

  .navbar-toggler:focus {
      box-shadow: none;
  }

  .navbar-toggler-icon {
      display: none;
  }

  .custom-toggler-icon {
      font-size: 1.5rem;
  }

  div#mobileMenu {
      display: none;
  }

  .logo {
      width: 30%;
  }

  .logo img {
      width: 25%;
  }

  .icon-box img {
      width: 70px;
  }

  .btn-primary {
      background-color: var(--primary-color);
      border-color: var(--primary-color);
  }

  .btn-primary:hover {
      background-color: var(--primary-color);
      border-color: var(--primary-color);
  }

  .nav-link {
      color: var(--primary-color)
  }

  .nav-link:hover {
      color: var(--primary-color)
  }

  th {
      background-color: var(--primary-color) !important;
  }

  .not-hover:hover {
      color: var(--primary-color);
  }

  /* hero section */


  .hero-bg {

      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      min-height: 100vh;
      position: relative;
      z-index: 1;
  }

  /* Optional: dark overlay for text readability */
  .hero-bg::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.5);
      /* 🔁 Control darkness here */
      z-index: -1;
  }

  .hero-bg>.container {
      position: relative;
      z-index: 2;
  }

  /* slider */

  /* Optional: Override default Swiper arrows */
  .swiper-button-next,
  .swiper-button-prev {
      background: none !important;
      color: inherit;
      position: static;
      margin: 0;
      transform: none;
  }

  /* Align center between them */
  .swiper-button-next:after,
  .swiper-rtl .swiper-button-prev:after,
  .swiper-button-prev:after,
  .swiper-rtl .swiper-button-next:after {

      font-size: 0px;
  }

  .ame_swiper_cont {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-end;
      gap: 30px;
  }

  .ame_img {
      flex: 1;
      min-width: 65%;
      position: relative;
  }

  .art_imp {
      position: absolute;
      top: 10px;
      left: 10px;
      font-size: 12px;
      background: rgba(0, 0, 0, 0.5);
      color: white;
      padding: 4px 6px;
      border-radius: 4px;
  }

  .ame_swiper_image {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 12px;
  }

  .ame_txt {
      flex: 1;
      min-width: 30%;
  }

  .ame_list {
      list-style: none;
      padding: 0;
      margin: 0;
      font-size: 16px;
      width: 90%;
  }

  .ame_list li {
      padding: 4px 0;
      font-weight: 500;
  }

  .bottom_line {
      border-bottom: 1px dashed #000;
      margin: 5px 0;
  }

  .ame_swiper_controls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      max-width: 200px;
      margin-top: 20px;
  }

  .ame_prev,
  .ame_next {
      cursor: pointer;
      transition: transform 0.3s ease;
  }

  .ame_prev:hover,
  .ame_next:hover {
      transform: scale(1.1);
  }

  .ame_pagination {
      font-weight: bold;
      font-size: 18px;
      color: #E35D2A;
      /* customize color */
  }

  /* gallery */

  #gallery .swiper-slide {
      transition: transform 0.3s ease;
      transform: scale(0.85);
      opacity: 0.7;
  }

  #gallery .swiper-slide-active {
      transform: scale(1.05);
      opacity: 1;
      z-index: 2;
  }

  #gallery.swiper {
      overflow: visible;
  }

  /* master plan alider */
  .custom-swiper-container {
      position: relative;
  }

  .btn-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      background: #fff;
      color: #000;
      padding: 6px 12px;
      font-size: 20px;
      cursor: pointer;
      border-radius: 50%;
      box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  }

  .swiper-btn-prev-master,
  .swiper-btn-prev-floor {
      left: -15px;
  }

  .swiper-btn-next-master,
  .swiper-btn-next-floor {
      right: -15px;
  }

  /* accordian */
  .accordion-button:not(.collapsed) {
      color: white;
      background-color: var(--primary-color);
      box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
  }

  /* footer */
  footer p {
      margin-bottom: 0.5rem;
  }

  footer .small {
      font-size: 0.875rem;
  }

  .image-container {
    position: relative;
    height: 0;
    padding-top: 30%;
  }
.image-container img{
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
  @media (max-width: 992px) {
      div#mobileMenu {
          display: block;
      }
  }
    @media (max-width: 576px) {
      .image-container {
        padding-top: 57%;
      }   
    }