.safety-section {
  width: 100%;
  padding: 100px 0;
  background: linear-gradient(135deg, #cce1ca 0%, #edf4ff 100%);
  position: relative;
  overflow: hidden;
}

/* LIGHT BACKGROUND EFFECT */
.safety-section::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(13, 59, 102, 0.08);
  border-radius: 50%;
  top: -120px;
  right: -120px;
}

.safety-section::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(34, 197, 94, 0.08);
  border-radius: 50%;
  bottom: -100px;
  left: -100px;
}

.wrapper {
  max-width: 1250px;
  margin: auto;
  padding: 0 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  position: relative;
  z-index: 2;
}

/* IMAGE SIDE */
.image-side {
  flex: 1;
  position: relative;
}

/* BORDER DESIGN */
.image-side::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 5px solid #16a34a;
  top: 20px;
  left: 20px;
  border-radius: 30px;
  z-index: -1;
  transition: 0.4s ease;
}

.image-side img {
  width: 100%;
  display: block;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  transition: 0.5s ease;
  border: 6px solid #fff;
}

/* HOVER EFFECT */
.image-side:hover img {
  transform: scale(1.03);
}

.image-side:hover::before {
  top: 12px;
  left: 12px;
}

/* CONTENT SIDE */
.content-side {
  flex: 1;
}

.content-side span {
  display: inline-block;
  padding: 8px 18px;
  background: #0d3b66;
  color: #fff;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.content-side h2 {
  font-size: 46px;
  line-height: 1.3;
  color: #0d3b66;
  margin-bottom: 25px;
  font-weight: 700;
}

.content-side p {
  font-size: 17px;
  line-height: 1.9;
  color: black;
  margin-bottom: 18px;
}

/* FEATURES */
.feature-list {
  margin-top: 25px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.feature-icon {
  width: 42px;
  height: 42px;
  background: #f4f6f5;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.feature-item h4 {
  font-size: 18px;
  color: #0d3b66;
  margin-bottom: 4px;
}

.feature-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

/* BUTTON */
.btn {
  display: inline-block;
  margin-top: 30px;
  padding: 15px 34px;
  background: linear-gradient(135deg, #0d0e5b, #165d9c);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: 0.4s ease;
  box-shadow: 0 10px 25px rgba(13,59,102,0.2);
}

.btn:hover {
  background: linear-gradient(135deg, #5da075, #15803d);
  transform: translateY(-4px);
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .wrapper {
    flex-direction: column;
    gap: 50px;
  }

  .content-side h2 {
    font-size: 36px;
  }

  .image-side::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .safety-section {
    padding: 70px 0;
  }

  .wrapper {
    padding: 0 18px;
  }

  .content-side h2 {
    font-size: 30px;
  }

  .content-side p {
    font-size: 15px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}



/* .hero-title{
  color: #ff4d4d; 
  font-weight: 600;
} */

