body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background: url('1.jpeg') no-repeat center center;
  background-size: cover; 
    color: #333;
}

header {
    background: #1e90ff;
    color: white;
    padding: 0.2rem;
    /* reduced from 1rem */
    text-align: center;
    z-index: 999;
}

header h1 {
    font-size: 1.5rem;
    /* reduced size */
    margin: 0.3rem 0;
}

header p {
    font-size: 0.9rem;
    /* smaller subtitle */
    margin: 0;
}

/* Hamburger button */
.menu-btn {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    color: white;
}

/* Hidden nav by default */
nav {
    display: none;
    flex-direction: column;
    background: #04519ffc;
    padding: 1rem;
    margin-bottom: 20px;
    margin-top: -20px;
    z-index: 10000;
    border-radius: 5px;
}

nav a {
    text-decoration: none;
    font-weight: 600;
    color: white;
    padding: 0.5rem 0;
    text-align: center;
}

nav a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
}


/* Show nav when active */
nav.active {
    display: flex;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}


.container {
    max-width: 1000px;
    margin: auto;
    padding: 2rem;
}

.card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    margin-top: 0;
    color: #1e90ff;
}

.btn {
    background: #1e90ff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
}

.btn:hover {
    background: #006ad1;
}

input,
select {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.countdown {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e84118;
}



.profile-item {
    margin: 8px 0;
    font-size: 1rem;
    
}

.profile-label {
    font-weight: 600;
    color: #555;
}

.profile-value {
    color: #111;
 
}
/* Footer */
      footer {
      position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.1);
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        text-align: center;
        padding: 12px 10px;
        z-index: 9999;
        backdrop-filter: blur(10px);
      }
      .footer-note {
          font-size: 14px;
          margin-top: 10px;
          color: #00e6e6;
      } 
      .faq-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      max-width: 1100px;
      margin: auto;
    }

    .card {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      padding: 20px;
      transition: transform 0.2s ease-in-out;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .question {
      font-weight: bold;
      color: #34495e;
      margin-bottom: 10px;
    }

    .answer {
      color: #555;
      line-height: 1.6;
    }
      h1 {
      text-align: center;
      margin-bottom: 30px;
      color: #2c3e50;
    }