* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'poppins', sans-serif;
}

/* Header */
header {
display: flex;
  justify-content: space-between;  /* logo on left, burger on right */
  align-items: center;             /* vertically center both */
  padding: 10px 20px;              /* adjust padding as needed */
  position: relative;
  background-color: #fff;          /* optional: keeps it clean */
  z-index: 1000;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 300px;
  height: 100px;
}

nav{
  background-color: #ffffff;
}
nav a {
  text-decoration: none;
  color: #000;
  margin: 0 15px;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #0077ff;
}

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  z-index: 1100;
  margin-top: 18px; ;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #000;
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 900px) {

  /* Hide nav by default (off-screen to right) */
  nav {
    position: fixed;
    top: 0;
    right: -250px;  /* Hidden initially */
    width: 250px;
    height: 100%;
    background-color: #ffffff;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 60px 20px; /* padding to leave space for header */
    transition: right 0.3s ease-in-out;  /* Smooth slide effect */
    z-index: 999;
  }

  /* When menu is active — slide in from right */
  nav.active {
    right: 0;
    background-color: #ffffff;
  }

  nav a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    margin: 15px 0;
    display: block;
    width: 100%;
  }

  nav a:hover {
    color: #003366;
  }

  /* Hamburger button positioning */
  .hamburger {
    display: flex;
    position: absolute;
    top: 25px;
    right: 30px;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1000;
  }

  .hamburger span {
    width: 25px;
    height: 3px;
    background-color: #000;
    border-radius: 3px;
    transition: all 0.3s ease;
  }


}
  /* Optional: animate the hamburger into an “X” */
  .hamburger.toggle span:nth-child(1) {
    transform: rotate(10deg) translateY(8px);
  }

  .hamburger.toggle span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.toggle span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }

/* Responsive design for tablets & mobile */
@media (max-width: 900px) {
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;  /* increase padding for balanced spacing */
}

  .logo img {
    width: auto;
    height: 6rem;
    padding: 0px;
    position: relative;
    margin-left: 0px;
    align-items: left;
left: 10px;
  
  }
}
/* Careers Page Specific Styles */
.careers-image {
  width: 100%;
  height: 400px; /* Fixed height for the image container */
  overflow: hidden; /* Ensures the image doesn't overflow the container */
  object-fit: cover;
  margin-bottom: 40px; /* Space below the image */

}
/*cards*/
.open-positions {
      background-color: transparent;
      padding: 30px 0;
    }

    .position-card {
      background-color: hsl(0, 0%, 100%);
      color: #060a42;
      border-radius: 10px;
      border: 2px solid #ffffff;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      padding: 20px 30px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .position-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    }

    .position-card h2 {
      text-align: center;
      margin-bottom: 20px;
      color: #05022f;
    }

    .position-card ul {
      list-style-type: disc;
      margin-left: 20px;
    }

    @media (min-width: 992px) {
      .col-lg-6:first-child {
        margin-left: -40px; /* push left */
      }
      .col-lg-6:last-child {
        margin-right: -40px; /* push right */
      }
    }

 

  /* Career Form Container */
.career-form {
    max-width: 700px;
    margin: 50px auto;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    font-family: 'Arial', sans-serif;
}

/* Form Title */
.career-form h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #0f2134;
    font-size: 2rem;
    font-weight: 700;
}

/* Form Labels */
.career-form .form-label {
    font-weight: 500;
    color: #0f2134;
}

/* Input Fields */
.career-form input.form-control,
.career-form textarea.form-control {
    border-radius: 8px;
    border: 1px solid #ced4da;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.career-form input.form-control:focus,
.career-form textarea.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 5px rgba(13,110,253,0.3);
    outline: none;
}

/* Submit Button */
.career-form .btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
    padding: 12px 0;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.career-form .btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0b5ed7;
}

/* Progress Bar */
.career-form .progress {
    height: 6px;
    border-radius: 4px;
    background-color: #e9ecef;
    margin-top: 15px;
}

.career-form .progress-bar {
    background-color: #3944BC;
    transition: width 0.6s ease;
}

/* Thank you message */
.career-form .thank-you-msg {
    text-align: center;
    font-weight: 600;
    color: green;
    margin-top: 15px;
    display: none; /* initially hidden, show via JS on submission */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .career-form {
        padding: 20px;
        margin: 30px 15px;
    }
    .career-form h2 {
        font-size: 1.7rem;
    }
}

 .floating-icons {
  position: fixed;
  bottom: 130px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.floating-icons a,
.floating-icons button {
  width: 50px;
  height: 50px;
  background-color: #25d366; /* WhatsApp green */
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-icons button.float-share {
  background-color: #0670e1; /* Blue for Share */
}

.floating-icons a:hover,
.floating-icons button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}
/* Footer */
footer {
      background-color: #0d1b2a;
      color: #ffffff;
      border-top: 1px solid #ddd;
      padding: 20px 0;
      font-size: 0.95rem;
    }
h5{
      font-weight: 600;
      margin-bottom: 10px;
}
    .footer-text {
      font-size: 0.95rem;
      opacity: 0.8;
      margin-bottom: 0;
    }