body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: #fff;
    color: #222;
  }
:root {
      --soil-brown: #5a3721;
      --clay-orange: #D2691E;
      --beige: #F3EFE0;
      --text-dark: #2e2e2e;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    nav {
      background-color: var(--soil-brown);
      color: white;
      padding: 12px 20px;
      position: relative;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

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

    .logo img {
      height: 40px;
      margin-right: 10px;
    }

    .menu-toggle {
      display: none;
      font-size: 26px;
      color: white;
      cursor: pointer;
    }

    .menu {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .menu-item {
      position: relative;
      padding: 10px 14px;
      cursor: pointer;
      border-radius: 6px;
      transition: background 0.3s;
      font-weight: 500;
    }

    .menu-item:hover {
      background-color: var(--clay-orange);
    }

    .menu-item > a {
      color: white;
      text-decoration: none;
    }

    .menu-toggle {
  font-size: 28px;
  font-weight: bold;
}


    .dropdown {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: var(--beige);
      min-width: 260px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.15);
      border-radius: 6px;
      z-index: 1000;
      flex-direction: column;
    }

    .menu-item:hover .dropdown {
      display: flex;
    }

    .dropdown a {
      padding: 10px 15px;
      color: var(--text-dark);
      text-decoration: none;
      transition: background 0.3s;
    }

    .dropdown a:hover {
      background-color: #fff2e5;
      color: var(--clay-orange);
    }

    @media (max-width: 1024px) {
      .menu-toggle {
        display: block;
      }

      .menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: var(--soil-brown);
        margin-top: 10px;
      }

      .menu.show {
        display: flex;
      }

      .menu-item {
        width: 100%;
      }

      .dropdown {
        display: none;
        position: static;
        box-shadow: none;
        background-color: var(--beige);
      }

      .dropdown.show {
        display: flex;
      }
    }



.careers-overlay {
  background-color: rgba(90, 55, 33, 0.8); /* soil-brown with transparency */
  padding: 40px;
  border-radius: 10px;
}

.careers-overlay h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #fff;
}

.careers-overlay p {
  font-size: 1.2rem;
  color: #ffe;
}

/* Content Section */
.careers-content {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.careers-content h2 {
  color: var(--soil-brown);
  font-size: 2rem;
  margin-bottom: 20px;
}

/* Perks */
.career-perks {
  display: flex;
  gap: 20px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.perk-card {
  background: #fff8f1;
  padding: 20px;
  border-radius: 12px;
  flex: 1 1 30%;
  text-align: center;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.perk-card img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.perk-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

/* Accordion */
.job-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.accordion-item {
  border: 2px solid var(--soil-brown);
  border-radius: 8px;
  overflow: hidden;
  background: #fffefb;
}

.accordion-header {
  background-color: #C17341;
  color: white;
  padding: 16px 20px;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  width: 100%;
}

.accordion-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  padding: 0 20px;
  opacity: 0;
  visibility: hidden;
}

.accordion-body.open {
  max-height: 300px;
  padding: 20px;
  opacity: 1;
  visibility: visible;
}

.accordion-body p {
  margin: 10px 0;
  color: var(--text-dark);
}

.accordion-body .btn {
  margin-top: 10px;
  background-color: var(--clay-orange);
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
}

.accordion-body .btn:hover {
  background: #aa4f0e;
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}



.life-at-brij {
  background: var(--soft-gray);
  padding: 4rem 2rem;
  text-align: center;
}

.life-at-brij h2 {
  color: var(--soil-brown);
  font-size: 2rem;
  margin-bottom: 2rem;
}

.life-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: auto;
}

.life-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.life-grid img:hover {
  transform: scale(1.03);
}



.hero-slider {
  position: relative;
  overflow: hidden;
  height: 500px; /* adjust if needed */
}

.slider-container {
  display: flex;
  width: 300%;
  height: 100%; /* make sure container matches hero */
  transition: transform 0.6s ease-in-out;
}

.slide {
  width: 100%;
  height: 100%; /* this ensures each slide matches height */
  flex-shrink: 0;
  position: relative;
}


.slide img {
  width: 34%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.caption {
  position: absolute;
  bottom: 40px;
  left: 50px;
  background: rgba(90, 55, 33, 0.7);
  padding: 20px 30px;
  color: #fff;
  border-radius: 10px;
}

.caption h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.caption p {
  font-size: 1rem;
}

.slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
}

.slider-controls span {
  font-size: 2rem;
  color: white;
  background-color: rgba(0,0,0,0.3);
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  user-select: none;
}

/* Responsive */
@media (max-width: 768px) {
  .caption {
    left: 20px;
    right: 20px;
    padding: 15px;
  }

  .caption h1 {
    font-size: 1.4rem;
  }

  .caption p {
    font-size: 1rem;
  }
}
