.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-right: 10px;
    color: #fff;
}

.icon-circle.location {
    background: #e74c3c;
}

.icon-circle.phone {
    background: #27ae60;
}

.icon-circle.email {
    background: #2980b9;
}

.icon-circle i {
    font-size: 14px;
}


.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-list li div {
    line-height: 1.6;
}

.custom-footer {
    background: #f4f4f4;
    padding-top: 60px;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    width: 80%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h3 {
    color: #d52b1e;
    margin-bottom: 20px;
    font-size: 22px;
    position: relative;
}

.footer-col h3::after {
    content: '';
    width: 50px;
    height: 3px;
    background: #1f3c88;
    display: block;
    margin-top: 8px;
}

.footer-col p {
    font-size: 16px;
    color: #555;
    line-height: 1.9;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #d52b1e;
    padding-left: 5px;
}

.footer-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 18px;
    background: #d52b1e;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
}

.footer-btn:hover {
    background: #1f3c88;
}

.footer-bottom {
    margin-top: 50px;
    background: #222d35;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    font-size: 16px;
}

.footer-bottom a {
    color: #d52b1e;
}

.footer-bottom a:hover {
    color: #fff;
} 

/* Responsive */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}