.home_banner_area {
    position: relative;
    height: 60vh;
    overflow: hidden;
    color: #fff;
}


.product-container {
    position: relative;
    height: 60vh;
    overflow: hidden;
    color: #fff;
}

.home_banner_area .banner_inner .banner_content h2 {
    margin-top: 0px;
    font-size: 25px;
    font-weight: bold;
    font-family: "Heebo", sans-serif;
    line-height: 36px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.home_banner_area .banner_inner .banner_content p {
    color: #fff;
    font-family: "Roboto", sans-serif;
    margin-bottom: 35px;
    max-width: 555px;
    font-size: 16px;
}

/* =========================================
   SERVICES AREA
========================================= */

.services_area {
    padding: 10px 0;
    background: var(--bg-radial);
    color: var(--text-primary);
    text-align: center;
}

/* =========================================
   HEADER
========================================= */

.services_header .label {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 15px;
}

.services_header h2 {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.services_header p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 70px;
}

/* =========================================
   CATEGORY BUTTONS
========================================= */

#serviceCategories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-bottom: 70px;
}

#serviceCategories .category_btn {
  padding: 12px 28px;
  border-radius: 50px;
  border: 1px solid var(--accent-gold-border);
  background: var(--accent-gold-soft);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: var(--accent-gold);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.4s ease;
}

#serviceCategories .category_btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(248,182,0,0.25);
}

#serviceCategories .category_btn.active {
    background: var(--accent-gold);
    color: #a67a47;
    box-shadow: 0 20px 50px rgba(248, 182, 0, 0.45);
}

/* =========================================
   SERVICES GRID
========================================= */

#servicesGallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* =========================================
   SERVICE CARD (Horizontal Glass Layout)
========================================= */

#servicesGallery .product_card {
  display: flex;
  align-items: center;
  gap: 35px;
  padding: 35px;
  border-radius: 24px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 70px rgba(0,0,0,0.4);
  transition: 0.4s ease;
  position: relative;
}

/* Gold glow border on hover */

#servicesGallery .product_card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(248,182,0,0.4),
    transparent,
    rgba(248,182,0,0.3)
  );
  opacity: 0;
  z-index: -1;
  transition: 0.4s ease;
}

#servicesGallery .product_card:hover {
  transform: translateY(-8px);
}

#servicesGallery .product_card:hover::before {
  opacity: 1;
}

/* =========================================
   IMAGE
========================================= */

#servicesGallery .product_card img {
  width: 320px;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  flex-shrink: 0;
}

/* =========================================
   CONTENT
========================================= */

.service_content {
  text-align: left;
  flex: 1;
}

#servicesGallery .product_card h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.service_desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
  max-width: 600px;
}

/* =========================================
   ENQUIRY BUTTON
========================================= */

#servicesGallery .product_card a {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  background: var(--accent-gold-soft);
  border: 1px solid var(--accent-gold-border);
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: 0.4s ease;
}

#servicesGallery .product_card a:hover {
  background: var(--accent-gold);
  color: #bbac1f;
  box-shadow: 0 20px 50px rgba(248,182,0,0.5);
  transform: translateY(-4px);
}

/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 768px) {
  #servicesGallery .product_card {
    flex-direction: column;
    text-align: center;
  }

  .service_content {
    text-align: center;
  }

  #servicesGallery .product_card img {
    width: 100%;
    height: 220px;
  }

  .service_desc {
    max-width: 100%;
  }
}