@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700;900&display=swap');

/* Container */
.why-cio-mogul {
  max-width: 1100px;
  margin: 60px auto; /* reduced vertical spacing */
  padding: 40px 25px; /* compact padding */
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
/*   box-shadow: 0 10px 30px rgba(0,0,0,0.08); */
  text-align: center;
  font-family: 'Merriweather', serif;
}

/* Section Heading */
.why-cio-mogul h2 {
  font-size: 2.4rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #0b0b0b;
  letter-spacing: 1px;
  margin-bottom: 40px;
  position: relative;
}

.heading-underline {
  display: block;
  width: 100px;
  height: 3px;
  background: #FF4D4D;
  margin: 16px auto 0;
  border-radius: 3px;
}

/* Points container */
.cio-points {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Individual point box */
.cio-point {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  padding: 20px 20px;
  border-radius: 14px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.cio-point:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* Circle Icon */
.icon-box {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
background: #FF4D4D;
	/*   background: radial-gradient(circle at top left, #FF4D4D, #ff7a33); */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  transition: all 0.3s ease;
}

/* Content */
.point-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0b0b0b;
  margin-bottom: 8px;
  text-align: left;
}

.point-content p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
  margin: 0;
  text-align: left;
}

/* =========================
   RESPONSIVE STYLES
========================= */
@media (max-width: 1024px) {
  .why-cio-mogul {
    padding: 30px 20px;
  }

  .why-cio-mogul h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }

  .cio-point {
    padding: 18px 15px;
  }

  .cio-points {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .cio-point {
    flex-direction: column;
    text-align: center;
    padding: 18px 15px;
    gap: 15px;
  }

  .icon-box {
    width: 90px;
    height: 90px;
    font-size: 34px;
    margin: 0 auto 12px auto;
  }

  .point-content h3,
  .point-content p {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .why-cio-mogul {
    padding: 20px 15px;
  }

  .icon-box {
    width: 100px;
    height: 100px;
    font-size: 36px;
  }
}

