body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #e0f7fa, #b2ebf2);
}

nav {
  height: 90px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.847);
  padding: 20px 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid rgb(91, 102, 242);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle div {
  width: 30px;
  height: 4px;
  background-color: rgb(0, 0, 0);
  margin: 5px 0;
  border-radius: 2px;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links li a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: lime;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: rgb(0, 0, 0);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links li a:hover::after {
  width: 100%;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgb(91, 102, 242);
  list-style: none;
  padding: 15px 0;
  margin: 10px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

.dropdown li a {
  color: white;
  padding: 10px 20px;
  display: block;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.dropdown li a:hover {
  color: lime;
}

.nav-links li:hover .dropdown {
  display: block;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo p {
  font-size: 20px;
  margin-top: 18px;
  margin-left: 10px;
  color: #1976d2;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  nav {
    justify-content: space-between;
    align-items: center;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 70px;
    left: 0;
    z-index: 100;
    padding-bottom: 10px;
    margin-top: 20px;
    background-color: rgb(91, 102, 242);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
  }

  .nav-links li a {
    color: white;
  }

  .dropdown {
    position: static;
    width: 100%;
    transform: none;
  }

  .dropdown li {
    text-align: center;
  }
  .logo p {
    font-size: 17px;
  }
}




header {
  background: #0077cc;
  color: white;
  padding: 1rem 2rem;
  text-align: center;
  margin-top: 90px;
}

.job-section {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 1rem;
}

.job-card {
  background: white;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.job-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.job-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
}

.job-info {
  margin: 0.5rem 0 1rem;
  color: #555;
}

.apply-btn {
  background-color: #0077cc;
  color: white;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 500;
}

.apply-btn:hover {
  background-color: #005fa3;
}

@media (max-width: 600px) {
  .job-card {
    padding: 1rem;
  }

  .job-title {
    font-size: 1.1rem;
  }
}






/* Footer */
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}

footer p {
  margin: 0;
  font-size: 0.9rem;
}

.social-links {
  margin-top: 10px;
}

.social-links a {
  color: white;
  margin: 0 10px;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #2196f3;
}

/* Responsive Design */
@media (max-width: 768px) {
  .message-content {
    flex-direction: column;
    text-align: center;
  }

  .profile-image {
    width: 120px;
    height: 120px;
  }
}

footer {
  background: rgb(18, 22, 77);
  color: white;
  padding: 30px 0;
  text-align: center;
}

footer h2 {
  color: white;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 20px;
}

.footer-section {
  width: 250px;
  margin-bottom: 20px;
}

.footer-section h2 {
  font-size: 20px;
  margin: 15px 0;
}

.footer-section p,
.footer-section ul {
  font-size: 14px;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 8px 0;
}

.footer-section ul li a {
  color: white;
  text-decoration: none;
  transition: 0.3s;

  &:hover {
    color: #1abc25;
  }
}

.footer-section .contactme,
.socialme {
  display: flex;
  flex-direction: column;
}

.footer-section .aboutme {
  display: flex;
  justify-content: center;
}

.socialme a {
  text-decoration: none;
  color: white;
  font-size: 25px;
  padding-bottom: 10px;
}
