.footer {
    font-family: 'Inter', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0f172a;
    padding: 70px 0;
    color: #cbd5e1;
    padding-bottom: 20px;
}

.container {
    max-width: 1170px;
    margin: auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}


.footer-col {
    width: 30%;
    padding: 0 15px;
    margin-bottom: 30px;
}


.footer-col h4 {
    font-size: 18px;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 600;
    position: relative;
}


.footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #38bdf8;
    height: 3px;
    box-sizing: border-box;
    width: 50px;
    border-radius: 2px;
}


.footer-col ul {
    list-style: none;
}

.footer-col ul li:not(:last-child) {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 16px;
    text-transform: capitalize;
    color: #94a3b8;

    text-decoration: none;
    font-weight: 300;
    display: block;
    transition: all 0.3s ease;
}


.footer-col ul li a:hover {
    color: #38bdf8;

    padding-left: 8px;
}


.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #94a3b8;
}

.contact-item i {
    margin-right: 12px;
    margin-top: 5px;
    color: #38bdf8;

}


.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.05);

    margin-right: 10px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #0f172a;

    background-color: #38bdf8;
    transform: translateY(-3px);

}


.map-container {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;

    /* filter: grayscale(100%) invert(92%) hue-rotate(180deg);
    transition: filter 0.5s ease; */
}

.map-container iframe:hover {
    /* filter: none; */
}


.copyright {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #64748b;
    font-size: 14px;
    margin-top: 20px;
}

.dev-credit {
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #666;
    /* Grey text for the main part */
    transition: color 0.3s ease;
}

.dev-credit:hover {
    color: #333;
    /* Darker on hover */
}

.dev-credit span {
    font-weight: bold;
    color: #007bff;
    /* Change this to your brand color */
    text-transform: uppercase;
}

@media(max-width: 767px) {
    .footer-col {
        width: 100%;
        margin-bottom: 40px;
    }
}