footer {
    /* font-family: "CalgaryDemo"; */
    background-color: navy;
    margin-top: 7%;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    color: white;
}

.footer-content-new-temp {
    max-width: 1200px;
    margin: 0 auto;
}

footer h1 {
    font-family: "CalgaryDemo";
    font-size: 3rem;
    margin-bottom: 20px;
}.services-new-temp p a:hover{
    cursor: pointer;
    color: aqua;
}

.services-new-temp {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    margin: 10px 0;
}

.services-new-temp p a{
    color: white;
    font-size: 1rem;
    text-decoration: none;
    margin: 5px 0;
}

#he2-footer {
    margin-top: 40px;
    font-size: 2rem;
}

.contact-info-new-temp {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.contact-item-new-temp {
    display: flex;
    align-items: center;
    margin: 0 20px;
}.contact-item-new-temp a{
    color: white;
    text-decoration: none;
}#number-footer-nu{
    font-family: Arial, Helvetica, sans-serif;

}

.contact-item-new-temp img {
    width: 50px;
    margin-right: 10px;
}

.contact-item-new-temp p {
    font-size: 1rem;
    text-align: left;
}

.social-icons-new-temp {
    margin: 20px 0;
}

.social-icons-new-temp img {
    width: 40px;
    margin: 0 10px;
    transition: transform 0.4s ease, opacity 0.4s ease, filter 0.4s ease; /* Add transition for smooth effect */
}

.social-icons-new-temp img:hover {
    background-color: white;
    border-radius: 25%;
    cursor: pointer;
    transform: scale(1.3) rotate(15deg);
    opacity: 0.9; /* Slight opacity change */
    filter: brightness(1.2); /* Brighten the icon */
    box-shadow: 0 4px 15px rgba(226, 221, 221, 0.5); /* Add a shadow effect */
    animation: bounce 0.5s ease; /* Add bounce animation */
}


/* Bounce animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px); /* Move up */
    }
    60% {
        transform: translateY(-5px); /* Move down */
    }
}

.copyrights-new-temp {
    margin-top: 40px;
    font-size: 1rem;
}/* Mobile Styles */
@media (max-width: 768px) {
    footer {
        padding: 15px 10px;
    }

    footer h1 {
        font-size: 2rem; /* Adjusted heading size */
        margin-bottom: 15px;
    }

    .footer-content-new-temp {
        margin-bottom: 25%;
        padding: 0 10px; /* Added padding for better layout */
    }

    .services-new-temp {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Two columns */
        gap: 10px; /* Increased gap between columns */
        margin: 15px 0;
    }

    .services-new-temp p {
        font-size: 1rem;
        margin: 10px 0;
        text-align: center; /* Centered text for better alignment */
        padding: 8px;
        background-color: rgba(255, 255, 255, 0.1); /* Light background for better visibility */
        border-radius: 8px; /* Rounded corners */
        transition: background-color 0.3s ease, color 0.3s ease; /* Smooth hover transition */
    }

    .services-new-temp p:hover {
        background-color: rgba(255, 255, 255, 0.3); /* Slight color change on hover */
        color: aqua; /* Hover color */
    }

    .contact-info-new-temp {
        flex-direction: column; /* Stack items vertically */
        /* align-items: center; */
    }

    .contact-item-new-temp {
        /* margin: 10px 20px; */
        text-align: center; /* Center text */
    }

    .contact-item-new-temp img {
        width: 40px; /* Adjust icon size */
        margin-right: 0; /* No margin on smaller screens */
    }

    .contact-item-new-temp p {
        font-size: 0.9rem; /* Adjust text size */
        margin-top: 5%;
        margin-left: 3%;
    }

    .social-icons-new-temp {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }

    .social-icons-new-temp img {
        width: 35px; /* Adjust icon size */
        margin: 0 8px;
    }

    .copyrights-new-temp {
        margin-top: 30px;
        font-size: 0.9rem;
    }
}
@media only screen and (max-width: 768px) {
    .remove-on-mobile {
        display: none;
    }
}
