/*-- Form Error */
  .form-error {
  color: #e74c3c !important;          /* Nice red */
  font-size: 12px;
  font-weight: 500;
  text-align: left;
  margin-top: 4px;
  margin-bottom: 0px;
  padding:0px;
  display: block;
  font-family: 'Segoe UI', sans-serif;
  }

  /* Modern Button */
  .modern-btn {
  background:rgb(245, 92, 100);
  color: white;
  padding: 9px 10px;
  margin-bottom: 20px;
  border: none;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
  }
  .modern-btn:hover {
    background:rgb(202, 0, 0);
  }

  /*--------------------------------------------
  MODAL   
  --------------------------------------------*/
  /* Modal Base */
  .modern-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  backdrop-filter: blur(6px);
  }

  /* Modal Backdrop */
  .modal-backdrop {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(255, 252, 252, 0);
  }

  /* Modal Box */
  .modal-container {
  position: relative;
  background: #fff;
  width: 90%;
  max-width: 650px;
  margin: 80px auto;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
  animation: slideFade 0.4s ease;
  }

  /* Header */
  .modal-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  }
  .modal-title h2 {
  margin: 0;
  font-size: 24px;
  color: #222;
  }
  .modal-title p {
  margin: 5px 0 0;
  color: #666;
  font-size: 14px;
  }

  /* Photo */
  .photo-wrapper {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #007bff;
  }
  .profile-pic {
  width: 100%;
  height: 100%;
  object-fit: cover;
  }

  /* Detail Fields */
  .modal-details {
  font-size: 16px;
  color: #333;
  }
  .modal-details .field {
  margin-bottom: 12px;
  }

  /* Close Button */
  .modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  font-weight: bold;
  color: #666;
  cursor: pointer;
  }
  .modal-close:hover {
  color: #e60000;
  }

  /* Animation */
  @keyframes slideFade {
  from {
    opacity: 0;
    transform: translateY(30px);
    }
  to {
    opacity: 1;
    transform: translateY(0);
    }
  }

  /* Responsive */
  @media (max-width: 600px) {
  .modal-container {
    padding: 20px;
  }
  .modal-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    }
  .modal-title h2 {
    font-size: 20px;
    }
  }   /*-- modal css ends */

  /*----------------------------------------
  social media icons in footer
  ----------------------------------------*/
  .footer-newsletter ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-newsletter ul li {
  margin-bottom: 10px;
}

.footer-newsletter ul li a {
  text-decoration: none;
  color: #ffffff; /* or your preferred color */
  font-size: 16px;
  transition: color 0.3s ease;
}

.footer-newsletter ul li a i {
  margin-right: 8px;
  color: #ffffff; /* optional: use platform colors */
}

.footer-newsletter ul li a:hover {
  color: #00aced; /* example hover color */
}

