* {
    margin: 0;
    
    box-sizing: border-box;
    
}
/* Hero Section with Background Image */
.hero {
    position: relative;
    width: 100%;
    height: 90vh;
    background: url('/images/firstPic.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for better text visibility */
}

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

.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
}

.hero-content p {
    font-size: 1.2rem;
    margin: 10px 0 20px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 12px 24px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
}

.btn-primary {
    text-decoration: none;
    background-color: red;
    color: white;
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
    text-decoration: none;

}

/* Feature Cards */
.features {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
    background: white;
}

.feature-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    width: 300px;
    display: block; /* Make entire div clickable */
    text-decoration: none; /* Remove underline */
    color: inherit; /* Keep text color same */
    transition: transform 0.2s ease-in-out;
}

.feature-card:hover {
    transform: scale(1.05);
}

.feature-card img {
    width: 50px;
    margin-bottom: 10px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 1rem;
    color: gray;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .features {
        flex-direction: column;
        align-items: center;
    }
    .feature-card{
        flex-direction: column;
        align-items: center;
    }
    .hero {
        background: url('/images/firstPicMob.jpg') no-repeat center center/cover;

    }
}