.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    margin-bottom: 20px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    padding: 3rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transition: opacity 0.5s;
}

section.visible {
    opacity: 1;
}

#testimonials {
    background-color: white;
}

.testimonial p {
    text-align: center;
    color: #555;
}

.star-rating {
    font-size: 20px;
    color: #f5c518; /* Gold color for stars */
    margin-bottom: 10px;
    justify-content: center;
    display: flex;
}

.testimonial {
    background: #f8f9fa;
    padding: 1rem;
    margin: 1rem 0;
    border-left: 5px solid #cc0606;
    border-radius: 5px;
    opacity: 0;
}

.testimonial.visible {
    opacity: 1;
    animation-duration: 1s;
    animation-fill-mode: both;
}

.testimonial:nth-child(1).visible {
    animation-name: slideInLeft;
}

.testimonial:nth-child(2).visible {
    animation-name: slideInRight;
}

.testimonial:nth-child(3).visible {
    animation-name: bounceIn;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes bounceIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

#collage {
    background-color: #e9ecef;
    padding: 3rem 1rem;
    text-align: center;
}

.collage-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.collage-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
}

.collage-img.visible {
    opacity: 1;
    animation: glowPulse 1.5s ease-in-out infinite;
}

@keyframes glowPulse {
    0% { box-shadow: 0 4px 8px rgba(0,0,0,0.2); }
    50% { box-shadow: 0 4px 12px rgba(255, 0, 0, 0.5); }
    100% { box-shadow: 0 4px 8px rgba(0,0,0,0.2); }
}

.collage-img:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    z-index: 10;
    animation: none;
}

.animate-on-scroll1 {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Call to Action Button */
.cta {
    text-align: center;
    margin-top: 20px;
}
.cta a {
    background-color: #3d0505;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}
.cta a:hover {
    background-color: #791313;
}
.cta a:focus {
    outline: 2px solid #3d0505;
    outline-offset: 2px;
}