/* General Reset */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff; /* Light background for the header */
    padding: 20px; /* Add padding for spacing */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.logo img {
    max-width: 200px; /* Ensure logo is responsive */
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #333; /* Darker text for better contrast */
    padding: 10px 15px; /* Add padding to links */
    font-weight: bold;
}

nav ul li a.active {
    color: #d9002f;
}



/* Banner */
.banner {
    position: relative; /* Keep position relative for absolute children */
    background: url('hotel.jpg') no-repeat center center/cover;
    text-align: center;
    color: rgb(0, 0, 0);
    padding: 60px 0;
}

.banner-overlay {
    position: absolute; /* Position absolute to cover the entire banner */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
    z-index: 1; /* Ensure it sits above the background but below text */
}

.banner-text {
    position: relative; /* Position relative to sit above the overlay */
    z-index: 2; /* Ensure text is above the overlay */
    padding: 20px; /* Padding around the text */
    border-radius: 10px; /* Rounded corners */
    display: inline-block; /* Make the box fit the content */
    text-align: center; /* Center the text */
    color: rgb(255, 255, 255); /* Text color */
     /* Add text shadow */
}
.banner h1 {
    font-size: 45px;
}

.banner p {
    font-size: 28px;
}

/* Introduction */



.intro-box {
    display: flex; /* Use flexbox for layout */
    align-items: center; /* Center items vertically */
    background: #fff; /* White background for the box */
    padding: 20px; /* Padding around the box */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    margin: 20px; /* Margin around the box */
}

.intro-image {
    width: 500px; /* Fixed width for the image */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px; /* Rounded corners */
    margin-right: 20px; /* Space between image and text */
}
.intro-content h3 {
    font-size: 28px; /* Increase heading size */
    margin-bottom: 15px; /* Space below heading */
}

.intro-content p {
    font-size: 22px; /* Increase paragraph size */
    line-height: 1.6; /* Improve readability */
    color: #333; /* Darker text for better readability */
}

.why-choose-box {
    display: flex; /* Use flexbox for layout */
    align-items: center; /* Center items vertically */
    background: #fff; /* White background for the box */
    padding: 20px; /* Padding around the box */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    margin: 20px; /* Margin around the box */
}

.why-choose-image {
    width: 500px; /* Fixed width for the image */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px; /* Rounded corners */
    margin-left: 20px; /* Space between image and text */
}

.why-choose-content {
    flex: 1; /* Allow text to take remaining space */
    text-align: left; /* Align text to the left */
    padding: 20px; /* Add padding for better spacing */
}

/* Why Choose Us */
.why-choose {
    text-align: center;
    padding: 20px;
}

.why-choose h3 {
    font-size: 34px;
}

.why-choose p {
    font-size: 22px;
    line-height: 1.6;
    color: #333;
}

.why-choose ul {
    list-style: none;
    padding: 0;
}

.why-choose ul li {
    font-size: 18px;
    margin: 10px 0;
}

/* Services */
.services1 {
    text-align: center;
    padding: 30px 0;
}

.services1 h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.service1-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service1-box {
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    width: 250px;
    text-align: center;
}

.service1-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.service1-box p {
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
}
.company-evolution-box {
    display: flex; /* Use flexbox for layout */
    align-items: center; /* Center items vertically */
    background: #fff; /* White background for the box */
    padding: 20px; /* Padding around the box */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    margin: 20px; /* Margin around the box */
}

.company-evolution-image {
    width: 500px; /* Fixed width for the image */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px; /* Rounded corners */
    margin-left: 20px; /* Space between image and text */
}

.company-evolution-content {
    flex: 1; /* Allow text to take remaining space */
    text-align: left; /* Align text to the left */
    padding: 20px; /* Add padding for better spacing */
    line-height: 1.6; /* Improve line spacing for readability */
}

.company-evolution-content h3 {
    font-size: 28px; /* Increase heading size */
    margin-bottom: 15px; /* Space below heading */
}

.company-evolution-content p {
    font-size: 20px; /* Increase paragraph size */
    color: #333; /* Darker text for better readability */
}

.company-evolution-content ul {
    padding-left: 20px; /* Indent bullet points */
    margin-top: 10px; /* Space above bullet points */
}

.company-evolution-content li {
    margin: 5px 0; /* Space between list items */
    font-size: 18px; /* Increase bullet points size */
}
/* Footer */
footer {
    background: #222;
    color: white;
    padding: 50px 20px;
    text-align: center;
    font-family: 'Arial', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-logo img {
    width: 200px;
    margin-bottom: 20px;
    margin-right: 40px;
}

.footer-about,
.footer-links,
.footer-contact {
    flex: 1;
    margin: 10px;
    min-width: 280px;
    text-align: left;
}

.footer-about h2,
.footer-links h2,
.footer-contact h2 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin: 8px 0;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    text-decoration: underline;
    color: #ffcc00;
}

.footer-contact p {
    font-size: 14px;
    margin: 8px 0;
}

.footer-contact a {
    color: #ffcc00;
    font-weight: bold;
}

.footer-copyright {
    margin-top: 20px;
    font-size: 13px;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .logo img {
        max-width: 100%; /* Reduce logo size for mobile */
    }

    nav ul {
        display: none; /* Hide menu by default on mobile */
    }

    nav ul li {
        margin: 5px 0; /* Adjust margin for stacked items */
    }

    .about-content {
        padding: 10px; /* Add padding to about cards */
    }

    .about img {
        max-width: 100%; /* Ensure images are responsive */
        height: auto; /* Maintain aspect ratio */
    }

    .about {
        flex-direction: column; /* Stack elements vertically */
        padding: 20px; /* Adjust padding for smaller screens */
    }

    .about-content {
        flex-direction: column; /* Stack content vertically */
        align-items: flex-start; /* Align items to the start */
    }

    .about img {
        width: 100%; /* Make images full width on small screens */
        margin: 0 0 20px 0; /* Adjust margin */
    }

    .hero1-text {
        padding: 20px; /* Adjust padding for smaller screens */
        font-size: 20px; /* Reduce font size for better fit */
    }

   

    
    

 
    .intro-box {
        flex-direction: column; /* Stack image and text vertically */
        text-align: center;
        padding: 15px;
    }

    .intro-image {
        width: 100%; /* Make image full width */
        margin: 0 0 15px 0; /* Add space below image */
    }

    .intro-content {
        text-align: left; /* Align text properly */
    }

    .why-choose-box {
        flex-direction: column; /* Stack image and text vertically */
        text-align: center;
        padding: 15px;
    }

    .why-choose-image {
        width: 100%; /* Make image full width */
        margin: 0 0 15px 0; /* Add space below image */
    }

    .why-choose-content {
        text-align: left; /* Align text properly */
    }

    .company-evolution-box {
        flex-direction: column; /* Stack image and text vertically */
        text-align: center;
        padding: 15px;
    }

    .company-evolution-image {
        width: 100%; /* Make image full width */
        margin: 0 0 15px 0; /* Add space below image */
    }

    .company-evolution-content {
        text-align: left; /* Align text properly */
    }

}

@media (min-width: 768px) {
    .hamburger {
        display: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        width: auto;
        border: none;
    }

    .nav-menu li {
        padding: 10px;
    }
}
