/* ===== HELP CENTER PAGE STYLES ===== */

/* Page Background */
body {
    background-color: #D3EBF9;
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

/* Main Section */
.help-section {
    width: 100%;
    padding: 80px 10%;
    display: flex;
    justify-content: center;
}

.help-container {
    text-align: center;
    width: 100%;
    max-width: 1100px;
}

/* Title + Subtitle */
.help-container h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}

.subtitle {
    font-size: 18px;
    color: #f0f0f0;
    margin-bottom: 40px;
}

/* ===== HELP BOXES ===== */
.help-boxes {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.help-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 25px;
    width: 280px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: all 0.3s ease;
}

.help-card:hover {
    background-color: #0097b2;
    color: #fff;
    transform: translateY(-8px) scale(1.02);
}

.help-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.help-card p {
    font-size: 14px;
    color: #555;
}

.help-card:hover p {
    color: #fff;
}

/* ===== CONTENT DISPLAY BOX ===== */
.help-content {
    background-color: #0097b2;
    padding: 30px;
    border-radius: 15px;
    color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    max-width: 700px;
    margin: 0 auto;
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.help-content p {
    font-size: 17px;
    line-height: 1.6;
}

/* ===== BUTTONS (Login & Register) ===== */
.help-btn {
    background-color: #fff;
    color: #0097b2;
    border: none;
    padding: 10px 25px;
    margin: 10px 5px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.help-btn:hover {
    background-color: #006f82;
    color: #fff;
    transform: scale(1.05);
}

/* ===== EMAIL FORM STYLING ===== */
.email-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

.email-form label {
    font-size: 16px;
    font-weight: 500;
}

.email-form input,
.email-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    width: 100%;
}

.email-form textarea {
    resize: none;
    height: 120px;
}

.email-form button {
    width: 160px;
    padding: 10px;
    border: none;
    background-color: #fff;
    color: #0097b2;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.email-form button:hover {
    background-color: #006f82;
    color: white;
}

/* ===== DROPDOWN MENU (Navbar) ===== */
.nav-links li.dropdown {
    position: relative;
}

.nav-links li.dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 180px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-radius: 6px;
    z-index: 10;
}

.nav-links li.dropdown .dropdown-menu li {
    list-style: none;
}

.nav-links li.dropdown .dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

 .nav-links li.dropdown .dropdown-menu li a:hover {
      background: #f0f0f0;
      color: #0097b2;
    }

.nav-links li.dropdown:hover .dropdown-menu {
    display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .help-boxes {
        flex-direction: column;
        align-items: center;
    }

    .help-card {
        width: 90%;
    }

    .help-content {
        width: 90%;
    }
}

  