 /* General Styles */
 body {
    font-family: 'Arial', sans-serif;
    background: #ffffff; /* White background */
    color: #333; /* Dark text for contrast */
    margin: 0;
    padding: 0;
}

/* Hero Section */
.hero-section {
    background: url('https://via.placeholder.com/1500x800') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff; /* White text for hero section */
}

.hero-section h1 {
    font-size: 4rem;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 128, 0, 0.8); /* Green glow */
}

.hero-section p {
    font-size: 1.5rem;
    margin: 20px 0;
}

.btn-neon {
    background: #008000; /* Green background */
    border: none;
    padding: 10px 30px;
    color: #fff;
    font-size: 1.2rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-neon:hover {
    box-shadow: 0 0 10px #008000, 0 0 40px #008000, 0 0 80px #008000; /* Green glow */
}

/* Logo */
.logo {
    width: 200px;
    margin-bottom: 20px;
}

/* Image Slider */
.slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 20px 0;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
}

.slide img {
    width: 90%;
    height: auto;
    margin-left: 5%;
    border-radius: 10px;
}

/* Table Styles */
.table-futuristic {
    background: rgba(0, 128, 0, 0.1); /* Light green background */
    border-radius: 10px;
    overflow: hidden;
    margin: 20px 0;
}

.table-futuristic th, .table-futuristic td {
    border: none;
    padding: 15px;
    text-align: center;
}

.table-futuristic th {
    background: rgba(0, 128, 0, 0.2); /* Slightly darker green */
}

/* Sections */
.section {
    padding: 60px 0;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    color: #008000; /* Green text */
}


  /* Updated Batch Timings Section */
  .batch-section ul {
    list-style: none;
    padding: 0;
}

.batch-section ul li {
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.batch-available {
    background: rgba(0, 128, 0, 0.1); /* Light green background */
    border-left: 4px solid #008000; /* Green left border */
}

.batch-unavailable {
    background: rgba(255, 0, 0, 0.1); /* Light red background */
    border-left: 4px solid #ff0000; /* Red left border */
    color: #666; /* Gray text for unavailable batches */
}

.availability-indicator {
    font-weight: bold;
    font-size: 0.9rem;
    padding: 3px 8px;
    border-radius: 12px;
}

.available {
    color: #008000;
    background: rgba(0, 128, 0, 0.1);
}

.unavailable {
    color: #ff0000;
    background: rgba(255, 0, 0, 0.1);
}

/* Contact Section */
.contact-section p {
    font-size: 1.2rem;
}

.social-link {
    color: #008000; /* Green text */
    text-decoration: none;
    
    margin: 0 10px;
    transition: all 0.3s ease;
}

.social-link:hover {
    text-shadow: 0 0 10px #008000, 0 0 20px #008000; /* Green glow */
}

/* Download Form Section */
.download-form-section {
    background: rgba(0, 128, 0, 0.1); /* Light green background */
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

.download-form-section p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.download-btn {
    background: #008000; /* Green background */
    border: none;
    padding: 10px 30px;
    color: #fff;
    font-size: 1.2rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.download-btn:hover {
    box-shadow: 0 0 10px #008000, 0 0 40px #008000, 0 0 80px #008000; /* Green glow */
}

/* Camp Activity Section */
.camp-section {
    background: rgba(0, 128, 0, 0.1); /* Light green background */
    padding: 40px;
    border-radius: 10px;
    margin: 20px 0;
}

.camp-section h3 {
    color: #008000; /* Green text */
    margin-bottom: 20px;
}

.camp-section ul {
    list-style: none;
    padding: 0;
}

.camp-section ul li {
    background: rgba(0, 128, 0, 0.1); /* Light green background */
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
}

/* Notice Section */
.notice-section {
    background: rgba(0, 128, 0, 0.1); /* Light green background */
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.notice-section h3 {
    color: #008000; /* Green text */
    margin-bottom: 15px;
}

.notice-section ul {
    list-style: none;
    padding: 0;
}

.notice-section ul li {
    background: rgba(0, 128, 0, 0.1); /* Light green background */
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
}

/* All Activity Fees Section */
.activity-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.activity-btn {
    background: #008000; /* Green background */
    border: none;
    padding: 10px 20px;
    color: #fff;
    font-size: 1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.activity-btn:hover {
    box-shadow: 0 0 10px #008000, 0 0 40px #008000, 0 0 80px #008000; /* Green glow */
}

/* Side-Scrolling Fees Section */
.fee-scroll-container {
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    white-space: nowrap;
    margin-bottom: 30px;
    padding-bottom: 20px; /* Space for scrollbar */
}

.fee-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.fee-scroll-container::-webkit-scrollbar-thumb {
    background: #008000; /* Green scrollbar */
    border-radius: 10px;
}

.fee-scroll-container::-webkit-scrollbar-track {
    background: rgba(0, 128, 0, 0.1); /* Light green track */
}

.fee-section {
    display: inline-block;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    background: rgba(0, 128, 0, 0.05); /* Very light green background */
    border-radius: 10px;
    margin-right: 20px;
}

.fee-section:last-child {
    margin-right: 0;
}

.fee-section h3 {
    color: #008000; /* Green text */
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.2rem;
    }

    .btn-neon {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .section h2 {
        font-size: 2rem;
    }

    .table-futuristic th, .table-futuristic td {
        padding: 10px;
    }
}
  /* ===== NOTIFICATION POPUP STYLES ===== */
  .notification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.notification-popup {
    background: white;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,128,0,0.3);
    transform: scale(0.8);
    transition: all 0.3s ease;
    position: relative;
    border: 3px solid #008000;
}

.notification-popup.active {
    transform: scale(1);
}

.notification-overlay.active {
    opacity: 1;
    visibility: visible;
}

.notification-title {
    color: #008000;
    font-size: 24px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: bold;
}

.notification-content {
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.notification-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #008000;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    border: none;
}

.notification-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.notification-btn {
    padding: 10px 25px;
    border-radius: 30px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.notification-btn-primary {
    background: #008000;
    color: white;
}

.notification-btn-secondary {
    background: white;
    color: #008000;
    border: 2px solid #008000;
}

.notification-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,128,0,0.3);
}
