/* General 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;
    
}

.navbar-logo {
    width: 90px;   
    height: 90px;  
    border-radius: 50%;
    object-fit: cover;   
    transition: transform 0.3s ease-in-out;
}

.navbar-logo:hover {
    transform: scale(1.1);  /* Adds a subtle hover effect */
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a:hover {
    color: #F39200; /* Change color on hover */
}


.nav-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    list-style: none;
    flex-grow: 1;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-size: 18px;
    padding: 10px 15px;
    color: black;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease-in-out;
}

.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%;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#video-bg {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.hero-text {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding-top: 20%;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    opacity: 1;
}

.hero-text p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 1;
}

.cta-button {
    background: #ff9800;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
}

.cta-button:hover {
    background: #e68900;
}

/* Pilgrimage Packages Section */
/* Pilgrimage Packages Section */
#pilgrimage-packages {
    padding: 100px 40px;
    text-align: center;
    background: linear-gradient(45deg, #e3f2fd, #007BFF);
}

.packages-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.package-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 300px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column; /* Ensure content stacks vertically */
    justify-content: space-between; /* Push button to the bottom */
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.package-card img {
    width: 100%;
    height: 200px; /* Fixed height for uniformity */
    object-fit: cover; /* Ensures the image covers the area without distortion */
    border-radius: 10px; /* Match the card's border radius */
    margin-bottom: 15px; /* Add spacing below the image */
}

.package-card h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
    color: #333;
}

.package-card p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
}

.expand-btn {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: auto; /* Push button to the bottom */
    width: 100%; /* Ensure button takes full width */
    text-align: center; /* Center button text */
    box-sizing: border-box; /* Ensure padding is included in width */
}

.expand-btn:hover {
    background: linear-gradient(135deg, #2a5298, #1e3c72);
}

.package-details {
    display: none;
    margin-top: 15px;
    padding: 15px;
    background: #f5f7fa;
    border-radius: 10px;
    animation: fadeIn 0.5s ease;
}

.package-details p {
    margin-bottom: 10px;
}

.book-now {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff6f61, #ff4a3d);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: background 0.3s ease;
}

.book-now:hover {
    background: linear-gradient(135deg, #ff4a3d, #ff6f61);
}
/* Scroll Animation Styles */
.hidden {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
.footer {
    background: #007bff;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    width: 300px;
    margin-bottom: 20px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-section p,
.footer-section ul {
    font-size: 1rem;
    color: #f4f4f9;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #f4f4f9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffdd57;
}

.footer-bottom {
    margin-top: 20px;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 1.5s ease-in-out forwards;
}

.delay {
    animation-delay: 0.5s;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}
.explore-more-btn {
    background: linear-gradient(45deg, #007bff, #00c6ff); /* Blue Gradient */
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 24px;
    border: none;
    border-radius: 8px; /* Rounded Corners */
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.explore-more-btn:hover {
    background: linear-gradient(45deg, #0056b3, #0093c4); /* Darker Shade on Hover */
    transform: scale(1.05); /* Slightly Bigger on Hover */
    box-shadow: 0 6px 14px rgba(0, 123, 255, 0.5);
}

.explore-more-btn:active {
    transform: scale(0.98); /* Slight Shrink on Click */
}
