.hero {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: auto;
    display: block; /* Ensures no space below the image */
}

.hero h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-family: 'Arial', sans-serif;
    font-size: 3em; /* Large font size */
    text-align: center;
    letter-spacing: 2px;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
    padding: 15px 25px; /* Padding around text */
    border-radius: 5px; /* Rounded corners */
    transition: transform 0.3s ease; /* Transition for scale effect */
}

.hero:hover h1 {
    transform: translate(-50%, -50%) scale(1.05); /* Slight zoom on hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5em; /* Smaller font size on mobile */
        padding: 10px 15px; /* Adjust padding */
    }
}


    body {
            font-family: 'Times New Roman', Times, serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
        }
        .container {
            max-width: 1200px;
            margin: 20px auto;
            padding: 20px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .features {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .feature {
            flex: 1 1 30%;
            margin: 10px;
            padding: 15px;
            background: #eaeaea;
            border-radius: 5px;
            text-align: center;
        }
      
        .explore-button {
            display: inline-block;
            padding: 10px 20px;
            background: #28a745;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            transition: background 0.3s;
        }
        .explore-button:hover {
            background: #218838;
        }
       
        @media (max-width: 768px) {
            .features {
                flex-direction: column;
            }
            .feature {
                flex: 1 1 100%;
            }
            .hero h1 {
                font-size: 2em;
            }
        }