/* ─── Company Overview Section ─── */
.overview-section {
  position: relative;
  background-color: rgba(0, 43, 91, 0.5);
  padding: 80px 20px;
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0, 217, 255, 0.1);
  backdrop-filter: blur(6px);
  margin-bottom: 40px;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Centered title */
.overview-section h2 {
  font-size: 2.8rem;
  color: #00d4ff;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 6px rgba(0, 212, 255, 0.5);
  position: relative;
}
.overview-section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #00d4ff;
  margin: 8px auto 0;
  border-radius: 2px;
}

/* Layout wrapper */
.overview-content {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
  flex-wrap: wrap;
}

/* Image wrapper - nearly full width */
.overview-image-wrapper {
  flex-basis: 100%;
  overflow: hidden;
  border-radius: 12px;
  margin: 20px 0;
}

/* Image styling with glowing shadow effect */
.overview-image {
  width: 100vw;
  height: 600px;
  object-fit: cover;
  display: block;
  border-radius: 12px; /* <-- Added corner radius here */

  /* Always-glowing shadow */
  box-shadow:
    0 0 30px rgba(0, 217, 255, 0.5),
    0 0 60px rgba(0, 217, 255, 0.3),
    0 0 100px rgba(0, 217, 255, 0.2);
}

/* Text block */
.overview-text {
  flex: 1;
}
.overview-section p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #dff6ff;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  .overview-section {
    padding: 50px 15px;
    margin-bottom: 30px;
  }

  .overview-section h2 {
    font-size: 2.2rem;
  }

  .overview-section p {
    font-size: 1rem;
  }

  .overview-image {
    height: 200px;
  }
}
