.about-section {
    background: linear-gradient(120deg, #e0e7ff 0%, #f0fdfa 100%);
    padding: 5rem 0;
  }

  /* Title Gradient */
  .about-title {
    background: linear-gradient(90deg, #2563eb 30%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    letter-spacing: 1px;
  }

  /* Statistic Box Animation */
  .stat-box {
    opacity: 0;
    transform: translateY(40px) scale(0.92);
    transition: all 0.7s cubic-bezier(.4,0,.2,1);
    background: linear-gradient(135deg, #f0f9ff 0%, #bae6fd 100%);
    border-radius: 1.25rem;
    box-shadow: 0 6px 32px #2563eb22;
    border: 1px solid #dbeafe;
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
  }

  .stat-box.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .stat-box:hover {
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    color: #fff;
    box-shadow: 0 12px 36px #2563eb44;
    transition: background 0.4s, color 0.4s, box-shadow 0.4s;
  }

  .stat-icon {
    background: linear-gradient(135deg, #dbeafe 0%, #2563eb22 100%);
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    color: #2563eb;
    font-size: 2rem;
    margin-bottom: 1rem;
    transition: background 0.4s, color 0.4s, transform 0.3s;
  }

  .stat-box:hover .stat-icon {
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    color: #fff;
    transform: scale(1.15) rotate(-8deg);
  }

  .about-img-card {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.18);
    border: 2px solid #dbeafe;
    background: linear-gradient(120deg, #f0f9ff 0%, #ecfeff 100%);
    transition: box-shadow 0.4s, border 0.4s;
  }

  .about-img-card:hover {
    box-shadow: 0 32px 64px #2563eb33;
    border: 2px solid #2563eb;
  }

  .floating-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 1.25rem;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.25);
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    transition: box-shadow 0.4s, transform 0.3s;
  }

  .floating-card:hover {
    box-shadow: 0 18px 48px #2563eb55;
    transform: scale(1.05) rotate(2deg);
  }

  .counter {
    font-size: 2.2rem;
    font-weight: bold;
    background: linear-gradient(90deg, #2563eb 30%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    transition: color 0.4s;
  }

  @media (max-width: 991px) {
    .about-section {
        padding: 3rem 0;
    }
    .about-img-card {
        margin-bottom: 2rem;
    }
}

/* Animation for fade-in-up on scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.92);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.animated-card {
    opacity: 0;
    transform: translateY(40px) scale(0.92);
    transition: all 0.7s cubic-bezier(.4,0,.2,1);
}

.animated-card.visible {
    animation: fadeInUp 0.7s cubic-bezier(.4,0,.2,1) forwards;
}

/* Card hover gradient effect for all cards */
.mv-card,
.about-value-card,
.about-director-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #ecfeff 100%);
    border: 1.5px solid #bae6fd;
    border-radius: 1.5rem;
    box-shadow: 0 2px 12px #2563eb11;
    transition: background 0.4s, box-shadow 0.4s, border 0.4s, transform 0.3s;
}

.mv-card:hover,
.about-value-card:hover,
.about-director-card:hover {
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    color: #fff;
    box-shadow: 0 8px 32px #2563eb33;
    border: 1.5px solid #2563eb;
    transform: translateY(-8px) scale(1.03);
}

.mv-card:hover h2,
.mv-card:hover p,
.about-value-card:hover .value-title,
.about-value-card:hover .value-desc,
.about-director-card:hover .director-name,
.about-director-card:hover .director-role,
.about-director-card:hover .director-bio {
    color: #fff !important;
}

.value-icon,
.director-icon {
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    color: #fff;
    border-radius: 50%;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem auto;
    font-size: 2rem;
    box-shadow: 0 4px 16px #2563eb22;
    transition: background 0.4s, color 0.4s, transform 0.3s;
}

.about-value-card:hover .value-icon,
.about-director-card:hover .director-icon {
    background: linear-gradient(135deg, #facc15 0%, #2563eb 100%);
    color: #2563eb;
    transform: scale(1.15) rotate(-8deg);
}

.mv-card.vision {
    background: linear-gradient(135deg, #ecfeff 0%, #bae6fd 100%);
    border-color: #a5f3fc;
}

.mv-card.vision:hover {
    background: linear-gradient(135deg, #2563eb 0%, #7e22ce 100%);
    color: #fff;
    border-color: #7e22ce;
}

/* Timeline animation */
.about-timeline-item {
    opacity: 0;
    transform: translateY(40px) scale(0.92);
    transition: all 0.7s cubic-bezier(.4,0,.2,1);
}

.about-timeline-item.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.about-timeline-content {
    background: linear-gradient(135deg, #fff 0%, #f0f9ff 100%);
    border-radius: 1rem;
    box-shadow: 0 2px 8px #2563eb11;
    border: 1px solid #f1f5f9;
    padding: 1.5rem 2rem;
    transition: background 0.4s, box-shadow 0.4s, border 0.4s, color 0.4s;
}

.about-timeline-content:hover {
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    color: #fff;
    box-shadow: 0 8px 32px #2563eb33;
    border: 1.5px solid #2563eb;
}

.about-timeline-content:hover .year,
.about-timeline-content:hover .title,
.about-timeline-content:hover .desc {
    color: #fff !important;
}

.about-timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #2563eb 0%, #06b6d4 100%);
    z-index: 0;
    border-radius: 2px;
    opacity: 0.25;
}

.about-timeline-dot {
    z-index: 2;
    position: relative;
}

.mv-img-badge.badge-gradient-card {
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 70%, #facc15 100%);
    color: #fff;
    border-radius: 1.25rem;
    box-shadow: 0 8px 32px #2563eb33, 0 2px 12px #facc1533;
    border: 2px solid #bae6fd;
    padding: 1.7rem 2.2rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    z-index: 1;
    position: absolute;
    left: -2rem;
    bottom: -2rem;
    animation: badgeFloat 3.5s ease-in-out infinite alternate;
    transition: box-shadow 0.4s, transform 0.4s, background 0.4s;
    backdrop-filter: blur(2px);
}

.mv-img-badge.badge-gradient-card:hover {
    box-shadow: 0 16px 48px #2563eb55, 0 4px 24px #facc1555;
    transform: scale(1.05) rotate(-2deg);
    background: linear-gradient(120deg, #facc15 0%, #2563eb 70%, #06b6d4 100%);
}

@keyframes badgeFloat {
    0% { transform: translateY(0) scale(1);}
    100% { transform: translateY(-10px) scale(1.04);}
}

.mv-img-badge.badge-gradient-card .mv-badge-icon {
    font-size: 2.5rem;
    color: #fff;
    background: linear-gradient(135deg, #facc15 0%, #2563eb 100%);
    border-radius: 50%;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px #facc1533;
    margin-right: 0.5rem;
    transition: background 0.4s, color 0.4s, transform 0.3s;
}

.mv-img-badge.badge-gradient-card:hover .mv-badge-icon {
    background: linear-gradient(135deg, #2563eb 0%, #facc15 100%);
    color: #2563eb;
    transform: scale(1.12) rotate(-8deg);
}

.mv-img-badge.badge-gradient-card .mv-badge-text {
    font-size: 2.1rem;
    font-weight: bold;
    letter-spacing: 1px;
    color: #fff;
    background: linear-gradient(90deg, #facc15 30%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.2rem;
    transition: color 0.4s;
}

.mv-img-badge.badge-gradient-card .mv-badge-label {
    font-size: 1.1rem;
    color: #e0e7ff;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.4s;
}

/* About NDH Logistic Section */
.about-ndhlogistic {
    background: linear-gradient(120deg, #f0fdfa 0%, #e0e7ff 100%);
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px #2563eb22;
    border: 2px solid #bae6fd;
    padding: 2.5rem 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-ndhlogistic .about-ndh-title {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(90deg, #2563eb 30%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.about-ndhlogistic .about-ndh-desc {
    font-size: 1.18rem;
    color: #334155;
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1.7;
}

.about-ndhlogistic .about-ndh-highlight {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(90deg, #facc15 30%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.animate__animated {
    /* Bootstrap Animate.css compatibility */
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animate__fadeInUp {
    animation-name: fadeInUp;
}

/* Card Sizing Utility for About Section */
.about-cards-row {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.about-card-equal {
    flex: 1 1 320px;
    min-width: 320px;
    max-width: 420px;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* 25+ Years of Excellence Card */
.years-excellence-card {
    background: linear-gradient(135deg, #facc15 0%, #2563eb 100%);
    color: #7b1717;
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px #2563eb33;
    border: 2px solid #e00209;
    padding: 2.5rem 2rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.2rem;
    position: relative;
    transition: box-shadow 0.4s, transform 0.3s, background 0.4s;
}

.years-excellence-card .years-number {
    font-size: 2.7rem;
    font-weight: bold;
    background: linear-gradient(90deg, #fff 30%, #facc15 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.years-excellence-card:hover {
    box-shadow: 0 16px 48px #2563eb55;
    transform: scale(1.04) rotate(-2deg);
    background: linear-gradient(120deg, #2563eb 0%, #facc15 100%);
    color: #fff;
}

/* Ensure Our Vision card matches Years of Excellence card */
.mv-card.vision,
.years-excellence-card {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* New styles for .about-mission-vision .mv-card */
.about-mission-vision .mv-card {
    background: #07ffc4;
    border: 1px solid #bae6fd;
    border-radius: 1.5rem;
    box-shadow: 0 2px 8px #0001;
    padding: 2rem;
    flex: 1 1 320px;
    min-width: 320px;
    max-width: 500px;
}

.about-mission-vision .mv-card.vision {
    background: #07ffc4;
    border-color: #bae6fd;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .about-section {
        padding: 2.5rem 0.5rem;
    }
    .about-cards-row {
        gap: 1.2rem;
    }
    .about-card-equal,
    .about-mission-vision .mv-card {
        min-width: 0;
        max-width: 100%;
        padding: 1.2rem;
    }
    .about-img-card,
    .years-excellence-card,
    .about-ndhlogistic {
        padding: 1.2rem;
    }
}

@media (max-width: 991px) {
    .about-section {
        padding: 2rem 0.3rem;
    }
    .about-cards-row {
        flex-direction: column;
        gap: 1rem;
    }
    .about-card-equal,
    .about-mission-vision .mv-card {
        min-width: 0;
        max-width: 100%;
        padding: 1rem;
        margin-bottom: 1rem;
    }
    .about-img-card,
    .years-excellence-card,
    .about-ndhlogistic {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    .mv-img-badge.badge-gradient-card {
        left: 0;
        bottom: 0;
        padding: 1rem 1.2rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 700px) {
    .about-timeline-line {
        left: 50%;
        width: 3px;
        min-height: 60px;
    }
}

@media (max-width: 600px) {
    .about-section {
        padding: 1rem 0.2rem;
    }
    .about-title,
    .about-ndhlogistic .about-ndh-title {
        font-size: 1.5rem;
        margin-bottom: 0.7rem;
    }
    .about-ndhlogistic .about-ndh-desc {
        font-size: 1rem;
    }
    .about-ndhlogistic .about-ndh-highlight,
    .years-excellence-card .years-number {
        font-size: 1.5rem;
    }
    .about-card-equal,
    .about-mission-vision .mv-card {
        padding: 0.7rem;
        font-size: 0.98rem;
    }
    .about-img-card,
    .years-excellence-card,
    .about-ndhlogistic {
        padding: 0.7rem;
    }
    .mv-img-badge.badge-gradient-card {
        padding: 0.7rem 0.8rem;
        font-size: 1rem;
    }
    .stat-box {
        padding: 1rem 0.7rem;
        font-size: 0.98rem;
    }
    .stat-icon,
    .value-icon,
    .director-icon {
        width: 2.2rem;
        height: 2.2rem;
        font-size: 1.2rem;
    }
}

/* =====================About Directors Section =========================*/


.about-directors-section {
  padding: 70px 20px;
  background: #f9fafe;
  text-align: center;
}

.about-directors-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1e293b;
}

.about-directors-title p {
  font-size: 18px;
  color: #64748b;
  margin-bottom: 50px;
}

.about-directors-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.about-director-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  width: 300px;
  transition: transform 0.3s ease;
}

.about-director-card:hover {
  transform: translateY(-8px);
}

.director-avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto 15px;
}

.director-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.director-name {
  font-size: 22px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 5px;
}

.director-role,
.director-qual {
  font-size: 14px;
  color: #6366f1;
}

.director-bio {
  font-size: 15px;
  color: #475569;
  margin-top: 10px;
}
