@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");

/* ─── CSS Variables ─────────────────────────────────────── */
:root {
  --cream: #f5f2eb;
  --beige: #dfd0b8;
  --tan: #c4a882;
  --sage: #4b6fb7;
  --sage-dk: #4b6fb7;
  --white: #fffdf8;
  --charcoal: #2c2c2c;
  --muted: #7a7266;
  --font-body: "Jost", sans-serif;
}

/* ─── Reset & Base ──────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
}
.logo {
  width: 100px;
  height: 100%;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  font-weight: 400;
}
/* Breadcrumb */
.breadcrumb-banner {
  position: relative;
  height: 300px;
  background: url("img/invisible-grill.png") center/cover no-repeat;
}

/* Overlay */
.breadcrumb-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6); /* adjust darkness */
}

/* Content above overlay */
.breadcrumb-banner .container {
  position: relative;
  z-index: 2;
}

/* Breadcrumb style tweak */
.breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
}
/* Breadcrumb ends */
/* vision and mission */
.vision-mission {
  /* background: var(--cream); */
}

/* Common Card */
.vm-card {
  border-radius: 16px;
  transition: 0.3s ease;
  color: #fff;
  height: 100%;
}

/* Vision - beige tone */
.vision-card {
  background: #cbbda7;
  color: #2b2b2b;
}

/* Mission - green tone */
.mission-card {
  background: #4b6fb7;
}

/* Hover effect */
.vm-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Heading style */
.vm-card h3 {
  letter-spacing: 0.5px;
}

/* Text */
.vm-card p {
  font-size: 15px;
  line-height: 1.6;
}
.vm-icon i {
  width: 50px;
  font-size: 28px;
  padding: 10px;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  height: 50px;
}

/* Vision icon */
.vision-card .vm-icon i {
  color: #2b2b2b;
  background: rgba(0, 0, 0, 0.08);
}

/* Mission icon */
.mission-card .vm-icon i {
  color: #fff;
}

/* Optional hover effect */
.vm-card:hover .vm-icon i {
  transform: scale(1.1);
  transition: 0.3s;
}
/* vision and mission ends */
.about-choose-us {
  background: var(--white);
  margin: 0px !important;
}
/* ─── NAVBAR ────────────────────────────────────────────── */
.navbar {
  background-color: var(--white);
  border-bottom: 1px solid var(--beige);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 1050;
  transition: box-shadow 0.3s;
}
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}
.navbar-brand {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--charcoal) !important;
  letter-spacing: 2px;
}
.navbar-brand span {
  color: var(--sage);
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--charcoal) !important;
  padding: 6px 14px !important;
  transition: color 0.25s;
}
.nav-link:hover,
.nav-link.active {
  color: var(--sage) !important;
}

.navbar-nav .btn-nav {
  background: var(--sage);
  color: #fff !important;
  border-radius: 0;
  padding: 8px 22px !important;
  letter-spacing: 1.5px;
  font-size: 0.78rem;
  transition: background 0.25s;
  display: inline-block;
}
.navbar-nav .btn-nav:hover {
  background: var(--sage-dk);
}

.navbar-toggler {
  border: none;
  padding: 4px;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%234E8B6A' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ─── HERO SLIDER ───────────────────────────────────────── */
#heroCarousel {
  position: relative;
}

.carousel-item {
  height: 92vh;
  min-height: 560px;
  position: relative;
  overflow: hidden;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 7s ease;
}
.carousel-item.active .slide-bg {
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(245, 242, 235, 0.82) 0%,
    rgba(245, 242, 235, 0.1) 60%
  );
}

.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.slide-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage);
  border-bottom: 1px solid var(--sage);
  padding-bottom: 4px;
  margin-bottom: 20px;
}

.slide-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 22px;
}
.slide-title em {
  color: var(--sage);
  font-style: italic;
}

.slide-desc {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 420px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.btn-primary-sage {
  background: var(--sage);
  color: #fff;
  border: none;
  border-radius: 0;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition:
    background 0.25s,
    transform 0.2s;
}
.btn-primary-sage:hover {
  background: var(--sage-dk);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-sage {
  background: transparent;
  color: var(--sage);
  border: 1.5px solid var(--sage);
  border-radius: 0;
  padding: 13px 32px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition:
    background 0.25s,
    color 0.25s;
}
.btn-outline-sage:hover {
  background: var(--sage);
  color: #fff;
}

.carousel-indicators [data-bs-target] {
  width: 36px;
  height: 2px;
  background: var(--tan);
  border: none;
  border-radius: 0;
  opacity: 0.5;
  transition:
    width 0.3s,
    opacity 0.3s;
}
.carousel-indicators .active {
  width: 60px;
  opacity: 1;
  background: var(--sage);
}

.carousel-control-prev,
.carousel-control-next {
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 24px;
  opacity: 1;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1) sepia(1) saturate(2) hue-rotate(100deg) brightness(0.6);
  width: 16px;
  height: 16px;
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--sage);
}
.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  filter: brightness(10);
}

/* ─── SECTION SHARED ────────────────────────────────────── */

.section-tag {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
}
.section-title em {
  font-style: italic;
  color: var(--sage);
}

.divider-leaf {
  display: inline-block;
  width: 48px;
  height: 2px;
  background: var(--sage);
  margin: 20px 0 28px;
}

/* ─── ABOUT ─────────────────────────────────────────────── */
#about {
  background: var(--white);
}

.about-img-wrap {
  position: relative;
}
.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
.about-img-badge {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 160px;
  height: 160px;
  background: var(--sage);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 2;
}
.about-img-badge .num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  line-height: 1;
}
.about-img-badge .lbl {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.85;
}

.about-body {
  padding-left: 40px;
}

.about-stat-row {
  display: flex;
  gap: 40px;
  margin: 32px 0;
}
.about-stat {
  border-left: 2px solid var(--beige);
  padding-left: 18px;
}
.about-stat .n {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--sage);
  line-height: 1;
}
.about-stat .l {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 1px;
  color: var(--muted);
  text-transform: uppercase;
}

/* ─── service CHOOSE US ─────────────────────────────────────── */
#service {
  background: var(--cream);
}

.service-card {
  background: var(--white);
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden; /* important */
  height: 100%;
}

.service-card img {
  width: 100%;
  height: 220px; /* FIXED height */
  object-fit: cover;
}

.service-card h5 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--charcoal);
  padding: 12px 14px 0;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  padding: 0 14px 20px;

  flex-grow: 1; /* keeps equal height */
}

.service-card:hover {
  border-color: var(--sage);
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(78, 139, 106, 0.12);
}
/* choose us */
.choose-us {
  margin: 0px 20px;
  padding-bottom: 30px;
  padding-top: 0px;
}

.choose-row-2 {
  /* border-bottom: 1px solid grey; */
  margin-top: 30px;
  padding-bottom: 20px;
}
.choose-row-3 {
  margin-top: 50px;
}

.choose-img-1 {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 10px;
}
.choose-img-2 {
  width: 280px;
  height: 320px;
  object-fit: cover;
  margin-top: 30px;
  border-radius: 10px;
}
.choose-us-img {
  border-radius: 20px;
}
.choose-img-3 {
  width: 100%;
  height: 600px;
  border-radius: 10px;
  object-fit: cover;
  margin-top: 30px;
  margin-left: 50px;
}
.choose-single {
  width: 550px;
  height: 600px;
  object-fit: cover;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 20px;
}

.feature-item p {
  margin: 0;
  font-size: 15px;
}

.badge-custom span {
  color: var(--sage-dk);
}
.icon-circle {
  width: 28px;
  height: 28px;
  background: #4b6fb7;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}
/* choose us ends */
footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.65);
  padding: 80px 0 0;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 2rem;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 16px;
  display: block;
}
.footer-brand span {
  color: var(--tan);
}
.footer-desc {
  font-size: 0.88rem;
  line-height: 1.85;
  margin-bottom: 28px;
  max-width: 280px;
}

.footer-social a:hover {
  border-color: var(--tan);
  color: #fff;
  background: var(--sage);
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 24px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-text {
  padding-bottom: 12px;
  font-size: 0.88rem;
}
.footer-text a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #4b6fb7;
}

.footer-newsletter-input {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
  margin-top: 16px;
}
.footer-newsletter-input input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 16px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
}
.footer-newsletter-input input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.footer-newsletter-input button {
  background: var(--sage);
  border: none;
  padding: 12px 20px;
  color: #fff;
  cursor: pointer;
  transition: background 0.25s;
}
.footer-newsletter-input button:hover {
  background: var(--sage-dk);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}
.footer-bottom a {
  color: #4b6fb7;
  text-decoration: none;
}

/* ─── SCROLL ANIMATIONS ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.15s;
}
.reveal-delay-2 {
  transition-delay: 0.3s;
}
.reveal-delay-3 {
  transition-delay: 0.45s;
}

/* Main About Us  */
.about-us {
  background: #f5f2eb;
}

/* Image */
.about-img img {
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Tag */
.about-tag {
  display: inline-block;
  padding: 6px 14px;
  background: #cbbda7;
  color: #2b2b2b;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

/* Heading */
.about-content h2 {
  color: #2b2b2b;
}

/* Text */
.about-content p {
  color: #6b6b6b;
  font-size: 15px;
  line-height: 1.6;
}

/* Button */
.about-btn {
  background: #4b6fb7;
  color: #fff;
  border-radius: 30px;
  transition: 0.3s ease;
}

.about-btn:hover {
  background: #4b6fb7;
  color: #fff;
}
/* Main About Us Ends */

/* What We Do */
.about-why {
  background: #f5f2eb;
}

/* Tag */
.about-why-tag {
  display: inline-block;
  background: #cbbda7;
  color: #2b2b2b;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
}

/* Description */
.about-why-desc {
  max-width: 600px;
  color: #6b6b6b;
  font-size: 15px;
}

/* Image */
.about-why-image img {
  max-height: 350px;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Card */
.about-why-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #eee;
  transition: 0.3s ease;
}

/* Icons */
.about-why-card i {
  font-size: 26px;
  color: #4b6fb7;
  background: #eef3ef;
  padding: 10px;
  border-radius: 50%;
  transition: 0.3s;
  width: 50px;
  height: 50px;
}

/* Hover */
.about-why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.about-why-card:hover i {
  transform: scale(1.15);
}

/* Text */
.about-why-card p {
  font-size: 14px;
  color: #6b6b6b;
}
/* What We Do ends */

/* Services Page */
.services-page {
  background: #f5f5f3;
}

/* Card */
.service-card-2 {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: 0.3s ease;
}

/* Image */
.service-img {
  height: 200px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

/* Zoom effect */
.service-card:hover .service-img img {
  transform: scale(1.08);
}

/* Icons */
.service-card-2 i {
  width: 50px;
  font-size: 24px;
  color: #4b6fb7;
  background: #eef3ef;
  padding: 12px;
  border-radius: 50%;
  transition: 0.3s;
  height: 50px;
}

/* Hover */
.service-card-2:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.service-card-2:hover i {
  transform: scale(1.15);
}

/* Text */
.service-card-2 p {
  font-size: 14px;
  color: #6b6b6b;
}
/* Services Page Ends */

/* Gallery */

.gallery-page {
  background: #f5f5f3;
}

.gallery-item {
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: 0.4s ease;
}

/* Hover effect */
.gallery-item:hover img {
  transform: scale(1.08);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 12px;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

/* Contact Us  */
.contact-advanced {
  background: #f5f5f3;
}

/* Tag */
.contact-tag {
  background: #cbbda7;
  color: #2b2b2b;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
}

/* Desc */
.contact-desc {
  max-width: 600px;
  color: #6b6b6b;
  font-size: 15px;
}

/* Left Box */
.contact-box {
  background: #4b6fb7;
  color: #fff;
  border-radius: 20px;
}

/* Contact Item */
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.contact-item i {
  background: rgba(255, 255, 255, 0.2);
  padding: 8px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
}

/* Form Box */
.contact-form-box {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #eee;
}

/* Inputs */
.form-control {
  border-radius: 12px;
  border: 1px solid #ddd;
  padding: 10px;
}

.form-control:focus {
  box-shadow: none;
  border-color: #4b6fb7;
}

/* Button */
.contact-btn {
  background: #4b6fb7;
  color: #fff;
  border-radius: 30px;
  padding: 10px 20px;
  transition: 0.3s;
}
section {
  padding: 50px 0px;
}
.contact-btn:hover {
  background: #4b6fb7;
}

/* Map */
.map-box iframe {
  border-radius: 20px;
}
.footer-logo {
  width: 200px;
}
/* Contact Us Ends */
/* Gallery Ends  */
/* ─── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 991px) {
  .about-body {
    padding-left: 0;
    margin-top: 60px;
  }
  .about-img-badge {
    bottom: -20px;
    right: -10px;
    width: 130px;
    height: 130px;
  }
  .choose-us-img {
    margin-top: 30px;
  }
  .carousel-control-prev,
  .carousel-control-next {
    /* z-index: 999; */
    display: none;
  }
  .btn-nav {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .slide-title {
    font-size: 40px;
  }
  section {
    padding: 40px 0px;
  }
  .carousel-item {
    height: 70vh;
  }
  .about-stat-row {
    gap: 24px;
  }
  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .navbar-brand {
    font-size: 1.5rem;
  }
}
@media (max-width: 320px) {
  .about-stat-row {
    flex-direction: column;
  }
  .about-stat {
    border-left: none;
    border-bottom: 2px solid var(--beige);
  }
}
