/* General Styles */
body,
html {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

.hero-content h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: white;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: bold;
    color: white;
}

.cta-button {
    background-color: #ff6f61;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e65a50;
}

/* Dubai Tour Cards */
.dubai-tour-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 50px 20px;
    background-color: #f9f9f9;
}

.card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 300px;
    margin: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-header {
    padding: 20px;
    background-color: #ff6f61;
    color: white;
}

.card-header h3 {
    margin: 0;
    font-size: 24px;
}

.card-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.card-icons span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.card-body {
    padding: 20px;
}

.card-body p {
    margin: 0 0 20px;
    font-size: 16px;
    color: #555;
}

.card-details {
    display: flex;
    justify-content: center;
    align-items: center; /* Align items vertically in the center */
    gap: 10px; /* Added gap between View Details and Price */
}

.view-details {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    flex-shrink: 0; /* Prevent button from shrinking */
}

.view-details:hover {
    background-color: #555;
}

.price {
    font-size: 16px; /* Smaller font size */
    font-weight: bold; /* Bold price */
    color: #ff6f61;
    text-align: right; /* Align price to the right */
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Align text to the right */
    margin: 0; /* Remove default margin */
}

.price span {
    font-size: 18px; /* Smaller font size */
    display: flex;
    align-items: center;
    gap: 5px; /* Space between rupee icon and price */
}

.price span::before {
    content: "₹"; /* Indian Rupee icon */
    font-size: 18px;
}



/* Top Places to Visit in Dubai */
.top-places {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}

.top-places h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
}

.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.place {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.place:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.place-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.place-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.place-content {
    text-align: left;
}

.place-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #ff6f61;
}

.place-content p {
    font-size: 14px;
    color: #555;
}
