:root {
  --accent-yellow: #ffc72c; /* Mustard Yellow */
  --charcoal-gray: #34495e; /* Dark Charcoal for text */
  --navy-blue: #1e3a8a; /* Deep Navy for accents/icons */
  --light-bg: #f7f7f7; /* Light background */
}

/* header */

/* about us page css */
.about-us {
  background-color: #0e296a;
  background-blend-mode: multiply;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.about-img-2 {
  position: static;
  max-width: 100%;
  height: auto;
}
.experience-counter {
  top: 50%;
  right: 0;
  left: auto;
}
.about-us-images {
  background-image: none;
  margin-right: 0;

  padding: 0;
}
.about-facility-item {
  border: 1px solid rgb(255, 255, 255);
  padding: 20px;
  border-radius: 0 30px;
}
.section-title h2 {
  color: white;
}
.section-title p {
  color: rgb(230, 230, 230);
}
.section-title h3 {
  font-size: 20px;
  color: #edc045;
}
.about-facility-content h3 {
  color: white;
}

.about-facility-content p {
  color: rgb(200, 200, 200);
}
.about-facility-item .icon-box::before {
  background-color: #edc045;
}

/* Vision mission */
.vision-mission {
  background: #e3d7d7;
  mix-blend-mode: multiply;
  padding-top: 70px;
}
.section-title.dark-section h3 {
  font-size: 20px;
}
.section-title.dark-section h3,
.section-title.dark-section h2 {
  color: black;
}
.vision-mission-box {
  background-color: #e3d7d7;
  padding: 0;
}
.vision-mission-item {
  background-color: white;
  margin-bottom: 30px;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.1);
  padding: 15px 25px;
}
/* Feature Badge Styling (Replicating the circle/shadow effect) */
.feature-badge {
  background-color: white;
  border: 4px solid #e5e7eb;
  width: 90px;
  height: 90px;
  padding:5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 1.5rem auto; /* Center and margin-bottom */
  position: relative;
  z-index: 10;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.feature-badge img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.feature-badge:hover {
  transform: translateY(-5px);
}

/* Background effect similar to the image */
.background-effect {
  background-color: var(--light-bg);
  /* We use a simple background color for the section container in Bootstrap */
}

/* Custom Text Color Classes */
.text-navy {
  color: var(--navy-blue) !important;
}
.text-charcoal {
  color: var(--charcoal-gray) !important;
}

/* Custom Accent Classes */
.accent-icon-yellow {
  color: var(--accent-yellow);
}
.accent-icon-navy {
  color: var(--navy-blue);
}
.heading-underline {
  color: var(--charcoal-gray);
  border-bottom: 4px solid var(--accent-yellow);
  display: inline-block;
  padding-bottom: 5px;
}
.choose-card {
  border: 1px solid #000000;
  height: 290px;
  padding: 10px 12px;
  box-shadow: 0 4px 5px black;
  overflow-y: auto;
}
.choose-card h4 {
  font-size: 20px !important;
}
/* Team section */
.team-section {
  background: #bdbdbd;
  mix-blend-mode: multiply;
  padding: 70px 0;
}
.team-head {
  color: #1e3a8a;
  text-align: center;
}
.team-head + p {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}
.team-img {
  height: fit-content;
  max-width: 100%;
  margin-top: 20px;
}
.team-img img {
  border-radius: 0 35px;
  height: 100%;
  width: 100%;
  object-fit: contain;
}
/* core values */
.core-section {
  padding: 50px 0;
}
.core-section h2 {
  text-align: center;
  color: #1e3a8a;
  margin-bottom: 20px;
}
.core-img {
  max-width: 700px;
  height: 400px;
  margin: auto;
}
.core-img img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
/* Our journey */

/* --- Timeline Container and Line --- */
.timeline-wrapper {
  /* Allows horizontal scrolling for 6 items on smaller desktop/tablet views */
  padding-bottom: 30px;
}

.timeline {
  display: flex;
  position: relative;
  /* padding: 50px 0; */
  /* Fixed width for 6 items ensures they don't overlap on smaller screens */
  margin: 0 auto;
  flex-wrap: wrap;
}

/* The central horizontal line */
.timeline-line {
  position: absolute;
  height: 3px;
  background-color: var(--line-gray);
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 1;
}

/* --- Timeline Item (The column for each milestone) --- */
.timeline-item {
  /* flex: 1; Distribute space evenly */
  /* text-align: center;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 10px; Minor internal padding */
}
.top-img {
  height: 100px;
  width: 100px;
}
.top-img img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
/* Alternating Position Logic: Odd indices (1, 3, 5) get content ABOVE the line */
.timeline-item:nth-child(odd) .timeline-content {
  order: 0;
  /* padding-bottom: 50px; */
}
/* Alternating Position Logic: Even indices (2, 4, 6) get content BELOW the line */
.timeline-item:nth-child(even) .timeline-content {
  order: 2;
  /* padding-top: 50px; */
}

/* --- Timeline Badge (The Colored Circle with the Year) --- */
.timeline-badge {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  font-weight: bold;
  font-size: 1.25rem;
  color: white;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  transition: transform 0.3s ease;
}

/* Custom Color Logic based on Index (NOT math parity, as requested) */

/* Index 1, 3, 5 (2020, 2022, 2024) -> Navy Blue */
.timeline-item:nth-child(1) .timeline-badge,
.timeline-item:nth-child(3) .timeline-badge,
.timeline-item:nth-child(5) .timeline-badge {
  background-color: var(--navy-blue);
}
/* Index 2, 4, 6 (2021, 2023, 2025) -> Mustard Yellow */
.timeline-item:nth-child(2) .timeline-badge,
.timeline-item:nth-child(4) .timeline-badge,
.timeline-item:nth-child(6) .timeline-badge {
  background-color: var(--accent-yellow);
  color: var(--charcoal-gray);
}

/* --- Pointer (Dot/Connector) Styling --- */
.timeline-badge::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: inherit;
  box-shadow: 0 0 0 5px white; /* White ring around the connector */
  z-index: -1;
}

/* Content Above (Odd items) pointer connects downwards */
.timeline-item:nth-child(odd) .timeline-badge::before {
  bottom: -35px;
}

/* Content Below (Even items) pointer connects upwards */
.timeline-item:nth-child(even) .timeline-badge::before {
  top: -35px;
}

/* --- Timeline Content (The description box) --- */
.timeline-content {
  width: 100%;
  /* background: var(--light-bg); */
  padding: 15px;
  /* border-radius: 8px; */
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08); */
  text-align: left;
  min-height: 120px;
  display: flex;
  align-items: center;
}

.timeline-content p {
  font-size: 0.9rem;
  line-height: 1.4;
}
.sub-head {
  position: relative;
}
.sub-head::after {
  content: "";
  position: absolute;
  width: 650px;
  height: 4px;
  background: linear-gradient(200deg, var(--accent-yellow), var(--navy-blue));
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}


/*Css add on*/

.ed-about-image {
  position: relative;
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
  max-height: 400px !important;
  max-width: 575px !important;
}

.ed-about-wrapper .ed-about-image img {
  width: 100%;
  height: 100%;

}

.ed-about-wrapper .ed-about-content {
  margin-left: 30px;
}

@media screen and (max-width:768px) {
  .ed-about-wrapper .ed-about-content {
    margin-left: 0
  }

}