@media (min-width: 600px) and (max-width: 1024px) {
  .hero-image {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    margin: 0 !important;
    display: block !important;
    object-fit: cover !important;
    box-sizing: border-box !important;
  }
}
/* Hero CSS */

/* HERO SECTION BASE */
.hero-2col {
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  display: flex;
  align-items: stretch;
  background: linear-gradient(135deg, #0b1c2d, #0f3d3e);
  color: #ffffff;
}

/* CONTAINER */
.hero-container {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

/* LEFT COLUMN */
.hero-left {
    padding-right: 25px !important;
  flex: 1 1 50%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 5vw;
}


.hero-title {
  margin-bottom: 10px;
}
.hero-title span {
  color: #00c897;
}

/* DESCRIPTION */
.hero-description {
  font-size: 1.18rem;
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: 30px;
}

/* CTA BUTTONS */
.hero-cta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.btn {
  padding: 14px 26px;
  font-size: 0.95rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease;
}

/* PRIMARY BUTTON */
.btn-primary {
  background: #00c897;
  color: #0b1c2d;
}

.btn-primary:hover {
  background: #02b388;
  transform: translateY(-2px);
}

/* OUTLINE BUTTON */
.btn-outline {
  border: 2px solid #00c897;
  color: #ffffff;
}

.btn-outline:hover {
  background: #00c897;
  color: #0b1c2d;
}

/* NOTE */
.hero-note {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* RIGHT COLUMN */
.hero-right {
    padding-left: 25px !important;
  flex: 1 1 50%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  padding: 0 5vw;
  overflow: visible;
  position: relative;
}

/* IMAGE – SAME HEIGHT AS TEXT */
.hero-image {
  width: 100%;
  height: auto;
  max-width: 1000px;
  max-height: 90vh; /* Increased from 80vh to 90vh */
  min-width: 0;
  min-height: 0;
  object-fit: contain;
  background: none;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  z-index: 0;
  position: static;
  padding: 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-2col {
    height: auto;
    min-height: 100vh;
    padding: 0 0 40px 0;
    display: block;
  }
  .hero-container {
    flex-direction: column;
    width: 100vw;
    height: auto;
    max-width: 100vw;
    padding: 0;
    gap: 0;
  }
  .hero-left, .hero-right {
    padding: 0 4vw;
    max-width: 100vw;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
  }
  .hero-right {
    justify-content: flex-start;
    align-items: center;
    margin-top: 24px;
    padding-bottom: 24px;
  }
  .hero-image {
    max-width: 90vw;
    max-height: 40vh;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    box-shadow: 0 10px 20px rgba(0,0,0,0.10);
    padding: 0;
  }
}
