.features-section {
  padding: 40px 0;

  text-align: center;
}

.feature-item {
  background: white;

  padding: 60px 30px 30px;

  border-radius: 20px; /* Increased for a smoother look */

  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);

  position: relative;

  text-align: center;

  margin-top: 40px; /* Push down for curved effect */
}

.feature-icon-container {
  width: 80px;

  height: 80px;

  background: white; /* Same as the box background */

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  position: absolute;

  top: -40px;

  left: 50%;

  transform: translateX(-50%);

  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 50px;

  height: 50px;
}

.footer-section {
  background-color: #770a13; /* Light blue background */

  padding: 40px 0;

  font-family: "Poppins", sans-serif;

  color: white;
}

.footer-title {
  font-size: 20px;

  font-weight: 800;

  color: white; /* Dark blue */

  margin-bottom: 15px;

  position: relative;

  display: inline-block;
}

.footer-title::after {
  content: "";

  display: block;

  width: 50px;

  height: 2px;

  background: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);

  margin-top: 5px;
}

.footer-list {
  list-style: none;

  padding: 0;

  margin: 0;

  color: white;
}

.footer-list li {
  margin-bottom: 8px;
}

.footer-list li a {
  text-decoration: none;

  color: white;

  font-size: 16px;

  transition: color 0.3s;
}

.footer-list li a:hover {
  color: rgb(20, 204, 75); /* Dark blue */

  text-decoration: underline;

  font-weight: bold;
}

.social-icons {
  display: flex;

  gap: 15px;

  margin-top: 10px;
}

.social-icons .social-link img {
  width: 30px;

  height: 30px;

  transition: transform 0.3s ease;
}

.social-icons .social-link:hover img {
  transform: scale(1.2);
}

a {
  color: white;
  text-decoration: none !important;
}

/* Center text on mobile only */
@media (max-width: 767.98px) {
  .footer-section {
    text-align: center;
  }
  .footer-title {
    margin-top: 10px;
  }
  .footer-title::after {
    margin-left: auto;
    margin-right: auto;
  }
  .social-icons {
    justify-content: center;
  }
}
