/* css/styles.css (FULL) */

:root {
  --forest: #1f3b2c;
  --sage: #2c533b;
  --coffee: #6b4a2b;
  --gold: #c9a227;
  --sand: #f4efe4;
  --cream: #f5f1e6;
  --charcoal: #1b1b1b;
  --leaf: #5fbf6a;
  --mint: #e8f6ee;
}

body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  color: var(--charcoal);
  background:
    radial-gradient(circle at top left, rgba(201, 162, 39, 0.15), transparent 45%),
    radial-gradient(circle at 20% 80%, rgba(31, 59, 44, 0.1), transparent 50%),
    linear-gradient(180deg, #fffdf6 0%, #f2ede2 100%);
  min-height: 100vh;
  letter-spacing: 0.1px;
}

/* NAVBAR */
.navbar {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 30px rgba(31, 59, 44, 0.12);
  border-bottom: 1px solid rgba(31, 59, 44, 0.08);
}

.navbar .nav-link {
  color: var(--forest);
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: capitalize;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
  color: #8C5A11;
}

.navbar img{
   height: 40px;       /* desktop size */
  width: auto;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 80vh;
}


.hero-main {
  color: var(--sand);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
/* fs{
  margin-top: 500px;
} */
/*
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(24, 46, 34, 0.82), rgba(92, 60, 34, 0.70)),
    radial-gradient(circle at 85% 20%, rgba(201, 162, 39, 0.22), transparent 45%);
  z-index: 1;
}
*/

.hero-content {
  position: relative;
  z-index: 2;
  padding: 5.5rem 0;
}

.hero img,
.hero-img {
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

/* INNER PAGES HERO */
.page-hero {
  background:
    radial-gradient(circle at 10% 10%, rgba(95, 191, 106, 0.18), transparent 45%),
    radial-gradient(circle at 90% 20%, rgba(201, 162, 39, 0.14), transparent 45%),
    linear-gradient(180deg, #fffdf6 0%, #f2ede2 100%);
}

#enquiry-form {
  margin-top: 50px;
}

/* TITLES */
.section-title {
  color: var(--forest);
  font-weight: 600;
  letter-spacing: 0.4px;
}

/* BADGE */
.badge-custom {
  background: rgba(182, 190, 59, 0.2);
  color: #61352E;
  border: 1px solid rgba(95, 191, 106, 0.35);
  padding: 0.45rem 0.9rem;
}

.badge-1 {
  color: white;
}

/* CARDS */
/*
.card-custom {
  border: none;
  width: 80%;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f2e7 100%);
  box-shadow: 0 16px 40px rgba(31, 59, 44, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(31, 59, 44, 0.08);
}
*/

/* PRODUCTS CONTAINER */
.cont {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  max-width: 1100px;
  margin-top: -300px;
}

.contcen {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-top: -300px;
}

/* INDIVIDUAL CARD WRAPPER */
.product-card {
  flex: 1;
  max-width: 360px;
}

/* IMAGE AREA */
.product-img {
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.product-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* RESPONSIVE (MOBILE) */
@media (max-width: 768px) {
  .cont {
    flex-direction: column;
    align-items: center;
  }

  .product-card {
    max-width: 100%;
  }
}

.card-custom:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(31, 59, 44, 0.2);
}

.carddis{
  text-decoration: none;
  color: black;
}

/* PRODUCT IMAGE AREA (FIXED) */
.product-img {
  margin: 0;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

.product-img img {
  width: 100%;
  display: block;
  height: auto;
  border-radius: 8px 8px 0 0;
}

/* BUTTONS */
.btn-primary {
  background: linear-gradient(120deg, #1f5d35, var(--leaf));
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(31, 59, 44, 0.22);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.btn-primary:hover {
  background: linear-gradient(120deg, #1b4e2d, #4fb35b);
  border-color: transparent;
}

.btn-light {
  background: var(--mint);
  border-color: rgba(95, 191, 106, 0.3);
  color: #1a4c2c;
  font-weight: 500;
}

.btn-light:hover {
  background: #f4fff7;
  color: #1a4c2c;
}

/* PRODUCT BUTTON */
.product-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  text-decoration: none;
  color: #0f1010;
  background: linear-gradient(120deg, #e8f6ee, #ffffff);
  border: 1px solid rgba(31, 59, 44, 0.25);
  transition: all 0.25s ease;
  box-shadow: 0 8px 20px rgba(31, 59, 44, 0.12);
}

.product-btn:hover {
  color: #ffffff;
  background: linear-gradient(120deg, #1f5d35, #5fbf6a);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(31, 59, 44, 0.25);
}

/* FOOTER */
.footer {
  background: linear-gradient(120deg, var(--forest), #284735);
  color: var(--cream);
}

/* ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* SECTION BG */
.section-soft {
  background:
    radial-gradient(circle at 10% 10%, rgba(95, 191, 106, 0.18), transparent 45%),
    rgba(31, 59, 44, 0.03);
}


.cont1 {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  align-items: stretch;
}

/* .herop {
  margin-top:-4git00px;
  
} */

.herop {
  margin-top: -200px;
  /* padding-top: -780px; */
}


.hercon {
  margin-top: -200px;
}

.min-vh-75 {
  min-height: 75vh;
}

/*
.con1 {
  margin-top: 260px;
}
*/
.cinfo{
  margin-bottom: 800px;
}

.cb {
  margin-bottom: 500px;
}

.map {
  margin-bottom: 500px;
}

.con2 {
  margin-top: 220px;
}

.hero1 {
  position: relative;
  width: 100%;
  color: white;
  min-height: 200px;
  background-image: url("../images/img4.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: -85px;

}

.hero1 span {
  color: white;
}

.hero1::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(24, 46, 34, 0.55),
    rgba(92, 60, 34, 0.45)
  );
  z-index: 1;
}

.hero1 > * {
  position: relative;
  z-index: 2;
}

.chgsize{
  margin-bottom:-290px;
  margin-top: -50px;
}

.herosize{
  margin-bottom:-20px;
  margin-top: -50px;
}
.herosize1{
  margin-top: -380px;
}
/*
.product-card {
  display: flex;
  justify-content: center;
  align-items: center;
}
*/

/* ===== FORCE ENQUIRE BUTTON TO BOTTOM OF CARD ===== */

/* Make each card a full-height flex column */
.product-card .card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Allow card body to grow and push button down */
.product-card .card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Keep all images same height (important for equal cards) */
.product-card .product-img img {
  height: 260px;
  object-fit: cover;
}

/* Push Enquire button to bottom */
.product-card .product-btn {
  margin-top: auto;
  align-self: center;
}

.cinfo{
   margin-bottom: 250px;
}
.conmap{
  margin-bottom: -10px;
  
}
.contact{
  margin-bottom: 300px;
}

/* MOBILE */
@media (max-width: 767px) {
  .hero,
  .page-hero {
    text-align: center;
  }

  .hero-content {
    padding: 4rem 0;
  }

  .hero .btn {
    width: 70%;
  }
   .hero11 {
   position: relative;
    overflow: hidden;
    min-height: 20vh; 
  } 
}

/* ========== EXTRA MOBILE RESPONSIVE FIX (ADD AT END) ========== */
@media (max-width: 767px) {

  /* Remove negative margins that break mobile layout */
  .herop,
  .hercon,
  .cont,
  .contcen,
  .hero1,
  .chgsize,
  .herosize,
  .herosize1 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .cont .proc-1 {
    margin-top: -200px;
  }

  /* Make product grid stack properly */
  .cont1 {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    padding: 20px 12px !important;
  }

  @media (max-width: 767px) {
  .navbar img {
    height:40px;     /* smaller on mobile */
  }
}

  /* Make card full width on mobile */
  .product-card {
    max-width: 100% !important;
  }

  /* Reduce image height on mobile */
  .product-card .product-img img {
    height: 220px !important;
  }

  /* Prevent too much spacing at bottom */
  .cb,
  .map,
  .cinfo {
    margin-bottom: 0 !important;
  }
}
