/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

h1, h2, h3, h4 {
    color: #333;
}


/* Hero Section */
.hero {
    padding-top: 100px !important;
    color: white;
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(11, 41, 5, 0.8) !important;
}
/* .hero-inside{
    background-color: rgba(11, 41, 5, 0.8);
    padding: 100px 0;
    color: var(--white);
    text-align: center;
    min-height: 465px;
    display: inline-flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
} */
.hero-inside {
    background-color: rgba(11, 41, 5, 0.8);
    
    color: var(--white);
    text-align: center;
    /* min-height: 465px; */
    display: flex; /* ✅ changed from inline-flex */
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1 !important; /* ✅ ensures it doesn't spill into next section */
}


/* Background color replacement for inline style */
.bg-dark-custom {
    background-color: #2c2929;
}

/* Hero container height */
.hero-container {
    min-height: 53vh;
}

/* Logo adjustments */
.logo-link {
    padding: 1rem;
}

.logo-img {
    height: 45px;
    margin-left: 50px;
}

/* Orange heading */
.hero-heading {
    color: #ffa500;
}

.rounded-circle{
    height: 60px;
}
/* Navbar Styles */
.navbar {
    z-index: 1000;
    background-color:white;
}

.navbar-brand {
    font-weight: 600;
}

/* Core Values Section */
.core-values .value-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.core-values h4 {
    color: #3a8d4a;
}

.core-values p {
    font-size: 1rem;
}

        /* .job-card {
  height: 100%;
  width:100%; 
  display: flex;
  flex-direction: column;
  justify-content: space-between;
} */


#jobList .col-md-4 {
  display: flex;
}
/* Job Listings */
.job-card {
    height: 100%;
  width:100%; 
  display: flex;
  flex-direction: column;
  justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

.job-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.job-card h4 {
    color: #3a8d4a;
}

.job-card a {
    background-color: #ffa500;
    border-radius: 20px;
    color: white;
    padding: 12px 25px;
    font-weight: 600;
}

.job-card a:hover {
    background-color: #ff7f00;
}

/* Form Styles */
.form-control, .form-select {
    border-radius: 20px;
    padding: 12px;
}

/* Footer */
footer {
  background-color: #333;
}

footer a {
  color: #ddd !important;
  text-decoration: none !important; 
}

footer a:hover {
  text-decoration: underline !important; 
}

/* Button Styles */
.btn-warning {
    background-color: #ffa500;
    border-color: #ffa500;
}

.btn-warning:hover {
    background-color: #ff7f00;
    border-color: #ff7f00;
}


