.whyx-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s forwards;
  }
  
  .whyx-card:nth-child(2) { animation-delay: 0.1s; }
  .whyx-card:nth-child(3) { animation-delay: 0.2s; }
  
  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
    .whyx-card:first-child {
    background: linear-gradient(135deg, #ffffff, #eef2ff);
    border-left: 3px solid #2560b0;
  }
    .whyx-section {
    background:
      linear-gradient(to bottom, #f8fafc, #eef2f7),
      radial-gradient(circle at top, rgba(37,99,235,0.05), transparent 60%);
  }
    .whyx-card h3 {
    transition: 0.3s;
  }
  
  .whyx-card:hover h3 {
    color: #2560b0;
  }
    .whyx-card {
    padding: 32px 28px;
  }
    .whyx-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.12);
  }
    .whyx-number {
    font-size: 26px;
    font-weight: 700;
    color: rgba(37, 99, 235, 0.15);
  }
    .whyx-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
    border-radius: 12px;
  }
  .whyx-card {
    border: 1px solid #e5e7eb;
    border-left: 3px solid transparent;
  }
  
  .whyx-card:hover {
    border-left: 3px solid #2560b0;
  }
  /* ===== SECTION ===== */
  .whyx-section {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #fff, #2560b100, #2560b175, #2560b1);
  }
  
  /* ===== CONTAINER ===== */
  .whyx-container {
    max-width: 1200px;
    margin: auto;
  }
  
  /* ===== HEADER ===== */
  .whyx-header {
    text-align: center;
    margin-bottom: 70px;
  }
  
  .whyx-title {
    font-size: 38px;
    font-weight: 700;
    color: #0f172a;
  }
  
  .whyx-subtitle {
    font-size: 16px;
    color: #64748b;
    margin-top: 10px;
  }
  
  /* ===== GRID ===== */
  .whyx-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
  
  /* ===== CARD ===== */
  .whyx-card {
    background: #fff;
    padding: 28px 24px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: all 0.35s ease;
    position: relative;
  }
  
  .whyx-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  }
  
  /* TOP */
  .whyx-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
  }
  
  /* ICON */
  .whyx-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, #e0e7ff, #eef2ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
  }
  
  /* NUMBER */
  .whyx-number {
    font-size: 22px;
    font-weight: 600;
    color: #cbd5f5;
  }
  
  /* TITLE */
  .whyx-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #0f172a;
  }
  
  /* TEXT */
  .whyx-card p,
  .whyx-card li {
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
  }
  
  /* LIST */
  .whyx-card ul {
    padding-left: 18px;
  }
  
  /* RESPONSIVE */
  @media (max-width: 992px) {
    .whyx-grid {
      grid-template-columns: 1fr;
    }
  
    .whyx-title {
      font-size: 28px;
    }
  }

.vmx-card:nth-child(3) {
    border: 1px solid rgba(37, 99, 235, 0.2);
  }
    .vmx-tagline {
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    margin: 8px 0 10px;
  }
    .vmx-section {
    background:
      linear-gradient(#f8fafc, #eef2f7),
      radial-gradient(circle at top, rgba(37,99,235,0.05), transparent 60%);
  }
    .vmx-card:nth-child(2) {
    transform: translateY(-10px);
  }
    .vmx-card:hover {
    border-color: rgba(37, 99, 235, 0.3);
  }
    .vmx-list li {
    position: relative;
    padding-left: 6px;
  }
    .vmx-card-title {
    transition: 0.3s;
  }
  
  .vmx-card:hover .vmx-card-title {
    color: #2560b0;
  }
    .vmx-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    font-size: 20px;
  }
    .vmx-card--highlight {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  }
    .vmx-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #2563eb, transparent);
    opacity: 0;
    transition: 0.3s;
  }
  
  .vmx-card:hover::before {
    opacity: 1;
  }
  .vmx-card {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
  }
  /* ===== SECTION ===== */
  .vmx-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #f8fafc, #eef2f7);
  }
  
  /* ===== CONTAINER ===== */
  .vmx-container {
    max-width: 1180px;
    margin: auto;
  }
  
  /* ===== GRID ===== */
  .vmx-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
  }
  
  /* ===== CARD ===== */
  .vmx-card {
    background: #ffffff;
    padding: 26px 22px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  /* HOVER */
  .vmx-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border-color: #2560b0;
  }
  
  /* ===== ICON ===== */
  .vmx-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, #e0e7ff, #eef2ff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: #2560b0;
    transition: 0.3s;
  }
  
  .vmx-card:hover .vmx-icon {
    /* background: #2560b0; */
    color: #fff;
  }
  
  /* ===== TITLE ===== */
  .vmx-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #0f172a;
  }
  
  /* ===== TEXT ===== */
  .vmx-text {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
  }
  
  /* ===== LIST ===== */
  .vmx-list {
    margin-top: 14px;
    padding-left: 18px;
  }
  
  .vmx-list li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #334155;
  }
  
  /* ===== PHILOSOPHY ===== */
  .vmx-card--highlight {
    background: linear-gradient(135deg, #0b1220, #1e293b);
    color: #ffffff;
    text-align: center;
    padding: 40px 25px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
  }
  
  .vmx-card--highlight .vmx-card-title {
    color: #ffffff;
  }
  
  .vmx-tagline {
    font-size: 18px;
    font-weight: 600;
    margin: 15px 0;
  }
  
  .vmx-desc {
    font-size: 14px;
    color: #e2e8f0;
  }
  
  /* ===== RESPONSIVE ===== */
  @media (max-width: 992px) {
    .vmx-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 600px) {
    .vmx-grid {
      grid-template-columns: 1fr;
    }
  
    .vmx-section {
      padding: 60px 20px;
    }
  }
  

.group-card h3 {
    line-height: 1.3;
  }
    .group-card:hover .group-icon {
    /* background: #2560b0; */
    color: #fff;
    transform: scale(1.1) rotate(5deg);
  }
    .group-card:hover .group-icon {
    /* background: #2560b0; */
    color: #fff;
    transform: scale(1.1) rotate(5deg);
  }
    .group-card {
    transition: all 0.4s ease;
  }
  
  .group-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
  }
    .group-card::after {
    content: "";
    display: block;
    height: 3px;
    width: 60px;
    margin: 20px auto 0;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    border-radius: 2px;
    opacity: 0.8;
  }
    .group-card.featured {
    transform: scale(1.07);
    background: #ffffff;
    box-shadow: 0 30px 70px rgba(37, 99, 235, 0.18);
    z-index: 2;
  }
    .group-section {
    background: linear-gradient(to bottom, #f8fafc, #eef2f7);
    position: relative;
  }
    .group-card:hover {
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
  }
    .group-card:hover .group-icon {
    /* background: #2560b0; */
    color: #fff;
    transform: rotate(5deg) scale(1.05);
  }
    .group-card::after {
    content: "";
    display: block;
    height: 3px;
    width: 50px;
    margin: 18px auto 0;
    background: linear-gradient(to right, #2563eb, #60a5fa);
    border-radius: 2px;
  }
    .group-card.featured {
    transform: scale(1.06);
    background: #ffffff;
    box-shadow: 0 25px 60px rgba(37, 99, 235, 0.15);
  }
  /* ===== SECTION ===== */
  .group-section {
    padding: 90px 20px;
    background: linear-gradient(to bottom, #f8fafc, #eef2f7);
  }
  
  /* ===== CONTAINER ===== */
  .container {
    max-width: 1200px;
    margin: auto;
  }
  
  /* ===== HEADER ===== */
  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .section-header h2 {
    font-size: 34px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
  }
  
  .section-header p {
    font-size: 16px;
    color: #6b7280;
  }
  
  /* BADGE */
  .group-badge {
    display: inline-block;
    margin-bottom: 20px;
    padding: 6px 16px;
    background: #e0f2fe;
    color: #0369a1;
    font-size: 13px;
    border-radius: 50px;
  }
  
  /* ===== GRID ===== */
  .group-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  /* ===== CARD ===== */
  .group-card {
    display: block;
    text-align: center;
    text-decoration: none;
    background: linear-gradient(145deg, #ffffff, #f1f5f9);
    padding: 28px 22px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    transition: all 0.35s ease;
    position: relative;
    color: inherit;
  }
  
  /* HOVER */
  .group-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  }
  
  /* FEATURED CARD */
  .group-card.featured {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.15);
    border: none;
  }
  
  /* ICON */
  .group-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    border-radius: 50%;
    /* background: linear-gradient(135deg, #eef2ff, #e0e7ff); */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
  }
  
  /* TITLE */
  .group-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 6px;
  }
  
  /* YEAR */
  .year {
    font-size: 13px;
    color: #2560b0;
    font-weight: 500;
  }
  
  /* TEXT */
  .group-card p {
    font-size: 16px;
    color: #6b7280;
    margin: 15px 0 10px;
    line-height: 1.6;
  }
  
  /* TAGLINE */
  .tagline {
    font-size: 12px;
    color: #9ca3af;
  }
  
  /* ACCENT LINE */
  .group-card::after {
    content: "";
    display: block;
    height: 3px;
    width: 40px;
    margin: 15px auto 0;
    background: #2560b0;
    border-radius: 2px;
  }
  
  /* ===== RESPONSIVE ===== */
  @media (max-width: 992px) {
    .group-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (max-width: 600px) {
    .group-grid {
      grid-template-columns: 1fr;
    }
  
    .section-header h2 {
      font-size: 26px;
    }
  }

.stats-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px;
    background: #ffffff;
    padding: 0px;
    border: 1px solid #e5e8ef;
  }
  
  .stats-item {
    text-align: left;
  }
  
  .stats-number {
    font-size: 40px;
    font-weight: 700;
    color: #1f3c88;
    margin-bottom: 10px;
  }
  
  .stats-text {
    font-size: 14px;
    line-height: 1.6;
    color: #4a4f5c;
  }
  .stats-divider {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid #e6e8ef;
  }
  
  .stats-divider .stats-item {
    padding: 20px;
    border-right: 1px solid #e6e8ef;
    border-bottom: 1px solid #e6e8ef;
  }
  
  .stats-divider .stats-item:nth-child(2n) {
    border-right: none;
  }
  
  .stats-divider .stats-item:nth-last-child(-n+2) {
    border-bottom: none;
  }
.strength-header h2 {
    position: relative;
    display: inline-block;
  }
  
  .strength-header h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #38bdf8);
    border-radius: 2px;
    background: linear-gradient(to right, #2560b02b, #2560b0);
  }

.strength-header {
    text-align: center;
    margin-bottom: 15px;
    position: relative;
  }
  
  /* Title */
  .strength-header h2 {
    font-size: 34px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.5px;
  }
  
  /* Highlight word */
  .strength-header h2 span {
    color: #2560b0;
    position: relative;
  }
  
  /* underline accent */
  .strength-header h2 span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 3px;
    /*! background: linear-gradient(90deg, #2563eb, #38bdf8); */
    border-radius: 2px;
  }
  
  /* Subtitle */
  .strength-header p {
    margin-top: 14px;
    font-size: 17px;
    color: #475569;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
  }
  
  /* subtle divider line */
  .strength-header::after {
    content: "";
    display: block;
    width: 50%;
    height: 2px;
    /*! background: linear-gradient(to right, #fff, #0000002b); */
    margin: 25px auto 0;
    opacity: 0.6;
  }

.strength-card {
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }
  
  .strength-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,123,255,0.15);
  }  
  
  /* Section Base */
  .strengths-ultra {
    padding: 70px 0;
    background: radial-gradient(circle at top left, #f0f0f0, #f0f0f0);
    color: #fff;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to top, #2560b0, #2560b00d, #2560b000);
    box-shadow: inset 0 0 15px rgba(37, 96, 176, 0.23);
  }
  
  /* Industrial grid overlay */
  .strengths-ultra::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
  }
  
  /* Header */
  .section-header {
    text-align: center;
    margin-bottom: 70px;
  }
  
  .section-header h2 {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.5px;
  }
  
  .section-header p {
    color: #94a3b8;
    margin-top: 12px;
    font-size: 17px;
  }
  
  /* Grid */
  .strengths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
  }
  
  /* Card */
  .strength-card {
    position: relative;
    padding: 1px;
    border-radius: 18px;
    background: linear-gradient(120deg, #2560b0, #2560b0, #2560b0);
    background-size: 200% 200%;
    animation: borderMove 6s linear infinite;
  }
  
  /* Gradient border animation */
  @keyframes borderMove {
    0% {background-position: 0%}
    100% {background-position: 200%}
  }
  
  /* Inner card */
  .card-inner {
    background: rgb(255, 255, 255);
    backdrop-filter: blur(14px);
    border-radius: 18px;
    padding: 40px 25px;
    text-align: center;
    height: 100%;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
  }
  
  /* Spotlight hover effect */
  .card-inner::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(14,165,233,0.25), transparent 60%);
    top: var(--y, 50%);
    left: var(--x, 50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: 0.4s;
  }
  
  .strength-card:hover .card-inner::before {
    opacity: 1;
  }
  
  /* Hover lift */
  .strength-card:hover .card-inner {
    transform: translateY(-12px) scale(1.02);
  }
  
  /* Icon */
  .icon {
    width: 40px;
    height: 65px;
    margin: 0 auto 20px;
    color: #2560b0;
  }
  
  .icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
  }
  
  /* Text */
  .card-inner p {
    font-size: 22px;
    color: #333;
    line-height: 1.7;
    font-weight: 501;
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .strengths-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (max-width: 600px) {
    .strengths-grid {
      grid-template-columns: 1fr;
    }
  }

