﻿
    body {
       font-family: 'Poppins', sans-serif !important;
      background: #f9fafe;
      color: #333;
      line-height: 1.6;
       box-sizing: border-box; margin: 0; padding: 0; 
    }

    header {
      background: #373c84;
      padding: 40px 20px;
      text-align: center;
      color: #fff;
      animation: fadeInDown 1s ease-in-out;
      margin-top:60px;
    }

    header h1 {
      font-size: 2.5rem;
      margin-bottom: 10px;
    }

    header p {
      font-size: 1.1rem;
      opacity: 0.9;
    }

    .section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .section h2 {
      text-align: center;
      color: #005792;
      margin-bottom: 30px;
      position: relative;
    }

    .section h2::after {
      content: '';
      width: 100px;
      height: 3px;
      background: #005792;
      display: block;
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .job-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .job-card {
      background: #fff;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.08);
      transition: transform 0.3s, box-shadow 0.3s;
      animation: fadeInUp 0.8s ease;
    }

    .job-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

    .job-card h3 {
      color: #0073e6;
      margin-bottom: 10px;
    }

    .job-card p {
      font-size: 0.95rem;
      margin-bottom: 10px;
    }

    .benefits {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .benefit-box {
      background: #ffffff;
      padding: 20px;
      text-align: center;
      border-radius: 10px;
      animation: fadeIn 0.5s ease;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
       transition: transform 0.3s, box-shadow 0.3s;
      animation: fadeInUp 0.8s ease;
      
    }
    
    .benefit-box:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }

    .benefit-box img {
      width: 40px;
      margin-bottom: 10px;
    }

    .apply-form {
      background: #fff;
      padding: 30px 50px 20px 25px;
      border-radius: 12px;
      max-width: 650px;
      margin: 30px auto;
      box-shadow: 0 4px 12px rgba(0,0,0,0.4);
      animation: fadeInUp 1s ease;
    }

    .apply-form input,
    .apply-form textarea {
      width: 100%;
      padding: 12px;
      margin: 10px 0;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 1rem;
    }

    .apply-form button {
      background: #0073e6;
      color: white;
      padding: 12px 20px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-size: 1rem;
      transition: background 0.3s ease;
    }

    .apply-form button:hover {
      background: #005bb5;
    }

   .hero-content {
  max-width: 800px;
  animation: fadeInLeft 1.5s ease-out;
  background: rgba(255, 255, 255, 0.9);
/* Optional: dark overlay for readability */
  padding: 20px;
  border-radius: 10px;
}