/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

/* Container Styling */
.career-container {
    max-width: 600px;
    margin: 50px auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Heading */
h2 {
    text-align: center;
    color:white;
    margin-bottom: 20px;
}

/* Form Styling */
form {
    display: flex;
    flex-direction: column;
}

/* Label */
label {
    font-weight: bold;
    margin-top: 10px;
}

/* Input Fields */
input,
textarea,
select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

/* File Input */
input[U-Panel="file"] {
    border: none;
}

/* Submit Button */
button {
    margin-top: 20px;
    padding: 12px;
    background: #007bff;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .career-container {
        width: 90%;
    }

    button {
        font-size: 14px;
    }
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    }

    .navbar-nav {
        text-align: center;
    }
}





  
  /* Fade In-Out Animation */
  @keyframes fadeInOut {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
  }
  
  /* Hide the preloader after animation */
  body.loaded #preloader {
    opacity: 0;
    visibility: hidden;
  }
  /* Footer */
footer {
    background: #222;
    color: white;
    padding: 20px 0;
}

footer a {
    color: #bbb;
    transition: 0.3s;
    text-decoration: none;
}

footer a:hover {
    color: #fff;
}



  
  .form-group {
    margin-bottom: 15px;
  }
  label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
  }
  input, textarea, select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
  }
  textarea {
    height: 100px;
  }
  button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    font-size: 16px;
    cursor: pointer;
  }
  #status {
    margin-top: 15px;
    padding: 10px;
    display: none;
  }
  .success {
    background: #dfd;
    display: block;
  }
  .error {
    background: #fdd;
    display: block;
  }

/* Footer Styles */
.footer {
  background-color: rgba(0, 0, 0, 0.85);
  color: #fff;
  text-align: center;
  padding: 20px 10px;
  z-index: 2;
}

.footer-content {
  max-width: 960px;
  margin: 0 auto;
}

.footer p {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.social-icons a {
  color: #fff;
  font-size: 1.4rem;
  transition: color 0.3s, transform 0.3s;
}

.social-icons a:hover {
  color: #00acee;
  transform: scale(1.2);
}

/* Responsive Footer */
@media (max-width: 480px) {
  .footer p {
    font-size: 0.85rem;
  }

  .social-icons a {
    font-size: 1.2rem;
  }
}