.about-card {
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background-color 0.35s ease;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0D47A1, #FF6F00);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.about-card > div:first-child,
.about-card h3 {
    transition: all 0.35s ease;
}

.about-card:hover {
    transform: translateY(-10px) scale(1.015);
    border-color: rgba(13, 71, 161, 0.28);
    background-color: #fff;
    box-shadow: 0 22px 45px -12px rgba(13, 71, 161, 0.35), 0 10px 20px -10px rgba(0, 0, 0, 0.18);
}

.about-card:hover::before {
    transform: scaleX(1);
}

.about-card:hover > div:first-child {
    transform: rotate(-6deg) scale(1.12);
    box-shadow: 0 12px 24px -8px rgba(13, 71, 161, 0.55);
}

.about-card:hover h3 {
    color: #0D47A1;
    transform: translateX(4px);
}

.mySwiper .swiper-wrapper,
.awardsSwiper .swiper-wrapper,
.articlesSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.articlesSwiper .swiper-slide {
    width: min(86vw, 30rem) !important;
}

.counter-value.is-counting {
    animation: counter-bounce 0.45s ease-in-out infinite alternate;
}

.counter-value.is-complete {
    animation: counter-settle 0.5s cubic-bezier(0.22, 1.4, 0.36, 1);
}

@keyframes counter-bounce {
    from { transform: translateY(0) scale(1); }
    to { transform: translateY(-4px) scale(1.04); }
}

@keyframes counter-settle {
    0% { transform: translateY(-4px) scale(1.08); }
    100% { transform: translateY(0) scale(1); }
}

.faq-toggle {
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.faq-toggle:hover,
.faq-toggle[aria-expanded="true"] {
    color: #fff;
    background-color: #0D47A1;
    box-shadow: 0 10px 24px -12px rgba(13, 71, 161, 0.65);
}

.faq-toggle .fa {
    transition: color 0.3s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-toggle:hover .fa,
.faq-toggle[aria-expanded="true"] .fa {
    color: #fff;
}

.faq-toggle[aria-expanded="true"] .fa {
    transform: rotate(180deg) scale(1.08);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    opacity: 0;
    transform: translateY(-8px);
    will-change: max-height, opacity, transform;
    transition:
        max-height 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        padding-bottom 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.32s ease,
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        background-color 0.3s ease,
        color 0.3s ease;
}

.faq-content.is-open {
    padding-bottom: 1.5rem !important;
    opacity: 1;
    transform: translateY(0);
}

.faq-toggle[aria-expanded="true"] + .faq-content {
    color: #fff;
    background-color: #0D47A1;
}

.faq-toggle:focus-visible {
    outline: 3px solid rgba(255, 111, 0, 0.55);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .about-card,
    .about-card::before,
    .about-card > div:first-child,
    .about-card h3 {
        transition: none;
    }

    .counter-value {
        animation: none !important;
    }

    .faq-toggle .fa,
    .faq-content {
        transition: none !important;
    }
}


  /* General Utils */
  .cursor-pointer {
    cursor: pointer;
  }
  .transition-all {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  }
  .shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }

  /* Feature List Styling */
  .feature-item {
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: #ffffff;
    color: #1a1a1a;
  }
  .feature-item:hover {
    background: #f8f9fa;
  }
  .feature-item.active {
    background: #05399c;
    box-shadow: 0 10px 30px rgba(5, 57, 156, 0.25);
    border-color: #05399c;
  }
  .feature-item.active .feature-desc {
    color: #ffffff !important;
  }

  /* Marker Logic */
  .feature-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .marker-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #e2e8f0;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
  }
  .marker-circle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
  }
  .marker-line {
    flex: 1;
    width: 2px;
    min-height: 20px;
    background: #e2e8f0;
    margin: 4px 0;
    transition: background 0.3s ease;
  }
  .feature-item.active .marker-circle {
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
  }
  .feature-item.active .marker-circle::after {
    background: #05399c;
  }
  .feature-title {
    color: #1a1a1a;
    transition: color 0.3s;
  }
  .feature-item .feature-desc {
    color: #333333 !important;
    transition: color 0.3s;
  }
  .feature-item.active .feature-title {
    color: #ffffff;
  }
  .feature-item.active .feature-marker .marker-line {
    background: rgba(255, 255, 255, 0.4);
  }

  /* Phone Frame (CSS Only iPhone-ish) */
  .phone-wrapper {
    position: relative;
    width: 300px;
    height: 600px;
    z-index: 2;
  }
  .phone-frame {
    position: relative;
    width: 100%;
    height: 100%;
    background: #1e293b;
    border-radius: 40px;
    border: 10px solid #1e293b; /* Bezel */
    overflow: hidden;
    box-shadow:
      inset 0 0 0 2px #334155,
      0 20px 40px rgba(0, 0, 0, 0.2);
  }
  .phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 25px;
    background: #1e293b;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 10;
  }
  .phone-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
  }

  /* Screen Content Transition */
  .screen-content {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top center;
    transition: opacity 0.4s ease-in-out;
  }

  /* Animation Class */
  .fade-swap {
    animation: fadeSwap 0.4s ease-in-out;
  }

  @keyframes fadeSwap {
    0% {
      opacity: 0.4;
      transform: scale(1.02);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }

  /* Decor Blob */
  .decor-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 80%;
    background: #05399c;
    opacity: 0.1;
    filter: blur(60px);
    z-index: -1;
    border-radius: 50%;
  }

