/* custom-style */

.red-circle {
    background-color: red;   /* Circle background */
    color: white;            /* X ka color */
    border-radius: 50%;      /* Round shape */
    padding: 4px;            /* Space around X */
    font-size: 12px;         /* X size adjust */
    width: 20px;             /* Fixed circle width */
    height: 20px;            /* Fixed circle height */
    display: inline-flex;    /* Center X inside */
    align-items: center;
    justify-content: center;
}


.contact-item {
  display: flex;
  align-items: center;   /* vertically center */
  gap: 8px;              /* space between icon and text */
  list-style: none;      /* bullet hatao agar nahi chahiye */
}

.contact-item i {
  font-size: 16px;       /* icon size */
  color: #ffffff;           /* icon color */
}



