* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

body, html {
  height: 100%;
  overflow-x: hidden;
  color: white;
}

#tsparticles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background-color: rgba(0, 0, 0, 0.6);
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: #00c853;
}

.auth-btns button {
  background-color: #00c853;
  border: none;
  padding: 10px 20px;
  color: white;
  margin-left: 10px;
  border-radius: 5px;
  cursor: pointer;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  padding: 60px 20px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease-out;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  animation: fadeInUp 1.5s ease-out;
}

.search-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 2s ease-out;
}

.search-form input,
.search-form select {
  padding: 10px;
  border-radius: 5px;
  border: none;
  min-width: 200px;
}

.search-form button {
  background-color: #00c853;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

.keywords {
  margin-top: 20px;
  animation: fadeIn 2.5s ease-out;
}

.keywords span {
  background: white;
  color: #00c853;
  padding: 6px 12px;
  border-radius: 4px;
  margin: 5px;
  display: inline-block;
}

/* General Styles */
.partners {
  text-align: center;
  padding: 40px 20px;
}

.partners h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.partners p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.partners-logos img {
  max-width: 250px;
  height: auto;
  transition: transform 0.3s ease;
}

.partners-logos img:hover {
  transform: scale(1.1);
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
  .partners-logos {
    gap: 20px;
  }

  .partners-logos img {
    max-width: 130px;
  }
}

@media screen and (max-width: 768px) {
  .partners h2 {
    font-size: 1.8rem;
  }

  .partners p {
    font-size: 1rem;
  }

  .partners-logos {
    gap: 15px;
  }

  .partners-logos img {
    max-width: 120px;
  }
}

@media screen and (max-width: 480px) {
  .partners h2 {
    font-size: 1.5rem;
  }

  .partners p {
    font-size: 0.9rem;
  }

  .partners-logos {
    gap: 10px;
    justify-content: center;
  }

  .partners-logos img {
    max-width: 100px;
  }
}


/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.container {
  position: relative;
  text-align: center;
  font-size: 48px;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease-out;
  justify-content: center;
}

/* Mobile-Friendly */
@media (max-width: 768px) {
  .partners-logos {
    flex-direction: column;
    gap: 20px;
  }

  .partners-logos img {
    max-width: 120px;
  }
}
#container {
  color: #999;
  text-transform: uppercase;
  font-size: 36px;
  font-weight: bold;
  padding-top: 200px;
  position: fixed;
  width: 100%;
  bottom: 45%;
  display: block;
  text-align: center;
  top: -163px;
  position: relative;
}

#flip {
  height:50px;
  overflow:hidden;
}

#flip > div > div {
  color:#fff;
  padding:4px 12px;
  height:45px;
  margin-bottom:45px;
  display:inline-block;
}

#flip div:first-child {
  animation: show 5s linear infinite;
}

#flip div div {
  background:#42c58a;
}
#flip div:first-child div {
  background:#4ec7f3;
}
#flip div:last-child div {
  background:#DC143C;
}

@keyframes show {
  0% {margin-top:-270px;}
  5% {margin-top:-180px;}
  33% {margin-top:-180px;}
  38% {margin-top:-90px;}
  66% {margin-top:-90px;}
  71% {margin-top:0px;}
  99.99% {margin-top:0px;}
  100% {margin-top:-270px;}
}
.why-choose-us {
  text-align: center;
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.why-choose-us h2 {
  font-size: 3rem;
  color: #ffffff;
}

.underline {
  width: 60px;
  height: 2px;
  background: #ffffff;
  margin: 10px auto 40px;
}

.features {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.feature {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  flex: 1 1 30%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.icon {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #85c441;
}

.feature h3 {
  font-size: 1.2rem;
  color: #000000;
  margin-bottom: 10px;
}
p{
  color:rgb(86, 86, 86) ;
}
.containers {
  display: flex;
  flex-wrap: wrap;
  padding: 40px;
  max-width: 1200px;
  margin: auto;
}

.left, .right {
  flex: 1;
  min-width: 300px;
}

.left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
  padding-right: 40px;
}

.left img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.job-alert {
  grid-column: span 2;
  background-color: #2a4fff;
  color: white;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.job-alert h3 {
  margin-bottom: 10px;
}

.right h1 {
  font-size: 32px;
  margin-bottom: 30px;
}

.feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.feature-icon {
  width: 40px;
  height: 40px;
  background-color: #e0e5ff;
  border-radius: 8px;
  margin-right: 20px;
}

.feature-text h3 {
  margin-bottom: 5px;
}

.feature-text p {
  color: #666;
  font-size: 14px;
}
/* Job Listings Styles */
.job-listings {
  margin-top: 40px;
  padding: 20px;
}

.job-listings h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

.job-listings ol {
  padding-left: 20px;
}

.job-listings li {
  margin-bottom: 30px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #f9f9f9;
}

.job-listings h3 {
  font-size: 1.5rem;
  color: #007BFF;
}

.job-listings p {
  margin: 5px 0;
  color: #555;
}

.job-listings strong {
  font-weight: bold;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #FFD700;
}

.auth-btns {
  display: flex;
  gap: 10px;
}

.auth-btns button {
  background-color: #FFD700;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 1rem;
  color: #333;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.auth-btns button:hover {
  background-color: #ffa500;
}

/* Hamburger Menu Styles */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger .bar {
  width: 25px;
  height: 3px;
  background-color: white;
  border-radius: 5px;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
  nav ul {
    position: absolute;
    top: 60px;
    right: 0;
    background-color: #333;
    width: 200px;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    display: none;
  }

  nav ul.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .auth-btns {
    display: none;
  }
}
/* General Footer Styles */
footer {
  background-color: #222;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-section {
  flex: 1 1 250px;
  margin-bottom: 20px;
}

.footer-section h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.footer-section p,
.footer-section ul {
  font-size: 1rem;
  line-height: 1.6;
}

.footer-section ul {
  padding-left: 0;
}

.footer-section ul li {
  list-style-type: none;
}

.footer-section ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #00c853;
}

.social-icons {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
}

.social-icon {
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
  padding: 10px;
  border-radius: 50%;
  background-color: #444;
  transition: background-color 0.3s, color 0.3s;
}

.social-icon:hover {
  background-color: #00c853;
  color: #fff;
}

/* Footer Bottom */
.footer-bottom {
  background-color: #111;
  padding: 20px 0;
  margin-top: 30px;
}

.footer-bottom p {
  font-size: 1rem;
  color: #bbb;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-section {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .social-icon {
    font-size: 1rem;
    padding: 8px;
  }
}
.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.cards{
  justify-content: center;
  text-align: center;
  cursor: pointer;
  flex-direction:column;
}
.cards h1{
  font-family: 'Roboto', sans-serif;
  font-size: 3rem;
}

.card {
  position: relative;
  width: 100%;
  height: 250px;
  color: white;
  border-radius: 10px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.card-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.card h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.card p {
  font-size: 1.1rem;
}
 .notification-form {
      background: #fff;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      width: 100%;
      max-width: 400px;
    }

    .notification-form h2 {
      margin-bottom: 20px;
      font-size: 24px;
      color: #333;
    }

    .notification-form label {
      font-weight: bold;
      margin-top: 10px;
      display: block;
      color: #555;
    }

    .notification-form input,
    .notification-form textarea {
      width: 100%;
      padding: 10px;
      margin-top: 5px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 16px;
    }

    .notification-form button {
      margin-top: 20px;
      width: 100%;
      padding: 12px;
      background-color: #007bff;
      border: none;
      color: white;
      font-size: 16px;
      border-radius: 6px;
      cursor: pointer;
    }

    .notification-form button:hover {
      background-color: #0056b3;
    }

    @media (max-width: 500px) {
      .notification-form {
        padding: 20px;
      }
    }.wrapper {
      max-width: 1100px;
      padding: 20px 10px;
      margin: 0 60px 35px;
      overflow: hidden;
    }
    .wrapper .card {
      background: #fff;
      display: flex;
      height: auto;
      flex-direction: column;
      border-radius: 20px;
      box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
    }
    .wrapper .card:hover {
      transform: translateY(-10px);
    }
    .card .card-image {
      position: relative;
    }
    .card .card-image img {
      width: 100%;
      padding: 10px;
      border-radius: 22px;
      object-fit: cover;
      aspect-ratio: 16 / 9;
    }
    .card .card-image .card-tag {
      position: absolute;
      top: 25px;
      left: 25px;
      font-size: 0.75rem;
      color: #6366f1;
      padding: 5px 15px;
      border-radius: 30px;
      font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      background: rgba(255, 255, 255, 0.9);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    .card .card-content {
      flex: 1;
      display: flex;
      flex-direction: column;
      padding: 10px 25px 25px;
    }
    .card .card-content .card-title {
      color: #111111;
      font-size: 1.25rem;
      font-weight: 700;
      line-height: 1.3;
      margin-bottom: 15px;
    }
    .card .card-content .card-text {
      color: #747474;
      font-size: 0.95rem;
      line-height: 1.6;
      margin-bottom: 20px;
    }
    .card .card-footer {
      display: flex;
      margin-top: auto;
      align-items: center;
      padding-top: 15px;
      justify-content: space-between;
      border-top: 1px solid rgba(0, 0, 0, 0.08);
    }
    .card .card-footer .card-profile {
      display: flex;
      align-items: center;
    }
    .card .card-profile .card-profile-info {
      display: flex;
      flex-direction: column;
    }
    .card .card-profile .card-profile-name {
      font-size: 0.875rem;
      font-weight: 600;
      color: #202020;
    }
    .card .card-profile .card-profile-role {
      font-size: 0.8rem;
      color: #7A7A7A;
    }
    .card .card-profile img {
      width: 35px;
      height: 35px;
      margin-right: 10px;
      object-fit: cover;
      border-radius: 50%;
      border: 2px solid #fff;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    .card .card-button {
      color: #fff;
      padding: 10px 20px;
      border-radius: 30px;
      font-size: 0.81rem;
      font-weight: 600;
      text-decoration: none;
      background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
      box-shadow: 0 4px 10px rgba(99, 102, 241, 0.2);
      transition: all 0.3s ease;
    }
    .card .card-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 15px rgba(99, 102, 241, 0.3);
    }
    .wrapper .swiper-pagination-bullet {
      height: 15px;
      width: 15px;
      opacity: 1;
      overflow: hidden;
      position: relative;
      background: #B1B3F8;
    }
    .wrapper .swiper-pagination-bullet-active {
      background: #a4a7fd;
    }
    /* Auto-play loading indicator */
    .wrapper .swiper-pagination-bullet-active::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background: #6366f1;
      transform-origin: left center;
      transform: scaleX(0);
      animation: autoplay-loading 5s linear forwards;
    }
    .container:hover .wrapper .swiper-pagination-bullet-active::before {
      animation-play-state: paused;
    }
    @keyframes autoplay-loading {
      0% {
        transform: scaleX(0);
      }
      100% {
        transform: scaleX(1);
      }
    }
    .wrapper :where(.swiper-button-prev, .swiper-button-next) {
      color: #6366f1;
      margin-top: -35px;
      transition: all 0.3s ease;
    }
    .wrapper :where(.swiper-button-prev, .swiper-button-next):hover {
      color: #8b5cf6;
    }
    /* Responsive media query code for small screens */
    @media (max-width: 768px) {
      .wrapper {
        margin: 0 10px 25px;
      }
      .wrapper :where(.swiper-button-prev, .swiper-button-next) {
        display: none;
      }
    }
    .hero-section {
      background: url('../img/1.jpeg') center center/cover no-repeat;
      height: 50vh;
      position: relative;
      color: white;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
    }

    .overlay {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background-color: rgba(0, 0, 0, 0.6);
    }

    .content {
      position: relative;
      z-index: 2;
    }

    .content h1 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    .content p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
    }

    .btn {
      background-color: white;
      color: #00aa66;
      padding: 0.75rem 1.5rem;
      font-size: 1rem;
      border: none;
      cursor: pointer;
      transition: background-color 0.3s ease;
      border-radius: 4px;
    }

    .btn:hover {
      background-color: #f2f2f2;
    }