* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f9f5eb;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Navigation Bar */
.navbar {
    background: linear-gradient(135deg, #8a6d1f 0%, #b8941f 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 145px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    padding: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    color: #8a6d1f;
    font-weight: bold;
    font-size: 1.2rem;
}

.logo-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 15px 15px;
    display: block;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #f9f5eb;
}

.nav-links a.active {
    background-color: rgba(212, 175, 55, 0.3);
    font-weight: 600;
}

.nav-links a i {
    margin-right: 8px;
}

.login-btn {
    background-color: #d4af37;
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.login-btn:hover {
    background-color: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: white;
    padding: 30px 0;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.logo {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.tagline {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 20px;
}

/* Login Page Styles */
.login-page {
    display: none;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.login-container {
    background-color: white;
    width: 100%;
    max-width: 450px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border-top: 5px solid #d4af37;
}

.login-header {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

.login-header h2 {
    color: white;
    margin-bottom: 10px;
    border-bottom: none;
    display: block;
}

.login-header p {
    opacity: 0.9;
}

.login-form {
    padding: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #8a6d1f;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e1d5b6;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.login-button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.login-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.login-links {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    font-size: 0.9rem;
}

.login-links a {
    color: #8a6d1f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.login-links a:hover {
    color: #d4af37;
    text-decoration: underline;
}

.back-to-home {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.back-to-home a {
    color: #8a6d1f;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.back-to-home a:hover {
    color: #d4af37;
}

/* Success Popup Message */
.success-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: white;
    width: 90%;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    text-align: center;
    padding: 40px 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    border-top: 8px solid #d4af37;
}

.success-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.success-popup h3 {
    color: #8a6d1f;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.success-popup p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.success-popup .user-name {
    color: #d4af37;
    font-weight: 700;
}

.countdown-timer {
    font-size: 1.2rem;
    color: #8a6d1f;
    font-weight: 600;
    margin-top: 20px;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Slider Styles */
.slider-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.slider {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.8s ease;
}

.slide {
    width: 33.3333%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 40px;
    text-align: center;
    color: white;
}

.slide-1 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/slide-01.png');
    background-size: cover;
    background-position: center;
}

.slide-2 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/slide-02.png');
    background-size: cover;
    background-position: center;
}

.slide-3 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/slide-03.png');
    background-size: cover;
    background-position: center;
}

.slide h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 25px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: rgba(212, 175, 55, 1);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #d4af37;
    transform: scale(1.2);
}

/* Main Content Area */
.main-content {
    display: block;
}

/* Section Styles */
section {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #d4af37;
    scroll-margin-top: 80px;
    /* For anchor links to account for fixed navbar */
}

h2 {
    color: #b8941f;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0e6d3;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
}

h2 i {
    margin-right: 10px;
    color: #d4af37;
}

h3 {
    color: #8a6d1f;
    margin: 15px 0;
    font-size: 1.4rem;
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

th {
    background-color: #f5e8c6;
    color: #8a6d1f;
    font-weight: 600;
    padding: 15px;
    text-align: center;
    border: 1px solid #e1d5b6;
}

td {
    padding: 12px 15px;
    text-align: center;
    border: 1px solid #e1d5b6;
}

tr:nth-child(even) {
    background-color: #fcf8f0;
}

tr:hover {
    background-color: #f9f2e1;
}

.highlight {
    background-color: #fff9e6 !important;
    font-weight: 600;
}

/* Plan Cards */
.plans-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}

.plan-card {
    flex: 1;
    min-width: 250px;
    background: linear-gradient(135deg, #fcf6e9 0%, #f9f0d9 100%);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-top: 5px solid #d4af37;
}

.plan-card h3 {
    color: #b8941f;
    margin-bottom: 15px;
}

.plan-card .amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #8a6d1f;
    margin: 10px 0;
}

.plan-card .bonus {
    color: #d4af37;
    font-weight: 600;
    margin: 8px 0;
}

/* Terms & Conditions */
.terms-section {
    background-color: #fffcf5;
    border-left-color: #8a6d1f;
}

.terms-list {
    padding-left: 20px;
    margin: 15px 0;
}

.terms-list li {
    margin-bottom: 10px;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    color: #8a6d1f;
    border-top: 1px solid #e1d5b6;
    font-size: 0.9rem;
    background-color: #fcf8f0;
    border-radius: 10px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Responsive */
@media (max-width: 992px) {
    .slider-container {
        height: 350px;
    }

    .slide h2 {
        font-size: 2rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #8a6d1f 0%, #b8941f 100%);
        flex-direction: column;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .menu-toggle {
        display: block;
    }

    .logo-text {
        display: none;
    }

    .success-popup {
        padding: 30px 20px;
        width: 95%;
    }

    .success-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .plans-container {
        flex-direction: column;
    }

    table {
        font-size: 0.9rem;
    }

    th,
    td {
        padding: 8px 5px;
    }

    header {
        padding: 20px 0;
    }

    .logo {
        font-size: 2.2rem;
    }

    .slider-container {
        height: 300px;
    }

    .slide h2 {
        font-size: 1.8rem;
    }

    .slide p {
        font-size: 1rem;
    }

    .login-container {
        margin: 20px;
    }

    .success-popup h3 {
        font-size: 1.5rem;
    }
}

/* Print Styles */
@media print {
    body {
        background-color: white;
        color: black;
    }

    .navbar,
    .slider-container,
    .login-page,
    .success-popup,
    .popup-overlay {
        display: none;
    }

    section {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }

    header {
        box-shadow: none;
        border: 2px solid #d4af37;
    }
}