

.contact-banner .overlay {
  background: rgba(255, 255, 255, 0.6); /* transparent white overlay */
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.contact-banner h1 {
  font-size: 90px;
  font-weight: 500;
   color: #274186;
  border-bottom: 2px solid #ccc;
  padding-bottom: 5px;
}


/* CTA Section */
.cta-section {
  position: relative;
  background: #243377; /* dark blue */
  color: #fff;
  padding: 50px 10%;
  overflow: hidden;
  border-radius: 6px;

}

/* Container */
.cta-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  z-index: 2;
  position: relative;
}

/* Text */
.cta-text h2 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}

.cta-text p {
  font-size: 14px;
  color: #dcdcdc;
  max-width: 500px;
}

/* Button */
.btn-cta {
  background: #f4b400; /* yellow */
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-cta:hover {
  background: #e0a200;
}

/* Decorative Circle */
.cta-circle {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 150px;
  height: 150px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  z-index: 1;
}


.buyers-tabs {
  display: flex;
  gap: 10px;

  flex-wrap: wrap;
  justify-content: center; /* centers the tabs */
 
}

.tab-btn {
  

  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s ease;
  color: #e0a200;
  background-color: #ffffff;
   border: 1px solid #2e3a7b;
}

.tab-btn:hover {
    background: #ffffff;
    color: #e0a200;
  border: 1px solid #2e3a7b;
}


.tab-btn.active {
  color: #ffffff;
  border: 1px solid #2e3a7b;
    background-color: #1a2a6c;
}








.projects-timeline {
  font-family: "Helvetica", sans-serif;
  padding: 50px 20px;
  background: #fff;
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 3px;
  background-color: #ddd;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1.5px;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 40px 0;
  position: relative;
  width: 100%;
}

.container.left .project-img {
  width: 45%;
}
.container.left .project-content {
  width: 45%;
  text-align: left;
}

/* Correct the right side so content stays near the center line */
.container.right {
  flex-direction: row; /* instead of row-reverse */
}

.container.right .project-content {
  order: 1;   /* keep content on the left */
  width: 45%;
  text-align: left;
}

.container.right .project-img {
  order: 2;   /* image on the right */
  width: 45%;
}


.project-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.project-content {
  background: #fff;
  padding: 20px;
}

/* Circle + connector only for project-content */
.project-content {
  position: relative;
}

/* LEFT side cards */
.container.left .project-content::before {
  content: '';
  position: absolute;
  top: 30px; /* adjust vertically to align with card */
  right: calc(100% + 3px); /* start just before card */
  width: 40px; /* connector length */
  height: 2px;
  background: #1a3b8d;
}

.container.left .project-content::after {
  content: '';
  position: absolute;
  top: 22px; /* aligns circle with line */
  right: calc(100% + 43px); /* place circle at milestone */
  width: 16px;
  height: 16px;
  background: #1a3b8d;
  border: 3px solid #fff;
  border-radius: 50%;
  z-index: 2;
}

/* RIGHT side cards */
.container.right .project-content::before {
  content: '';
  position: absolute;
  top: 30px;
  left: calc(100% + 3px);
  width: 40px;
  height: 2px;
  background: #1a3b8d;
}

.container.right .project-content::after {
  content: '';
  position: absolute;
  top: 22px;
  left: calc(100% + 43px);
  width: 16px;
  height: 16px;
  background: #1a3b8d;
  border: 3px solid #fff;
  border-radius: 50%;
  z-index: 2;
}

.project-title {
  font-size: 32px;
  color: #333;
  margin-bottom: 12px;
}

.project-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
}
.project-highlights li {
  margin-bottom: 8px;
  font-size: 14px;
  color: #333;
}

.distance {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0;
}

.distance-item {
  text-align: center;
  flex: 1;
  min-width: 100px;
}

.distance-item h3 {
  font-size: 20px;
  font-weight: bold;
  color: #1a3b8d; /* dark blue */
  margin: 0;
}

.distance-item p {
  font-size: 12px;
  font-weight: 600;
  color: #333;
  margin: 5px 0 0;
  text-transform: uppercase;
  line-height: 1.4;
}

.distance-item p span {
  font-size: 14px;
  font-weight: normal;
  text-transform: none;
  display: block;
  margin-top: 2px;
}


.project-links {
  margin-top: 15px;
}
.project-links a {
  text-decoration: none;
  margin-right: 20px;
  font-weight: bold;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px; /* space between text & icon */
  transition: color 0.3s ease;
}

.project-links .view {
  color: #e5b52e;
}
.project-links .brochure {
  color: #1a3b8d;
}

.project-links a:hover {
  opacity: 0.8;
}


/* Responsive */
@media screen and (max-width: 768px) {
  .timeline::after {
    left: 20px;
  }
  .container {
    flex-direction: column !important;
    align-items: flex-start;
  }
  .project-img, .project-content {
    width: 100%;
  }
}

li span{
    font-size: 14px;
    color: #1a3b8d;
    font-weight: bold;
}
.project-content li{
  line-height: 2.4rem;  
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px; /* space between icon & text */
}

.icon-box {
    width: 30px;          /* fixed width for all icons */
    min-width: 30px;
    text-align: center;
    font-size: 18px;
    color: #0b3d91;       /* optional icon color */
}

.desc-text {
    flex: 1;
    font-size: 16px;
}


