:root {
  --primary-green: #0695c1;
  --secondary-green: #1dcaff;
  --primary-gold: #4692a9;
  --secondary-gold: #0695c1;
  --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: white;
  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: #ffffff;
  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: #555555 !important;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #0695c1 !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(rgb(89 89 89 / 92%), rgb(0 0 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(47, 238, 255, 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,
    rgb(6 149 193 / 50%),
    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: rgb(50, 187, 205);
  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-card p {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.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;
  color: #555555;
}

.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: #0695c1;
  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: var(--primary-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: 50px;
  left: 15px;
  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: white;
  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), White);
  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, #0695c1 0%, #00b3c7 50%, #015771 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,
    rgb(0 0 0 / 60%) 0%,
    rgb(45 48 46 / 70%) 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);
  backdrop-filter: blur(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: white;
  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: white;
}

.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: #9adfff;
  position: relative;
}

.indicator-line::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  background: #9adfff;
  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, #37c4d4 0%, #0b90b8 100%) !important;
  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(55, 194, 212, 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(6, 161, 172, 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(15, 244, 252, 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;
}

.breadcum-section h1 {
  margin-bottom: 0px !important;
}

.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: #caf2ff;
  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: #caf2ff;
  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: #caf2ff;
  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%; */

  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: #04a7d0;
  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: #06a6b8;
}

.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: white;
}

.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: #0695c117;
}

.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: 0px;
  top:0px;
  transform: translateY(-50%);
  color: var(--primary-gold);
  font-size: 18px;
  width: 20px;
  text-align: center;
} */

.form-image-section .form-group i {
  position: absolute;
  left: 18px;
  top: 22px;
  /* 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: var(--primary-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: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 65, 25, 0.2);
  color: var(--primary-gold);
}

.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);
  }
}

.estate-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  position: relative;
  overflow: hidden;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  padding: 15px 21px;
  font-family: var(--estate-font, "Montserrat", sans-serif);
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff !important;
  line-height: 1;
  text-transform: uppercase;
  background-color: #0695c1;
  z-index: 1;
  transition: 500ms;
}
@media (max-width: 430px) {
  .estate-btn {
    font-size: 14px;
  }
}
.estate-btn::before,
.estate-btn::after {
  content: "";
  background-color: var(--estate-black, #5f5f5f);
  height: calc(50% + 1px);
  width: 0;
  position: absolute;
  transition: 500ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: -1;
}
.estate-btn::before {
  top: 0;
  left: 0;
  right: auto;
}
.estate-btn::after {
  bottom: 0;
  right: 0;
  left: auto;
}
.estate-btn:hover::before {
  width: 100%;
  right: 0;
  left: auto;
}
.estate-btn:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}
.estate-btn span {
  position: relative;
  top: 1px;
  color: inherit;
}
.estate-btn__icon {
  position: relative;
  font-size: 14px;
  color: inherit;
  transition: all 400ms ease;
}
/* .estate-btn__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.estate-btn__icon::after {
  content: "";
  width: 1px;
  height: calc(100% - 3px);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -14px;
  background-color: #0695c1;
  transition: all 400ms ease;
}
.estate-btn--black {
  background-color: var(--estate-black, #5f5f5f);
}
.estate-btn--black::before, .estate-btn--black::after {
  background-color: var(--estate-base, #0695c1);
}
.estate-btn--white {
  color: var(--estate-base, #0695c1);
  background-color: var(--estate-white, #ffffff);
}
.estate-btn--white::before, .estate-btn--white::after {
  background-color: var(--estate-base, #0695c1);
}
.estate-btn--white .estate-btn__icon::after {
  background-color: var(--estate-base, #0695c1);
}
.estate-btn--white:hover {
  color: var(--estate-white, #ffffff);
}
.estate-btn--white:hover .estate-btn__icon::after {
  background-color: var(--estate-white, #ffffff);
}
.estate-btn--border {
  padding: 19px 19.5px;
  color: var(--estate-base, #0695c1);
  background-color: transparent;
  border: 1px solid var(--estate-base, #0695c1);
}
.estate-btn--border::before, .estate-btn--border::after {
  background-color: var(--estate-base, #0695c1);
}
.estate-btn--border .estate-btn__icon::after {
  background-color: var(--estate-base, #0695c1);
}
.estate-btn--border:hover {
  color: var(--estate-white, #ffffff);
}
.estate-btn--border:hover .estate-btn__icon::after {
  background-color: var(--estate-white, #ffffff);
} */

/* ===============================
   CARD BASE
================================ */
.Estate-cred-loans-card {
  background-color: rgba(0, 0, 0, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  /* height: 100%; */
  padding: 30px;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;

  transition:
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

/* Subtle glow on hover */
.Estate-cred-loans-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* ===============================
   BACKGROUND IMAGE
================================ */
.Estate-cred-loans-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;

  opacity: 0;
  transform: scale(1.12);
  transition:
    opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
    transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);

  z-index: 0;
  will-change: opacity, transform;
}

/* ===============================
   BLACK OVERLAY
================================ */
.Estate-cred-loans-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.6));

  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 1;
}

/* SHOW IMAGE + OVERLAY */
.Estate-cred-loans-card:hover::before {
  opacity: 1;
  transform: scale(1);
}

.Estate-cred-loans-card:hover::after {
  opacity: 1;
}

/* ===============================
   CONTENT
================================ */
.Estate-cred-loans-card-content {
  position: relative;
  z-index: 2;
  color: #fff;

  transition:
    transform 0.6s cubic-bezier(0.25, 1, 0.5, 1),
    opacity 0.6s ease;
}

/* Lift content slightly */
.Estate-cred-loans-card:hover .Estate-cred-loans-card-content {
  transform: translateY(-6px);
}

/* ===============================
   CIRCLE IMAGE
================================ */
.Estate-cred-loans-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;

  transition:
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.6s ease;
}

.Estate-cred-loans-card:hover .Estate-cred-loans-img {
  transform: scale(0);
  opacity: 0;
}

/* ===============================
   TEXT
================================ */
.Estate-cred-loans-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.Estate-cred-loans-text {
  color: #ccc;
  margin-bottom: 20px;
  line-height: 1.6;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===============================
   BUTTON
================================ */
.Estate-cred-loans-btn {
  background-color: transparent;
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  padding: 8px 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;

  transition:
    background-color 0.4s ease,
    color 0.4s ease,
    transform 0.3s ease;
}

.Estate-cred-loans-btn:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.estate-cred-cta {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #0695c1 0%, #057aa0 45%, #044f6a 100%);
  overflow: hidden;
}

.estate-cred-cta-bg-layer {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.35), transparent),
    radial-gradient(
      circle at 70% 30%,
      rgba(255, 255, 255, 0.18),
      transparent 55%
    );
  z-index: 1;
}

.estate-cred-cta-container {
  position: relative;
  z-index: 2;
}

/* IMAGE */
.estate-cred-cta-image {
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45);
}

.estate-cred-cta-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.estate-cred-cta-image:hover img {
  transform: scale(1.08);
}

/* CONTENT */
.estate-cred-cta-content {
  padding-left: 40px;
  color: #fff;
}

.estate-cred-cta-tag {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.75rem;
  letter-spacing: 1.2px;
  margin-bottom: 22px;
}

.estate-cred-cta-title {
  font-size: 3.3rem;
  line-height: 1.1;
  margin-bottom: 22px;
  font-weight: 700;
  color: #a9ebff;
}

.estate-cred-cta-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.92);
}

/* ACTIONS */
.estate-cred-cta-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.estate-cred-cta-btn {
  padding: 15px 30px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.estate-cred-cta-btn.primary {
  background: #ffffff;
  color: #044f6a;
}

.estate-cred-cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
}

.estate-cred-cta-btn.ghost {
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
}

.estate-cred-cta-btn.ghost:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* STATS */
.estate-cred-cta-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.estate-cred-cta-stat h3 {
  font-size: 1.9rem;
  margin-bottom: 6px;
}

.estate-cred-cta-stat span {
  font-size: 0.85rem;
  opacity: 0.9;
}

.estate-cred-cta-stat.highlight h3 {
  color: #ccefff;
}

/* ===============================
   Responsive
================================ */

@media (max-width: 991px) {
  .estate-cred-cta {
    padding: 90px 0;
  }

  .estate-cred-cta-image img {
    height: 380px;
  }

  .estate-cred-cta-content {
    padding-left: 0;
    margin-top: 40px;
  }

  .estate-cred-cta-title {
    font-size: 2.4rem;
  }

  .estate-cred-cta-stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .estate-cred-cta-title {
    font-size: 2rem;
  }

  .estate-cred-cta-stats {
    grid-template-columns: 1fr;
  }
}

/* =====================================
   FAQ Section – Real Estate Premium
===================================== */

.my-faq-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #0695c1 0%, #057aa0 45%, #044f6a 100%);
  overflow: hidden;
}

.my-faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.35), transparent),
    radial-gradient(
      circle at 20% 30%,
      rgba(255, 255, 255, 0.18),
      transparent 55%
    );
}

.my-faq-section-container {
  position: relative;
  z-index: 2;
}

/* CONTENT */
.my-faq-section-content {
  color: #fff;
  padding-right: 40px;
}

.my-faq-section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 40px;
}

/* ACCORDION */
.my-faq-section-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.my-faq-section-item {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.my-faq-section-question {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 18px 22px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.my-faq-section-question i {
  transition: transform 0.35s ease;
}

/* ROTATION */
.my-faq-section-item.active .my-faq-section-question i {
  transform: rotate(90deg);
}

/* ANSWER */
.my-faq-section-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.my-faq-section-item.active .my-faq-section-answer {
  max-height: 200px;
}

.my-faq-section-answer p {
  padding: 0 22px 18px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* IMAGE */
.my-faq-section-image {
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45);
}

.my-faq-section-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.my-faq-section-image:hover img {
  transform: scale(1.07);
}

/* ===============================
   Responsive
================================ */

@media (max-width: 991px) {
  .my-faq-section {
    padding: 90px 0;
  }

  .my-faq-section-content {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .my-faq-section-title {
    font-size: 2.4rem;
  }

  .my-faq-section-image img {
    height: 380px;
  }
}

@media (max-width: 576px) {
  .my-faq-section-title {
    font-size: 2rem;
  }
}

.my-client-section {
  padding: 80px 0;
  background: #fff;
}

.my-client-section-slider {
  width: 100%;
}

.my-client-section-slide {
  height: 100px; /* IMPORTANT */
  display: flex;
  align-items: center;
  justify-content: center;
}

.my-client-section-slide img {
  max-width: 150px;
  height: auto;
}

/* Project Type Badge */
.project-img {
  position: relative;
}

.project-type-badge {
  position: absolute;
  top: 12px;
  right: 20px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #0695c1, #045f82);
  color: #fff;
  border-radius: 30px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

/* Optional hover highlight */
.project-card:hover .project-type-badge {
  transform: scale(1.05);
  transition: 0.3s ease;
}

/* Preloader Full Screen */
#preloader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 99999;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Inner wrapper – HARD CENTER */
#preloader .preloader-content,
#preloader .spin {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* PNG – TRUE CENTER ROTATION */
#preloader .spin img {
  width: 80px; /* adjust if needed */
  height: 80px; /* force square box */
  object-fit: contain;

  position: relative;
  transform-origin: 50% 50%;
  animation: centerSpin 10s linear infinite;

  display: block;
}

/* Smooth rotation */
@keyframes centerSpin {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

/* Dropdown Menu Styles */
.navbar-nav .dropdown {
  position: relative;
}

.navbar-nav .dropdown-toggle {
  position: relative;
  padding-right: 25px !important;
}

.navbar-nav .dropdown-toggle::after {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
  transition: transform 0.3s ease;
}

.navbar-nav .dropdown-toggle.show::after {
  transform: translateY(-50%) rotate(180deg);
}

.navbar-nav .dropdown-menu {
  background: white;
  border: none;
  border-radius: 10px;
  padding: 0px 0;
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  display: block;
  margin-top: 10px;
}

.navbar-nav .dropdown:hover .dropdown-menu,
.navbar-nav .dropdown.show .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  padding: 12px 25px;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dropdown-menu li:first-child a {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.dropdown-menu li:last-child a {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

/* .dropdown-item:first-child {
 margin: 10px 10px 0 0 ;
} */

.dropdown-item i {
  color: #37bad4;
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.dropdown-item:hover {
  background: linear-gradient(135deg, #37bad4 0%, #1f99b8 100%);
  color: white;
  padding-left: 30px;
}

.dropdown-item:hover i {
  color: white;
}

.dropdown-divider {
  margin: 8px 0;
  border-color: #eee;
}

/* Mobile dropdown adjustments */
@media (max-width: 991px) {
  .navbar-nav .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding-left: 20px;
  }

  .dropdown-item {
    padding: 10px 15px;
    color: rgba(255, 255, 255, 0.8);
  }

  .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding-left: 20px;
  }
}

.services-view-inn {
  padding: 80px 0;
  background: #f8f9fa;
  min-height: 100vh;
}

/* Sticky sidebar styles */
.services-view-inn .services-sidebar {
  position: sticky;
  top: 30px;
  background: white;
  border-radius: 0px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: fit-content;
}

.services-view-inn .services-sidebar-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid black;
}

.services-view-inn .services-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.services-view-inn .services-list-item {
  margin-bottom: 12px;
  position: relative;
}

.services-view-inn .services-list-link {
  display: block;
  padding: 12px 15px;
  background: #f8f9fa;
  border-radius: 8px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.services-view-inn .services-list-link:hover,
.services-view-inn .services-list-link.active {
  background: #0695c1;
  color: white;
  border-left-color: rgb(16, 235, 255);
  transform: translateX(5px);
}

.services-view-inn .services-list-link::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  transition: all 0.3s ease;
}

.services-view-inn .services-list-link:hover::after,
.services-view-inn .services-list-link.active::after {
  color: white;
}

/* Contact card styles */
.services-view-inn .contact-card {
  background: linear-gradient(135deg, #000000 0%, #000000 100%);
  border-radius: 0px;
  padding: 25px;
  color: white;
}

.services-view-inn .contact-card-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

.services-view-inn .contact-card-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.services-view-inn .contact-card-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.services-view-inn .contact-card-text {
  color: #ddd;
  font-size: 0.95rem;
  line-height: 1.5;
}

.services-view-inn .contact-card-text strong {
  color: white;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

/* Slider styles */
.services-view-inn .services-slider-container {
  position: relative;
  background: white;
  border-radius: 0px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.services-view-inn .swiper {
  width: 100%;
  height: 400px;
  border-radius: 0px;
  overflow: hidden;
  margin-bottom: 30px;
}

.services-view-inn .swiper-slide {
  position: relative;
}

.services-view-inn .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-view-inn .swiper-slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0695c1;
  color: white;
  padding: 30px;
}

.services-view-inn .swiper-slide-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.services-view-inn .swiper-button-next,
.services-view-inn .swiper-button-prev {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
  color: #222;
}

.services-view-inn .swiper-button-next::after,
.services-view-inn .swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
}

/* Service content styles */
.services-view-inn .service-detail-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}

.services-view-inn .service-detail-content {
  color: #555;
  line-height: 1.7;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.services-view-inn .features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-view-inn .features-list-item {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: #444;
}

.services-view-inn .features-list-item::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: black;
}

.services-view-inn .service-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 0px;
  margin-bottom: 20px;
}

/* Responsive styles */
@media (max-width: 991px) {
  .services-view-inn .services-sidebar {
    position: static;
    margin-top: 40px;
  }

  .services-view-inn .swiper {
    height: 350px;
  }

  .services-view-inn .service-detail-title {
    font-size: 1.9rem;
  }
}

@media (max-width: 767px) {
  .services-view-inn {
    padding: 40px 0;
  }

  .services-view-inn .services-slider-container,
  .services-view-inn .services-sidebar {
    padding: 25px;
  }

  .services-view-inn .swiper {
    height: 300px;
  }

  .services-view-inn .service-detail-title {
    font-size: 1.7rem;
  }
}

@media (max-width: 575px) {
  .services-view-inn .swiper {
    height: 250px;
  }

  .services-view-inn .swiper-button-next,
  .services-view-inn .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .services-view-inn .service-detail-title {
    font-size: 1.5rem;
  }

  .services-view-inn .services-list-link {
    padding: 10px 15px;
    font-size: 0.95rem;
  }
}

.services-img {
  width: 100%;
  height: 400px;
  border-radius: 0px;
  overflow: hidden;
  margin-bottom: 30px;
}

:root {
  --primary-green: #0695c1;
  --secondary-green: #1dcaff;
  --primary-gold: #4692a9;
  --secondary-gold: #0695c1;
}

.location-search {
  display: flex;
  align-items: center;
  background: #fff;
  border: 2px solid var(--primary-green);
  border-radius: 12px;
  overflow: hidden;
}

.location-input {
  flex: 1;
  border: none;
  padding: 14px 16px;
  font-size: 14px;
  outline: none;
}

.location-input::placeholder {
  color: #999;
}

.location-btn {
  color: var(--primary-green);
  border: none;
  padding: 0 18px;
  height: 100%;
  height: 40px;
  border-radius: 5px;
  margin-right: 20px;
  width: 40px;
  background-color: rgba(173, 216, 230, 0);
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

:root {
  --primary-green: #0695c1;
  --secondary-green: #1dcaff;
  --primary-gold: #4692a9;
  --secondary-gold: #0695c1;
  --light-gray: #f8f9fa;
  --dark-gray: #343a40;
  --border-gray: #dee2e6;
  --success-color: #2ecc71;
  --warning-color: #f39c12;
  --danger-color: #e74c3c;
  --info-color: #3498db;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.my-dashboard {
  display: flex;
  min-height: 100vh;
}

/* Sidebar Styles */
.my-dashboard .sidebar {
  width: 300px;
  background-color: white;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
  position: fixed;
  height: 100%;
  z-index: 100;
  transition: transform 0.3s ease;
}

.my-dashboard .sidebar-header {
  padding: 25px 20px;
  border-bottom: 1px solid var(--border-gray);
  /* background: linear-gradient(135deg, var(--primary-green), var(--secondary-green)); */
  color: white;
}

.my-dashboard .sidebar-header h2 {
  font-size: 22px;
  font-weight: 600;
}

.my-dashboard .sidebar-header p {
  font-size: 14px;
  opacity: 0.9;
  margin-top: 5px;
}

.sidebar-header img {
  height: 50px;
}

.my-dashboard .sidebar-nav {
  padding: 20px 0;
}

.my-dashboard .nav-item {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  color: var(--dark-gray);
  text-decoration: none;
  transition: all 0.3s;
  border-left: 3px solid transparent;
}

.my-dashboard .nav-item:hover {
  background-color: rgba(6, 149, 193, 0.05);
  color: var(--primary-green);
  border-left: 3px solid var(--primary-green);
}

.my-dashboard .nav-item.active {
  background-color: rgba(6, 149, 193, 0.1);
  color: var(--primary-green);
  border-left: 3px solid var(--primary-green);
  font-weight: 500;
}

.my-dashboard .nav-icon {
  width: 24px;
  margin-right: 12px;
  text-align: center;
  font-size: 18px;
}

.my-dashboard .nav-text {
  font-size: 15px;
}

/* Main Content Styles */
.my-dashboard .main-content {
  flex: 1;
  margin-left: 300px;
  padding: 40px 20px 20px;
  transition: margin-left 0.3s ease;
}

/* Top Header */
.my-dashboard .top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--border-gray);
}

.my-dashboard .page-title h1 {
  font-size: 28px;
  font-weight: 600;
  color: var(--dark-gray);
}

.my-dashboard .breadcrumb {
  font-size: 14px;
  color: #666;
}

.my-dashboard .breadcrumb a {
  color: var(--primary-green);
  text-decoration: none;
}

.my-dashboard .breadcrumb a:hover {
  text-decoration: underline;
}

.my-dashboard .user-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.my-dashboard .user-profile {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: white;
  padding: 8px 15px;
  border-radius: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.my-dashboard .user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
}

.my-dashboard .user-name {
  font-weight: 500;
  font-size: 15px;
}

.my-dashboard .mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--dark-gray);
  cursor: pointer;
}

/* Welcome Section */
.my-dashboard .welcome-section {
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  color: white;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(6, 149, 193, 0.2);
}

.my-dashboard .welcome-section h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.my-dashboard .welcome-section p {
  opacity: 0.9;
  font-size: 16px;
}

/* Stats Grid */
.my-dashboard .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.my-dashboard .stat-card {
  background-color: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  border: 4px solid transparent;
}

.my-dashboard .stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.my-dashboard .stat-card.contact {
  border-color: var(--primary-green);
}

.my-dashboard .stat-card.partner {
  border-color: var(--warning-color);
}

.my-dashboard .stat-card.portal {
  border-color: var(--info-color);
}

.my-dashboard .stat-card.data {
  border-color: var(--success-color);
}

.my-dashboard .stat-card.total-partners {
  border-color: var(--primary-gold);
}

.my-dashboard .stat-card.total-managers {
  border-color: var(--secondary-gold);
}

.my-dashboard .stat-card.today-leads {
  border-color: var(--danger-color);
}

.my-dashboard .stat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.my-dashboard .stat-title {
  font-size: 16px;
  color: #666;
  font-weight: 500;
}

.my-dashboard .stat-icon {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
}

.my-dashboard .contact .stat-icon {
  background-color: var(--primary-green);
}

.my-dashboard .partner .stat-icon {
  background-color: var(--warning-color);
}

.my-dashboard .portal .stat-icon {
  background-color: var(--info-color);
}

.my-dashboard .data .stat-icon {
  background-color: var(--success-color);
}

.my-dashboard .total-partners .stat-icon {
  background-color: var(--primary-gold);
}

.my-dashboard .total-managers .stat-icon {
  background-color: var(--secondary-gold);
}

.my-dashboard .today-leads .stat-icon {
  background-color: var(--danger-color);
}

.my-dashboard .stat-value {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 5px;
}

.my-dashboard .stat-change {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
}

.my-dashboard .stat-change.up {
  color: var(--success-color);
}

.my-dashboard .stat-change.down {
  color: var(--danger-color);
}

.my-dashboard .stat-change i {
  margin-right: 5px;
}

/* Quick Actions */
.my-dashboard .quick-actions {
  background-color: white;
  border-radius: 12px;
  padding: 25px;
  margin-top: 30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.my-dashboard .quick-actions h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--dark-gray);
}

.my-dashboard .action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.my-dashboard .action-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background-color: var(--light-gray);
  border: none;
  border-radius: 8px;
  color: var(--dark-gray);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.my-dashboard .action-btn:hover {
  background-color: var(--primary-green);
  color: white;
  transform: translateY(-2px);
}

/* Footer */
.my-dashboard .dashboard-footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border-gray);
  text-align: center;
  color: #666;
  font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .my-dashboard .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .my-dashboard .sidebar {
    transform: translateX(-100%);
  }

  .my-dashboard .sidebar.active {
    transform: translateX(0);
  }

  .my-dashboard .main-content {
    margin-left: 0;
  }

  .my-dashboard .mobile-menu-btn {
    display: block;
  }

  .my-dashboard .top-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .my-dashboard .user-info {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 640px) {
  .my-dashboard .stats-grid {
    grid-template-columns: 1fr;
  }

  .my-dashboard .action-buttons {
    flex-direction: column;
  }

  .my-dashboard .action-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .my-dashboard .main-content {
    padding: 15px;
  }

  .my-dashboard .welcome-section {
    padding: 20px;
  }

  .my-dashboard .stat-card {
    padding: 20px;
  }

  .my-dashboard .quick-actions {
    padding: 20px;
  }
}

.estate-cred-patners {
  background: #f5f7fb;
  padding: 30px;
}

.estate-cred-patners-container {
  /* background: #fff;
  padding: 25px; */
  border-radius: 10px;
}

/* HEADER */
.estate-cred-patners-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.estate-cred-patners-add {
  background: #16c60c;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
}

/* TABLE */
.estate-cred-patners-table-wrap {
  overflow-x: auto;
}

.estate-cred-patners-table {
  width: 100%;
  border-collapse: collapse;
}

.estate-cred-patners-table th {
  background: #208fb6;
  color: #fff;
  padding: 12px;
  text-align: left;
}

.estate-cred-patners-table td {
  padding: 14px;
  vertical-align: top;
}

/* BADGES */
.estate-cred-patners-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.badge {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  color: #fff;
  white-space: nowrap;
}

.followup {
  background: #1abc9c;
}
.approved {
  background: #3498db;
}
.no-response {
  background: #e74c3c;
}
.to-call {
  background: #00bcd4;
}
.not-interested {
  background: #9b59b6;
}
.wrong-number {
  background: #f39c12;
}
.not-eligible {
  background: #34495e;
}
.next-intake {
  background: #7f8c8d;
}
.duplicate {
  background: #8e44ad;
}
.logged-in {
  background: #27ae60;
}
.hold {
  background: #d35400;
}
.declined {
  background: #c0392b;
}
.loan-sanction {
  background: #2980b9;
}
.disbursed {
  background: #2ecc71;
}
.disbmt-amount {
  background: #16a085;
}
.disbmt-date {
  background: #2c3e50;
}

/* ACTIONS */
/* .estate-cred-patners-actions {
  white-space: wrap;
  display: flex;
  max-width: 350px;
} */

.action-btn {
  border: none;
  padding: 8px 10px;
  border-radius: 4px;
  cursor: pointer;
  margin-right: 6px;
  color: #fff;
}

.action-btn.edit {
  background: #2ecc71;
}
.action-btn.delete {
  background: #e74c3c;
}

.action-btn i {
  font-size: 14px;
}

/* FORM */
.estate-cred-patners-form {
  display: none;
  max-width: 500px;
}

.estate-cred-patners-form-header {
  text-align: right;
}

.estate-cred-patners-back {
  background: #111;
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 4px;
  cursor: pointer;
}

.estate-cred-patners-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 20px;
  margin: 0px 0;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.estate-cred-patners-form-grid .form-group input,
.estate-cred-patners-form-grid .form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.estate-cred-patners-submit {
  background: #16c60c;
  color: #fff;
  padding: 12px 26px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .estate-cred-patners-form-grid {
    grid-template-columns: 1fr;
  }
}

/* TABLE GRID LINES */
.estate-cred-patners .estate-cred-patners-table,
.estate-cred-patners .estate-cred-patners-table th,
.estate-cred-patners .estate-cred-patners-table td {
  border: 1px solid #e0e0e0;
}

/* REMOVE DOUBLE BORDERS */
.estate-cred-patners .estate-cred-patners-table {
  border-collapse: collapse;
}

/* ALTERNATE ROW COLORS */
.estate-cred-patners .estate-cred-patners-table tbody tr:nth-child(odd) {
  background-color: #f9fbff;
}

.estate-cred-patners .estate-cred-patners-table tbody tr:nth-child(even) {
  background-color: #ffffff;
}

/* HOVER (OPTIONAL BUT RECOMMENDED) */
.estate-cred-patners .estate-cred-patners-table tbody tr:hover {
  background-color: #eef4ff;
}

.estate-cred-patners-pagination {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.estate-cred-patners-pagination button {
  background: #1f6fe5;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
}

.estate-cred-patners-pagination button:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.estate-cred-patners-pagination span {
  font-weight: 600;
}

.user-profile {
  display: flex;
  align-items: center;
}

.user-profile .user-logout-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  color: #333;
  font-weight: 600;
  cursor: pointer;
  padding: 6px 10px;
}

.user-profile .user-logout-btn i {
  font-size: 16px;
  color: #e74c3c;
}

.user-profile .user-logout-btn:hover {
  background: #f5f5f5;
  border-radius: 6px;
}

/* Overlay */
.logout-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Popup box */
.logout-popup {
  background: #fff;
  padding: 30px 40px;
  border-radius: 12px;
  text-align: center;
  width: 90%;
  max-width: 360px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  animation: popupScale 0.3s ease;
}

.logout-popup i {
  font-size: 48px;
  color: #2ecc71;
  margin-bottom: 15px;
}

.logout-popup h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.logout-popup p {
  margin: 0;
  color: #666;
  font-size: 14px;
}

/* Animation */
@keyframes popupScale {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Logout button wrapper */
.user-profile {
  display: flex;
  align-items: center;
}

/* Logout button */
.user-logout-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  border-radius: 6px;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

/* Icon */
.user-logout-btn i {
  font-size: 16px;
  color: #e74c3c;
}

/* Hover */
.user-profile .user-logout-btn:hover {
  background: #f5f5f5;
  color: #000;
}

.user-profile {
  display: flex;
  align-items: center;
}

.user-logout-btn {
  /* width: 38px; */
  height: 38px;
  /* border-radius: 50%; */
  background: #fff;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.user-logout-btn i {
  font-size: 16px;
  color: #e74c3c;
}

.user-logout-btn:hover {
  background: #fbeaea;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.user-wallet-btn i {
  font-size: 16px;
  color: #039c06;
}

.user-wallet-btn:hover {
  background: #eafbef;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.user-wallet-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  border-radius: 6px;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.user-wallet-btn {
  /* width: 38px; */
  height: 38px;
  /* border-radius: 50%; */
  background: #fff;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.my-login-page .login-header {
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  color: white;
  padding: 30px 20px;
  text-align: center;
}

.my-login-page .login-header h1 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
}

.my-login-page .login-header p {
  font-size: 15px;
  opacity: 0.9;
}

.my-login-page .login-icon {
  font-size: 40px;
  margin-bottom: 15px;
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.15);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  line-height: 80px;
  text-align: center;
}

.my-login-page .login-body {
  padding: 30px;
}

.my-login-page .form-group {
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.my-login-page .mobile-number-display {
  background-color: rgba(6, 149, 193, 0.1);
  padding: 12px 15px;
  border-radius: 8px;
  margin-bottom: 25px;
  display: none;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(6, 149, 193, 0.2);
}

.my-login-page .mobile-number-display .mobile-text {
  font-weight: 500;
  color: var(--dark-gray);
}

.my-login-page .mobile-number-display .mobile-number {
  font-weight: 600;
  color: var(--primary-green);
}

.my-login-page .mobile-number-display .edit-btn {
  background: none;
  border: none;
  color: var(--primary-green);
  cursor: pointer;
  font-size: 14px;
  text-decoration: underline;
  padding: 5px;
}

.my-login-page .form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--dark-gray);
  font-size: 15px;
}

.my-login-page .input-group {
  display: flex;
  border: 1px solid var(--border-gray);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.my-login-page .input-group:focus-within {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(6, 149, 193, 0.1);
}

.my-login-page .country-code {
  background-color: var(--light-gray);
  padding: 0 15px;
  display: flex;
  align-items: center;
  font-weight: 500;
  color: var(--dark-gray);
  border-right: 1px solid var(--border-gray);
}

.my-login-page .form-control {
  flex: 1;
  border: none;
  padding: 15px;
  font-size: 16px;
  outline: none;
  color: var(--dark-gray);
}

.my-login-page .form-control::placeholder {
  color: #aaa;
}

.my-login-page .otp-inputs {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  display: none;
}

.my-login-page .otp-input {
  width: 50px;
  height: 60px;
  border: 2px solid var(--border-gray);
  border-radius: 8px;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: var(--dark-gray);
  transition: all 0.3s;
}

.my-login-page .otp-input:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(6, 149, 193, 0.1);
  outline: none;
}

.my-login-page .otp-input.filled {
  border-color: var(--primary-green);
  background-color: rgba(6, 149, 193, 0.05);
}

.my-login-page .btn {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.my-login-page .btn-primary {
  background-color: var(--primary-green);
  color: white;
}

.my-login-page .btn-primary:hover {
  background-color: #0580a6;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(6, 149, 193, 0.2);
}

.my-login-page .btn-primary:active {
  transform: translateY(0);
}

.my-login-page .btn-secondary {
  background-color: var(--secondary-gold);
  color: white;
  margin-top: 10px;
  display: none;
}

.my-login-page .btn-secondary:hover {
  background-color: #0580a6;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(70, 146, 169, 0.2);
}

.my-login-page .resend-otp {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #666;
  display: none;
}

.my-login-page .resend-otp a {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 500;
}

.my-login-page .resend-otp a:hover {
  text-decoration: underline;
}

.my-login-page .timer {
  color: var(--primary-gold);
  font-weight: 600;
}

.my-login-page .error-message {
  color: var(--error-color);
  font-size: 14px;
  margin-top: 5px;
  display: none;
}

.my-login-page .success-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.my-login-page .success-popup.active {
  opacity: 1;
  visibility: visible;
}

.my-login-page .success-content {
  background-color: white;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  transform: scale(0.9);
  transition: transform 0.3s;
}

.my-login-page .success-popup.active .success-content {
  transform: scale(1);
}

.my-login-page .success-icon {
  font-size: 60px;
  color: var(--success-color);
  margin-bottom: 20px;
}

.my-login-page .success-content h2 {
  color: var(--dark-gray);
  margin-bottom: 10px;
}

.my-login-page .success-content p {
  color: #666;
  margin-bottom: 25px;
  line-height: 1.5;
}

.my-login-page .success-content .btn {
  max-width: 200px;
  margin: 0 auto;
}

.my-login-page .login-footer {
  text-align: center;
  padding: 20px;
  border-top: 1px solid var(--border-gray);
  font-size: 14px;
  color: #666;
  background-color: rgba(248, 249, 250, 0.7);
}

.my-login-page .login-footer a {
  color: var(--primary-green);
  text-decoration: none;
}

.my-login-page .login-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .my-login-page {
    max-width: 95%;
  }

  .my-login-page .login-body {
    padding: 25px 20px;
  }

  .my-login-page .otp-input {
    width: 45px;
    height: 55px;
    font-size: 22px;
  }
}

/* Sidebar default */
.my-dashboard .sidebar {
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

/* Sidebar open state */
.my-dashboard.sidebar-open .sidebar {
  transform: translateX(0);
}

/* Desktop – always visible */
@media (min-width: 992px) {
  .my-dashboard .sidebar {
    transform: translateX(0);
  }
}

@media (max-width: 991px) {
  .estate-cred-patners-table-wrap::after {
    content: "← Scroll →";
    display: block;
    text-align: center;
    font-size: 12px;
    color: #777;
    padding: 6px 0;
  }
}

.my-patner-section {
  --primary: #0695c1;
  --primary-light: #d4f0f7;
  --gray-bg: #ffffff;
  --text-dark: #1f4e5a;
  --text-soft: #3b6e7a;
  --border-light: #e3f0f3;
}

/* ------ all headings, texts, cards inherits parent styling ------ */
.my-patner-section .estate-badge {
  display: inline-flex;
  align-items: center;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 1.2rem;
  border-radius: 40px;
  letter-spacing: 0.3px;
  border: 1px solid rgba(6, 149, 193, 0.15);
  margin-bottom: 1.5rem;
}

.my-patner-section .estate-badge i {
  margin-right: 6px;
  font-size: 0.9rem;
  color: var(--primary);
}

.my-patner-section h1 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #0b3b44;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.my-patner-section h1 span {
  color: var(--primary);
  border-bottom: 3px solid var(--primary);
  padding-bottom: 4px;
}

.my-patner-section .lead {
  font-size: 1.15rem;
  color: var(--text-soft);
  margin-bottom: 2rem;
  max-width: 550px;
}

/* feature pills — simple, minimal */
.my-patner-section .feature-mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
  margin-bottom: 2rem;
  justify-content: center;
}

.my-patner-section .feature-item-sm {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dark);
  font-size: 0.98rem;
  background: transparent;
}

.my-patner-section .feature-item-sm i {
  color: var(--primary);
  font-size: 1.1rem;
  width: 22px;
  text-align: center;
}

/* primary button – clean */
.my-patner-section .btn-partner-clean {
  background: var(--primary);
  border: none;
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
  padding: 0.7rem 2.4rem;
  border-radius: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 18px rgba(6, 149, 193, 0.2);
  transition: 0.15s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  /* width: 100%;
  max-width: 280px; */
}

.my-patner-section .btn-partner-clean:hover {
  background: #0483ac;
  transform: translateY(-2px);
  text-decoration: none;
  color: white;
  box-shadow: 0 12px 22px rgba(6, 149, 193, 0.25);
}

/* right side card — super clean */
.my-patner-section .testimonial-simple {
  background: #f8fdff;
  border-radius: 24px;
  padding: 1.8rem 1.8rem;
  border: 1px solid var(--border-light);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.02);
}

.my-patner-section .testimonial-simple i {
  color: var(--primary);
  opacity: 0.7;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.my-patner-section .testimonial-simple p {
  font-size: 1rem;
  color: #235f6b;
  font-weight: 450;
  margin-bottom: 1.2rem;
}

/* ----- NEW CONTENT SECTIONS: clean, minimal, no heavy shadows ----- */
.my-patner-section .section-mini-title {
  font-size: 1.8rem;
  font-weight: 650;
  color: #0a424c;
  margin: 2rem 0 0.5rem 0;
}

.my-patner-section .section-desc {
  color: #3e717c;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.my-patner-section .benefit-mini-card {
  background: white;
  border: 1px solid #e7f1f3;
  border-radius: 20px;
  padding: 1.6rem 1.2rem;
  transition: 0.1s ease;
  height: 100%;
}

.my-patner-section .benefit-mini-card i {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.my-patner-section .benefit-mini-card h5 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0c4e5a;
  margin-bottom: 0.4rem;
}

.my-patner-section .benefit-mini-card p {
  color: #42727e;
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* stat cards clean */
.my-patner-section .stat-block {
  background: #fafdfe;
  border: 1px solid #e9f0f2;
  border-radius: 20px;
  padding: 1.4rem 0.8rem;
  text-align: center;
}

.my-patner-section .stat-block i {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.my-patner-section .stat-block h4 {
  font-size: 1.9rem;
  font-weight: 700;
  color: #0b4d59;
  margin-bottom: 0;
  line-height: 1;
}

.my-patner-section .stat-block span {
  font-size: 0.85rem;
  color: #57858b;
}

/* ------------- POPUP FORM (parent scoped too) ------------- */
.my-patner-section .partner-popup-clean {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  z-index: 9999;
  /* padding: 20px; */
}

.my-patner-section .popup-card {
  background: white;
  max-width: 780px;
  width: 100%;
  border-radius: 7px;
  box-shadow: 0 30px 50px rgba(6, 149, 193, 0.2);
  padding: 30px;
  border: 1px solid rgba(6, 149, 193, 0.2);
}

.my-patner-section .popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.my-patner-section .popup-header h3 {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

.my-patner-section .popup-header h3 i {
  color: var(--primary);
  margin-right: 10px;
}

.my-patner-section .close-btn {
  background: none;
  border: none;
  font-size: 2.4rem;
  color: #8faeb6;
  transition: 0.1s;
  line-height: 1;
}

.my-patner-section .close-btn:hover {
  color: var(--primary);
}

/* form elements – minimal, clean */
.my-patner-section .form-group {
  margin-bottom: 1.3rem;
}

.my-patner-section label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #0f5763;
  margin-bottom: 0.2rem;
  margin-left: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.my-patner-section label i {
  color: var(--primary);
  margin-right: 6px;
  font-size: 0.8rem;
}

.my-patner-section .required-star {
  color: #c14242;
  margin-left: 3px;
}

.my-patner-section .input-icon-group {
  position: relative;
  display: flex;
  align-items: center;
}

.my-patner-section .input-icon-group i {
  position: absolute;
  left: 16px;
  color: var(--primary);
  font-size: 1rem;
  width: 20px;
  text-align: center;
  opacity: 0.8;
}

.my-patner-section .form-control-clean {
  width: 100%;
  padding: 0.8rem;
  border: 1.5px solid #dbeaee;
  border-radius: 7px !important;
  font-size: 0.95rem;
  background: white;
  transition: 0.1s;
}

.my-patner-section .form-control-clean:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(6, 149, 193, 0.1);
  outline: none;
}

/* file upload - super clean */
.my-patner-section .custom-file-minimal {
  position: relative;
  display: flex;
  align-items: center;
  background: white;
  border: 1.5px solid #dbeaee;
  border-radius: 7px;
  padding: 0.3rem;
}

.my-patner-section .custom-file-minimal i {
  position: absolute;
  left: 16px;
  color: var(--primary);
  font-size: 1.1rem;
}

.my-patner-section .custom-file-minimal span {
  flex: 1;
  padding: 0.5rem 0.7rem;
  color: #427884;
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.my-patner-section .browse-simple {
  background: #e2f0f3;
  color: var(--primary);
  padding: 0.45rem 1.5rem;
  border-radius: 60px;
  font-weight: 600;
  font-size: 0.85rem;
  border: none;
}

.my-patner-section .custom-file-minimal input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.my-patner-section .btn-submit-minimal {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1.2rem;
  /* width: 100%; */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.my-patner-section .btn-submit-minimal:hover {
  background: #0481aa;
}

.my-patner-section .show-popup {
  display: flex !important;
}

/* responsive */
@media (max-width: 768px) {
  .my-patner-section {
    padding: 1.8rem 1.2rem;
  }
  .my-patner-section h1 {
    font-size: 2.1rem;
  }
  .my-patner-section .popup-card {
    padding: 1.8rem 1.2rem;
  }
}

.scroll-wrapper {
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
}

.fixed-note {
  font-weight: 700;
  margin-right: 10px;
  white-space: nowrap;
  color: #0695c1;
}

.scrolling-area {
  overflow: hidden;
  flex: 1;
  white-space: nowrap;
  position: relative;
}

.scrolling-text {
  display: inline-block;
  padding-left: 50px;
  animation: scrollLeft 20s linear infinite;
  font-weight: 600;
  transition: color 20s ease;
}

/* Smooth Right → Left Scroll */
@keyframes scrollLeft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Button */
.payout-btn {
  background: #0695c1;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  transition: 0.3s;
}

.payout-btn:hover {
  background: #1dcaff;
}

.emp-form-section .form-control {
  width: 100%;
  padding: 12px 20px 15px 15px;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
  background: white;
}

.select-wrapper {
  position: relative;
}

.select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 40px;
}

.select-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 14px;
  color: #555;
}

.estate-cred-patners-list .badge {
  height: 26px !important;
  padding: 7px 10px !important;
  line-height: 14px !important;
  width: fit-content;
}


.das-pro-name {
  font-size: 20px;
  color: #111;
}