/* ========================================
   FABRICATION PAGE ONLY
======================================== */

/* HERO */
.hero {
  height: 350px;
  background: url('https://indova.in/assets/res/fab_hero.png') center/cover no-repeat;
  position: relative;
}
.hero-sub {
    font-size: 18px;
}
.hero-title::after {
    content: "";
    position: absolute;
    left: 0;
    top: 140px;
    width: 240px;
    height: 1px;
    background: #7194b2;
    margin-left: 20px;
}
.sub {
    font-size:14px;
    margin-top:30px;
}
.sub span {
    color:#21cb21;
}

/* overlay for readability */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.2));
}

.hero-inner {
  max-width: 1100px;
  margin: auto;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  color: white;
  max-width: 600px;
  padding:0 20px;
}
/* SECTION */
.section {
  padding: 40px 20px 0;
}
.section:last-child {
  padding-bottom:40px;  
}
.section h2 {
    margin-bottom:10px;
}

/* ========================================
   SERVICES SECTION
======================================== */

/* ========================================
   SERVICES SECTION
======================================== */

.services-section h2 {

  margin-bottom: 30px;
}

/* GRID */

.services-grid {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 24px;
}

/* CARD */

.service-card {

  background: rgba(255,255,255,0.82);

  border-radius: 14px;

  overflow: hidden;

  transition: all 0.3s ease;

  border:
    1px solid rgba(255,255,255,0.55);

  box-shadow:
    0 10px 30px rgba(0,0,0,0.05);
}

.service-card:hover {

  transform: translateY(-6px);

  box-shadow:
    0 18px 36px rgba(0,0,0,0.10);
}

/* IMAGE */

.service-image-wrap {

  position: relative;

  overflow: hidden;
}

.service-image {

  width: 100%;

  aspect-ratio: 16 / 9;

  object-fit: cover;

  display: block;

  transition: transform 0.4s ease;
}

.service-card:hover .service-image {

  transform: scale(1.03);
}

/* BODY */

.service-body {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  position: relative;
}

/* ICON */

.service-icon {
  width: 30px;
    height: 30px;
    min-width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.60);
    font-size: 18px;
    margin-top: 2px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: absolute;
    left: 5px;
    top:15px;
}

/* CONTENT */

.service-content h3 {

  font-size: 18px;

  font-weight: 600;

  color: var(--heading-primary);

  margin-bottom: 8px;

  letter-spacing: -0.02em;
  margin-left: 20px;
}

.service-content p {

  color: var(--text-primary);

  line-height: 1.7;

  font-size: 14px;
}


/* MOBILE */

@media (max-width: 768px) {

  .hero {
    height: 300px;
  }

  .services-grid {

    grid-template-columns: 1fr;
  }

}