.custom-circle-icon {
  background-color: #01BFFF;
  border-radius: 50%; 
  padding: 7px 10px;
  color: white;
  margin-right:10px;
}

body{
font-size: 0.9rem !important;
}

/* contact page  */

.contact-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 3rem auto;
  max-width: 1000px;
}

.contact-form {
  padding: 40px;
}

.contact-info {
  background: #00BFFF;
  color: #fff;
  padding: 40px 30px;
}

.contact-info h5 {
  margin-bottom: 20px;
  font-weight: 600;
}

.contact-info p,
.contact-info a {
  color: #e9ecef;
  text-decoration: none;
  margin-bottom: 15px;
}

.contact-info i {
  margin-right: 10px;
}

.contact-form input,
.contact-form textarea {
  border-radius: 8px;
  border: 1px solid #dee2e6;
}

.contact-form button {
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: #00BFFF;
  color: #fff;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #0b5ed7;
}