/*
    Social icons in header
*/
.header-icons {
    position: absolute;
    top: 10px; /* Adjust as needed */
    right: 10px; /* Adjust as needed */
}

.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #007bff; /* Change the color as needed */
    text-align: center;
    line-height: 40px;
    margin-left: 10px; /* Adjust the spacing between icons */
    color: #fff;
    transition: background-color 0.3s ease;
}

.social-icon i {
    font-size: 20px; /* Adjust the icon size as needed */
}

.social-icon.facebook {
    background-color: #3b5998; /* Facebook color */
}

.social-icon.twitter {
    background-color: #1da1f2; /* Twitter color */
}

.social-icon.youtube {
    background-color: #FF0000; /* Twitter color */
}
.social-icon.email {
    background-color: #c2c2c2a9; /* Twitter color */
}

.social-icon:hover {
    background-color: #0056b3; /* Change the hover color as needed */
}


/* Media Query for smaller screens */
@media screen and (max-width: 1200px) {
    .header-icons {
        position: relative;
        text-align: center;
        margin-top: 10px;
        padding-bottom: 10px;
    }
    .social-icon {
        margin-left: 5px;
        margin-right: 5px;
    }
}

/* Custom CSS for footer */
.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #f8f9fa;
    padding: 10px 0;
    text-align: center;
    border-top: 1px solid #dee2e6;
}
.footer a {
    color: #007bff;
    text-decoration: none;
    margin: 0 10px;
}
.footer a:hover {
    text-decoration: underline;
}