 @keyframes slideUp {
     from {
         opacity: 0;
         transform: translateY(50px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .header {
     background: linear-gradient(135deg, #2c3e50, #34495e);
     color: white;
     padding: 40px;
     text-align: center;
     position: relative;
     overflow: hidden;
 }

 .header::before {
     content: '';
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
     animation: rotate 20s linear infinite;
 }

 @keyframes rotate {
     0% {
         transform: rotate(0deg);
     }

     100% {
         transform: rotate(360deg);
     }
 }

 .header h1 {
     font-size: 3rem;
     margin-bottom: 10px;
     position: relative;
     z-index: 1;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
 }

 .header p {
     font-size: 1.2rem;
     opacity: 0.9;
     position: relative;
     z-index: 1;
 }

 .jobs-container {
     padding: 40px;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
     gap: 30px;
 }

 .job-card {
     background: white;
     border-radius: 15px;
     padding: 30px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     border: 1px solid #e1e8ed;
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
 }

 .job-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 4px;
     background: linear-gradient(90deg, #1714a5, #e08700);
 }

 .job-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
 }

 .job-title {
     font-size: 1.8rem;
     color: #2c3e50;
     margin-bottom: 20px;
     font-weight: 700;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .job-title::before {
     content: '💼';
     font-size: 1.5rem;
 }

 .job-requirements {
     list-style: none;
     margin-bottom: 25px;
 }

 .job-requirements li {
     margin-bottom: 12px;
     padding-left: 25px;
     position: relative;
     color: #555;
     line-height: 1.5;
 }

 .job-requirements li::before {
     content: '✓';
     position: absolute;
     left: 0;
     color: #27ae60;
     font-weight: bold;
     font-size: 1.1rem;
 }

 .salary-range {
     background: linear-gradient(135deg, #f39c12, #e67e22);
     color: white;
     padding: 15px 20px;
     border-radius: 10px;
     margin-bottom: 25px;
     text-align: center;
     font-weight: 600;
     font-size: 1.1rem;
     box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
 }

 .apply-btn {
     background: linear-gradient(135deg, #1714a5, #e08700);
     color: white;
     border: none;
     padding: 15px 30px;
     border-radius: 50px;
     font-size: 1.1rem;
     font-weight: 600;
     cursor: pointer;
     width: 100%;
     transition: all 0.3s ease;
     text-transform: uppercase;
     letter-spacing: 1px;
     position: relative;
     overflow: hidden;
 }

 .apply-btn::before {
     content: '';
     position: absolute;
     top: 50%;
     left: 50%;
     width: 0;
     height: 0;
     background: rgba(255, 255, 255, 0.2);
     border-radius: 50%;
     transform: translate(-50%, -50%);
     transition: all 0.5s ease;
 }

 .apply-btn:hover::before {
     width: 300px;
     height: 300px;
 }

 .apply-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
 }

 .apply-btn:active {
     transform: translateY(0);
 }



 @media (max-width: 768px) {
     .jobs-container {
         grid-template-columns: 1fr;
         padding: 20px;
     }

     .header h1 {
         font-size: 2rem;
     }

     .job-card {
         padding: 20px;
     }
 }

 .floating-shapes {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     pointer-events: none;
     z-index: -1;
 }

 .shape {
     position: absolute;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     animation: float 6s ease-in-out infinite;
 }

 .shape:nth-child(1) {
     width: 60px;
     height: 60px;
     top: 20%;
     left: 10%;
     animation-delay: 0s;
 }

 .shape:nth-child(2) {
     width: 40px;
     height: 40px;
     top: 60%;
     right: 10%;
     animation-delay: 2s;
 }

 .shape:nth-child(3) {
     width: 80px;
     height: 80px;
     bottom: 20%;
     left: 20%;
     animation-delay: 4s;
 }

 @keyframes float {

     0%,
     100% {
         transform: translateY(0px);
     }

     50% {
         transform: translateY(-20px);
     }
 }

 /* index page */
 /* <!-- form popup start--> */
 /* form */
 #popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1201;
}

#popup-container {
    position: relative;
    width: 30%;
    background: white;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    border-top: 2px solid #f27b1a;
    border-bottom: 2px solid #000d81;
    border-right: 2px solid #f27b1a;
    border-left: 2px solid #000d81;
    max-height: 95vh;
    overflow-y: auto;
}

#popup-container h1 {
    margin: 0 0 15px;
    text-align: center;
    font-size: 24px;
    color: #000d81;
    border-bottom: 1px solid #f27b1a;
    padding-bottom: 8px;
}

#popup-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#popup-form input,
#popup-form textarea {
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
    width: 100%;
    box-sizing: border-box;
    resize: vertical;
}

#popup-form button[type="submit"] {
    background-color: #f27b1a;
    color: white;
    padding: 12px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    /* margin-top: 10px; */
}

#close-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: red;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 16px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    #popup-container {
        width: 90%;
    }

    #popup-container h1 {
        font-size: 20px;
    }

    #close-btn {
        width: 26px;
        height: 26px;
        font-size: 14px;
        top: 6px;
        right: 6px;
    }
}

.form-wrapper {
      background: #ffffff;
      padding: 15px 40px;
      border-radius: 14px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.08);
      width: 100%;
      /* max-width: 600px; */
    }

    .form-wrapper h2 {
      text-align: center;
      margin-bottom: 30px;
      font-size: 26px;
      color: #333;
    }

    .form-group {
      position: relative;
      margin-bottom: 25px;
    }

    .form-group i {
      position: absolute;
      top: 50%;
      left: 14px;
      transform: translateY(-50%);
      color: var(--tc-primary-home);
      font-size: 15px;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 12px 14px 12px 40px;
      border: 1px solid #ddd;
      border-radius: 8px;
      background: #fefefe;
      font-size: 15px;
      transition: border-color 0.3s;
    }

    .form-group textarea {
      min-height: 100px;
      resize: vertical;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      border-color: var(--tc-primary-home);
      outline: none;
    }

    .button-wrapper {
      display: flex;
      justify-content: center;
      margin-top: 10px;
    }

    .button-wrapper button {
      background: var(--tc-primary-home);
      color: #fff;
      padding: 12px 28px;
      font-size: 16px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0,123,255,0.3);
      transition: background 0.3s, transform 0.2s;
    }

    .button-wrapper button:hover {
      background: #000d81;
      transform: translateY(-1px);
    }

    @media (max-width: 480px) {
      .form-wrapper {
        padding: 30px 20px;
      }

      .form-group i {
        left: 10px;
      }

      .form-group input,
      .form-group textarea {
        padding-left: 38px;
      }
    }
