body{
    margin: 0;
    font-family: 'poppins', sans-serif;
    background-color: #0B1F3B;
    color: #fff;
}
.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(1, 11, 26, 0.9);
    z-index: 1000;
    box-sizing: border-box;
}
.logo img{
    width: 75px;
    height: 55px;
}
.menu-toggle{
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: #fff;
}
.nav-links{
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}
.nav-links a{
    text-decoration: none;
    color: #C9A24A;
    font-size: 14px;
    transition: color 0.3s ease;
    font-weight: bold;
}
.nav-links a:hover{
    color: #fff;
}
.hero{
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* SLIDER */
.hero-slider{
  position: absolute;
  inset: 0;
}

.hero-slider span{
  position: absolute;
  inset: 0;

  background-size: cover;
  background-position: center;

  opacity: 0;

  animation: heroAnimation 24s infinite;
}

/* DELAYS */
.hero-slider span:nth-child(1){
  animation-delay: 0s;
}

.hero-slider span:nth-child(2){
  animation-delay: 6s;
}

.hero-slider span:nth-child(3){
  animation-delay: 12s;
}

.hero-slider span:nth-child(4){
  animation-delay: 18s;
}

/* ANIMATION */
@keyframes heroAnimation{

  0%{
    opacity: 0;
    transform: scale(1);
  }

  8%{
    opacity: 1;
  }

  25%{
    opacity: 1;
    transform: scale(1.05);
  }

  33%{
    opacity: 0;
  }

  100%{
    opacity: 0;
    transform: scale(1.1);
  }

}

/* DARK OVERLAY */
.overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

/* CONTENT */
.hero-content{
  position: relative;
  z-index: 2;

  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 0 8%;
}
.hero-content{
    max-width: 600px;
}
.hero h1{
    font-size: 48px;
    margin-bottom: 20px;
}
.hero p{
    font-size: 16px;
    margin-bottom: 30px;
}
.hero-buttons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.hero-buttons a {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
}

/* Primary button */
.hero-buttons a:first-child {
  background: linear-gradient(135deg, #C9A24A, #f0c14b);
  color: #0B1F3B;
  box-shadow: 0 10px 25px rgba(201, 162, 74, 0.25);
}

/* Secondary button */
.hero-buttons a:last-child {
  background: transparent;
  color: white;
  border: 2px solid #C9A24A;
}

/* Hover effects */
.hero-buttons a:hover {
  transform: translateY(-3px);
}

.hero-buttons a:first-child:hover {
  box-shadow: 0 15px 35px rgba(201, 162, 74, 0.35);
}

.hero-buttons a:last-child:hover {
  background: #C9A24A;
  color: #0B1F3B;
}
.about{
    padding: 80px 50px;
    background-color: #ffffff;
    color: #0B1F3B;
}
.about-container{
    display: flex;
    align-items: center;
    gap: 50px;
}
.about-text{
    flex: 1;
}
.about-text h2{
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
}
.about-image{
    flex: 1;
}
.about-image img{
    width: 100%;
    border-radius: 10px;
}
.services{
    padding: 60px 50px;
}
.services-container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.service-card{
    position: relative;
    border-radius: 10px;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    background: transparent;
}
.service-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}
.service-card .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 31, 59, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-align: center;
    padding: 10px;
    border: none;
}
.service-card :hover{
    transform: scale (1.2);
    transition: 0.3s;
}
.container{
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
}
.awards{
    padding: 80px;
    background: linear-gradient(#0B1F3B, #000);
    color: #fff;
}
.award-slider{
    position: relative;
    overflow: hidden;
    height: 250px;
    touch-action: pan-y;
}
.slide{
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s ease;
}
.slide.active{
    opacity: 1;
    transform: translateX(0);
}
.slide h4{
    color: #C9A24A;
    margin-bottom: 10px;
}
.slide h2{
    font-size: 28px;
    margin-bottom: 10px;
}
.slide p{
    margin-bottom: 20px;
}
.slide.next{
    opacity: 0;
    transform: translateX(100%);
}
.slide.prev{
    opacity: 0;
    transform: translateX(-100);
}
.project-slider{
    position: relative;
    overflow: hidden;
    height: 420px;
    padding: 20px 20px 0;
}
.project-slide{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
    box-sizing: border-box;
    padding: 0 20px;
}
.project-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    z-index: 1;
    pointer-events: none;
}
.project-slide.active {
    opacity: 1;
}
.project-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}
.project-info{
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 20px;
    background: rgba(0, 0, 0, 0.65);
    padding: 18px 20px;
    border-radius: 16px;
    color: #fff;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
    z-index: 2;
}
.projects{
    padding: 60px 50px 40px;
    text-align: center;
}
.projects .btn.primary{
    display: inline-block;
    margin: 30px auto 10px;
}
.stats{
    padding: 80px 20px;
    background: #f5f5f5;
    text-align: center;
}
.stats .container{
    display: grid;
    gap: 30px;
}
.stat h2{
    font-size: 40px;
    font-weight: 300;
    color: #444;
}
.stat p{
    font-size: 18px;
    color: #888;
}
.qhse{
    padding: 80px 20px;
    text-align: center;
}
.qhse p{
    max-width: 600px;
    margin: 20px auto;
    color: #666;
}
.certifications{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}
.certifications img{
    width: 80px;
}

.site-footer {
    background: #061128;
    color: #f4f6fb;
    padding: 60px 50px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.footer-brand {
    max-width: 320px;
}

.footer-brand img {
    width: 88px;
    margin-bottom: 18px;
}

.footer-brand p {
    line-height: 1.9;
    color: #cbd2e4;
}

.footer-links,
.footer-contact,
.footer-social {
    min-width: 180px;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    margin-bottom: 18px;
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #c9a24a;
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #f4f6fb;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #c9a24a;
}

.footer-contact p {
    margin: 0 0 10px;
    color: #b8c3d9;
    line-height: 1.8;
}

.footer-social .social-icons {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(201, 162, 74, 0.14);
    color: #c9a24a;
    transition: background 0.2s ease;
}

.footer-social a:hover {
    background: rgba(201, 162, 74, 0.3);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    color: #8b96ae;
    font-size: 14px;
}
.about-company-page {
  padding: 2px 10px;
  background: #f7f7f7;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.about-header h1 {
  font-size: 70px;
  font-weight: 300;
  margin-bottom: 30px;
  color: #c9a24a;
}

.about-header h1 span {
  font-weight: 700;
  color: #0B1F3B;
}

.about-header p {
  font-size: 20px;
  line-height: 1.9;
  color: #555;
  max-width: 1000px;
  margin-bottom: 70px;
}

.division-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.division-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  text-decoration: none;
}

.division-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: 0.5s ease;
}

.division-card::after {
  content: '';

  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.2)
  );
}

.division-content {
  position: absolute;
  bottom: 30px;
  left: 30px;

  z-index: 2;
}

.division-content h3 {
  color: white;
  font-size: 28px;
}

.division-card:hover img {
  transform: scale(1.08);
}

.about-description p {
  font-size: 18px;
  line-height: 2;
  color: #555;
  margin-bottom: 30px;
}
.about-hero{
    height: 60vh;
    background: linear-gradient(rgba(11,33,59,0.8), rgba(11,31,59,0.3)),
                url('../assets/images/engineering-team.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 50px;
}
.about-hero-divs{
    height: 60vh;
    background: linear-gradient(rgba(11,33,59,0.8), rgba(11,31,59,0.3)),
                url('../assets/images/team-meeting.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 50px;
}
.about-hero-content{
    max-width: 600px;
}
.about-hero h1{
    font-size: 38px;
    margin-bottom: 20px;
}
.resource-hero {
  position: relative;
  height: 60vh;
  overflow: hidden;
}

.resource-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.resource-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

.hero-text {
  position: absolute;
  bottom: 60px;
  left: 50px;
  z-index: 2;
}

.hero-text h1 {
  color: white;
  font-size: 70px;
  font-weight: 700;
}
.resources-content {
  padding: 100px 20px;
  background: #f7f7f7;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.resource-block {
  margin-bottom: 100px;
}

.resource-block h2 {
  font-size: 42px;
  margin-bottom: 25px;
  color: #111;
}

.resource-block p {
  font-size: 18px;
  line-height: 2;
  color: #555;
  max-width: 1000px;
}

.resource-gallery {
  margin-top: 40px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.resource-gallery img {
  width: 100%;
  height: 280px;
  object-fit: cover;

  border-radius: 12px;

  transition: 0.4s ease;
}

.resource-gallery img:hover {
  transform: scale(1.03);
}

.vendor-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.vendor-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vendor-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.vendor-hero .hero-text {
  position: absolute;
  bottom: 50px;
  left: 50px;
  z-index: 2;
  color: #fff;
}

.vendors-page {
  padding: 15px 20px 60px;
  background: #fff;
}

.container {
  max-width: 1100px;
  margin: auto;
}
.vendor-intro {
  margin-bottom: 70px;
}

.vendor-intro h2 {
  font-size: 45px;
  margin-bottom: 20px;
  color: #c9a24a;
}

.vendor-intro p {
  font-size: 18px;
  line-height: 2;
  color: #555;
}

.notice {
  margin-top: 20px;
  padding: 20px;
  border-left: 4px solid #C9A24A;
  background: white;
}

.vendor-card {
  background: linear-gradient(#0B1F3B, #09111d);

  padding: 60px;
  border-radius: 16px;

  margin-bottom: 80px;

  color: white;
}

.vendor-card-content h3 {
  font-size: 38px;
  margin-bottom: 20px;
}

.vendor-card-content p {
  line-height: 2;
  margin-bottom: 30px;
}

.vendor-btn {
  display: inline-block;

  padding: 18px 35px;

  background: #C9A24A;
  color: white;

  text-decoration: none;

  border-radius: 8px;

  transition: 0.4s ease;
}

.vendor-btn:hover {
  transform: translateY(-4px);
}
.vendor-section {
  margin-bottom: 80px;
}

.vendor-section h2 {
  font-size: 40px;
  margin-bottom: 25px;
  color: #C9A24A;
}

.vendor-section p {
  font-size: 18px;
  line-height: 2;
  color: #555;
}
.vendor-types {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0;
  color: #C9A24A;
}

.type-box {
  background: white;

  padding: 30px 20px;

  text-align: center;

  border-radius: 10px;

  font-weight: 600;

  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}
.document-list {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 20px;

  margin-top: 40px;
}

.document-item {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  font-weight: 500;
  color: #C9A24A;
}

.vendor-bottom {
  text-align: center;
  margin-top: 60px;
}
.career-hero {
  position: relative;
  height: 50vh;
  overflow: hidden;
}

.career-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.career-heo .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55)
}

.hero-text {
  position: absolute;
  bottom: 50px;
  left: 50px;
  z-index: 2;
}

.hero-text h1 {
  color: white;
  font-size: 70px;
}
.careers-page {
  padding: 100px 20px;
  background: #f7f7f7;
}

.container {
  max-width: 1200px;
  margin: auto;
}
.career-intro,
.job-section,
.apply-section {
  margin-bottom: 80px;
}

.career-intro h2,
.job-section h2,
.apply-section h2 {
  font-size: 45px;
  margin-bottom: 25px;
  color: #c9a24a;
}

.career-intro p,
.job-section p,
.apply-section p {
  font-size: 18px;
  line-height: 2;
  color: #555;
}
.why-join {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
  margin-bottom: 100px;
}

.join-card {
  background: white;
  padding: 40px 30px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.join-card i {
  font-size: 40px;
  color: #C9A24A;
  margin-bottom: 20px;
}

.join-card h3 {
  margin-bottom: 15px;
  color: #c9a24a;
}
.join-card p{
  color: #444;
}
.job-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 25px;
  margin-bottom: 100px;
}

.job-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  border-left: 5px solid #C9A24A;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.4s ease;
}

.job-card:hover {
  transform: translateY(-5px);
}

.job-card h3 {
  margin-bottom: 10px;
  color: #c9a24a;
}

.job-card span {
  display: block;
  margin-bottom: 15px;
  color: #777;
}
.job-card p {
  color: green;
  font-weight: 600;
}
.apply-info {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin: 40px 0;
}
.info-box {
  background: white;
  padding: 25px;
  text-align: center;
  border-radius: 10px;
  color: #444;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.career-contact {
  margin-top: 40px;
}
.career-btn {
  display: inline-block;
  padding: 18px 35px;
  background: #0B1F3B;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.4s ease;
}

.career-btn:hover {
  transform: translateY(-4px);
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 35px;
  margin-top: 60px;
}
.project-card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.4s ease;
}

.project-card:hover {
  transform: translateY(-8px);
}
.project-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.project-content {
  padding: 30px;
}
.project-category {
  display: inline-block;
  background: rgba(201,162,74,0.15);
  color: #C9A24A;
  padding: 8px 15px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 20px;
}
.project-content h3 {
  font-size: 28px;
  margin-bottom: 20px;
  line-height: 1.4;
}
.project-content ul {
  margin-bottom: 30px;
}

.project-content li {
  margin-bottom: 12px;
  color: #555;
}
.project-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #0B1F3B;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.4s ease;
}
.project-btn:hover {
  transform: translateY(-3px);
}
.contact-hero {
  height: 60vh;
  background: url('../images/contact.webp') center/cover;
  position: relative;
}

.contact-hero .overlay {
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.65);
  display: flex;
  align-items: center;
}

.hero-content {
  padding: 0 8%;
  color: white;
}

.hero-content h1 {
  font-size: 75px;
  margin-bottom: 20px;
}

.hero-content p {
  max-width: 700px;
  line-height: 2;
  font-size: 18px;
}

.contact-info-section {
  padding: 100px 8%;
  background: #f7f7f7;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}

.info-card {
  background: white;
  padding: 45px 35px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.4s ease;
}

.info-card:hover {
  transform: translateY(-8px);
}

.info-card i {
  font-size: 42px;
  color: #C9A24A;
  margin-bottom: 20px;
}

.info-card h3 {
  margin-bottom: 15px;
  font-size: 24px;
  color: #c9a24a;
}

.info-card p {
  line-height: 2;
  color: #555;
}

.contact-form-section {
  padding: 100px 8%;
  background: white;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-text span {
  color: #C9A24A;
  font-weight: 600;
}

.contact-text h2 {
  font-size: 50px;
  margin: 20px 0;
  color: #555;
}

.contact-text p {
  line-height: 2;
  color: #555;
}

.contact-form {
  background: #f7f7f7;
  padding: 50px;
  border-radius: 16px;
}

.form-group {
  margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 18px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 16px;
  outline: none;
}

.contact-form textarea {
  height: 180px;
  resize: none;
}

.contact-form button {
  width: 100%;
  padding: 18px;
  border: none;
  background: #0B1F3B;
  color: white;
  font-size: 17px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.4s ease;
}

.contact-form button:hover {
  background: #C9A24A;
}

.map-section iframe {
  display: block;
}

.projects-hero {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.projects-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.projects-hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.projects-hero .hero-text {
    position: relative;
    z-index: 2;
    position: absolute;
    bottom: 50px;
    left: 50px;
    text-align: center;
    color: #fff;
    padding: 0 24px;
}

.project-filters,
.project-summary,
.projects-grid-section,
.pagination-section {
    padding: 15px 0;
}

.project-filters .container,
.project-summary .container,
.projects-grid-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 18px;
}

.filter-grid select {
    width: 100%;
    border: 1px solid rgba(255,255,255,.18);
    background: #0a1631;
    color: #fff;
    padding: 14px 16px;
    border-radius: 12px;
    outline: none;
}

.summary-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.status-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.status-tags span {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 0.95rem;
}

.status-tags .completed {
    background: rgba(201, 162, 74, 0.15);
    color: #c9a24a;
}

.status-tags .construction {
    background: rgba(255, 255, 255, 0.08);
    color: #e8edf7;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(280px, 1fr));
    gap: 26px;
}

.project-card {
    background: #081631;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.project-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.project-content {
    padding: 24px;
}

.project-category {
    display: inline-block;
    margin-bottom: 14px;
    color: #c9a24a;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.project-content h3 {
    margin: 0 0 18px;
    font-size: 1.2rem;
    line-height: 1.4;
    color: #fff;
}

.project-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    color: #cbd2ea;
    line-height: 1.8;
}

.project-content ul li strong {
    color: #fff;
}

.project-btn {
    display: inline-block;
    padding: 12px 22px;
    background: #c9a24a;
    color: #070f1e;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
}

.pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(255,255,255,.08);
    color: #fff;
    text-decoration: none;
}

.pagination a.active-page {
    background: #c9a24a;
    color: #07111d;
}

.division-hero {
  position: relative;
  height: 60vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.division-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.division-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1;
}

.hero-text {
  position: absolute;
  bottom: 60px;
  left: 8%;
  z-index: 2;
  transform: translateY(-50);
}

.hero-text h1 {
  color: white;
  font-size: 70px;
  max-width: 800px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title span {
  color: #C9A24A;
  font-weight: 600;
  letter-spacing: 1px;
}

.section-title h2 {
  font-size: 48px;
  margin-top: 10px;
}

.division-overview {
  padding: 50px 0;
  background: #fff;
  min-height: 60vh;
  position: relative;
  z-index: 5;
}

.division-image img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.division-content span {
  color: #C9A24A;
  font-weight: 600;
}

.division-content h2 {
  font-size: 50px;
  margin: 20px 0;
  line-height: 1.2;
  color: #111;
}

.division-content p {
  color: #555;
  line-height: 2;
  margin-bottom: 20px;
}

.division-stats {
  padding: 100px 0;
  background: linear-gradient(#0B1F3B, #07111f);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}

.stat-box {
  background: rgba(255,255,255,0.05);

  backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,0.08);

  padding: 45px 30px;

  border-radius: 16px;

  text-align: center;
}

.stat-box h2 {
  color: #C9A24A;
  font-size: 50px;
  margin-bottom: 15px;
}

.stat-box p {
  color: white;
  font-size: 18px;
}

.division-services {
  padding: 120px 0;
  background: #f7f7f7;
  color: #444;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
}

.service-card {
  background: white;

  padding: 45px 30px;

  border-radius: 16px;

  text-align: center;

  box-shadow: 0 10px 30px rgba(0,0,0,0.08);

  transition: 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card i {
  font-size: 42px;
  color: #C9A24A;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 22px;
}

.division-projects {
  padding: 1px 0;
  background: white;
}
.division-projects h2{
  color: #444;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 35px;
}

.project-card {
  background: #fff;

  border-radius: 18px;

  overflow: hidden;

  box-shadow: 0 10px 30px rgba(0,0,0,0.08);

  transition: 0.4s ease;
}

.project-card:hover {
  transform: translateY(-10px);
}

.project-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.project-content {
  padding: 30px;
}

.project-content h3 {
  font-size: 28px;
  margin-bottom: 15px;
  line-height: 1.4;
  color: #444;
}

.project-content p {
  color: #666;
  line-height: 1.8;
}

.projects-btn {
  text-align: center;
  margin-top: 60px;
}

.projects-btn a {
  display: inline-block;

  padding: 16px 35px;

  background: #0B1F3B;

  color: white;

  text-decoration: none;

  border-radius: 8px;

  transition: 0.4s ease;
}

.projects-btn a:hover {
  background: #C9A24A;
}

.division-cta {
  position: relative;

  padding: 120px 0;

  background: url('../images/cta-bg.webp') center/cover;
}

.division-cta .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
}

.cta-content {
  position: relative;
  z-index: 2;

  text-align: center;
}

.cta-content h2 {
  color: white;
  font-size: 55px;
  margin-bottom: 20px;
}

.cta-content p {
  color: rgba(255,255,255,0.8);

  max-width: 700px;

  margin: auto auto 35px;

  line-height: 2;
}

.cta-content a {
  display: inline-block;

  padding: 18px 38px;

  background: #C9A24A;

  color: white;

  text-decoration: none;

  border-radius: 8px;

  transition: 0.4s ease;
}

.cta-content a:hover {
  transform: translateY(-5px);
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}
section{
  padding: 80px 0;
}

.projects-btn a,
.division-cta a,
.contact-form button,
.vendor-btn,
.hero-btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, #C9A24A, #f0c14b);
  color: #0B1F3B;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.4s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(201, 162, 74, 0.25);
}

.projects-btn a:hover,
.division-cta a:hover,
.contact-form button:hover,
.vendor-btn:hover,
.hero-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #f0c14b, #C9A24A);
  box-shadow: 0 15px 35px rgba(201, 162, 74, 0.35);
}

.projects-btn,
.division-cta,
.hero-buttons {
  margin-top: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.hero-buttons a {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
}

.hero-buttons a:first-child {
  background: linear-gradient(135deg, #C9A24A, #f0c14b);
  color: #0B1F3B;
  box-shadow: 0 10px 25px rgba(201, 162, 74, 0.25);
}

.hero-buttons a:last-child {
  background: transparent;
  color: white;
  border: 2px solid #C9A24A;
}

.hero-buttons a:hover {
  transform: translateY(-3px);
}

.hero-buttons a:first-child:hover {
  box-shadow: 0 15px 35px rgba(201, 162, 74, 0.35);
}

.hero-buttons a:last-child:hover {
  background: #C9A24A;
  color: #0B1F3B;
}

/* Section header row */
    .job-section {
      margin-bottom: 40px;
    }

    .job-section-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 12px;
    }

    .job-section-header h2 {
      font-size: 45px;
      margin-bottom: 0;
    }

    .open-roles-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #eaf7f0;
      color: #1a9e5f;
      border: 1px solid #b6e8d0;
      border-radius: 20px;
      padding: 6px 16px;
      font-size: 13px;
      font-weight: 600;
    }

    .open-roles-badge::before {
      content: '';
      width: 8px; height: 8px;
      border-radius: 50%;
      background: #1a9e5f;
      animation: pulse-dot 2s infinite;
    }

    @keyframes pulse-dot {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.3; }
    }

    /* Grid — 2 columns, matches your existing .job-grid */
    .job-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 25px;
      margin-bottom: 100px;
    }

    /* Cards — extends your existing .job-card style */
    .job-card {
      background: white;
      padding: 30px;
      border-radius: 12px;
      border-left: 5px solid #C9A24A;
      box-shadow: 0 10px 25px rgba(0,0,0,0.08);
      transition: 0.4s ease;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .job-card:hover {
      transform: translateY(-5px);
    }

    /* Closed card — dimmed */
    .job-card.is-closed {
      opacity: 0.55;
      border-left-color: #ccc;
    }

    .job-card.is-closed:hover {
      transform: none;
    }

    /* Card top: title + badge */
    .job-card-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 10px;
    }

    .job-card h3 {
      margin-bottom: 0;
      font-size: 20px;
      color: #0B1F3B;
    }

    /* Status badge */
    .status-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 4px 12px;
      border-radius: 20px;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .status-badge::before {
      content: '';
      width: 7px; height: 7px;
      border-radius: 50%;
    }

    .status-badge.open {
      background: #eaf7f0;
      color: #1a9e5f;
      border: 1px solid #b6e8d0;
    }

    .status-badge.open::before {
      background: #1a9e5f;
      animation: pulse-dot 2s infinite;
    }

    .status-badge.closed {
      background: #fdf0f0;
      color: #c0392b;
      border: 1px solid #f5c6c6;
    }

    .status-badge.closed::before { background: #c0392b; }

    /* Location + meta */
    .job-card-location {
      display: block;
      margin-bottom: 10px;
      color: #777;
      font-size: 14px;
    }

    .job-card-location i {
      color: #C9A24A;
      margin-right: 5px;
      font-size: 12px;
    }

    /* Meta tags: type, department */
    .job-meta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 14px;
    }

    .job-meta-tag {
      font-size: 11px;
      padding: 3px 10px;
      border-radius: 4px;
      background: #f2f2f2;
      color: #666;
      font-weight: 500;
    }

    /* Description */
    .job-card-desc {
      font-size: 14px;
      color: #666;
      line-height: 1.7;
      margin-bottom: 20px;
      flex: 1;
    }

    /* Apply button */
    .btn-apply {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 22px;
      background: #0B1F3B;
      color: white;
      border: none;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: 0.3s ease;
      align-self: flex-start;
      margin-top: auto;
    }

    .btn-apply:hover:not(:disabled) {
      background: #C9A24A;
      transform: translateY(-2px);
    }

    .btn-apply:disabled {
      background: #ddd;
      color: #999;
      cursor: not-allowed;
      transform: none;
    }

    /* ============================================
       MODAL OVERLAY
    ============================================ */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.65);
      backdrop-filter: blur(6px);
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .modal-overlay.is-open {
      opacity: 1;
      visibility: visible;
    }

    /* Modal box */
    .modal-box {
      background: #fff;
      border-radius: 16px;
      width: 100%;
      max-width: 620px;
      max-height: 90vh;
      overflow-y: auto;
      position: relative;
      transform: translateY(28px) scale(0.97);
      transition: transform 0.35s cubic-bezier(0.34, 1.3, 0.64, 1);
      scrollbar-width: thin;
    }

    .modal-overlay.is-open .modal-box {
      transform: translateY(0) scale(1);
    }

    /* Modal header */
    .modal-header {
      padding: 32px 36px 24px;
      border-bottom: 1px solid #eee;
      background: #0B1F3B;
      border-radius: 16px 16px 0 0;
      position: relative;
    }

    .modal-eyebrow {
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #C9A24A;
      margin-bottom: 8px;
      font-weight: 600;
    }

    .modal-title {
      font-size: 26px;
      font-weight: 700;
      color: white;
      line-height: 1.2;
    }

    .modal-title span { color: #C9A24A; }

    .modal-close {
      position: absolute;
      top: 20px; right: 20px;
      width: 36px; height: 36px;
      border-radius: 8px;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.15);
      color: white;
      font-size: 20px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
      line-height: 1;
    }

    .modal-close:hover { background: rgba(255,255,255,0.2); }

    /* Modal body */
    .modal-body { padding: 32px 36px 36px; }

    /* Form grid */
    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
      margin-bottom: 18px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .form-group.full { grid-column: 1 / -1; }

    .form-label {
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: #444;
    }

    .form-label .req { color: #C9A24A; margin-left: 2px; }

    .form-input,
    .form-select,
    .form-textarea {
      padding: 12px 14px;
      border: 1.5px solid #e0e0e0;
      border-radius: 8px;
      font-size: 14px;
      color: #333;
      background: #fafafa;
      transition: border-color 0.2s, box-shadow 0.2s;
      outline: none;
      width: 100%;
      font-family: inherit;
      -webkit-appearance: none;
    }

    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
      border-color: #C9A24A;
      box-shadow: 0 0 0 3px rgba(201,162,74,0.15);
      background: #fff;
    }

    .form-input.has-error,
    .form-select.has-error,
    .form-textarea.has-error {
      border-color: #e05252;
      box-shadow: 0 0 0 3px rgba(224,82,82,0.1);
    }

    .form-textarea { resize: vertical; min-height: 110px; }

    .field-error {
      font-size: 11px;
      color: #e05252;
      font-weight: 500;
      display: none;
    }

    .field-error.visible { display: block; }

    /* Divider */
    .form-divider {
      height: 1px;
      background: #eee;
      margin: 22px 0;
    }

    /* File upload */
    .file-upload-area {
      border: 2px dashed #ddd;
      border-radius: 10px;
      padding: 22px 16px;
      text-align: center;
      cursor: pointer;
      position: relative;
      transition: border-color 0.2s, background 0.2s;
    }

    .file-upload-area:hover,
    .file-upload-area.drag-over {
      border-color: #C9A24A;
      background: rgba(201,162,74,0.04);
    }

    .file-upload-area input[type="file"] {
      position: absolute;
      inset: 0;
      opacity: 0;
      cursor: pointer;
      width: 100%;
      height: 100%;
    }

    .file-upload-icon { font-size: 26px; margin-bottom: 8px; display: block; }

    .file-upload-text { font-size: 13px; color: #666; }
    .file-upload-text strong { color: #C9A24A; }
    .file-upload-hint { font-size: 11px; color: #aaa; margin-top: 4px; }

    .file-preview { margin-top: 10px; display: flex; flex-direction: column; gap: 6px; }

    .file-preview-item {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      background: #f7f7f7;
      border: 1px solid #e8e8e8;
      border-radius: 6px;
      font-size: 12px;
      color: #555;
    }

    .file-preview-item span { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

    .file-preview-remove {
      cursor: pointer;
      color: #e05252;
      font-size: 16px;
      background: none;
      border: none;
      padding: 0;
      line-height: 1;
    }

    /* Submit button */
    .btn-submit {
      width: 100%;
      padding: 15px;
      background: #0B1F3B;
      color: white;
      border: none;
      border-radius: 8px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 8px;
    }

    .btn-submit:hover:not(:disabled) {
      background: #C9A24A;
      transform: translateY(-2px);
    }

    .btn-submit:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

    .spinner {
      width: 16px; height: 16px;
      border: 2px solid rgba(255,255,255,0.3);
      border-top-color: white;
      border-radius: 50%;
      animation: spin 0.7s linear infinite;
      display: none;
    }

    @keyframes spin { to { transform: rotate(360deg); } }
    .btn-submit.loading .spinner { display: block; }

    /* Toast */
    .toast {
      position: fixed;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%) translateY(20px);
      padding: 14px 28px;
      border-radius: 10px;
      font-size: 14px;
      font-weight: 600;
      z-index: 99999;
      opacity: 0;
      transition: opacity 0.3s, transform 0.3s;
      pointer-events: none;
      white-space: nowrap;
    }

    .toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
    .toast.success { background: #eaf7f0; color: #1a9e5f; border: 1px solid #b6e8d0; }
    .toast.error   { background: #fdf0f0; color: #c0392b; border: 1px solid #f5c6c6; }

    .btn.primary {
      background: linear-gradient(135deg, #C9A24A, #f0c14b);
      color: #0B1F3B;
      box-shadow: 0 10px 25px rgba(201, 162, 74, 0.25);
      padding: 14px 32px;
      border-radius: 10px;
      text-decoration: none;
      font-weight: bold;
    }

  .btn.secondary {
    background: #f0c14b;
    color: #0B1F3B;
    padding: 12px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
  }





