*{
    margin: 0;
    padding: 0;
}
:root {
  --primary: #96ba2c;
  --secondary: #9d9e9e;
  --light: #f6f7f8;
  --dark: #1a2a36;
  --primary-light: #c8e07a; /* Beautiful light shade of #96ba2c */
  --primary-lighter: #e8f5c8; /* Even softer for subtle hover */
}
.navbar-expand-lg .navbar-collapse {
  margin-right: 5rem;
}
th,
td {
  font-size: 1.1rem;
}
th {
  font-weight: 500;
}
/* Preloader Full Screen */
.circular-preloader-wrapper {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s;
}

.circular-preloader-wrapper.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.circular-preloader {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.circular-preloader__wrapper {
  position: relative;
  width: 280px;
  height: 280px;
}

.circular-preloader__ring {
  transform: rotate(-90deg);
  width: 280px;
  height: 280px;
}

.circular-preloader__bg,
.circular-preloader__progress {
  fill: none;
  stroke-width: 5;
  stroke-linecap: round;
}

.circular-preloader__bg {
  stroke: #e0e0e0;
}

.circular-preloader__progress {
  stroke: var(--primary);
  stroke-dasharray: 806;
  stroke-dashoffset: 806;
  transition: stroke-dashoffset 0.1s linear;
}

.circular-preloader__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary);
  pointer-events: none;
}

.preloader__loading-text {
  margin-top: 30px;
  font-size: 1.4rem;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 3px;
}

/* Optional: Small pulse animation on text */
@keyframes pulse {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

.preloader__loading-text {
  animation: pulse 1.8s infinite;
}

/* navbar background */
.bg-grey {
  background-color: rgba(31, 25, 20, 0.5);
}
/* .position-relative {
    top: -90px;
} */

/* Only this tiny block for smooth hover (no layout CSS) */
.contact-card {
  transition: all 0.35s ease;
  cursor: default;
}
.contact-card:hover {
  transform: scale(1.03);
}
.contact-card:hover i {
  color: #6c891b !important; /* slightly darker shade on hover */
}
.py-6 {
  padding: 4rem !important;
}

/* Pull the entire hero section up to overlap fixed navbar – ONLY on desktop */
.header-hero-wrapper {
  position: relative;
 
}

/* Remove the offset on mobile (≤991px) */
@media (max-width: 991.98px) {
  .header-hero-wrapper {
    position: static; /* resets relative positioning */
    top: 0;
    margin-bottom: 0;
  }
}

/* Ensure header background image shows fully on small screens (prevent important chart cropping) */
@media (max-width: 768px) {
  .page-header.header-hero-wrapper {
    /* background-size: contain !important; */
    background-position: center !important;
    min-height: auto !important;
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
}

/* Header map styles: make embedded map behave like the header banner */
.header-map {
  position: relative;
  overflow: hidden;
  min-height: 60vh; /* increased per request */
  margin-top: -5%; /* pull header up so top part is not visible behind navbar */
}

.header-map-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.header-map-overlay {
  position: relative; /* sits above the iframe */
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none; /* allow interacting with map below if needed; remove if you want overlay to catch events */
}

/* subtle dark overlay to keep white title readable */
.header-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.45), rgba(0,0,0,0.15));
  z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .header-map {
    /* min-height: 30vh; */
      margin-top: 0%;
  }
  .header-map-overlay h1 {
    font-size: 1.75rem;
  }
}

/* Use a laptop-specific banner image between common laptop widths
   (override inline style with !important) */
@media (min-width: 992px) and (max-width: 1400px) {
  /* Apply laptop-specific completed image ONLY for completed.php (header-completed) */
  /* .page-header.header-hero-wrapper.header-completed {
    background-image: url('../img/completed-laptop.png') !important;
    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
  } */
}
.bg-light {
  background-attachment: var(--secondary) !important;
}

/* Image animation */
/* .imgAnimation {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: clip-path 3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.imgAnimation.aos-animate {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
} */

/* projects */

.project-card {
  position: relative;
  height: 550px;
  border-radius: 20px;
  overflow: hidden;
  cursor: none;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); /* Smooth */
}

.project-card:hover {
  /* transform: translateY(-8px); */
  transform: translateY(-5px) scale(1.02); /* smooth lift + scale */
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card:hover img {
  transform: scale(1.05);
}

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.6) 70%,
    transparent 100%
  );
  padding: 40px 30px;
  transition: all 0.4s ease;
}

.project-card:hover .project-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.8) 80%,
    transparent 100%
  );
}

.project-title {
  color: white;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.project-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary);
  transition: width 0.4s ease;
}

.project-card:hover .project-title::after {
  width: 100%;
}

.project-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.project-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: gap 0.3s ease;
  gap: 8px;
}

.project-link:hover {
  gap: 15px;
  color: var(--primary);
}

.custom-cursor {
  position: fixed;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.custom-cursor.active {
  opacity: 1;
}

@media (max-width: 768px) {
  .project-card {
    height: 400px;
  }
  .project-title {
    font-size: 1.5rem;
  }
  .custom-cursor {
    display: none;
  }
}

/* About Section */
.about-section {
  position: relative;
  overflow: hidden;
}

.about-image-wrapper {
  position: relative;
  height: 90vh;
  min-height: 600px;
  overflow: hidden;
}
.about-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-wrapper:hover .about-main-image {
  transform: scale(1.05);
}

.about-content {
  padding: 10px 20rem 60px 3rem;
}
@media (max-width: 1440px) {
  .about-content {
    padding: 10px 5rem 60px 3rem;
  }
}
@media (max-width: 767px) {
  .about-content {
    padding: 0;
  }
}

.decorative-pattern {
  position: absolute;
  top: 50px;
  right: 50px;
  width: 150px;
  height: 150px;
  opacity: 0.07;
}

.decorative-pattern::before,
.decorative-pattern::after {
  content: "";
  position: absolute;
  background: var(--primary);
}

.decorative-pattern::before {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  top: 0;
  left: 0;
}

.decorative-pattern::after {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  bottom: 0;
  right: 0;
}

@media (max-width: 991px) {
  .about-image-wrapper {
    min-height: 500px;
  }

  .about-content {
    padding: 60px 30px;
  }
}
.full-height-img {
  height: 100%;
}

.full-height-img .about-main-image {
  width: 100%;
  height: 85%;
  object-fit: cover;
  margin-left: 2rem;
}
/* Mobile screens */
@media (max-width: 767.98px) {
  .full-height-img .about-main-image {
    margin-left: 0;
  }
}

/* Your custom styles - perfect as is */
.glightbox-clean .gprev,
.glightbox-clean .gnext,
.glightbox-clean .gclose {
  background: rgba(0, 0, 0, 0.6) !important;
  border-radius: 50%;
  padding: 12px;
  width: 48px;
  height: 48px;
}

.glightbox-clean .gprev svg,
.glightbox-clean .gnext svg,
.glightbox-clean .gclose svg {
  fill: #96ba2c !important;
  width: 22px !important;
  height: 22px !important;
}

.glightbox-clean .gprev:hover,
.glightbox-clean .gnext:hover,
.glightbox-clean .gclose:hover {
  background: rgba(150, 186, 44, 0.9) !important;
}

.glightbox-clean .gprev:hover svg,
.glightbox-clean .gnext:hover svg,
.glightbox-clean .gclose:hover svg {
  fill: #fff !important;
}

/* Tabs css */
.nav-pills .nav-link {
  color: #444;
  font-weight: 400;
  border-radius: 10px;
  padding: 0.8rem 1.5rem;
  margin: 0.3rem;
  transition: all 0.3s ease;
  background: white;
  font-size: 1.3rem;
  border: 2px solid transparent;
}

.nav-pills .nav-link:hover {
  background: var(--light-bg);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.nav-pills .nav-link.active {
  background: var(--primary) !important;
  color: white !important;
  box-shadow: 0 8px 20px rgba(150, 186, 44, 0.4);
}

.content-card {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
}
.content-card p {
  font-size: 1.3rem;
}

.feature-item {
  padding: 1.5rem;
  background: var(--light-bg);
  border-radius: 12px;
  margin-bottom: 1rem;
  border-left: 4px solid var(--primary);
  transition: all 0.3s ease;
}
.feature-item p {
  font-size: 1.3rem;
}

.feature-item:hover {
  transform: translateX(8px);
  box-shadow: 0 5px 20px rgba(150, 186, 44, 0.2);
}

.spec-box {
  background: linear-gradient(135deg, #ffffff 0%, var(--light-bg) 100%);
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  border: 1px solid #e0f2d5;
  transition: all 0.3s ease;
}

.spec-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(150, 186, 44, 0.15);
}

.spec-title {
  color: var(--primary);
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-box {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.3s ease;
}

.contact-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(150, 186, 44, 0.1);
}

.icon-circle {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}

.btn-call {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  border: none;
  border-radius: 50px;
  padding: 0.8rem 2.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-call:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(150, 186, 44, 0.4);
}

.btn-success {
  background: linear-gradient(135deg, #25d366 0%, #1fa855 100%);
  border: none;
  border-radius: 50px;
  padding: 1rem 3rem;
  font-weight: 600;
}

.landmark-item {
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.1rem;
}

.landmark-badge {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 1rem;
  flex-shrink: 0;
  font-size: 1rem;
}

.map-placeholder {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  height: 450px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 1.2rem;
  box-shadow: inset 0 5px 20px rgba(0, 0, 0, 0.1);
}

.section-title {
  color: #2c3e50;
  font-weight: 700;
  margin-bottom: 2.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  border-radius: 2px;
}

.icon-circle i {
  color: white !important;
  font-size: 2.2rem;
}

.text-parrot {
  color: var(--primary);
}
/* Main hover effect on all form inputs */
#brochureForm .form-control:hover,
#brochureForm .form-control:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 0.1rem rgba(150, 186, 44, 0.1) !important; /* Soft glow */

  transition: all 0.3s ease;
}

/* Optional: Make placeholder slightly visible on hover */
#brochureForm .form-control:hover::placeholder {
  color: var(--primary) !important;
  opacity: 1;
}

/* Floating Icons Container */
#floatingActions {
  position: fixed;
  bottom: 6.5rem;
  right: 2.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  pointer-events: none;
}

#floatingActions > * {
  pointer-events: auto;
}

/* Full-circle SVG buttons */
.fab-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.28);
  transition: all 0.33s ease;
  display: block;
}

.fab-btn img,
.wa-btn-toggle img {
  width: 50px;
  height: 50px;
  display: block;
  padding: 0 !important;
  margin: 0 !important;
}

/* BACK TO TOP BTN */
.btn.btn-primary,
.btn.btn-outline-primary:hover {
  color: #ffffff;
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

/* WhatsApp Widget Popup */
.wa-popup {
  position: fixed;
  bottom: 13.5rem;
  right: 1.5rem;
  width: 260px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  transform: translateY(15px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
  z-index: 99999;
}

.wa-popup.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.wa-popup-header {
  background: #4bae4f;
  color: #fff;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 14px 14px 0 0;
}
.wa-popup-btn:hover {
  color: #ffffff;
}

.wa-popup-header img {
  width: 22px;
}

.wa-close {
  margin-left: auto;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.wa-popup-body {
  padding: 15px;
}

.wa-popup-btn {
  background: #4bae4f;
  color: #fff;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 8px;
  display: block;
  text-align: center;
  font-weight: 600;
}

/* WhatsApp Toggle Icon */
.wa-btn-toggle {
  width: 55px;
  height: 55px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 99999;
}

/* Responsive */
@media (max-width: 576px) {
  #floatingActions {
    bottom: 6.5rem;
    right: 2.5rem;
    gap: 14px;
  }

  .fab-btn {
    width: 46px;
    height: 46px;
  }

  .wa-popup {
    bottom: 12rem; /* adjusts correctly for mobile */
    width: 230px;
  }
}


/* Project Finder */
/* Change font family for select & options */
.project-finder-section select,
.project-finder-section select option {
    font-family: "Jost", serif !important;
}



