/* Global Styles */
body {
  font-family: Arial, sans-serif;
  background: #f5f8ff;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
}

.whatsapp {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 9999; /* Increase this value */
  cursor: pointer;
animation: float 2s ease-in-out infinite;
}
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px); /* Moves the icon up */
  }
  100% {
    transform: translateY(0); /* Moves the icon back down */
  }
}
.hot-hire {
    background-color: #ff4d4d;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
}
/* Navigation Section */
.navigation {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease-in-out;
  z-index: 9999;
}

/* Navbar Brand Logo */
.navigation .navbar-brand img {
  max-height: 120px;
  width: auto;
  transition: all 0.3s ease-in-out;
}

/* Navbar Links */
.navigation .navbar-nav .nav-link {
  font-size: 16px;
  font-weight: 300;
  color: #333 !important;
  padding: 8px 15px;
  transition: color 0.3s ease;
}

.navigation .navbar-nav .nav-link:hover,
.navigation .navbar-nav .nav-link.active {
  color: #007bff !important;
}

/* Mobile Toggler */
.navbar-toggler {
  border: none;
  outline: none !important;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* On Scroll Effect (optional) */
.scrolled {
  background: #f8f9fa !important;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.scrolled .navbar-brand img {
  max-height: 50px;
}
/* Hero Section */
.hero-section {
  position: relative;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  color: #fff;
  text-align: center;
  z-index: 1;
}

/* Overlay effect */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgb(11 162 237 / 31%); /* dark overlay */
  z-index: -1;
}

/* Heading */
.hero-section h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
}

.hero-section h1 .blue {
  color: #ffd000; /* brand highlight */
  
}

/* Paragraph */
.hero-section p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #f1f1f1;
}

/* Button */
.hero-section .btn {
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-section .btn-secondary {
  background-color: #007bff;
  border: none;
  color: #fff;
}

.hero-section .btn-secondary:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
}
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section p {
    font-size: 1rem;
    padding: 0 15px;
  }
}


/* Section Container */
.job-section {
  max-width: 1100px;
  margin: 40px auto;
  padding: 20px;
}

/* Section Header */
.section-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.icon-box {
  background: #e6f0ff;
  padding: 12px;
  border-radius: 12px;
  margin-right: 10px;
  font-size: 20px;
}

.section-header h2 {
  font-size: 24px;
  font-weight: bold;
  color: #222;
}

/* Job Card */
.job-card {
  background: #fff;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.job-card h3 {
  margin: 0;
  font-size: 18px;
  color: #222;
}

.job-details p {
  margin: 3px 0;
  font-size: 14px;
  color: #0e4a83;
}

.job-meta {
  text-align: right;
  margin: 13px;
}

.job-meta p {
  font-size: 13px;
  color: #999;

}
.job-date {
    display: block;
    font-size: 12px;
    color: #888;
    margin-bottom: 5px;
  }

.apply-btn {
  background: #e3f2fd;
  color: #007bff;
  border: none;
  padding: 8px 16px;
  margin-top: 8px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.2s ease;
}

.apply-btn:hover {
  background: #d0e8ff;
}
 body {
    font-family: Arial, sans-serif;
    background: #f7f8fa;
    margin: 0;
    padding: 20px;
  }

  .job-list {
    max-width: 900px;
    margin: auto;
  }

  .job-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    margin-bottom: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .job-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  }

  .job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
  }

  .job-info h5 {
    margin: 0;
    font-size: 18px;
    color: #333;
  }

  .job-info p {
    margin: 3px 0 0;
    font-size: 14px;
    color: #555;
  }

  .job-info small {
    font-size: 12px;
    color: #888;
  }

  .job-meta {
    text-align: right;
  }

  .job-date {
    display: block;
    font-size: 12px;
    color: #888;
    margin-bottom: 5px;
  }

  .apply-btn {
    padding: 6px 12px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 13px;
    cursor: pointer;
  }

  .apply-btn:hover {
    background: #0056b3;
  }

  .job-details {
    display: none;
    padding: 15px 20px;
    border-top: 1px solid #eee;
    font-size: 14px;
    color: #444;
  }

  .job-details ul {
    padding-left: 20px;
    margin: 0;
  }
 /* Popup overlay */
#applyPopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none; /* keep hidden until opened */
  align-items: center;
  justify-content: center;
  z-index: 9999; /* make sure it’s above navbar */
}

/* Popup form container */
.popup-form {
  background: #fff;
  width: 400px;          /* reduce width */
  max-width: 95%;
  max-height: 90vh;      /* prevent it from being taller than screen */
  overflow-y: auto;      /* adds scroll if form is long */
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  position: relative;
}

/* Title */
.popup-form h3 {
  margin-top: 0;
  margin-bottom: 20px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  position: sticky;   /* keeps it visible */
  top: 0;             /* stick to the top */
  background: #fff;   /* so it doesn’t overlap form fields */
  padding: 10px 0;
  z-index: 10;
  border-bottom: 1px solid #eee;
}


/* Animation */
@keyframes slideIn {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.popup-form label {
  display: block;
  margin: 12px 0 5px 0;
  font-weight: 500;
  color: #555;
}

.popup-form input, .popup-form select {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.popup-form input[type="file"] {
  padding: 3px;
}

.popup-form button {
  background-color: #007BFF;
  color: #fff;
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  margin-top: 10px;
  width: 100%;
  transition: background-color 0.3s;
}

.popup-form button:hover {
  background-color: #0056b3;
}


/* Close Button */
.close-btn {
  position: absolute;
  top: 12px;
  right: 15px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

/* Responsive */
@media(max-width: 480px) {
  .popup-form {
    padding: 20px;
  }
}

.footer-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-links li {
  margin: 0 8px;
}