/* General reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #fff;
  color: #121212;
}

header {
  position: relative;
  z-index: 1000;
}

/* HEADER */
.site-header {
  width: 100%;
  padding: 15px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-bottom: 2px solid #eee;
  position: relative;
  z-index: 1000;
}

/* Logo + Company name */
.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 100px;
  height: auto;
}

.company-name {
  font-weight: bold;
  font-size: 1.2rem;
  color: #FFD700; /* gold */
}

/* Navigation */
.navbar ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.navbar a {
  text-decoration: none;
  color: #121212;
  font-weight: 500;
  transition: 0.3s;
}

.navbar a:hover,
.navbar a.active {
  color: #bfa145;
}

/* CTA Button */
.cta-btn {
  background: #bfa145;
  color: #121212;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #121212;
  color: #bfa145;
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #121212;
  border-radius: 5px;
  transition: 0.3s;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .navbar ul {
    position: absolute;
    top: 70px;
    left: -100%;
    flex-direction: column;
    background: #fff;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    transition: left 0.3s ease-in-out;
  }

  .navbar ul.open {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .cta-btn {
    display: none; /* hide CTA on small screens or move inside menu */
  }
}

/* Hamburger animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* Hero Section */
.career-hero {
  background: url('images/careers.jpg') center/cover no-repeat;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.career-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 18, 0.6);
}

.hero-content {
  position: relative;
  color: #fff;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.hero-btn {
  background: #bfa145;
  color: #121212;
  padding: 0.7rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: #fff;
  color: #121212;
}

/* Why Join Us */
.why-join {
  padding: 4rem 8%;
  text-align: center;
  background: #bfa145;
}

.why-join h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #fff;
}

.reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.reason-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.reason-card:hover {
  transform: translateY(-8px);
}

.reason-card i {
  font-size: 2.5rem;
  color: #bfa145;
  margin-bottom: 1rem;
}

/* Open Positions */
.open-positions {
  padding: 4rem 8%;
  text-align: center;
}

.open-positions h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

.job-listings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.job-card {
  background: #121212;
  color: #fff;
  padding: 2rem;
  border-radius: 12px;
  transition: 0.3s;
  text-align: left;
}

.job-card h3 {
  color: #bfa145;
  margin-bottom: 0.8rem;
}

.job-card p {
  margin-bottom: 1.5rem;
}

.apply-btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #bfa145;
  color: #121212;
  border-radius: 20px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.apply-btn:hover {
  background: #fff;
}

/* CTA Section */
.career-cta {
  padding: 4rem 8%;
  background: #bfa145;
  color: #121212;
  text-align: center;
}

.career-cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.career-cta p {
  margin-bottom: 2rem;
}

.cta-apply {
  background: #121212;
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.cta-apply:hover {
  background: #fff;
  color: #121212;
  border: 2px solid #121212;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #121212;
    position: absolute;
    top: 60px;
    right: 5%;
    width: 200px;
    border-radius: 8px;
  }

  .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .hero-content h1 {
    font-size: 2rem;
  }
}




/* Recruitment Disclaimer */
.recruitment-disclaimer {
  background: #f4f7fa;
  padding: 60px 20px;
  text-align: center;
  border-top: 4px solid #0077b6;
  border-radius: 12px;
  margin: 50px auto;
  max-width: 900px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.recruitment-disclaimer h2 {
  font-size: 2rem;
  color: #003459;
  margin-bottom: 20px;
}

.recruitment-disclaimer p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 10px;
}

.recruitment-disclaimer strong {
  color: #d62828;
  font-weight: 600;
}







/* Footer Styling */
.footer {
  background:  rgb(35, 35, 35);
  color: #fff;
  padding: 60px 20px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  position: relative;
}

.footer h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #bfa145;
  margin-top: 8px;
  border-radius: 2px;
}

.footer p, 
.footer a {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ddd;
  text-decoration: none;
  transition: 0.3s;
}

.footer a:hover {
  color: #bfa145;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin: 8px 0;
}



.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a img {
  width: 30px;   /* adjust size */
  height: 30px;
  transition: transform 0.3s ease;
}

.social-icons a img:hover {
  transform: scale(1.2);  /* zoom on hover */
}



.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
}

.footer-bottom span {
  color: #bfa145;
  font-weight: 600;
}