/* .footer {
   
    padding: 40px 0;
}
.footer h5 {
    margin-bottom: 20px;
    font-weight: bold;
}
.footer ul {
    list-style: none;
    padding: 0;
}
.footer ul li {
    margin-bottom: 10px;
}
.footer ul li a {
    text-decoration: none;
    color: #303030;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
.footer ul li a:hover {
    color: #606060;
    
}
.newsletter-form {
    max-width: 400px;
    margin: 0 auto;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
}
.footer .copyright {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9em;
    color: #303030;
}
.footer .services {
    margin-top: 20px;
}
.footer .services h5 {
    margin-bottom: 15px;
}
.footer .services ul {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
}

btn-dark{
    background-color: #303030;
} */


 .footer {
            background-color: #ffffff;
            border-top: 1px solid #e9ecef;
            padding: 40px 0 20px 0;
        }
        
        .footer h5 {
            font-weight: 600;
            margin-bottom: 20px;
            color: #333;
        }
        
        .footer ul {
            list-style: none;
            padding: 0;
        }
        
        .footer ul li {
            margin-bottom: 8px;
        }
        
        .footer ul li a {
            color: #222222;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }
        
        .footer ul li a:hover {
            color: #007bff;
        }
        
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #e9ecef;
        }
        
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #222222;
            color: white;
            border-radius: 50%;
            text-decoration: none;
            transition: background-color 0.3s ease;
        }
        
        .social-icons a:hover {
            background-color: #007bff;
        }
        
        @media (max-width: 768px) {
            .footer {
                text-align: center;
            }
            
            .footer .col-md-4 {
                margin-bottom: 30px;
            }
        }