/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
  }
  
  /* Enhanced Header styles */
  /* Enhanced Header styles */
header {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
  }
  
  /* Logo styling */
  header nav {
    width: 100%;
  }
  
  header nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  header h1 {
    margin: 0;
    font-size: 28px;
  }
  
  header h1 a {
    background: linear-gradient(45deg, #00ff9d, #00d4ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  }
  
  header h1 a:hover {
    opacity: 0.9;
    transform: scale(1.02);
  }
  
  /* Navigation styling */
  header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
  }
  
  header nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 16px;
    position: relative;
    transition: all 0.3s ease;
  }
  
  /* Underline effect for nav links */
  header nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: #ffffff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
  }
  
  header nav ul li a:hover::after {
    width: 100%;
  }
  
  /* Active state for nav links */
  header nav ul li a.active,
  header nav ul li a:hover {
    color: #ffffff;
    background: none;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    header nav .container {
      flex-direction: column;
      text-align: center;
    }
  
    header nav ul {
      flex-direction: column;
      gap: 15px;
      margin-top: 20px;
    }
  
    header h1 {
      margin-bottom: 20px;
    }
  
    header nav ul li a {
      display: block;
      padding: 10px 20px;
    }
  
    header nav ul li a::after {
      bottom: 5px;
    }
  }
  
  /* Active/Highlighted Link */
  .highlight, .current a {
    background-color: rgba(255,255,255,0.2);
    box-shadow: 0 0 10px rgba(255,255,255,0.5);
  }
  
  /* Main content styles */
  main {
    padding: 40px 0;
  }
  
  /* Multicolor headers */
  h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    font-weight: bold;
  }
  
  h1 { color: #ff6b6b; }
  h2 { color: #4ecdc4; }
  h3 { color: #45b7d1; }
  h4 { color: #f9c74f; }
  h5 { color: #90be6d; }
  h6 { color: #f8961e; }
  
  /* Form styles */
  form {
    background: #ffffff;
    padding: 30px;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
  }
  
  input[type="file"],
  input[type="number"],
  input[type="text"],
  input[type="email"],
  textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s ease;
  }
  
  input:focus, textarea:focus {
    outline: none;
    border-color: #4ecdc4;
    box-shadow: 0 0 10px rgba(78,205,196,0.3);
  }
  
  button {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.5s ease;
  }
  
  button:hover::before {
    left: 100%;
  }
  
  button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  }
  
  /* Result styles */
  #result {
    margin-top: 30px;
    padding: 30px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  .button {
    display: inline-block;
    background: linear-gradient(45deg, #1a1a2e, #0f3460);
    color: #ffffff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.5s ease;
  }
  
  .button:hover::before {
    left: 100%;
  }
  
  .button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  }
  
  /* FAQ styles */
  .faq-item {
    background: #ffffff;
    margin-bottom: 20px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  .faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  }
  
  .faq-item h2 {
    color: #4ecdc4;
  }
  
  /* Enhanced Footer styles */
  footer {
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
    color: #ffffff;
    text-align: center;
    padding: 40px 0;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
  }
  
  footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 10%, transparent 40%);
    animation: ripple 15s linear infinite;
    z-index: 1;
  }
  
  footer .container {
    position: relative;
    z-index: 2;
  }
  
  footer p {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .social-icons a {
    color: #ffffff;
    font-size: 24px;
    transition: all 0.3s ease;
  }
  
  .social-icons a:hover {
    color: #ff6b6b;
    transform: translateY(-3px);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    header .container {
      flex-direction: column;
      text-align: center;
    }
  
    nav ul {
      flex-direction: column;
      gap: 10px;
      margin-top: 20px;
    }
  
    #branding h1 {
      margin-bottom: 20px;
    }
  
    button, .button {
      width: 100%;
      text-align: center;
    }
  }