/* Global Styles */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(45deg, #e3f2fd, #007BFF);
    color: #333;
    line-height: 1.6;
}
html {
    scroll-behavior: smooth;
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 50px;
    background: linear-gradient(45deg, #e3f2fd, #007BFF);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.6s ease-in-out;
    font-family: 'Poppins', sans-serif;
}

.logo img {
    height: 60px;
    transition: transform 0.3s ease-in-out;
    filter: brightness(1.2) contrast(1.1);
    filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.3));
    background-color: transparent;
    mix-blend-mode: overlay;
}

.navbar img {
    max-height: 60px;
    width: auto;
    transition: transform 0.3s ease-in-out;
}

.navbar-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.navbar-logo:hover {
    transform: scale(1.1);
}

/* Navbar Links (Menu Centered) */
.nav-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    list-style: none;
    flex-grow: 1;
    margin: 0;
    padding: 0;
}

/* Navbar Items */
.nav-links li {
    white-space: nowrap;
}

.nav-links a {
    font-size: 18px;
    padding: 10px 15px;
    color: black;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease-in-out;
}

/* Animated Underline on Hover */
.nav-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: #FF8C00;
    transition: all 0.3s ease-in-out;
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: #FF8C00;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Navbar Glow Effect */
.navbar:hover {
    box-shadow: 0px 0px 15px rgba(0, 123, 255, 0.6);
}

/* Slide Down Animation */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Fix */
@media (max-width: 1024px) {
    .navbar {
        flex-direction: row;
        padding: 10px 20px;
    }
    .nav-links {
        gap: 20px;
    }
    .navbar img {
        max-height: 50px;
    }
}

/* Menu Item Styling */
.menu {
    display: flex;
    gap: 25px;
    font-size: 18px;
    font-weight: bold;
    color: #000;
}

.menu a {
    text-decoration: none;
    color: black;
    transition: all 0.3s ease-in-out;
}

.menu a:hover {
    color: #FF9800;
    text-decoration: underline;
}

/* Pilgrimage Packages Section */
.pilgrimage-packages {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(to right, #e3f2fd, #bbdefb);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #0048aa;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #007bff;
    margin-bottom: 30px;
}

/* Package Cards */
.package-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.package-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    text-align: center;
}

.package-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 15px rgba(0, 123, 255, 0.3);
}

/* Package Images */
.package-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

/* Explore More Button */
.expand-btn {
    background: #ff9800;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-top: 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.expand-btn:hover {
    background: #e68900;
}

/* Hidden Details */
.package-details {
    display: none;
    margin-top: 15px;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 6px;
}

/* Book Now Button */
.book-now {
    display: block;
    background: #007bff;
    color: white;
    padding: 8px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 10px;
}

.book-now:hover {
    background: #0056b3;
}
