.services-section {
  background: var(--off-white);   /* #F8F9FA */
  margin-top: 70px;
}

.services-section .section-header {
  text-align: center;
  background-color: var(--primary-blue);
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.services-section .section-header h2 {
  font-size: 2.8rem;
  color: var(--off-white);
  margin: 0.5rem 0 1rem;
}
.services-section .section-header p {
  color: var(--accent-gold);
  max-width: 500px;
  margin: 0 auto;
}
.section-label {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--md-blue);
}
.Projects-section-label {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary-blue);
}
/* contact-button */
.contact-button {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}
.cta-primary {
  background: var(--accent-gold);
  color: #000;
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(198,146,20,0.35);
}
.cta-primary:hover {
  background: #dba31e;
}

.cta-secondary {
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.cta-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}



/* টাইমলাইন কন্টেইনার */
.timeline {
  max-width: 900px;
  margin: 30px auto;
  position: relative;
  padding: 1rem 0;
}

/* উলম্ব রেখা */
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--primary-blue), var(--accent-gold), transparent);
  transform: translateX(-50%);
}

/* আইটেম – বাম/ডান */
.timeline-item {
  display: flex;
  margin-bottom: 3rem;
  position: relative;
}
.timeline-item.left {
  justify-content: flex-start;
}
.timeline-item.right {
  justify-content: flex-end;
}

/* কার্ড */
.timeline-card {
  width: calc(50% - 35px);
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.timeline-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-blue);
}

/* ইমেজ অংশ */
.card-image {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  flex-shrink: 0;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.timeline-card:hover .card-image img {
  transform: scale(1.03);
}

/* টেক্সট অংশ */
.card-text {
  padding: 1.5rem;
}
.date {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.3rem;
  display: block;
}
.card-text h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}
.role {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent-gold);
  margin-bottom: 0.8rem;
}
.card-text p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ডট (সোনালী) */
.timeline-item.left .timeline-card::after,
.timeline-item.right .timeline-card::before {
  content: '';
  position: absolute;
  top: 30px;
  width: 16px;
  height: 16px;
  background: var(--accent-gold);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(198,146,20,0.4);
  z-index: 2;
}
.timeline-item.left .timeline-card::after {
  right: -42px;
}
.timeline-item.right .timeline-card::before {
  left: -42px;
}

/* মোবাইল */
@media (max-width: 768px) {
  .timeline::before {
    left: 24px;
  }
  .timeline-item,
  .timeline-item.left,
  .timeline-item.right {
    justify-content: flex-start;
    padding-left: 50px;
  }
  .timeline-card {
    width: 100%;
  }
  .timeline-item.left .timeline-card::after,
  .timeline-item.right .timeline-card::before {
    left: -33px;
    right: auto;
    top: 20px;
  }

  /* hero setion .section-label */
  .section-label {
    margin-top: 70px;
  }
}







/* ===== PROJECTS GALLERY ===== */
.projects-section {
  padding: 6rem 1.5rem;
  background: var(--light-bg);
}

.projects-section .section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  max-width: 1100px;
  margin: 2rem auto 0;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  box-shadow: var(--shadow-sm);
} 
.gallery-item:hover {
    box-shadow: 0px 0px 12px black;
    transition: 0.5s;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
