/* Footer */
.footer {
    padding: 0px 0 0px;
    
    
}

.footer .container {
    max-width: 1200px;
}

.footer .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.footer .col-md-4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
}

.footer h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
}

.footer h5::after {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
}

.footer p {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 0;
    max-width: 450px;
}

.footer a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--hover-color);
}

.footer .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer .social-icons a {
    font-size: 1.2rem;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.footer .social-icons a:hover {
    color: var(--hover-color);
}

.footer .input-group .form-control {
    border-radius: 8px 0 0 8px;
    border: 1px solid var(--primary-color);
    font-size: 0.9rem;
}

.footer .input-group .btn {
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;
}

.footer .input-group .btn:hover {
    background: var(--hover-color);
}

.footer .copyright {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-color);

    padding-top: 20px;
    
}
@media (max-width: 768px) {
    

    .footer .col-md-4 {
        align-items: center;
        text-align: center;
        margin-bottom: 40px;
    }

    .footer h5 {
        font-size: 1.1rem;
    }

    .footer p,
    .footer a {
        font-size: 0.85rem;
    }

    .footer .social-icons a {
        font-size: 1.1rem;
    }

    .footer .copyright {
        font-size: 0.8rem;
    }
}
