/* *********************************** About Banner CSS *********************************** */
.about-header {
  background: url('../images/about-banner.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px; /* Adjust height as needed */
  text-align: center;
  color: #0E2B5C;
  position: relative;
}

.about-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0); /* Optional overlay for readability */
  z-index: 1;
}

.about-header-inner {
  position: relative;
  z-index: 2;
}

.about-header-inner h2 {
  font-size: 3rem;
  margin: 0;
}

.about-header-inner h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #0E2B5C;
  margin: 20px auto 0;
  border-radius: 2px;
}

/* *********************************** About Banner CSS End *********************************** */

/* *********************************** Transition Image CSS *********************************** */
.about-images {
  padding: 60px 10%;
}

.images-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.images-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Right column images stacked */
.right-col .top-image,
.right-col .bottom-image {
  margin-bottom: 20px;
}

/* Images styling */
.images-col img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  transform: translateX(0);
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

/* Left column enters from left */
.left-col img {
  animation-name: slideInLeft;
}

/* Right column enters from right */
.right-col img {
  animation-name: slideInRight;
}

/* Animations */
@keyframes slideInLeft {
  0% { transform: translateX(-100px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
  0% { transform: translateX(100px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

/* Stagger animation delays for right column */
.right-col .top-image img {
  animation-delay: 0.3s;
}

.right-col .bottom-image img {
  animation-delay: 0.6s;
}

/* Responsive */
@media (max-width: 992px) {
  .images-row {
    flex-direction: column;
  }
  .right-col .top-image,
  .right-col .bottom-image {
    margin-bottom: 20px;
  }
}

/* *********************************** Transition Image End *********************************** */

/* *********************************** About Text CSS *********************************** */

.about-text-sections {
  padding: 60px 11%;
  background-color: #f8f9fb; /* Optional: light background */
}

.text-section {
  max-width: 800px;
  margin: 0 auto 25px auto;
  text-align: center;
}

.text-section h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #0E2B5C;
}

.text-section p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 10px;
  text-align: justify;
}

/* *********************************** About Text CSS End *********************************** */
