footer {
    background-color: white;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    color: #13072e;
}

.heading_footer_links{
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    color: #13072e;
    font-size: 16px;
}

.list_footer_links{
    font-family: 'Poppins', sans-serif;
    color: #13072e;
    list-style-type: none;
    padding-left: 0;
}

.list_footer_links a{
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    text-decoration: none;
    color: rgba(28, 9, 72, 0.859);
}

.input-footer-class{
    background: none;
    border: none;
    outline: none;
    width: 100%;
    color: #13072e;
}

.email_footer{
    border: solid 2px #13072e;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px;
    height: 45px;
    border-radius: 22px;

}

.submit-email-button{
    background-color: #13072e;
    color: white;
    height: 34px;
    width: 37px;
    font-family: 'Poppins', sans-serif;
    
    
    border: solid 1px #13072e;
    border-radius: 50%;
    cursor: pointer;
}

.bi-arrow-right-short{
    font-size: 22px;
}

.social-media-icons {
    width: 40px;
    height: 40px;
    border-radius: 50%;        /* Makes it a circle */
    background-color: #ffbd59; /* Change to your preferred color */
    display: flex;             /* To center content */
    align-items: center;       /* Vertical center */
    justify-content: center;   /* Horizontal center */
    margin-right: 16px;        /* Right margin */
    color: white;              /* Optional: text color */
    font-weight: bold;         /* Optional: bold text */
  }
  
.social-media-icons:hover {
    background-color: #ffbd59; /* Darker shade on hover */
    color: white;
    transform: scale(1.1);    /* Slightly enlarge on hover */
    transition: background-color 0.3s, transform 0.3s; /* Smooth transition */
  }