/* Footer Styling */
.footer {
    background-color: #222;
    color: #fff;
    padding: 10px 20px;
    font-family: 'Arial', sans-serif;
    width: 100%;
    box-sizing: border-box;
    margin-top: 10%;
}


.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}


.footer-info,
.footer-links,
.footer-social {
    flex: 1 1 250px;
    margin-bottom: 20px;
}

.footer-info iframe {
    width: 200px;
    height: 200px;
}

#CalledFoot {
    margin-top: 10%;
}

.footer h3,
.footer h4 {
    margin-bottom: 15px;
}


.footer p,
.footer a,
.footer li {
    color: #ccc;
    text-decoration: none;
    margin: 5px 0;
    display: block;
}


.footer a:hover {
    color: #fff;
}


.footer-links ul {
    list-style: none;
    padding: 0;
}


.footer-data a {
    font-size: larger;
    display: inline;
}

.footer-social a img {
    width: 40px;
    height: 40px;
    margin: 0 8px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    transition: transform 0.3s;
}


.footer-social a:hover img {
    transform: scale(1.2);
}


.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 15px;
    margin-top: 20px;
    font-size: 14px;
    color: #aaa;
    width: 100%;
    position: relative;
}

.foot_img img {
    margin-bottom: 20px;
    width: 200px;
    height: 200px;
    border-radius: 15px;
}

/* Responsive Design */
@media (max-width: 500px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-info,
    .footer-links,
    .footer-social {
        text-align: center;
    }

    .footer-social a img {
        margin: 5px;
    }
}