/* Footer Social Media Icons */
.card {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.socialContainer {
    width: 35px; /* Reduced from default size */
    height: 35px; /* Reduced from default size */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.socialSvg {
    width: 18px; /* Reduced from default size */
    height: 18px; /* Reduced from default size */
    fill: #007bff; /* Changed to blue */
}

/* Hover effects */
.containerOne:hover {
    background-color: #f9f9f9;
}

.containerTwo:hover {
    background-color: #f9f9f9;
}

.containerThree:hover {
    background-color: #f9f9f9;
}

.containerFour:hover {
    background-color: #f9f9f9;
}

/* Container backgrounds */
.containerOne, .containerTwo, .containerThree, .containerFour {
    background-color: #ffffff;
}

/* Add hover effect to SVGs */
.socialContainer:hover .socialSvg {
    fill: #0056b3; /* Darker blue on hover */
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card {
        gap: 10px;
    }
    
    .socialContainer {
        width: 30px;
        height: 30px;
    }
    
    .socialSvg {
        width: 15px;
        height: 15px;
    }
}