:root {
  --primary-green: #004119;
  --secondary-green: #048e2f;
  --primary-gold: #d38621;
  --secondary-gold: #f6d055;
  --light-gold: #fce194;
  --text-dark: #333333;
  --text-light: #777777;
  --white: #ffffff;
  --light-bg: #f9f9f9;
}

/* Preloader Styles */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-green);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.preloader-content {
  text-align: center;
}

.preloader-logo {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  font-family: "Playfair Display", serif;
}

.preloader-logo span:nth-child(1) {
  color: var(--primary-green);
  background-color: var(--secondary-gold);
  padding: 0 5px;
}

.preloader-logo span:nth-child(2) {
  color: var(--secondary-gold);
}

.house-loader {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  position: relative;
}

.house-roof {
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 40px solid var(--primary-gold);
  margin: 0 auto;
}

.house-body {
  width: 100px;
  height: 70px;
  background-color: var(--secondary-green);
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.house-door {
  width: 30px;
  height: 50px;
  background-color: var(--primary-gold);
  position: absolute;
  bottom: 0;
  left: 35px;
}

.house-window {
  width: 25px;
  height: 25px;
  background-color: var(--light-gold);
  position: absolute;
  top: 10px;
  right: 15px;
  border-radius: 50%;
}

.loader-text {
  color: var(--white);
  font-size: 1.2rem;
  letter-spacing: 1px;
}

/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: var(--primary-green);
}

/* section {
  padding: 80px 0;
} */

.section-title {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 2.5rem;
  display: inline-block;
  position: relative;
  padding-bottom: 5px;
}

/* .section-title h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(
    to right,
    var(--primary-gold),
    var(--secondary-gold)
  );
} */

/* Header Styles */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #014119;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.main-header.scrolled {
  /* background-color: var(--white); */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-green) !important;
  padding: 0px 0;
}

.navbar-brand img {
  height: 60px;
}

.navbar-brand span:nth-child(1) {
  color: var(--primary-green);
  background-color: var(--secondary-gold);
  padding: 0 5px;
}

.navbar-brand span:nth-child(2) {
  color: var(--secondary-gold);
}

.nav-item {
  margin: 0 10px;
}

.nav-link {
  color: white !important;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-gold) !important;
}

.nav-link i {
  margin-right: 0px;
  font-size: 0.9rem;
}

.enquiry-btn {
  background: linear-gradient(
    to right,
    var(--primary-gold),
    var(--secondary-gold)
  );
  color: var(--white) !important;
  border: none;
  padding: 10px 25px !important;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.enquiry-btn:hover {
  background: linear-gradient(
    to right,
    var(--primary-green),
    var(--secondary-green)
  );
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.offcanvas-header {
  background-color: var(--primary-green);
  color: var(--white);
}

.offcanvas-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.offcanvas-title span:nth-child(1) {
  color: var(--primary-green);
  background-color: var(--secondary-gold);
  padding: 0 5px;
}

.offcanvas-title span:nth-child(2) {
  color: var(--secondary-gold);
}

/* About Section */
.about-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-img img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.about-img:hover img {
  transform: scale(1.05);
}

.about-content h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.about-features {
  margin-top: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    to right,
    var(--primary-gold),
    var(--secondary-gold)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: var(--white);
  font-size: 1.5rem;
}

/* Counter Section */
.counter-section {
  position: relative;
  background: linear-gradient(rgba(0, 65, 25, 0.92), rgba(0, 65, 25, 0.75)),
    url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  text-align: center;
  padding: 90px 0;
  overflow: hidden;
}

/* Counter Card */
.counter-item {
  position: relative;
  padding: 40px 25px;
  border: 1px dashed rgba(173, 255, 47, 0.6);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
  transition: all 0.45s ease;
}

/* Hover Effect */
.counter-item:hover {
  /* transform: translateY(-10px) scale(1.02); */
  border-color: var(--secondary-gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

/* Glow Line on Hover */
.counter-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(173, 255, 47, 0.3),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.counter-item:hover::before {
  opacity: 1;
}

/* Icon */
.counter-icon {
  font-size: 2.5rem;
  color: var(--secondary-gold);
  margin-bottom: 0px;
  line-height: 80px;

  background-color: white;
  width: 80px;
  border-radius: 50%;
  margin: 0px auto;
  transition: transform 0.4s ease, color 0.4s ease;
}

.counter-item:hover .counter-icon {
  transform: rotateY(180deg);
  color: yellowgreen;
  background-color: white;
  width: 80px;
  border-radius: 50%;
  margin: 0px auto;
}

/* Number */
.counter-number {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  transition: letter-spacing 0.4s ease;
}

.counter-item:hover .counter-number {
  letter-spacing: 2px;
}

/* Text */
.counter-text {
  font-size: 1.15rem;
  font-weight: 500;
  color: #e6ffe6;
  transition: color 0.3s ease;
}

.counter-item:hover .counter-text {
  color: #ffffff;
}

/* Projects Section */
.project-slider {
  padding: 0px 50px;
}

.project-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.project-card:hover {
  /* transform: translateY(-10px); */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.project-img {
  height: 250px;
  overflow: hidden;
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-img img {
  transform: scale(1.1);
}

.project-content {
  padding: 20px 20px 30px;
}

.project-content h4 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.project-location {
  color: var(--primary-gold);
  font-weight: 500;
  margin-bottom: 7px;
  display: block;
}

.project-features {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.feature {
  text-align: center;
}

.feature i {
  color: var(--secondary-green);
  font-size: 1.2rem;
  margin-bottom: 5px;
  display: block;
}

.feature span {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Gallery Section */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 30px;
  height: 300px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 65, 25, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-icon {
  width: 60px;
  height: 60px;
  background-color: var(--secondary-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  font-size: 1.5rem;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-icon {
  transform: scale(1);
}

/* Testimonials */
.testimonial-slider {
  padding: 0px 0;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 40px 30px;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */
  margin: 20px 0;
  max-width: 700px;
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  margin: 0 auto;

  position: relative;
}

.testimonial-card:before {
  content: "\201C";
  position: absolute;
  top: 130px;
  left: 12px;
  font-size: 4rem;
  color: var(--light-gold);
  font-family: "Playfair Display", serif;
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 25px;
  color: var(--text-light);
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.author-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
  border: 3px solid var(--light-gold);
}

.author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h5 {
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.author-info p {
  color: var(--primary-gold);
  font-weight: 500;
}

/* Footer */
.main-footer {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.56)),
    url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding-top: 80px;
}

.footer-logo {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-logo span:nth-child(1) {
  color: var(--primary-green);
  background-color: var(--secondary-gold);
  padding: 0 5px;
}

.footer-logo span:nth-child(2) {
  color: var(--secondary-gold);
}

.footer-about {
  margin-bottom: 30px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: var(--white);
  position: relative;
  padding-bottom: 10px;
}

.footer-links h4:after,
.footer-contact h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-gold);
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--secondary-gold);
  padding-left: 5px;
}

.footer-contact p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.footer-contact i {
  color: var(--secondary-gold);
  margin-right: 10px;
  width: 20px;
}

.social-icons {
  display: flex;
  margin-top: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--primary-gold);
  transform: translateY(-5px);
}

.copyright {
  text-align: center;
  padding: 20px 0;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #aaa;
  font-size: 0.9rem;
}

.copyright a {
  color: white;
}

/* Popup Form */
.modal-content {
  border-radius: 15px;
  overflow: hidden;
  border: none;
}

.modal-header {
  background: linear-gradient(
    to right,
    var(--primary-green),
    var(--secondary-green)
  );
  color: var(--white);
  padding: 20px 30px;
}

.modal-header .modal-title {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
}

.modal-body {
  padding: 30px;
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--primary-green);
}

.form-icon {
  position: absolute;
  top: 46px;
  left: 20px;
  color: var(--primary-gold);
}

.form-control {
  padding-left: 45px;
  height: 50px;
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 0.25rem rgba(211, 134, 33, 0.25);
}

.submit-btn {
  background: linear-gradient(
    to right,
    var(--primary-gold),
    var(--secondary-gold)
  );
  color: var(--white);
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  width: 100%;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: linear-gradient(
    to right,
    var(--primary-green),
    var(--secondary-green)
  );
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }

  .section-title h2 {
    font-size: 2.2rem;
  }

  .counter-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  /* section {
    padding: 60px 0;
  } */

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .navbar-brand {
    font-size: 1.5rem;
  }

  .about-content h3 {
    font-size: 1.8rem;
  }

  .counter-number {
    font-size: 2rem;
  }

  .project-slider,
  .testimonial-slider {
    padding: 10px 0;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .section-title h2 {
    font-size: 1.6rem;
  }

  .hero-btn,
  .enquiry-btn {
    padding: 12px 25px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 50px;
    height: 50px;
  }
}

.hero-slider-section {
  position: relative;
  height: 100vh;
  min-height: 745px;
  overflow: hidden;
}

.hero-swiper {
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: relative;
  overflow: hidden;
}

.slide-inner {
  position: relative;
  height: 100%;
  width: 100%;
}

.slide-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slide-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 20s ease-out;
}

.swiper-slide-active .slide-background img {
  transform: scale(1);
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.9) 0%,
    rgba(34, 34, 34, 0.7) 30%,
    rgba(43, 43, 43, 0.3) 70%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 2;
}

.slide-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 80px;
}

.content-wrapper {
  max-width: 800px;
  transform: translateY(50px);
  opacity: 0;
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 100px;
}

.swiper-slide-active .content-wrapper {
  transform: translateY(0);
  opacity: 1;
}

.pre-title {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.badge {
  background: linear-gradient(
    135deg,
    var(--primary-gold),
    var(--secondary-gold)
  );
  color: var(--primary-green);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.category {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  padding-left: 30px;
}

.category::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 1px;
  background: var(--secondary-gold);
  transform: translateY(-50%);
}

.main-title {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 30px;
  color: #fff;
}

.title-line {
  display: block;
  overflow: hidden;
}

.title-line .word {
  display: inline-block;
  transform: translateY(100%);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.swiper-slide-active .title-line .word {
  transform: translateY(0);
}

.highlight {
  color: var(--secondary-gold);
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 6px;
  background: rgba(211, 134, 33, 0.2);
  z-index: -1;
}

.description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 50px;
  max-width: 600px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.swiper-slide-active .description {
  opacity: 1;
  transform: translateY(0);
}

.cta-group {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
}

.swiper-slide-active .cta-group {
  opacity: 1;
  transform: translateY(0);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.primary-btn {
  background: linear-gradient(
    135deg,
    var(--primary-gold),
    var(--secondary-gold)
  );
  color: var(--primary-green);
  box-shadow: 0 10px 30px rgba(211, 134, 33, 0.3);
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(211, 134, 33, 0.4);
}

.primary-btn .arrow-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.primary-btn:hover .arrow-icon {
  transform: translateX(5px);
}

.secondary-btn {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary-gold);
  transform: translateY(-3px);
}

.secondary-btn .icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.slide-meta {
  position: absolute;
  bottom: 60px;
  left: 80px;
  display: flex;
  gap: 60px;
  z-index: 4;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 1.2s;
}

.swiper-slide-active .slide-meta {
  opacity: 1;
  transform: translateY(0);
}

.meta-item {
  display: flex;
  flex-direction: column;
}

.meta-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.meta-value {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

/* Custom Navigation */
.hero-navigation {
  position: absolute;
  bottom: 45px;
  right: 80px;
  z-index: 10;
  display: flex;
  gap: 15px;
}

.nav-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #fff;
}

.nav-btn:hover {
  background: rgba(211, 134, 33, 0.2);
  border-color: var(--primary-gold);
  transform: scale(1.1);
}

.nav-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Progress Bar */
.swiper-progress {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 10;
  overflow: hidden;
}

.progress-bar {
  width: 100%;
  height: 100%;
}

.progress-fill {
  width: 0;
  height: 100%;
  background: linear-gradient(
    to right,
    var(--primary-gold),
    var(--secondary-gold)
  );
  transition: width 0.1s linear;
}

/* Slide Counter */
.slide-counter {
  position: absolute;
  bottom: 45px;
  left: 80px;
  display: flex;
  align-items: baseline;
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 24px;
  z-index: 10;
}

/* Accessibility: visible focus states */
.nav-btn:focus,
.cta-btn:focus,
.enquiry-btn:focus,
.prev-btn:focus,
.next-btn:focus {
  outline: 3px solid rgba(211, 134, 33, 0.25);
  outline-offset: 3px;
}

.current {
  font-size: 48px;
  color: var(--secondary-gold);
  line-height: 1;
}

.divider {
  margin: 0 5px;
  opacity: 0.5;
}

.total {
  opacity: 0.5;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 10;
  opacity: 0;
  animation: fadeIn 1s ease 2s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 10px;
  background: var(--secondary-gold);
  border-radius: 2px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
  }
}

/* Animations */
.animate-element {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.swiper-slide-active .animate-element[data-animation="fadeInDown"] {
  opacity: 1;
  transform: translateY(0);
}

.swiper-slide-active .animate-element[data-animation="fadeInUp"] {
  opacity: 1;
  transform: translateY(0);
}

.swiper-slide-active .animate-element[data-animation="fadeIn"] {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1200px) {
  .main-title {
    font-size: 4rem;
  }

  .slide-content {
    padding: 0 60px;
  }

  .slide-meta,
  .hero-navigation,
  .slide-counter {
    /* left: 60px; */
    right: 60px;
  }
}

@media (max-width: 992px) {
  .main-title {
    font-size: 3.5rem;
  }

  .slide-content {
    padding: 0 40px;
  }

  .slide-meta,
  .hero-navigation,
  .slide-counter {
    left: 40px;
    right: 40px;
  }

  .features {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .hero-slider-section {
    min-height: 520px;
  }

  .main-title {
    font-size: 2.8rem;
  }

  .description {
    font-size: 1.1rem;
  }

  .cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
  }

  .features {
    flex-wrap: wrap;
    gap: 20px;
  }

  .slide-meta {
    display: none;
  }

  .hero-navigation {
    bottom: 120px;
  }

  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 576px) {
  .main-title {
    font-size: 2.2rem;
  }

  .slide-content {
    padding: 0 18px;
  }

  .pre-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
  }

  .badge,
  .category {
    font-size: 12px;
  }

  .slide-counter {
    font-size: 18px;
  }

  .current {
    font-size: 36px;
  }

  .hero-navigation {
    bottom: 90px;
    right: 16px;
  }

  .nav-btn {
    width: 50px;
    height: 50px;
  }
}

/* Small devices: move progress & counter to avoid overlap */
@media (max-width: 480px) {
  .swiper-progress {
    width: 140px;
    bottom: 80px;
  }
  .slide-counter {
    left: 16px;
    bottom: 24px;
  }
  .hero-navigation {
    bottom: 24px;
    right: 16px;
  }
  .content-wrapper {
    max-width: 95%;
  }
}

.project-slider .swiper-wrapper {
  padding: 10px 0px 50px;
}

/* Swiper pagination container */
.swiper-pagination {
  bottom: 20px !important;
}

/* Default bullets */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--secondary-gold);
  opacity: 0.4;
  margin: 0 6px !important;
  border-radius: 50%;
  transition: all 0.4s ease;
}

/* Active bullet */
.swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    var(--primary-gold),
    var(--secondary-gold)
  );
  opacity: 1;
  box-shadow: 0 4px 10px rgba(211, 134, 33, 0.35);
}

/* Why Choose Us Section - Dark Theme */
.why-choose-us.dark-section {
  background: linear-gradient(135deg, #001a0d 0%, #003318 50%, #001a0d 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.why-choose-us.dark-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--primary-gold) 50%,
    transparent 100%
  );
}

.why-choose-us.dark-section .section-title .highlight {
  color: var(--secondary-gold);
  position: relative;
}

.why-choose-us.dark-section .section-title .highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(211, 134, 33, 0.2);
  z-index: -1;
}

.why-choose-us.dark-section .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Feature Image Container */
.feature-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transform: translateZ(0);
  backface-visibility: hidden;
}

.feature-image-wrapper {
  position: relative;
  width: 100%;
  height: 570px;
  border-radius: 20px;
  overflow: hidden;
}

.feature-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.05);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 20px;
}

.feature-image.active {
  opacity: 1;
  transform: scale(1);
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(
    to top,
    rgba(0, 65, 25, 0.95) 0%,
    rgba(0, 65, 25, 0.7) 50%,
    transparent 100%
  );
  border-radius: 0 0 20px 20px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.6s ease 0.3s;
}

.feature-image.active .image-overlay {
  transform: translateY(0);
  opacity: 1;
}

.overlay-content h3 {
  color: var(--secondary-gold);
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.overlay-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin: 0;
}

/* Features Cards */
.features-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 0px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, var(--primary-gold), var(--secondary-gold));
    transition: height 0.4s ease;
} */

.feature-card.active::before {
  height: 100%;
}

.feature-card.active {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(211, 134, 33, 0.3);
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-card:hover:not(.active) {
  transform: translateX(5px);
  border-color: rgba(255, 255, 255, 0.2);
}

.card-inner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.card-icon {
  position: relative;
  flex-shrink: 0;
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-gold),
    var(--secondary-gold)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
}

.card-number {
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--secondary-gold);
  background: rgba(0, 65, 25, 0.9);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--secondary-gold);
}

.card-content {
  flex: 1;
}

.card-title {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.feature-card.active .card-title {
  color: var(--secondary-gold);
}

.card-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;

  display: -webkit-box;
  -webkit-line-clamp: 3; /* Limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-features li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-features i {
  color: var(--primary-gold);
  font-size: 0.8rem;
}

.card-indicator {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card.active .card-indicator {
  opacity: 1;
}

.indicator-line {
  display: block;
  width: 30px;
  height: 2px;
  background: linear-gradient(
    to right,
    var(--primary-gold),
    var(--secondary-gold)
  );
  position: relative;
}

.indicator-line::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  background: var(--secondary-gold);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

/* Animation for image transition */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 1199px) {
  .feature-image-wrapper {
    height: 550px;
  }

  .features-cards {
    padding-left: 20px;
  }
}

@media (max-width: 991px) {
  .why-choose-us.dark-section {
    padding: 80px 0;
  }

  .why-choose-us.dark-section .section-title h2 {
    font-size: 2.5rem;
  }

  .feature-image-wrapper {
    height: 450px;
  }

  .features-cards {
    padding-left: 0;
    padding-top: 40px;
  }

  .card-inner {
    gap: 15px;
  }

  .icon-wrapper {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
}

@media (max-width: 767px) {
  .why-choose-us.dark-section {
    padding: 60px 0;
  }

  .why-choose-us.dark-section .section-title h2 {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
  }

  .feature-image-wrapper {
    height: 350px;
  }

  .image-overlay {
    padding: 25px;
  }

  .overlay-content h3 {
    font-size: 1.5rem;
  }

  .feature-card {
    padding: 20px;
  }

  .card-title {
    font-size: 1.2rem;
  }

  .card-description {
    font-size: 0.9rem;
  }
}

@media (max-width: 575px) {
  .feature-image-wrapper {
    height: 300px;
  }

  .features-cards {
    gap: 15px;
  }

  .card-inner {
    flex-direction: column;
    gap: 15px;
  }

  .card-icon {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .icon-wrapper {
    width: 50px;
    height: 50px;
  }

  .card-number {
    position: relative;
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .card-indicator {
    display: none;
  }
}

@media (max-width: 480px) {
  .feature-image-wrapper {
    height: 250px;
  }

  .why-choose-us.dark-section .section-title h2 {
    font-size: 1.8rem;
  }

  .feature-card {
    padding: 15px;
  }

  .card-features li {
    font-size: 0.85rem;
  }
}

a {
  text-decoration: none;
}

/* Gallery Section - Clean Design */
.gallery-section {
  /* padding: 80px 0; */
  background: #f5f5f5;
}

/* Container and Row Customization */
/* .container-fluid.px-0 {
  max-width: 100%;
} */

/* Gallery Tiles */
.gallery-tile {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.gallery-tile:hover {
  /* transform: scale(1.02); */
  z-index: 10;
}

.gallery-tile a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
  color: inherit;
}

.gallery-tile img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  padding-bottom: 30px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Different Tile Sizes */
.large-tile {
  height: 250px;
}

.medium-tile {
  height: 250px;
}

.small-tile {
  height: 250px;
}

/* Hover Effects */
.gallery-tile:hover img {
  filter: blur(2px);
}

/* Zoom Overlay */
.zoom-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 65, 25, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.gallery-tile:hover .zoom-overlay {
  opacity: 1;
}

.zoom-overlay svg {
  width: 50px;
  height: 50px;
  fill: white;
  background: var(--primary-green);
  padding: 10px;
  border-radius: 50%;
  transform: scale(0.8);
  transition: transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.gallery-tile:hover .zoom-overlay svg {
  transform: scale(1);
}

/* Fancybox Customization */
.fancybox__container {
  --fancybox-bg: rgba(0, 0, 0, 0.95);
  --fancybox-thumbs-width: 100px;
  --fancybox-thumbs-ratio: 1;
}

.fancybox__toolbar {
  padding: 20px;
}

.fancybox__toolbar__items--left,
.fancybox__toolbar__items--right {
  display: flex;
  gap: 10px;
}

.fancybox__button {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  transition: all 0.3s ease;
}

.fancybox__button:hover {
  background: var(--primary-green);
}

.fancybox__button svg {
  stroke: white;
  width: 20px;
  height: 20px;
}

.fancybox__nav .fancybox__button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.fancybox__nav .fancybox__button--prev {
  left: 20px;
}

.fancybox__nav .fancybox__button--next {
  right: 20px;
}

.fancybox__slide {
  padding: 20px;
}

.fancybox__content {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.fancybox__image {
  border-radius: 10px;
}

.fancybox__caption {
  text-align: center;
  padding: 15px;
  font-size: 16px;
  color: white;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 0 0 10px 10px;
}

/* Touch Device Optimization */
@media (hover: none) {
  .gallery-tile:hover {
    transform: none;
  }

  .gallery-tile:hover img {
    filter: none;
    transform: none;
  }

  .gallery-tile .zoom-overlay {
    opacity: 1;
    background: rgba(0, 65, 25, 0.2);
  }

  .gallery-tile .zoom-overlay svg {
    transform: scale(0.7);
  }
}

/* Loading Animation */
.gallery-tile img {
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Fancybox Override for Captions */
.fancybox__caption {
  font-family: inherit;
  font-size: 14px;
  line-height: 1.4;
  max-width: 600px;
  margin: 0 auto;
  padding: 10px 20px;
}

/* Custom Scrollbar for Fancybox */
.fancybox__container::-webkit-scrollbar {
  width: 8px;
}

.fancybox__container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

.fancybox__container::-webkit-scrollbar-thumb {
  background: var(--primary-green);
  border-radius: 4px;
}

.footer-logo img {
  height: 58px;
}

.cmon {
  background: linear-gradient(
    to right,
    var(--primary-green),
    var(--secondary-green)
  );
  color: var(--white) !important;
  border: none;
  padding: 10px 25px !important;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cmon:hover {
  background: linear-gradient(
    to right,
    var(--primary-gold),
    var(--secondary-gold)
  );
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

#preloader {
  position: fixed;
  inset: 0;
  /* background: #fff; */
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scene {
  position: relative;
  width: 300px;
  height: 100px;
  overflow: hidden;
}

/* 🌞 Sun animation */
.sun {
  position: absolute;
  top: 20px;
  left: 50%;
  height: 50px;
  transform: translateX(-50%);
  animation: sunFloat 3.5s ease-in-out infinite;
}

/* 🏔️ Mountain zoom */
.mountains {
  position: absolute;
  bottom: 25px;
  left: 50%;
  height: 30px;

  transform: translateX(-50%) scale(1);
  animation: mountainZoom 4s ease-in-out infinite;
  transform-origin: center bottom;
}

/* Animations */
@keyframes sunFloat {
  0% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -20px);
  }
  100% {
    transform: translate(-50%, 0);
  }
}

@keyframes mountainZoom {
  0% {
    transform: translateX(-50%) scale(1);
  }
  50% {
    transform: translateX(-50%) scale(1.05);
  }
  100% {
    transform: translateX(-50%) scale(1);
  }
}

/* Back to Top Button Styles */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 20px;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.zoom-overlay {
  pointer-events: none;
}

@media (max-width: 991px) {
  [data-aos="fade-left"],
  [data-aos="fade-right"] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Optional: Disable any custom animations */
  .animate-left,
  .animate-right {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

.menu-img img {
  height: 40px;
}

.section-padding {
  padding: 80px 0;
}

.back-to-top {
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;

  border-radius: 50%;
  color: white;
  font-size: 20px;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* COMMON */
.btnicon-whatsapp,
.btnicon-call {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: fixed;
  left: 20px;
  color: #fff !important;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  /* animation: pulse 2s infinite; */
}

/* WhatsApp */
.btnicon-whatsapp {
  background-color: #25d366;
  bottom: 30px;
}

/* Call */
.btnicon-call {
  background-color: #0a66c2;
  bottom: 100px;
  font-size: 24px;
}

/* Hover effect */
.btnicon-whatsapp:hover,
.btnicon-call:hover {
  transform: scale(1.08);
}



.yedluri a {
  color: white;
}

@media (max-width: 575px) {
  .btnicon-whatsapp,
  .btnicon-call {
    width: 40px;
    height: 40px;
    left: 7px;
    font-size: 22px;
  }

  .btnicon-whatsapp {
    bottom: 20px;
  }

  .btnicon-call {
    bottom: 72px;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .btnicon-whatsapp,
  .btnicon-call {
    width: 48px;
    height: 48px;
    left: 20px;
    font-size: 24px;
  }

  .btnicon-whatsapp {
    bottom: 25px;
  }

  .btnicon-call {
    bottom: 85px;
  }
}

/* About Us Hero Section Styles */
.breadcum-section {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 20px;
  margin-top: 75px;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-green);
  opacity: 0.85;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.hero-title {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--light-gold);
  border-top: 2px solid var(--primary-gold);
  padding-top: 15px;
  display: inline-block;
}

/* Responsive Styles */
@media (min-width: 768px) {
  .hero-title {
    font-size: 4rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }
}

@media (max-width: 767px) {
  .breadcum-section {
    min-height: 50vh;
    padding: 60px 20px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
}

/* Mission, Vision & Values Section */
.my-vis-mis-val-section {
  background-color: var(--primary-green);
  padding: 80px 0;
  color: var(--white);
}

.my-vis-mis-val-header {
  text-align: center;
  margin-bottom: 60px;
}

.my-vis-mis-val-header h2 {
  font-size: 2.8rem;
  color: var(--light-gold);
  margin-bottom: 15px;
}

.my-vis-mis-val-header p {
  font-size: 1.2rem;
  color: var(--white);
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

/* Cards Container */
.my-vis-mis-val-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Individual Cards */
.my-vis-mis-val-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.my-vis-mis-val-card.active {
  flex: 0 0 50%;
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary-gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.my-vis-mis-val-card.active i {
  display: none;
}

.my-vis-mis-val-card.active .my-vis-mis-val-title {
  display: none;
}

/* Card Icon */
.my-vis-mis-val-icon {
  font-size: 2.5rem;
  color: var(--secondary-gold);
  margin-bottom: 0px;
  transition: all 0.3s ease;
}

.my-vis-mis-val-card.active .my-vis-mis-val-icon {
  transform: scale(1.2);
}

/* Card Title */
.my-vis-mis-val-title {
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 600;
}

/* Short Description (Visible by default) */
.my-vis-mis-val-short {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.my-vis-mis-val-short p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* Full Content (Visible on hover/active) */
.my-vis-mis-val-full {
  opacity: 0;
  visibility: hidden;
  height: 0;
  transition: all 0.5s ease;
  overflow: hidden;
}

.my-vis-mis-val-card.active .my-vis-mis-val-full {
  opacity: 1;
  visibility: visible;
  height: auto;
  margin-top: -10px;
}

.my-vis-mis-val-card.active .my-vis-mis-val-short {
  opacity: 0;
  height: 0;
  overflow: hidden;
}

/* Full Content Layout */
.my-vis-mis-val-full {
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: left;
}

.my-vis-mis-val-image {
  border-radius: 8px;
  overflow: hidden;
  height: 200px;
}

.my-vis-mis-val-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* .my-vis-mis-val-card:hover .my-vis-mis-val-image img {
  transform: scale(1.05);
} */

.my-vis-mis-val-content h3 {
  font-size: 1.8rem;
  color: var(--light-gold);
  margin-bottom: 15px;
}

.my-vis-mis-val-content p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.my-vis-mis-val-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.my-vis-mis-val-list li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}

.my-vis-mis-val-list i {
  color: var(--secondary-gold);
  margin-right: 10px;
  font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 1199px) {
  .my-vis-mis-val-card.active {
    flex: 0 0 100%;
    margin-bottom: 30px;
  }

  .my-vis-mis-val-card:not(.active) {
    flex: 0 0 30%;
  }

  .my-vis-mis-val-row {
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .my-vis-mis-val-card {
    flex: 0 0 100% !important;
    min-height: auto;
    margin-bottom: 20px;
  }

  .my-vis-mis-val-card.active {
    margin-bottom: 20px;
  }

  .my-vis-mis-val-full {
    flex-direction: column;
  }

  .my-vis-mis-val-image {
    height: 250px;
  }
}

@media (max-width: 767px) {
  .my-vis-mis-val-section {
    padding: 60px 0;
  }

  .my-vis-mis-val-header h2 {
    font-size: 2.2rem;
  }

  .my-vis-mis-val-header p {
    font-size: 1.1rem;
  }

  .my-vis-mis-val-card {
    padding: 25px 20px;
  }

  .my-vis-mis-val-title {
    font-size: 1.6rem;
  }

  .my-vis-mis-val-content h3 {
    font-size: 1.6rem;
  }

  .my-vis-mis-val-image {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .my-vis-mis-val-header h2 {
    font-size: 1.8rem;
  }

  .my-vis-mis-val-header p {
    font-size: 1rem;
  }

  .my-vis-mis-val-card {
    padding: 20px 15px;
  }

  .my-vis-mis-val-icon {
    font-size: 2rem;
  }

  .my-vis-mis-val-title {
    font-size: 1.4rem;
  }

  .my-vis-mis-val-image {
    height: 180px;
  }

  .my-vis-mis-val-content p {
    font-size: 0.95rem;
  }
}

.my-vis-col {
  transition: flex-basis 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    max-width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: flex-basis, max-width;
}

@media (min-width: 992px) {
  .my-vis-col {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .my-vis-col.is-active {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.my-vis-col {
  transition: flex-basis 1s ease-in-out, max-width 1s ease-in-out;
}

/* Our Team Section */
.our-team-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

/* Team Member Card */
.team-member {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;

  margin-bottom: 30px;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Team Image */
.team-img {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member:hover .team-img img {
  transform: scale(1.05);
}

.team-social {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 65, 25, 0.9), transparent);
  padding: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.team-member:hover .team-social {
  transform: translateY(0);
}

.team-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--white);
  border-radius: 50%;
  color: var(--primary-green);
  text-decoration: none;
  transition: all 0.3s ease;
}

.team-social a:hover {
  background-color: var(--primary-gold);
  color: var(--white);
  transform: scale(1.1);
}

/* Team Info */
.team-info {
  padding: 15px 20px 5px;
  text-align: center;
}

.team-info h4 {
  font-size: 1.5rem;
  color: var(--primary-green);
  margin-bottom: 5px;
  font-weight: 600;
}

.team-role {
  color: var(--primary-gold);
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 1rem;
}

.team-desc {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 1199px) {
  .team-img {
    height: 250px;
  }
}

@media (max-width: 991px) {
  .our-team-section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 2.4rem;
  }

  .section-header p {
    font-size: 1.1rem;
  }

  .team-img {
    height: 220px;
  }

  .team-info {
    padding: 20px;
  }

  .team-info h4 {
    font-size: 1.3rem;
  }
}

@media (max-width: 767px) {
  .section-header h2 {
    font-size: 2rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .team-img {
    height: 200px;
  }

  .team-info h4 {
    font-size: 1.2rem;
  }

  .team-desc {
    font-size: 0.9rem;
  }
}

@media (max-width: 575px) {
  .team-img {
    height: 250px;
  }

  .team-member {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Project Detail View Page */
.project-view-detail-section {
  background-color: #ababab12;
}

/* Header */
/* .project-view-detail-header {
  margin-bottom: 40px;
} */

.project-view-detail-breadcrumb {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 15px;
}

.project-view-detail-breadcrumb a {
  color: var(--primary-green);
  text-decoration: none;
}

.project-view-detail-breadcrumb a:hover {
  color: var(--primary-gold);
}

.project-view-detail-header h1 {
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-bottom: 10px;
}

.project-view-detail-location {
  color: var(--primary-gold);
  font-size: 1.1rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.project-view-detail-status {
  display: flex;
  align-items: center;
  gap: 20px;
}

.status-badge {
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.status-badge.ongoing {
  background-color: var(--primary-gold);
  color: var(--white);
}

.project-view-detail-price {
  font-size: 1.2rem;
  color: var(--primary-green);
  font-weight: 600;
}

/* Gallery */
.project-view-detail-gallery {
  margin-bottom: 40px;
}

.project-view-detail-main-image {
  height: 500px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
}

.project-view-detail-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-view-detail-thumbnails {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.project-view-detail-thumb {
  flex: 0 0 auto;
  width: 120px;
  height: 80px;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.project-view-detail-thumb.active {
  border-color: var(--primary-gold);
}

.project-view-detail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content Sections */
.project-view-detail-section-box {
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.project-view-detail-section-box:last-child {
  margin-bottom: 0;
}

.project-view-detail-section-box h2 {
  font-size: 1.8rem;
  color: var(--primary-green);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.project-view-detail-section-box p {
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Features Grid */
.project-view-detail-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.project-view-detail-feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: var(--light-bg);
  border-radius: 8px;
}

.project-view-detail-feature-item i {
  font-size: 1.8rem;
  color: var(--primary-gold);
}

.project-view-detail-feature-item h4 {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 5px;
}

.project-view-detail-feature-item p {
  font-size: 1.1rem;
  color: var(--primary-green);
  font-weight: 600;
  margin: 0;
}

/* Amenities */
.project-view-detail-amenities {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}

.project-view-detail-amenity {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: var(--light-bg);
  border-radius: 5px;
}

.project-view-detail-amenity i {
  color: var(--primary-gold);
  font-size: 1.1rem;
}

.project-view-detail-amenity span {
  color: var(--text-dark);
}

/* Floor Plans */
.project-view-detail-floorplans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.project-view-detail-floorplan {
  text-align: center;
  padding: 25px;
  background: var(--light-bg);
  border-radius: 8px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.project-view-detail-floorplan:hover {
  border-color: var(--primary-gold);
}

.project-view-detail-floorplan h4 {
  font-size: 1.3rem;
  color: var(--primary-green);
  margin-bottom: 5px;
}

.project-view-detail-floorplan p {
  color: var(--text-light);
  margin-bottom: 0px;
}

.project-view-detail-btn {
  background: var(--primary-green);
  color: var(--white);
  border: none;
  padding: 10px 25px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.project-view-detail-btn:hover {
  background: var(--primary-gold);
}

/* Sidebar Cards */
.project-view-detail-sidebar-card {
  background: var(--white);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.project-view-detail-sidebar-card h3 {
  font-size: 1.5rem;
  color: var(--primary-green);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Form */
.project-view-detail-form-group {
  margin-bottom: 20px;
}

.project-view-detail-form-group input,
.project-view-detail-form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.project-view-detail-form-group input:focus,
.project-view-detail-form-group textarea:focus {
  outline: none;
  border-color: var(--primary-green);
}

.project-view-detail-submit-btn {
  width: 100%;
  background: var(--primary-green);
  color: var(--white);
  border: none;
  padding: 14px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.project-view-detail-submit-btn:hover {
  background: var(--primary-gold);
}

/* Quick Info */
.project-view-detail-quick-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.project-view-detail-info-item {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--light-bg);
}

.project-view-detail-info-item span {
  color: var(--text-light);
}

.project-view-detail-info-item strong {
  color: var(--primary-green);
}

/* Contact Info */
.project-view-detail-contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.project-view-detail-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.project-view-detail-contact-item i {
  color: var(--primary-gold);
  font-size: 1.2rem;
  margin-top: 5px;
}

.project-view-detail-contact-item span {
  display: block;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.project-view-detail-contact-item a,
.project-view-detail-contact-item p {
  color: var(--primary-green);
  font-weight: 500;
  text-decoration: none;
}

.project-view-detail-contact-item a:hover {
  color: var(--primary-gold);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .project-view-detail-main-image {
    height: 400px;
  }

  .project-view-detail-header h1 {
    font-size: 2.2rem;
  }

  .project-view-detail-section-box {
    padding: 25px;
  }
}

@media (max-width: 767px) {
  .project-view-detail-section {
    padding: 30px 0 60px;
  }

  .project-view-detail-main-image {
    height: 300px;
  }

  .project-view-detail-header h1 {
    font-size: 2rem;
  }

  .project-view-detail-status {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .project-view-detail-section-box h2 {
    font-size: 1.5rem;
  }

  .project-view-detail-features-grid {
    grid-template-columns: 1fr;
  }

  .project-view-detail-amenities {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-view-detail-floorplans {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .project-view-detail-main-image {
    height: 250px;
  }

  .project-view-detail-thumb {
    width: 100px;
    height: 70px;
  }

  .project-view-detail-amenities {
    grid-template-columns: 1fr;
  }
}

.project-view-detail-form-group {
  position: relative;
  margin-bottom: 15px;
}

.project-view-detail-form-group i {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  color: #777;
  font-size: 14px;
  pointer-events: none;
}

.project-view-detail-form-group input,
.project-view-detail-form-group textarea {
  width: 100%;
  padding: 12px 14px 12px 40px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.project-view-detail-form-group textarea {
  resize: none;
}

.project-view-detail-form-group.textarea-icon i {
  top: 16px;
  transform: none;
}

.project-view-detail-form-group input:focus,
.project-view-detail-form-group textarea:focus {
  border-color: #014119;
  box-shadow: 0 0 0 2px rgba(74, 197, 143, 0.15);
}

.project-view-detail-submit-btn {
  width: 100%;
  padding: 12px;
  background: #014119;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.project-view-detail-submit-btn:hover {
  background: #cd9e06;
}

.pro-view-sticky {
  position: sticky;
  top: 100px;
}

/* Folder item styles */
.folder-item {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.folder-item:hover {
  /* transform: translateY(-5px); */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-gold);
}

.folder-header {
  background-color: var(--primary-green);
  color: var(--white);
  padding: 20px;
  text-align: center;
}

.folder-header h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--secondary-gold);
}

.folder-image-container {
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  background: linear-gradient(to bottom, var(--light-bg), var(--white));
}

.folder-image {
  height: 200px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  border: 3px solid var(--secondary-gold);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.folder-item:hover .folder-image {
  /* transform: scale(1.05); */
  
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.folder-link {
  text-decoration: none;
  display: block;
  color: inherit;
}

.folder-link:hover {
  text-decoration: none;
  color: inherit;
}


.folder-item:hover .folder-image{
  border:none !important;
   transition: all 0.3s ease;
}



.folder-link:hover .folder-image{
  border:none !important;
   transition: all 0.3s ease;
}


/* Page title */
.page-title {
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-green);
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.page-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-gold);
  border-radius: 2px;
}

/* Folder count badge */
.folder-count {
  display: inline-block;
  background: var(--secondary-gold);
  color: var(--primary-green);
  font-size: 0.8rem;
  padding: 3px 10px;
  border-radius: 12px;
  margin-left: 10px;
  font-weight: 600;
}



.gallery-view{
  background-color: lightgoldenrodyellow;
}



.simple-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}

.simple-pagination .page-btn {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--secondary-green);
  border-radius: 6px;
  color: var(--primary-green);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  background: var(--white);
}

.simple-pagination .page-btn:hover {
  background: var(--secondary-green);
  color: var(--white);
}

.simple-pagination .page-btn.active {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  color: var(--white);
  pointer-events: none;
}

.simple-pagination .page-btn.prev,
.simple-pagination .page-btn.next {
  font-size: 16px;
}






 

  .contact-inn {
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    color: var(--text-dark);
    background-color: var(--light-bg);
    padding: 80px 0 0 0;
    position: relative;
    overflow: hidden;
  }

  /* Header Section */
  .contact-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .contact-badge {
    display: inline-block;
    background-color: var(--primary-gold);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }

  .contact-title {
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
  }

  .contact-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-gold);
    border-radius: 2px;
  }

  .contact-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    padding: 0 20px;
  }


  /* Contact Info Cards Section */
  .contact-info-section {
    margin-bottom: 80px;
  }

  .contact-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    min-height: 250px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 65, 25, 0.08);
    margin-bottom: 30px;
  }

  .contact-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-gold);
  }

  .contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse 3s ease-in-out infinite;
  }

  .contact-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    z-index: -1;
    opacity: 0.3;
  }

  .contact-icon i {
    font-size: 24px;
    color: var(--white);
  }

  .contact-item h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
    font-weight: 600;
  }

  .contact-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 5px;
  }

  .contact-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-gold);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .contact-link:hover {
    color: var(--primary-green);
  }

  /* Form & Image Section */
  .form-image-section {
    margin-bottom: 80px;
  }

  /* Image Side */
  .contact-image {
    height: 100%;
    min-height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
  }

  .contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  @media (min-width: 992px) {
    .contact-image {
      margin-bottom: 0;
    }
  }

  /* Form Side */
  .contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    /* border-top: 5px solid var(--primary-gold); */
  }

  .form-title {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
  }

  .form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-gold);
    border-radius: 2px;
  }

  .form-group {
    margin-bottom: 25px;
    position: relative;
  }

  .form-group i {
    position: absolute;
    left: 15px;
    top: 20px;
    /* top: 50%;
    transform: translateY(-50%); */
    color: var(--primary-gold);
    font-size: 18px;
    width: 20px;
    text-align: center;
  }

  .form-input {
    width: 100%;
    padding: 15px 15px 15px 50px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--white);
    color: var(--text-dark);
  }

  .form-input:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(211, 134, 33, 0.1);
  }

  .form-textarea {
    min-height: 150px;
    resize: vertical;
    padding-top: 15px;
  }

  textarea.form-input {
    padding-top: 15px;
  }

  .submit-btn {
    background: linear-gradient(to right, var(--primary-green), var(--secondary-green));
    color: var(--white);
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .submit-btn:hover {
    background: linear-gradient(to right, var(--secondary-green), var(--primary-green));
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 65, 25, 0.2);
  }

  .submit-btn i {
    font-size: 1.2rem;
  }

  /* Map Section */
  .map-section {
    width: 100%;
    padding: 0;
    margin-top: 0;
  }

  .map-container {
    width: 100%;
    height: 500px;
    position: relative;
    background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
  }

  .map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--primary-green);
    position: relative;
    overflow: hidden;
  }

  .map-pin {
    font-size: 4rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
    animation: bounce 2s infinite;
  }

  .map-placeholder h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
  }

  .map-placeholder p {
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 30px;
    color: var(--text-light);
  }

  .map-btn {
    background-color: var(--primary-gold);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
  }

  .map-btn:hover {
    background-color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(211, 134, 33, 0.3);
  }

  /* Animations */
 
  /* Responsive */
  @media (max-width: 991px) {
    .contact-inn {
      padding: 60px 0 0 0;
    }

    .contact-title {
      font-size: 2.2rem;
    }

    .contact-form {
      padding: 30px;
    }

    .contact-item {
      padding: 30px 20px;
    }

    .map-container {
      height: 400px;
    }
  }

  @media (max-width: 768px) {
    .contact-title {
      font-size: 1.8rem;
    }

    .contact-subtitle {
      font-size: 1rem;
    }

    .contact-form {
      padding: 25px 20px;
    }

    .form-title {
      font-size: 1.5rem;
    }

    .contact-icon {
      width: 70px;
      height: 70px;
    }

    .contact-icon i {
      font-size: 28px;
    }

    .map-container {
      height: 350px;
    }
  }








/* Pulse animation (WhatsApp-like) */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}



 @keyframes float {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-10px);
    }
  }

  @keyframes bounce {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-20px);
    }
  }




























 .modal-body .form-group i {
    position: absolute;
    left: -6px;
    top: 3px;
    color: var(--primary-gold);
    font-size: 18px;
    width: 20px;
    text-align: center;
}