* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
  color: #fff;
  background: #f5f5f5;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.header {
  background: #fff;
  color: #000;
  padding: 15px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img {
  height: 75px;
  width: auto;
}

/* Navigation */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}
.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
.nav-links li a.active,
.nav-links li a:hover {
  color: #2563eb;
}

/* Buttons */
.btn {
  background: #f97316;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}
.btn:hover {
  background: #ea580c;
}


/* ========================= */
/* Mobile Responsive Styles */
/* ========================= */
.hamburger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #2563eb;
}

.close-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #2563eb;
  margin: 10px 10px 20px auto;
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: -260px; /* start hidden off-screen */
    width: 260px;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    padding: 20px;
    transition: right 0.3s ease;
    z-index: 2000;
  }
  .nav.show {
    right: 0; /* slide in */
  }
  .nav-links {
    flex-direction: column;
    gap: 15px;
  }
  .nav-links li a {
    color: #333;
    font-size: 1.1rem;
  }
  .nav.show .close-btn {
    display: block;
  }
  .desktop-btn {
    display: none; /* hide desktop button */
  }
  .hamburger {
    display: block;
  }
}


/* Join Our Team Section */
.careers-hero {
  text-align: center;
  padding: 80px 20px;
  background: #f9f9f9;
}

.careers-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0d47a1;
}

.careers-hero p {
  font-size: 1.1rem;
  margin-top: 15px;
  color: #555;
}

/* Why Choose Section */

/* Why Choose Section */
.careers-why {
  text-align: center;
  padding: 60px 20px;
}

.careers-why h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #003d99;
}

.careers-why p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
}


/* Grid Layout - exactly 3 per row */
.careers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Always 3 columns */
  gap: 30px; /* space between cards */
  padding: 0 40px;
}

.grid-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  padding: 30px;
  border-radius: 12px;
  background: #fff;        /* white background */
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.grid-item h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
  font-weight: 600;
  color: #222;
}

.grid-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-top: auto;
}


.apply-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  background: #fff;
  color: #003d99;
}

.form-container {
  max-width: 600px;
  width: 100%;
  text-align: center;
}

.form-container h2 {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: bold;
}

.form-container p {
  color: #555;
  margin-bottom: 25px;
}

.apply-form {
  text-align: left;
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 500;
  margin-bottom: 6px;
}

.form-group input,
.form-group select {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #2563eb;
  outline: none;
  box-shadow: 0 0 5px rgba(37, 99, 235, 0.3);
}

small {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #666;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 15px;
  transition: 0.3s ease;
}

.submit-btn:hover {
  background: #1e4ecc;
}

/* Footer Section */
.footer {
  background:black;
  color: #fff;
  padding: 60px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer h3,
.footer h4 {
  margin-bottom: 15px;
}

.footer p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-links ul,
.footer-services ul {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-services li {
  margin: 8px 0;
}

.social-icons a {
  margin-right: 10px;
  font-size: 1.2rem;
  color: #fff;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #ffcc00;
}

/* Footer Bottom */
.footer-bottom {
  background:black;
  color: #fff;
  text-align: center;
  padding: 15px;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: #ffcc00;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

@media (max-width: 992px) {
  .careers-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on tablets */
  }
}

@media (max-width: 600px) {
  .careers-grid {
    grid-template-columns: 1fr; /* 1 per row on mobile */
  }
}


.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-block;
  margin-right: 12px;
  font-size: 22px;
  color:white;  /* default color */
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #0077b5; /* LinkedIn blue */
}