/* Modern CSS Reset and Variables */
:root {
  --primary-color: #ff6600;
  --secondary-color: #ff9900;
  --dark-bg: #121212;
  --dark-card: #1e1e1e;
  --text-light: #ffffff;
  --text-gray: #e0e0e0;
  --shadow-sm: 0 4px 8px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.4);
  --transition: all 0.3s ease;
  --border-radius: 10px;
}

/* Global Styling */
body.dark-theme {
    background-color: var(--dark-bg);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Modern Card Design */
.card {
    background: var(--dark-card);
    padding: 25px;
    border-radius: var(--border-radius);
    width: 300px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Enhanced Button Styles */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 14px 28px;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Modern Navbar */
/* First, remove duplicate navbar and nav-container styles, keep only these updated versions */
.navbar {
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 60px;
}

/* Update hamburger menu styles */
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    color: var(--text-light);
}

.hamburger-menu i {
    font-size: 24px;
}

/* Mobile styles */
@media screen and (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 10px 20px;
    }

    .nav-logo {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .hamburger-menu {
        display: block;
    }

    .nav-links, .nav-buttons {
        display: none;
        width: 100%;
    }

    .nav-links.active, .nav-buttons.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 15px;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links li a {
        display: block;
        padding: 12px;
    }

    .nav-buttons {
        gap: 10px;
    }

    .nav-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .username {
        margin-bottom: 10px;
    }
}

/* Enhanced Navigation Links */
.nav-links {
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links li a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.nav-links li a:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

/* Modern Hero Section */
.hero-section {
    padding: 120px 20px;
    background: linear-gradient(135deg, var(--dark-bg), var(--dark-card));
    text-align: center;
    margin-top: 60px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Modern Form Styling */
.form-section {
    max-width: 450px;
    margin: 80px auto;
    padding: 30px;
    background: var(--dark-card);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.form-section input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
}

/* Responsive Design Improvements */
@media screen and (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .card {
        width: 100%;
        max-width: 350px;
    }
}
body {
    font-family: 'Roboto', sans-serif; /* Default font */
    margin: 0;
    padding: 0;
}

/* Headings */
h1, h2, h3 {
    font-family: 'Poppins', sans-serif; /* Heading font */
    margin: 0;
}
/* Keyframes for animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Card Styling */
.card {
    background: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s; /* Smooth transition for hover */
}

/* Button Styles */
.cta-button {
    display: inline-block;
    background: #ff9900;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s, transform 0.3s; /* Added transform */
}

.cta-button:hover {
    background: #e68a00;
    transform: scale(1.05); /* Slightly scale up on hover */
}

/* Button Active State */
.cta-button:active {
    transform: scale(0.98); /* Slightly shrink on click */
}
/* Smooth Scroll for the entire page */
html {
    scroll-behavior: smooth;
}

/* Show the card with a fade-in effect after the DOM content loads */
.card.show {
    opacity: 1; /* Make card visible */
    animation: fadeIn 0.6s forwards; /* Trigger animation */
}


/* Card Hover Effects */
.card:hover {
    transform: translateY(-10px); /* Lift the card */
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4); /* Deeper shadow */
}

/* About Section Styling */
.about-section {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, #1a1a1a, #121212);
    border-bottom: 1px solid rgba(255, 153, 0, 0.1);
    border-top: 1px solid rgba(255, 153, 0, 0.1);
}

.section-title {
    font-size: 2.8rem;
    color: #ff9900;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.section-intro {
    font-size: 1.25rem;
    margin: 0 auto 30px;
    line-height: 1.7;
    max-width: 800px;
    color: #e0e0e0;
    font-weight: 400;
    opacity: 0.9;
    text-align: left;
    font-family: 'Merriweather', serif;
    letter-spacing: 0.3px;
    padding: 0 20px;
}


.section-description {
    font-size: 1.1rem; /* Description font size */
    margin: 0 auto 30px; /* Centering and margin */
    line-height: 1.7; /* Increased line height */
    max-width: 800px; /* Limit width */
    text-align: center; /* Centering the description */
    font-family: 'Merriweather', serif; /* Font family for description */
    color: #f0f0f0; /* Description text color */
    font-weight: 300; /* Light weight for description */
    letter-spacing: 0.3px; /* Letter spacing */
    padding: 0 20px; /* Padding for responsiveness */
}

.subheading {
    font-size: 2rem; /* Slightly smaller than the main title */
    color: #ff9900; /* Highlight color */
    margin: 40px 0 15px; /* Margins for spacing */
    font-family: 'Arial', sans-serif; /* Consistent font */
}

.benefits-list {
    list-style-type: none;
    padding: 0;
    margin: 40px auto;
    max-width: 800px;
    text-align: left;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefits-list li {
    margin: 0;
    padding: 20px;
    background: rgba(255, 153, 0, 0.05);
    border-radius: 8px;
    font-size: 1.1rem;
    line-height: 1.7;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 153, 0, 0.1);
}

.benefits-list li:hover {
    background: rgba(255, 153, 0, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
/* Navbar Styling */
.navbar {
    background-color: #1a1a1a;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    max-height: 50px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.8em;
    font-weight: bold;
    color: #ff6600;
}

.nav-logo img {
    margin-left: 10px;
    vertical-align: middle;
}

/* Navigation Links - Fix alignment */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    /* Remove the negative margin that was causing misalignment */
}

/* Mobile Navigation Styles */
@media screen and (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        position: relative;
    }

    .nav-logo {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
    }

    .nav-links, .nav-buttons {
        display: none;
        width: 100%;
        background: rgba(26, 26, 26, 0.98);
    }

    .nav-links.active, .nav-buttons.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links li a {
        display: block;
        padding: 15px;
        width: 100%;
    }

    .nav-buttons {
        padding: 10px 0;
    }

    .nav-buttons .btn {
        width: 100%;
        margin: 5px 0;
    }

    .hamburger-menu {
        display: block;
        background: transparent;
        border: none;
        color: var(--text-light);
        font-size: 24px;
        cursor: pointer;
        padding: 10px;
    }

    .hamburger-menu:focus {
        outline: none;
    }
}

.hamburger-menu span {
    width: 30px;
    height: 3px;
    background-color: white;
    transition: 0.3s;
}

.discount-badge {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 5px;
}

.discount-badge i {
    color: #f1c40f;
    margin-right: 8px;
}

@keyframes glow {
    from {
        box-shadow: 0 0 10px -10px #3498db;
    }
    to {
        box-shadow: 0 0 20px -10px #3498db;
    }
}
.anniversary-banner {
    background: linear-gradient(45deg, #1a1a1a, #2d2d2d);
    padding: 20px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid var(--primary-color);
}

.slideshow-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.slide {
    display: none;
    animation: fadeEffect 1.5s;
}

.slide.active {
    display: block;
}

.celebration-content {
    text-align: center;
    padding: 20px;
    color: #fff;
}

.celebration-icon, .milestone-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    animation: bounce 2s infinite;
}

.celebration-content h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 10px 0;
}

.celebration-content p {
    color: #fff;
    font-size: 1.1rem;
    opacity: 0.9;
}

@keyframes fadeEffect {
    from {opacity: 0.4}
    to {opacity: 1}
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-20px);}
    60% {transform: translateY(-10px);}
}


/* Captcha Container Styles */
.captcha-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    justify-content: center;
}

.captcha-image {
    border: 1px solid #ddd;
    border-radius: 4px;
    height: 50px;
}

.refresh-captcha {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: #666;
    transition: color 0.3s;
}

.refresh-captcha:hover {
    color: #333;
}

.refresh-captcha i {
    font-size: 18px;
}

/* For the captcha input field */
#captcha {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-top: 5px;
}