body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    text-align: center;
}


.banner {
    background: #333;
    color: white;
    padding: 80px 20px;
}

.hero-title {
    opacity: 0;
    animation: fade-in 2s ease forwards;
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

.buttons {
    margin: 40px 0;
}

.btn {
    padding: 15px 30px;
    margin: 10px;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    background: #007bff;
    color: white;
    cursor: pointer;
    transition: background-color 0.5s ease;
}

.btn:hover {
    background: orange;
}


.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
}

.img-box {
    overflow: hidden;
    border-radius: 10px;
}

.img-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.img-box img:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}


.nav {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    position: relative;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: #007bff;
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}


.cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 50px 0;
}

.card {
    background: white;
    width: 250px;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card img {
    width: 100%;
    border-radius: 8px;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}
