/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
  font-family: Helvetica Now Display, sans-serif;
  background-color: #ffffff; /* fallback color */
}

/* ===== Scroll Animations ===== */
.fade-left, .fade-right, .fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}
.fade-left { transform: translateX(-50px); }
.fade-right { transform: translateX(50px); }
.fade-up { transform: translateY(40px); }

.show-animate {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* ====== HEADER ====== */
.header {
  width: 100%;
  position: sticky;
  top: 0;
  background-color: #2E3192;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 60px;
  z-index: 1000;
  flex-wrap: nowrap; /* prevent wrapping */
}

.logo img {
  height: 40px;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
}

.navbar .nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 45px;
  flex: 1 1 auto;
  min-width: 0;
}

.navbar .nav-links li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.navbar .nav-links li a:hover {
  color: #FFD700;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  margin-left: 12px;
  flex: 0 0 auto;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 3px;
}

/* Call (desktop) */
.call-icon {
  margin-left: auto;
  flex: 0 0 auto;
}

.call-icon a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  white-space: nowrap;
}

.call-icon img {
  height: 22px;
  width: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.call-icon img:hover {
  transform: scale(1.1);
  color: #FFD700;
}

.call-icon span {
  color: white;
}

.call-icon span:hover {
  color: #FFD700;
}

/* Call inside hamburger */
.mobile-call {
  display: none;
}

.mobile-call a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.mobile-call img {
  height: 20px;
  filter: invert(1) brightness(0);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .navbar .nav-links {
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .navbar {
    justify-content: flex-end;
  }

  .navbar .nav-links {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 60px;
    right: 30px;
    width: 220px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    justify-content: flex-start;
    align-items: flex-start;
    gap: 14px;
  }

  .navbar .nav-links li a {
    color: #000;
  }

  .navbar .nav-links li a:hover {
    color: var(--primary);
  }

  .navbar .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .call-icon {
    display: none;
  }

  .mobile-call {
    display: block;
  }
}

/* ===== Career Section ===== */
.career-section {
  position: relative;
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
  text-align: center;
  overflow: hidden;
}

/* Background images (sketches + main bg) */
.career-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    url('your-bg.jpg'), /* main background image */
    url('Img/Bg 11.svg'),
    url('Img/Bg 16.svg'),
   
    url('Img/Bg 14.svg'),
    url('Img/Bg 15.svg'),
    
    url('Img/Bg 17.svg'),
    url('Img/Bg 18.svg'),
    url('Img/Bg 19.svg'),
    url('Img/Bg 17.svg'),
    url('Img/Bg 12.svg'),
    url('Img/Bg 11.svg');
  background-position: 
    center center,
    left top, right top, center top, left center, right center, center center,
    left bottom, right bottom, center bottom, 20% 20%, 80% 30%, 50% 80%;
  background-repeat: no-repeat;
  background-size: 
    cover,
    200px, 280px, 220px, 200px, 220px, 200px, 280px, 280px, 220px, 250px, 260px, 270px;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

/* Ensure content is above background */
.career-section > * {
  position: relative;
  z-index: 1;
}

/* Heading & Description */
.career-header {
  max-width: 600px;
  margin-bottom: 40px;
}

.career-header h2 {
  font-size: 2.5rem;
  color: #2E3192;
  margin-bottom: 10px;
  font-weight: bold;
  text-transform: uppercase;
}

.career-header p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
  /*margin: 60 auto;*/
  margin-top: 20px;
}

/* Message Box */
.career-box {
  background: #fff;
  border: 2px solid #2E3192;
  border-radius: 12px;
  padding: 25px 20px;
  max-width: 600px;
  text-align: center;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
}

.career-box p {
  font-size: 1.1rem;
  font-weight: bold;
  color: #222;
  margin: 0 0 20px 0;
}

.career-box a {
  color: #2E3192;
  font-size: 1.4rem;
  font-weight: bold;
  text-decoration: none;
  margin-top: 10%;
}

.career-box a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .career-header h2 {
    font-size: 2rem;
  }

  .career-header p {
    font-size: 1rem;
  }

  .career-box p {
    font-size: 1.1rem;
  }

  .career-box a {
    font-size: 1.2rem;
  }
}


/* ===== Footer Section ===== */
.footer {
  position: relative; /* for watermark */
  background-color: rgba(255, 255, 255, 0.9);
  padding: 60px 60px 60px;
  font-family: "helvetica Now Display", sans-serif;
  color: #000;
}

/* Footer watermark */
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('Img/sketch-footer.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 300px;
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}

.footer > * { position: relative; z-index: 1; }

/* Footer inner layout */
.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

/* About */
.footer-about {
  flex: 1 1 250px;
}

.footer-logo {
  max-width: 120px;
  margin-bottom: 15px;
}

.footer-about p { margin-bottom: 15px; line-height: 1.6; }

.footer-socials a img { width: 32px; height: 32px; }

/* Quick links */
.footer-links { flex: 1 1 180px; }
.footer-links h4 { font-size: 1.2rem; margin-bottom: 15px; }
.footer-links ul { list-style: none; padding: 0; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { text-decoration: none; color: #000; transition: color 0.3s; }
.footer-links ul li a:hover { color: #007BFF; }

/* Contact info */
.footer-contact { flex: 1 1 250px; }
.footer-contact p { margin-bottom: 12px; display: flex; align-items: flex-start; gap: 10px; line-height: 1.6; }
.footer-contact img { width: 22px; height: 22px; }

/* Footer bottom */
.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footer-bottom p { margin: 0; }

/* Responsive footer */
@media (max-width: 768px) {
  .footer-container { flex-direction: column; text-align: left; gap: 25px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}
