/* === GLOBAL RESET & LAYOUT CONTROL === */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

html,
body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  width: 100%;
  overflow-x: hidden;
  background-color: #FBF3FF;
  font-family: 'Poppins', sans-serif;
  color: #333;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: #013A63;
}


/* Override Bootstrap's primary text color */
.text-primary {
  color: #013A63 !important;
}


section {
  margin-top: 100px;
  margin-bottom: 100px;
  width: 100%;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1rem;
}

.row {
  flex-wrap: wrap !important;
}

/* === HERO SECTION === */
#hero {
  background: #f8f9fa;
  padding-top: 100px;
  padding-bottom: 60px;
  width: 100%;
  
}

#hero h1 {
  font-size: 3rem;
  color: #013A63;
}

#hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
  color: #6c757d;
}

.hero-img {
  min-width: 80%;
  max-width: 100%;
  height: 500px;
  border-radius: 12px;
  margin-right: 100px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-img {
    height: 400px;
    width: 90%;
    margin-right: 0;
    border-radius: 8px;
  }
}

@media (max-width: 480px) {
  .hero-img {
    height: 400px;
    width: 90%;
    margin-right: 0;
    border-radius: 6px;
  }
}

/* === WHO WE ARE === */
#who-we-are {
  background-color: #ffffff;
  margin-right: 100px;
}

#who-we-are h2 {
  font-size: 2rem;
}

#who-we-are p {
  font-size: 1.2rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}
.who-img {
  min-width: 80%;
  max-width: 100%;
  height: 500px;
  border-radius: 12px;

}
/* Responsive adjustments */
@media (max-width: 768px) {
  .who-img {
    height: 400px;
    width: 90%;
    margin-right: 0;
    border-radius: 8px;
  }
}

@media (max-width: 480px) {
  .who-img {
    height: 400px;
    width: 90%;
    margin-right: 0;
    border-radius: 6px;
  }
}
/* === MISSION & VISION === */
#mission-vision .card {
  transition: transform 0.3s ease;
  border-radius: 1rem;
  padding: 2rem;
}

#mission-vision .card:hover {
  transform: translateY(-5px);
}

#mission-vision h2 {
  font-size: 2rem;
}

#mission-vision i {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 2rem;
}

#mission-vision p {
  font-size: 1.15rem;
  color: #6c757d;
}

/* === CORE VALUES === */
#core-values .value-card {
  border-radius: 1rem;
  transition: transform 0.3s ease;
  padding: 2rem;
}

#core-values .value-card:hover {
  transform: translateY(-5px);
}

#core-values h6 {
  font-size: 1.3rem;
}

#core-values p {
  color: #6c757d;
  font-size: 1.1rem;
}

/* === PHILOSOPHY SECTION === */
#philosophy .shadow-sm {
  border-radius: 1rem;
  transition: transform 0.3s ease;
  padding: 2rem;
}

#philosophy .shadow-sm:hover {
  transform: translateY(-5px);
}

#philosophy h5 {
  font-size: 1.4rem;
}

#philosophy p {
  font-size: 1.1rem;
  color: #6c757d;
}

/* === WHO WE SERVE === */
#who-we-serve .shadow-sm {
  border-radius: 1rem;
  transition: transform 0.3s ease;
  padding: 2rem;
}

#who-we-serve .shadow-sm:hover {
  transform: translateY(-5px);
}

#who-we-serve h6 {
  font-size: 1.3rem;
}

#who-we-serve p {
  font-size: 1.1rem;
}

/* === WHAT WE OFFER === */
#what-we-offer .offer-card {
  transition: transform 0.3s ease;
  padding: 2rem;
}

#what-we-offer .offer-card:hover {
  transform: translateY(-5px);
}

#what-we-offer h5 {
  font-size: 1.4rem;
}

#what-we-offer p {
  font-size: 1.1rem;
}

/* === ACHIEVEMENTS === */
#achievements .achievement-card {
  border-radius: 1rem;
  transition: transform 0.3s ease;
  padding: 2rem;
}

#achievements .achievement-card:hover {
  transform: translateY(-6px);
}

#achievements h3 {
  font-size: 2rem;
  color: #013A63;
}

#achievements p {
  font-size: 1.1rem;
  color: #6c757d;
}

/* === TEAM AVATAR CAROUSEL === */
.carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 1200px;
  padding: 0;
}

.carousel-container {
  flex: 1;
  overflow: hidden;
}

.carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.team-card {
  flex: 0 0 auto;
  scroll-snap-align: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  text-align: center;
  transition: transform 0.3s;
  padding: 20px;
  width: 260px;
  height: auto;
}

/* Avatar */
.team-card img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin-bottom: 12px;
  border: 4px solid #013A63;
}

/* Text Styling */
.team-card .name {
  margin: 6px 0 4px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #013A63;
}

.team-card .role {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 400;
  color: #555;
}

/* Navigation Arrows */
.arrow {
  background: white;
  border: none;
  border-radius: 50%;
  font-size: 28px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
}

.arrow:hover {
  transform: scale(1.1);
}

/* Responsive Fixes for Small Screens */
@media (max-width: 768px) {
  .team-card {
    width: 220px;
    padding: 16px;
  }

  .team-card img {
    width: 80px;
    height: 80px;
  }

  .team-card .name {
    font-size: 1rem;
  }

  .team-card .role {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .carousel {
    gap: 12px;
  }

  .team-card {
    width: 200px;
    padding: 14px;
  }

  .team-card img {
    width: 70px;
    height: 70px;
  }

  .team-card .name {
    font-size: 0.95rem;
  }

  .team-card .role {
    font-size: 0.8rem;
  }
}



/* === JOURNEY TIMELINE === */
#journey .timeline-horizontal-wrapper {
  position: relative;
  padding: 20px 0;
  overflow-x: auto;
}

#journey .timeline-line {
  position: absolute;
  background-color: #013A63;
  z-index: 1;
}

#journey .timeline-step-horizontal {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  position: relative;
  z-index: 2;
  padding: 1.5rem 0;
}

#journey .timeline-dot {
  width: 70px;
  height: 70px;
  background: #fff;
  border: 5px solid #013A63;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: #013A63;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

#journey .timeline-content {
  text-align: left;
}

#journey .timeline-content h5 {
  font-size: 1.3rem;
  color: #013A63;
  margin-bottom: 0.4rem;
}

#journey .timeline-content p {
  font-size: 1.05rem;
  color: #6c757d;
  margin: 0;
}

#journey .timeline-horizontal {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
}

#journey .timeline-line {
  top: 0;
  bottom: 0;
  left: 40px;
  width: 4px;
}

@media (min-width: 768px) {
  #journey .timeline-horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  #journey .timeline-step-horizontal {
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 240px;
    padding: 0;
  }

  #journey .timeline-content {
    text-align: center;
  }

  #journey .timeline-line {
    top: 50px;
    height: 4px;
    left: 0;
    right: 0;
    width: 100%;
  }
}

/* === FUTURE GOALS === */
#looking-ahead .future-goal {
  border-radius: 1rem;
  transition: transform 0.3s ease;
  padding: 2rem;
}

#looking-ahead .future-goal:hover {
  transform: translateY(-4px);
}

#looking-ahead h6 {
  font-size: 1.2rem;
  color: #013A63;
  margin-bottom: 0.5rem;
}

#looking-ahead p {
  font-size: 1.05rem;
  color: #6c757d;
}

/* === PARTNER WITH US CTA === */
#partner {
  background-color: #f8f9fa;
}

#partner h2 {
  font-size: 1.5rem;
}

#partner p {
  font-size: 1.1rem;
  color: #333;
}

#partner a.btn {
  border-radius: 30px;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
}