main{
    margin-top: 150px;
}
.welcome {
    margin-top:100px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.welcomeContainer {
    width: 100%;
    height: 50vh; /* Makes the container take the full height of the viewport */
    background-image: url('images/wedding\ convoy.jpg'); /* Replace with the path to your image */
    background-size: cover; /* Ensures the image covers the entire container */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
}
.welcomeText {
    position: absolute; /* Absolute positioning to place the text over the image */
    top: 40%; /* Center vertically */
    left: 30%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Adjust for exact centering */
    text-align: center; /* Center text inside the div */
    color: white; /* Text color */
}
.welcomeText h1 {
    font-size: 3em; /* Larger font size for the heading */
    margin: 0; /* Remove default margin */
}


.economy {
    
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px;
    background-color: #ffffff;
    gap: 20px;
}

.product-card {
    position: relative;
    width: 300px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    text-align: center;
}
.product-card:hover{
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    /*transition: all 0.6s ease-in-out;
    transform: translateY(-5px);*/
}

.product-card img {
    max-width: 100%;
    height: auto;
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.product-card p {
    margin-bottom: 10px;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.product-card .price {
    font-weight: bold;
    color: #009900;
}

.product-card .rent-now {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 10px;
    background-color: #009900;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}

.product-card .rent-now:hover {
    background-color: #0056b3;
}

.tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #009900;
    color: white;
    padding: 5px 10px;
    font-size: 0.8em;
    border-radius: 5px;
    
}
