
.hero {
    position: relative;
    height: 100vh;
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    padding: 20px;
}

.hero h1 {
    font-size: 50px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #f8f9fa;
}

.hero a {
    text-decoration: none;
    background-color: #ff6f61;
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 18px;
    transition: background-color 0.3s ease-in-out;
}

.hero a:hover {
    background-color: #e55b50;
}

.slideshow {
    background-color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.slideshow h2 {
    font-size: 40px;
    color: #ff6f61;
    margin-bottom: 30px;
}

.slideshow .cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.slideshow img {
    width: 49%;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slideshow img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.cta {
    margin: 60px 20px;
    text-align: center;
}

.cta a {
    text-decoration: none;
    background-color: #ff6f61;
    color: white;
    padding: 15px 50px;
    border-radius: 30px;
    font-size: 20px;
    transition: background-color 0.3s ease-in-out;
    display: inline-block;
}

.cta a:hover {
    background-color: #e55b50;
}

 @media (max-width: 768px) {
    .slideshow img {
        width: 100%;
    }
}