.hero-section {
  background-image: url("/_2025/img/about_us/background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero-section {
    background-image: url("/_2025/img/about_us/bg-mobile.jpg");
    background-size: cover;
    padding: 20px 0 40px 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    height: 400px;
  }

  .hero-content {
    width: 100%;
    /* padding-top: 20px; */
  }

  .hero-content .row {
    justify-content: center;
  }

  .hero-content .col-lg-6 {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .bg-logo {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .hero-section h1 {
    font-size: 26px !important;
    text-align: center;
    margin-bottom: 0;
  }
}

.bg-logo {
  background: linear-gradient(135deg, #2466c9 0%, #00379d 100%);
  font-style: italic;
  font-size: 24px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.about-section {
  padding: 40px 0;
  /* background-color: #f8fafc; */
}

.stats-section {
  /* padding: 40px 0; */
  color: white;
}

.stats-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-card.vision-card {
  background: linear-gradient(135deg, #2466c9 0%, #00379d 100%);
  color: #fff;
  border: none;
}

.stats-card.mission-card {
  background: linear-gradient(135deg, #2466c9 0%, #00379d 100%);
  color: white;
  border: none;
}

.stats-item {
  background: #00379d;
  padding: 15px;
  border-radius: 15px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.vision-icon {
  width: 60px;
  height: 60px;
  /* background: #e0f2fe; */
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #1e40af;
  margin-right: 20px;
}

.mission-icon {
  width: 60px;
  height: 60px;
  /* background: rgba(255, 255, 255, 0.2); */
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
  margin-right: 20px;
}

.values-section {
  padding: 60px 0 350px 0;
  background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
  position: relative;
}

.curved-text svg {
  width: 300px;
  /* height: 120px; */
  margin: 0 auto;
  display: block;
}

.curved-title {
  font-family: inherit;
  letter-spacing: 2px;
}

.values-container {
  position: relative;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 600px;
}

.values-scroll-container {
  display: none;
}

.center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 2;
  border: 4px solid #3b82f6;
}

.center-logo svg {
  width: 120px;
  height: 120px;
}

.value-item {
  position: absolute;
  text-align: left;
  width: 300px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  border: none;
  transition: transform 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.value-item:hover {
  transform: translateY(-5px);
}

.value-item.bottom {
  bottom: -250px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.value-item.bottom:hover {
  transform: translateX(-50%) translateY(-5px);
}

.value-item.top-right {
  top: 100px;
  right: -100px;
}

.value-item.bottom-right {
  bottom: -70px;
  right: -130px;
}

.value-item.top-left {
  top: 100px;
  left: -100px;
  flex-direction: row-reverse;
  text-align: right;
}

.value-item.bottom-left {
  bottom: -30px;
  left: -130px;
  flex-direction: row-reverse;
  text-align: right;
}

.value-item.top-left .value-content,
.value-item.bottom-left .value-content {
  text-align: right;
}

.value-icon {
  width: 50px;
  height: 50px;
  background: #3b82f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.value-content {
  flex: 1;
}

.value-item.top .value-content {
  text-align: center;
}

.value-item h5 {
  color: #1e40af;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.value-item p {
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
  margin: 0;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 15px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .values-section {
    padding: 40px 0;
  }

  .curved-text svg {
    width: 300px;
  }

  .values-container {
    display: none;
  }

  .values-scroll-container {
    display: block;
    overflow-x: auto;
    padding: 0 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .values-scroll-container::-webkit-scrollbar {
    display: none;
  }

  .center-logo-mobile {
    width: 230px;
    height: 230px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 4px solid #3b82f6;
    margin: 0 auto 30px;
  }

  .values-mobile-wrapper {
    display: flex;
    gap: 15px;
    padding-bottom: 10px;
    width: max-content;
  }

  .value-item {
    position: static;
    width: 280px;
    min-width: 280px;
    margin: 0;
    transform: none !important;
    flex-direction: column;
    text-align: center;
    padding: 20px 15px;
    gap: 15px;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); */
    border: 2px solid rgba(59, 130, 246, 0.1);
    flex-shrink: 0;
  }

  .value-item:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  }

  .value-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
    margin: 0;
    flex-shrink: 0;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  }

  .value-icon img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
  }

  .value-content {
    flex: 1;
    text-align: center;
  }

  .value-item h5 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1e40af;
    font-weight: 700;
  }

  .value-item p {
    font-size: 14px;
    line-height: 1.5;
    background: transparent;
    padding: 0;
    box-shadow: none;
    color: #475569;
  }

  /* Scroll indicator */
  .scroll-indicator {
    text-align: center;
    margin-top: 20px;
    color: #64748b;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }

  .scroll-indicator::before {
    content: "←";
    font-size: 16px;
  }

  .scroll-indicator::after {
    content: "→";
    font-size: 16px;
  }
}

.timeline-section {
  padding: 80px 0;
  background: url("/_2025/img/about_us/bg-blue.png");
  background-position: 100% auto;
  background-size: cover;
  color: white;
  position: relative;
  overflow: hidden;
}

.timeline {
  position: relative;
  padding: 80px 0 120px 0;
  max-width: 1400px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(-50%);
  z-index: 1;
}

.timeline::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 1);
  transform: translateY(-50%);
  z-index: 2;
}

.timeline-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  /* padding: 0 2%; */
}

.timeline-item {
  position: relative;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 220px;
}

.timeline-item:nth-child(odd) .timeline-content {
  order: 2;
  position: relative;
  top: 140px;
  margin: 0;
}

.timeline-item:nth-child(odd) .timeline-dot {
  order: 1;
  top: 100px;
}

.timeline-item:nth-child(even) .timeline-content {
  order: 1;
  position: relative;
  top: -90px;
  margin: 0;
}

.timeline-item:nth-child(even) .timeline-dot {
  order: 2;
  top: -60px;
}

.timeline-dot {
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
  transition: all 0.3s ease;
  border: 2px solid white;
}

.timeline-dot:hover {
  transform: scale(1.1);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.4);
}

.timeline-content {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 25px 20px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  width: 100%;
  height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
}

.timeline-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.18);
}

.timeline-content .h6 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: white;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
  padding: 8px 16px;
  border-radius: 25px;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.timeline-content p {
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
  text-align: center;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .timeline-section {
    padding: 40px 0;
  }

  .timeline {
    padding: 0 0 80px 0;
    overflow-x: auto;
    /* -webkit-overflow-scrolling: touch; */
    /* scrollbar-width: none; */
    /* -ms-overflow-style: none; */
    margin-top: -80px;
  }

  .timeline::-webkit-scrollbar {
    display: none;
  }

  .timeline::before {
    left: 0;
    right: 0;
    top: 32%;
    transform: translateY(-50%);
    height: 3px;
    width: 1200px;
    min-width: 1200px;
  }

  .timeline::after {
    left: 0;
    right: 0;
    top: 32%;
    transform: translateY(-50%);
    height: 1px;
    width: 1200px;
    min-width: 1200px;
  }

  .timeline-wrapper {
    flex-direction: row;
    /* gap: 40px; */
    /* padding: 0 20px; */
    justify-content: flex-start;
    min-width: 1200px;
    width: max-content;
  }

  .timeline-item {
    flex-direction: column;
    text-align: center;
    max-width: 220px;
    min-width: 220px;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
  }

  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    flex-direction: column;
  }

  .timeline-item:nth-child(odd) .timeline-content {
    order: 2;
    position: relative;
    top: 70px;
    margin: 0;
    flex: none;
  }

  .timeline-item:nth-child(even) .timeline-content {
    order: 2;
    position: relative;
    top: 70px;
    margin: 0;
    flex: none;
  }

  .timeline-item:nth-child(odd) .timeline-dot {
    order: 1;
    position: relative;
    top: 60px;
    margin: 0;
    flex-shrink: 0;
  }

  .timeline-item:nth-child(even) .timeline-dot {
    order: 2;
    position: relative;
    top: 60px;
    margin: 0;
    flex-shrink: 0;
  }

  .timeline-dot {
    width: 20px;
    height: 20px;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
  }

  .timeline-content {
    padding: 15px;
    min-height: auto;
    height: 120px;
    max-width: 200px;
  }

  .timeline-content .h6 {
    font-size: 14px;
    padding: 6px 12px;
    margin-bottom: 8px;
  }

  .timeline-content p {
    font-size: 11px;
    line-height: 1.4;
  }
}

.leadership-section {
  padding: 80px 0;
  /* background-color: #f8fafc; */
}

.leaders-container {
  overflow-x: visible;
}

.leaders-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.leader-card {
  text-align: center;
  padding: 20px;
  flex: 0 0 calc(25% - 22.5px);
  /* max-width: 250px; */
  transition: transform 0.3s ease;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.1);
}

.leader-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.leader-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .curved-text {
    height: 60px;
  }
  .leadership-section {
    padding: 40px 0;
  }

  .leaders-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 20px;
  }

  .leaders-container::-webkit-scrollbar {
    display: none;
  }

  .leaders-wrapper {
    flex-wrap: nowrap;
    justify-content: flex-start;
    min-width: max-content;
    gap: 20px;
    padding-bottom: 10px;
  }

  .leader-card {
    /* min-width: 180px;
            max-width: 180px;
            flex: 0 0 180px; */
    flex-shrink: 0;
    padding: 15px;
  }

  .leader-img {
    width: 200px;
    height: 160px;
    margin-bottom: 15px;
  }

  .leader-card h5 {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .leader-card p {
    font-size: 14px;
    margin: 0;
  }
}

.social-stats {
  /* padding: 60px 0; */
  /* max-width: 1400px; */
  margin: 0 auto;
  background: url("/_2025/img/about_us/bg-smooth.jpg") no-repeat center center;
  border-radius: 15px;
  padding: 0 20px;
  /* height: 250px; */
}

.stat-item {
  text-align: center;
  margin-bottom: 30px;
  background-color: #fff;
  border-radius: 10px;
  padding: 5px 10px;
  margin: 20px 0;
  /* height: 100%; */
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  /* position: relative;
        border-bottom: 4px solid;
        border-image: linear-gradient(90deg, #C1FFC900, #48BE9A) 1;
        box-shadow: 0 4px 15px rgba(72, 190, 154, 0.1); */
  transition: all 0.3s ease;
  width: 100%;
}

/* .stat-item::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, transparent, #48BE9A);
        border-radius: 0 0 10px 10px;
    }

    .stat-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(72, 190, 154, 0.2);
    } */

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: #00379d;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  text-decoration: none;
}

.social-icon img {
  width: 40px;
  height: 40px;
  /* object-fit: contain; */
  /* filter: brightness(0) invert(1); */
}

@media (max-width: 768px) {
  .social-stats {
    padding: 40px 20px;
    height: auto;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 20px;
    margin: 20px;
  }

  .social-stats .row {
    flex-direction: column;
    gap: 30px;
  }

  .social-stats .col-lg-6 {
    width: 100%;
    text-align: center;
  }

  .social-stats h5 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #00379d;
  }

  .social-stats .d-flex {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
  }

  .social-icon {
    width: 50px;
    height: 50px;
    margin: 5px;
    box-shadow: 0 4px 15px rgba(36, 102, 201, 0.2);
    transition: all 0.3s ease;
  }

  .social-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
  }

  .social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(36, 102, 201, 0.3);
  }

  .social-stats .row.text-center {
    flex-direction: column;
    gap: 15px;
  }

  .social-stats .col-4 {
    width: 100%;
    margin-bottom: 0;
  }

  .stat-item {
    background: white;
    border-radius: 15px;
    padding: 25px 20px;
    margin: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(0, 55, 157, 0.1);
    position: relative;
    overflow: hidden;
    min-height: 140px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .stat-item::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #00379d);
  }

  .stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  }

  .stat-number {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: bold;
    color: #00379d;
    line-height: 1;
  }

  .stat-item .text-muted {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
