    body{font-family: 'Poppins', sans-serif;}
    .hero{
      background:url('https://images.unsplash.com/photo-1558828240-0f69b8d1f3c1?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
      height:100vh;
      position:relative;
      display:flex;
      align-items:center;
      color:#fff;
      text-shadow:0 3px 10px rgba(0,0,0,0.6);
    }
    .hero::after{
      content:'';
      position:absolute;
      inset:0;
      background:rgba(0,0,0,0.5);
    }
    .hero-content{position:relative; z-index:2;}
    .section-title{text-align:center; margin-bottom:60px; font-weight:700;}
    .service-box,.product-box{
      transition:all .3s ease; border-radius:10px;
    }
    .service-box:hover,.product-box:hover{
      transform:translateY(-8px);
      box-shadow:0 10px 25px rgba(0,0,0,0.1);
    }
    .gallery img{border-radius:10px; object-fit:cover;}
    footer{background:#1a1a1a; color:#ddd; padding:50px 0;}
    .enquiry-section{background:#fafafa; padding:70px 0;}
      .gallery-img-wrapper {
    width: 100%;
    height: 280px;   /* Adjust height as you prefer */
    overflow: hidden;
    border-radius: 10px;
  }

  .gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ensures equal height & crop */
  }
 /* Force same height for image and form */
  .object-cover {
    object-fit: cover;
  }

  .left-image-wrapper {
    height: 100%;
  }

  /* Form styling */
  .enquiry-card {
    border-radius: 15px;
    transition: 0.3s ease-in-out;
  }
  .enquiry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  }

  /* Input styling */
  .custom-input {
    height: 48px;
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: 0.3s;
  }
  .custom-input:focus {
    border-color: #ffb300;
    box-shadow: 0 0 5px rgba(255, 179, 0, 0.4);
  }

  /* Button effect */
  .custom-btn {
    border-radius: 30px;
    font-size: 1.1rem;
    transition: 0.3s;
  }
  .custom-btn:hover {
    background-color: #e69a00;
    transform: scale(1.03);
  }
 /* Full-height card image (col 1 & 3) */
  .card-img-wrapper {
    width: 100%;
    height: 260px;
    overflow: hidden;
    border-radius: 10px;
  }

  /* Half-height card images (col 2) */
  .card-img-wrapper-small {
    width: 100%;
    height: 130px; /* Half of 260px */
    overflow: hidden;
    border-radius: 10px;
  }

  .card-img-wrapper img,
  .card-img-wrapper-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Equal height full cards */
  .equal-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  /* Equal height half cards */
  .half-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .service-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  height: 100%;                /* equal height */
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;

  transition: all 0.35s ease-in-out;
  transform: translateY(20px);
  opacity: 0;
}

/* Fade-up animation */
.service-box.animate {
  transform: translateY(0);
  opacity: 1;
}

/* Hover effect */
.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Section Title styling */
.section-title {
  font-weight: 700;
  font-size: 32px;
  position: relative;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #ff9800;
  display: block;
  margin: 10px auto 0;
  border-radius: 10px;
}
.div1{
    background-color: rgb(81, 252, 81);
}
.div2{
    background-color: rgb(239, 77, 77);
}
.div3{
    background-color: rgb(245, 245, 90);
}
.div4{
    background-color: rgb(106, 106, 249);
}
#enquiryModal .form-control {
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 1rem;
}

#enquiryModal textarea {
  resize: none;
}

#enquiryModal .modal-content {
  box-shadow: 0px 8px 35px rgba(0, 0, 0, 0.25);
}

#enquiryModal .form-label {
  font-size: 0.95rem;
  color: #444;
}

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .card-img-wrapper {
      height: 200px;
    }
    .card-img-wrapper-small {
      height: 120px;
    }
  }
  /* Fix height collapse on mobile */
  @media (max-width: 768px) {
    .left-image-wrapper img {
      height: 250px !important;
    }
  }
  /* Mobile Responsive Height */
  @media (max-width: 768px) {
    .gallery-img-wrapper {
      height: 180px;
    }
  }
