/* ===== IMAGE HOVER ===== */
.life .item img:first-child {
  width: 67%;
  object-fit: cover;
  max-width: 800px;
  transition: transform 0.5s ease;
}

.life .item img:first-child:hover {
  transform: scale(1.03);
}

/* ===== PROJECT LOGO ===== */
img.project-logo {
  width: 80px !important;
}

/* ===== ITEM LAYOUT ===== */
.life .item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 10px;
  gap: 20px;
}

/* ===== CONTENT ===== */
.life .content {
  width: 27%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;

  padding-left: 18px; /* ✨ breathing room */
}

/* ===== HEADING ===== */
.life h3 {
  font-size: 30px;         /* ✨ less harsh than 700 */
  margin: 0 0 18px;         /* ✨ cleaner spacing */
  color: #004b87;
  text-align: left;
}

/* Optional luxury divider */
.life h3::after {
  content: "";
  display: block;
  width: 58px;
  height: 2px;
  background: #004b87;
  margin-top: 10px;
}

/* ===== TEXT ===== */
.life p {
  font-size: 16px;
  margin: 6px 0;            /* ✨ improved rhythm */
  color: #6b7280;           /* ✨ softer luxury grey */
  text-align: left;
  line-height: 1.6;
}

/* Space before button */
.life .content a.learn-more {
  margin-top: 20px;
}

/* =========================================================
   OWL CAROUSEL NAVIGATION (SVG CIRCLE BUTTONS)
   ========================================================= */

.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.owl-nav button {
  background: none !important;
  border: none !important;
  pointer-events: auto;
}

/* Circle Button */
.sunil-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* SVG Arrow */
.sunil-nav-btn svg {
  width: 40px;              /* ✨ better proportion */
  height: 40px;
  stroke: #004b87;
  stroke-width: 2.4;
  fill: none;
  transition: transform 0.3s ease;
}


/* Position spacing */
.owl-prev {
  margin-left: 20px;
}

.owl-next {
  margin-right: 20px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 768px) {
  .life .item {
    flex-direction: column;
    text-align: center;
  }

  .life .item img:first-child,
  .life .content {
    width: 100%;
  }

  .life .content {
    align-items: center;
    padding-left: 0;
  }

  .life h3 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .life h3::after {
    margin: 8px auto 0;
  }

  .life p {
    font-size: 15px;
    text-align: center;
  }

  /* Smaller nav buttons */
  .sunil-nav-btn {
    width: 26px;
    height: 26px;
  }

  .sunil-nav-btn svg {
    width: 14px;
    height: 14px;
  }
}
