  body {
      background-color: #000;
      color: #fff;
      font-family: 'Outfit', sans-serif;
      margin: 0;
      padding: 0;
    }

    /* Breadcrumb Banner Section */
    .tz-breadcrumb {
      position: relative;
      background-image: url('../images/breadcrumb/carrer1.jpg');
      background-size: cover;
      background-position: center;
      padding: 120px 0 60px;
      text-align: center;
      z-index: 1;
    }

    .tz-breadcrumb::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      /* background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(10, 25, 47, 0.7)); */
      z-index: -1;
    }

    /* Hero Heading with Animation */
    .hero-title {
      font-family: 'Teko', sans-serif;
      font-size: 3.5rem;
      font-weight: 600;
      color: #91d904;
      margin: 0;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 1s ease forwards;
      text-shadow: 0 0 20px rgba(100, 200, 255, 0.4);
    }

    .hero-subtitle {
      font-size: 1.2rem;
      color: #fffefe;
      max-width: 700px;
      margin: 1rem auto 0;
      line-height: 1.6;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 1s ease 0.3s forwards;
    }

    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Breadcrumb Navigation */
    .tz-breadcrumb__menu {
      margin-top: 2rem;
      opacity: 0;
      animation: fadeInUp 1s ease 0.6s forwards;
    }

    .tz-breadcrumb__list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      justify-content: center;
      gap: 12px;
      font-size: 0.95rem;
    }

    .tz-breadcrumb__list a {
      color: #fffdfd;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .tz-breadcrumb__list a:hover {
      color: #91d904;
    }

    .tz-breadcrumb__list .active {
      color: #91d904;
      font-weight: 600;
    }

    .tz-breadcrumb__list i {
      font-size: 0.9rem;
      opacity: 0.8;
    }

    /* Form Section */
    .form-section {
      padding: 100px 0;
    }

    .form-card {
      background: linear-gradient(145deg, #111, #1a1a1a);
      border: 1px solid #333;
      border-radius: 16px;
      padding: 2.5rem;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(10px);
    }

    .form-card h3 {
      color: #fff;
      font-size: 1.8rem;
      margin-bottom: 1rem;
      font-weight: 600;
    }

    .form-card p {
      color: #aaa;
      font-size: 0.95rem;
      margin-bottom: 1.5rem;
    }

    /* Labels & Inputs */
    .form-label {
      color: #ccc;
      font-size: 0.9rem;
      margin-bottom: 0.5rem;
    }

    .form-control,
    textarea,
    select {
      background-color: #1e1e1e;
      border: 1px solid #444;
      color: #fff;
      border-radius: 8px;
      padding: 10px 14px;
      font-family: 'Outfit', sans-serif;
    }

    .form-control::placeholder,
    textarea::placeholder {
      color: #777;
    }

    .form-control:focus,
    textarea:focus,
    select:focus {
      border-color: #91d904;
      box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.25);
      outline: none;
    }

    /* Submit Button */
    .submit-btn {
      background: linear-gradient(45deg, #91d904, #91d904);
      color: white;
      border: none;
      padding: 14px 30px;
      font-weight: 600;
      font-size: 1.05rem;
      border-radius: 8px;
      cursor: pointer;
      width: 100%;
      transition: all 0.3s ease;
      margin-top: 1rem;
    }

    .submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(13, 110, 253, 0.4);
    }

    /* Declaration Checkbox */
    .declaration {
      margin: 1.5rem 0;
    }

    .declaration label {
      color: #ccc;
      font-size: 0.95rem;
    }

    .declaration input[type="checkbox"] {
      transform: scale(1.2);
      margin-right: 10px;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .hero-title {
        font-size: 2.5rem;
      }
      .hero-subtitle {
        font-size: 1rem;
        padding: 0 15px;
      }
      .form-card {
        padding: 1.5rem;
      }
    }