/* Base styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.6;
    background-color: #fff;
    color: #333;
}

/* Header styling */
header {
    background: #ce1126; /* Crimson Red from Nepal's flag */
    color: #fff;
    padding: 1rem 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 128, 0, 0.3); /* Green shadow */
    position: fixed; /* Fix the header at the top */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Ensure the header is above all other content */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 2rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

/* Base styling for navigation links */
.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    position: relative; /* Required for the underline effect */
    transition: color 0.3s;
}

/* Add a white underline to the active menu item */
.nav-links a.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px; /* Adjust the position of the underline */
    width: 100%;
    height: 2px; /* Thickness of the underline */
    background-color: #fff; /* White underline */
}

/* Optional hover effect to change color */
.nav-links a:hover {
    color: #ffdd00; /* Optional: Change color on hover */
}
/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: 0.3s;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        gap: 15px;
        position: absolute;
        top: 60px;
        right: 20px;
        background: #ce1126;
        padding: 10px;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    }

    .nav-links.show {
        display: flex; /* Show menu when toggled */
    }

    .hamburger {
        display: flex; /* Show hamburger icon on mobile */
    }
}

/* Hero section styling */
.hero {
    position: relative;
    width: 100%;
    height: 60vh; /* Adjust height as needed for your design */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Slideshow container */
/* Slideshow container */
.cover-slideshow-container {
    position: relative;
    width: 100%;
    height: 56.25vh; /* Maintain a 16:9 aspect ratio (576 / 1024 * 100) */
    overflow: hidden;
    z-index: 1;
}

/* Slideshow Images */
.cover-photo {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image covers the container without distortion */
    object-position: center; /* Center the image within the container */
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}

.active-slide {
    display: block; /* Display the active slide */
}

/* Next and Previous Buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: 0.3s;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}


/* Hero Content Styling */
.hero-content {
    position: relative;
    z-index: 2; /* Ensure content appears above the cover photo */
    color: #fff; /* Text color, adjust based on your image */
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5); /* Optional: Add a subtle background to enhance text readability */
    border-radius: 8px; /* Optional: Slight rounding for text background */
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* About Us section styling */
.about {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: auto;
    border-top: 5px solid #003893; /* Blue border inspired by Nepal's flag */
    margin-top: 20px; /* Ensure there's space between the home and about section */
}

.about h2 {
    color: #ce1126; /* Crimson Red from Nepal's flag */
    text-align: center;
    margin-bottom: 2rem;
}

.about p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
    color: #333;
}

/* Services section styling */
.services {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: auto;
    border-top: 5px solid #003893; /* Blue border */
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.service-item {
    flex: 1 1 calc(50% - 2rem);
    padding: 1rem;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 128, 0, 0.3); /* Green shadow */
    color: #fff;
}

/* Service-specific colors */
.service-entertainment {
    background: linear-gradient(135deg, #003893, #0078d7); /* Blue shades */
}

.service-food {
    background: linear-gradient(135deg, #ce1126, #ff6f61); /* Crimson Red shades */
}

.service-restaurant {
    background: linear-gradient(135deg, #003893, #1f77d4); /* Blue shades */
}

.service-work-support {
    background: linear-gradient(135deg, #ce1126, #ff7f50); /* Crimson Red shades */
}

/* Contact section styling */
/* .contact {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: auto;
    border-top: 5px solid #003893; 
    text-align: center;
}

.contact h2 {
    color: #ce1126; 
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2rem;
    font-size: 1.1rem;
} */
/* Contact section styling */
.contact {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: auto;
    border-top: 5px solid #003893; /* Blue border inspired by Nepal's flag */
    text-align: center;
}

.contact h2 {
    color: #ce1126; /* Crimson Red from Nepal's flag */
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Mailto Button Styling */
.contact-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #ce1126; /* Crimson Red from Nepal's flag */
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none; /* Remove underline from link */
    transition: background-color 0.3s, transform 0.2s;
}

.contact-button:hover {
    background-color: #a80f21;
    transform: scale(1.05); /* Slight scale on hover */
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: auto; /* Center the form horizontally */
    text-align: left; /* Align text within form elements to the left */
}

form label {
    font-weight: bold;
}

form input,
form textarea {
    padding: 0.5rem;
    border: 2px solid #003893; /* Blue border */
    border-radius: 4px;
    font-size: 1rem;
    width: 100%; /* Ensure inputs take up the full width of the form */
}

form button {
    padding: 0.75rem;
    background-color: #ce1126; /* Crimson Red from Nepal's flag */
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
    width: 100%; /* Ensure button takes up the full width of the form */
}

form button:hover {
    background-color: #a80f21;
}

/* Footer styling */
footer {
    background: #ce1126; /* Crimson Red from Nepal's flag */
    color: #fff;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
    box-shadow: 0 -4px 6px rgba(0, 128, 0, 0.3); /* Green shadow */
    max-width: 1200px;
    margin: 2rem auto 0 auto;
    border-top: 5px solid #003893; /* Optional: Add a border to match the site’s theme */
}
.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    max-height: 60px; /* Adjust the height as needed */
    width: auto;
    display: block;
    margin-right: 20px; /* Adjust spacing if needed */
}

/* Optional: Adjust spacing for the header to accommodate the logo */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 2rem;
}