@import 'node_modules/bootstrap/dist/css/bootstrap.min.css';


@media (max-width: 768px) {
    .container {
      width: 100%;
    }
}
:root {
    --primary-color: #004d40;
    --secondary-color: #ffffff;
    --text-color: #333333;
}
.primary-color {
    color: #00342B;
}

body {
    font-family: Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}
.job-positions .card {
    border: 1px solid #ccc;
    border: 1px solid black;
    padding: 20px;
    margin-bottom: 1rem;
    border-radius: 0px !important;
    width: 360px;
    background: transparent;
}
.job-positions .card h2{
    font-size: 24px;
}
.job-positions .card p{
    font-size: 15px;
}
.job-positions .card li{
    font-size: 15px;
}
.careers-layout {
    width: 100%;
    margin-top: 150px !important
}
.highlight-bg {
  background-color: rgba(0, 0, 0, 0.5); /* Dark semi-transparent overlay */
  color: white;
  padding: 2px 16px;
  border-radius: 4px;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s ease-out forwards;
  }

  @keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
  }

.careers-container {
  gap: 20px;
  display: flex;
}
  
  @media (max-width: 991px) {
    .careers-container {
      flex-direction: column;
      align-items: stretch;
      gap: 0;
    }
  }
  
  .content-column {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    line-height: normal;
    width: 42%;
    margin-left: 0;
  }
  
  @media (max-width: 991px) {
    .content-column {
      width: 100%;
    }
  }
  
  .content-wrapper {
    background-color: rgba(203, 203, 203, 1);
    z-index: 10;
    display: flex;
    margin-top: auto;
    margin-right: -209px;
    margin-bottom: auto;
    min-height: 467px;
    padding:56px 35px 56px 38px;
    flex-direction: column;
    align-self: stretch;
    align-items: stretch;
    font-family:
      Inter,
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
    color: rgba(0, 0, 0, 1);
    justify-content: center;
  }
  
  @media (max-width: 991px) {
    .content-wrapper {
      max-width: 100%;
      margin-top: 40px;
      padding: 83px 20px;
    }
  }
  
  .careers-title {
    font-size: 56px;
    font-weight: 500;
    color: var(--primary-color);
    margin: 0;
  }
  
  @media (max-width: 991px) {
    .careers-title {
      font-size: 40px;
    }
  }
  
  .careers-description {
    margin-top: 15px;
    width: 100%;
    font-size: 18px;
    font-weight: 400;
  }
  
  @media (max-width: 991px) {
    .careers-description {
      max-width: 100%;
    }
  }
  
  .description-text {
    margin: 0;
    font-size: 16px;
  }
  
  .description-text + .description-text {
    margin-top: 21px;
  }
  
  @media (max-width: 991px) {
    .description-text {
      max-width: 100%;
    }
  }
  
  .careers-cta {
    font-size: 25px;
    font-weight: 500;
    margin-top: 15px;
    margin-bottom: 0;
    font-style: italic;
  }
  
  @media (max-width: 991px) {
    .careers-cta {
      max-width: 100%;
    }
  }
  
  .image-column {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    line-height: normal;
    width: 100%;
    max-height: 644px;
    margin-left: 20px;
  }
  
  @media (max-width: 991px) {
    .image-column {
      width: 100%;
    }
  }
  
  .image-wrapper {
    background-color: transparent;
    flex-grow: 1;
    overflow: hidden;
    width: 100%;
  }
  
  @media (max-width: 991px) {
    .image-wrapper {
      max-width: 100%;
    }
  }
  
  .careers-image {
    aspect-ratio: 1.24;
    object-fit: contain;
    object-position: center;
    width: 865px;
  }
  
  @media (max-width: 991px) {
    .careers-image {
      max-width: 100%;
    }
  }
  

/* Navigation */
.navbar {
    background: #015243;
    padding: 1rem;
    transition: all 0.3s ease;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #FAECE1 !important;
}

.navbar-brand .logo {
    height: 56px;
    width: auto;
}

.navbar-brand .brand-text {
    font-size: 1.2rem;
    /* font-weight: 600; */
}

.nav-link {
    color: #FAECE1 !important;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #ffffff !important;
    transform: translateY(-2px);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .navbar-brand .brand-text {
        font-size: 1rem;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(29, 14, 3, 0.95);
        padding: 1rem;
        border-radius: 8px;
        margin-top: 1rem;
    }

    .nav-link {
        text-align: center;
        padding: 0.75rem !important;
        border-radius: 4px;
    }

    .nav-link:hover {
        background: rgba(250, 236, 225, 0.1);
        transform: none;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 0.5rem;
    }

    .navbar-brand .logo {
        height: 32px;
    }

    .navbar-brand .brand-text {
        font-size: 0.9rem;
    }
}

/* Fix for mobile navigation overlay */
.navbar-collapse.show {
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}

/* Active state styles for navigation */
.navbar .nav-link.active {
    color: #FAECE1 !important;
    font-weight: 600;
    position: relative;
}

.navbar .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #FAECE1;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    background-image: url('../assets/hero.jpg');
    background-size: cover;
    background-position: center;
    color: var(--secondary-color);
}

.mission-statement{
    background-color: var(--primary-color);
    padding: 2rem;
    font-style: italic;
    max-width: 800px;
}

/* Services Section */
.services {
    background-color: #f9f9f9;
}

.service-card {
    padding: 2rem;
    height: 100%;
}

.service-card h2 {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* About Section */
.about-section {
    background-color: #015243;
    color: var(--secondary-color);
    padding: 80px 0;
}

.about-section h2 {
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: 3rem;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-content p {
    margin-bottom: 1rem;
}
.about h1{
    color: var(--primary-color);
    font-size: 60px !important;
}



/* Footer */
.footer {
    background-color: #00342B;
    text-align: center;
    padding: 4rem 0;
}

.footer h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.footer p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.menu-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.menu-buttons .btn.active {
    border-radius: 0;
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    letter-spacing: 1px;
    background: white;
    color: #3F7652;
}
.menu-buttons .btn {
    border-radius: 0;
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    letter-spacing: 1px;
    background: #3F7652;
    color: white;
}
.menu-buttons .btn:hover {
    background: white;
    color: #3F7652;
}

/* Active state styles for footer menu */
.footer-menu .btn.active {
    background-color: #FAECE1;
    color: #1D0E03;
    font-weight: 600;
}

.socials {
    margin-top: 2rem;
}

.social-links {
    display: flex;
    gap: 2rem;
}

.social-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 1px;
}

.social-link:hover {
    color: #cccccc;
    text-decoration: none;
}

.copyright {
    margin-top: 3rem;
    padding-top: 2rem;
}
.navbar {
    transition: top 0.3s ease-in-out;
}
/* Responsive Adjustments */
@media (max-width: 428px) {
    .hero-section {
        height: 400px;
    }
    
    .mission-statement {
        padding: 1rem;
        margin: 0 1rem;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }

    .about-section {
        padding: 40px 0;
    }

    .about-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .about-content {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .footer {
        padding: 2rem 0;
    }

    .menu-buttons {
        flex-direction: column;
    }

    .menu-buttons .btn {
        width: 100%;
        text-align: center;
        background: #3F7652 !important;
        color: white;
    }
    .menu-buttons .btn.active{
        color: #3F7652 !important;
        background: white !important;
    }

    .social-links {
        gap: 1rem;
    }
}