/* General styling for the header */
header {
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    position: relative;
}


.social-icons {
    justify-content: space-around;
    display: flex;
}

.social-icons a {
    text-align: center;
    color: red;
    padding: 15px;
    border-radius: 3px;
    font-size: 1.2em;
    transition: color 0.3s;
}

footer > a{
    margin-top: 10px
}

.social-icons a:hover {
    color: white;
    background-color: red;

}

/* Logo container styling */
.logo-container {
    display: flex;
    align-items: center;
}

/* Styling for nav */
header nav {
    display: flex;
}

header nav ul {
    display: flex;
    gap: 20px;
}

header nav ul li {
    list-style-type: none;
}

header nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: red;
}

/* Styling for the call-now button */
.call-now {
    border: none;
    background-color: red;
    font-size: 1rem;
    border-radius: 3px;
    padding: 10px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    margin-left: 15px;
}

.call-now:hover {
    background-color: white;
    color: red;
}

/* Media query for mobile */
@media (max-width: 768px) {
    /* Hide the nav links by default */
  

    header{
        flex-wrap: wrap;
        justify-content: space-evenly;
    }

  
    header nav ul {
        display: flex;
        flex-wrap: wrap;
    }

    /* Adjust the call-now button */
    .call-now {
        margin: 5px;
    }
}
