.footer {
    background-color: #222;
    color: #fff;
    padding: 20px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.footer-about, .footer-links, .footer-contact {
    flex: 1;
    margin: 0 10px;
}

.footer h3 {
    margin-bottom: 15px;
    font-size: 18px;
    text-transform: uppercase;
    border-bottom: 2px solid #fff;
    display: inline-block;
    padding-bottom: 5px;
}

.footer p, .footer a {
    color: #bbb;
    font-size: 14px;
    text-decoration: none;
}

.footer a:hover {
    color: #fff;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #bbb;
}

.footer-bottom p {
    margin: 0;
}

.social-media-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;    
}

.social-icon {
    display: inline-block;
    width: 50px;
    height: 50px;
    /* background-color: #444; */
    color: #444;
    font-size: 24px;
    line-height: 50px;
    text-align: center;
    border-radius: 150px;
    transition: background-color 0.3s, transform 0.3s;
    text-decoration: none;
}

/* Individual Colors for Social Platforms */
.social-icon.facebook:hover {
    background-color: #4267B2;
    color: #fff;
}

.social-icon.twitter:hover {
    background-color: #1DA1F2;
    color: #fff;
}

.social-icon.instagram:hover {
    background-color: #C13584;
    color: #fff;
}

.social-icon.linkedin:hover {
    background-color: #0077B5;
    color: #fff;
}

.social-icon.youtube:hover {
    background-color: #FF0000;
    color:#fff;
}

/* Hover Effect for All Icons */
.social-icon:hover {
    transform: scale(1.2); /* Slight zoom effect */
}

/* Testimonial Slider */
.testimonial-slider {
    width: 100%;
    overflow: hidden;
    background-color: #fff;
    padding: 30px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.slider {
    display: flex;
    gap: 30px;
    animation: slide 25s linear infinite;
}

.testimonial {
    min-width: 300px;
    max-width: 400px;
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial p {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
}

.testimonial h4 {
    margin: 0;
    font-size: 1rem;
    color: #333;
}

/* Animation */
@keyframes slide {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}