* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      color: #1e293b;
      background: #ffffff;
      overflow-x: hidden;
    }

    html {
      scroll-behavior: smooth;
    }

    /* TOP BAR */
    .top-bar {
      background: linear-gradient(135deg, #2D1B69 0%, #1a0f3f 100%);
      color: white;
      padding: 0.75rem 0;
      position: relative;
      overflow: hidden;
    }

    .top-bar::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
      animation: shimmer 3s infinite;
    }

    @keyframes shimmer {
      0% { left: -100%; }
      100% { left: 100%; }
    }

    .top-bar-content {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 2rem;
      position: relative;
      z-index: 1;
    }

    .top-bar-text {
      font-size: 0.875rem;
      font-weight: 500;
      letter-spacing: 0.3px;
    }

    .top-bar-contact {
      display: flex;
      gap: 2rem;
      align-items: center;
    }

    .top-bar-link {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: rgba(255, 255, 255, 0.9);
      text-decoration: none;
      font-size: 0.875rem;
      transition: all 0.3s ease;
      font-weight: 500;
    }

    .top-bar-link:hover {
      color: white;
      transform: translateY(-1px);
    }

    /* NAVBAR */
    .navbar {
      background: white;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      border-bottom: 2px solid #f0f0f0;
    }

    .navbar.scrolled {
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
      background: white;
    }

    .navbar-content {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 85px;
    }

    .navbar-logo {
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.4rem;
      transition: transform 0.3s ease;
    }

    .navbar-logo:hover {
      transform: translateY(-2px);
    }

    .logo-img {
      width: 50px;
      height: auto;
      display: block;
    }

    .logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.6;
    }

    .logo-primary {
      font-size: 1rem;
      font-weight: 800;
      background: linear-gradient(135deg, #877e7e 35%, #877e7e 35%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: -0.5px;
      font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    }

    .logo-secondary {
      font-size: 0.7rem;
      font-weight: 600;
      color: #877e7e;
      letter-spacing: 1px;
      text-transform: uppercase;
      font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    }

    .navbar-links {
      display: flex;
      gap: 0.25rem;
      align-items: center;
    }

    .nav-link {
    color: #334155;
    text-decoration: none;
    padding: 0.75rem 0.6rem;
    font-weight: 800;
    font-weight: 600 !important;
    font-size: 14px;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 6px;
    text-transform: uppercase;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
}

    /* .nav-link {
      color: #334155;
      text-decoration: none;
      padding: 0.75rem 1.125rem;
      font-weight: 600;
      /* font-size: 0.9rem; 
      font-size: 1.1rem;
      position: relative;
      transition: all 0.3s ease;
      border-radius: 6px;
      text-transform: uppercase;
      font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
      text-transform: math-auto;
    } */

    .nav-link::before {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 3px;
      background: linear-gradient(90deg, #2D1B69, #0DB8D4);
      transition: width 0.3s ease;
    }

    .nav-link:hover {
      color: #2D1B69;
      background: rgba(45, 27, 105, 0.05);
    }

    .nav-link:hover::before,
    .nav-link.active::before {
      width: 70%;
    }

    .nav-link.active {
      color: #2D1B69;
      background: rgba(45, 27, 105, 0.08);
    }

    .navbar-actions {
      display: flex;
      align-items: center;
      gap: 1.25rem;
    }

    .navbar-cta {
      background: linear-gradient(135deg, #2D1B69 0%, #E85C47 100%);
      color: white;
      padding: 0.8rem 1.75rem;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.9rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.3s ease;
      box-shadow: 0 4px 14px rgba(45, 27, 105, 0.25);
      font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    }

    .navbar-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(45, 27, 105, 0.35);
    }

    .mobile-menu-toggle {
      display: none;
      background: none;
      border: none;
      color: #2D1B69;
      cursor: pointer;
      padding: 0.5rem;
      font-size: 1.5rem;
      transition: all 0.3s ease;
      border-radius: 6px;
    }

    .mobile-menu-toggle:hover {
      background: rgba(45, 27, 105, 0.1);
    }

    /* HERO SLIDER */
.hero-slider {
  position: relative;
  height: 75vh;
  min-height: 550px;
  max-height: 800px;
  overflow: hidden;
  background: #fbfdf3;
}

/* Slider container */
.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Each slide */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out;
}

/* Active slide */
.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Background container */
.slide-background {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* Slider image */
.slide-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;        /* show full image */
  object-position: center;
}

/* Overlay */
.slide-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.65) 0%,
    rgba(30, 58, 138, 0.05) 50%,
    rgba(30, 58, 138, 0.05) 100%
  );
}

/* Navigation arrows */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.slider-nav:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.slider-nav-prev {
  left: 2rem;
}

.slider-nav-next {
  right: 2rem;
}

/* Dots container */
.slider-dots {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
  border-radius: 50px;
}

/* Dot */
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Hover effect */
.dot:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.2);
}

/* Active dot */
.dot.active {
  background: white;
  width: 40px;
  border-radius: 10px;
}

    /* ABOUT SECTION */
    .about-section {
      padding: 6rem 0;
      background: white;
    }

    .container-custom {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .about-content h2 {
      font-size: 2.5rem;
      font-weight: 800;
      color: #0f172a;
      margin-bottom: 1.5rem;
      line-height: 1.2;
    }

    .about-content h2 span {
      color: #0DB8D4;
    }

    .about-content p {
      font-size: 1.1rem;
      color: #475569;
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }

    .about-features {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
      margin: 3rem 0;
    }

    .feature-item {
      display: flex;
      gap: 1rem;
    }

    .feature-icon {
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, #2D1B69 0%, #0DB8D4 100%);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      flex-shrink: 0;
    }

    .feature-content h4 {
      font-size: 1.1rem;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 0.5rem;
    }

    .feature-content p {
      font-size: 0.95rem;
      color: #64748b;
      margin: 0;
    }

    .about-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 3rem;
      padding-top: 3rem;
      border-top: 2px solid #e2e8f0;
    }

    .stat-box {
      text-align: center;
    }

    .stat-number {
      font-size: 2.5rem;
      font-weight: 800;
      background: linear-gradient(135deg, #2D1B69 0%, #0DB8D4 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .stat-label {
      font-size: 0.95rem;
      color: #64748b;
      margin-top: 0.5rem;
      font-weight: 600;
    }

    .about-image {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(45, 27, 105, 0.15);
    }

    .about-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .about-image::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(45, 27, 105, 0.1) 0%, rgba(13, 184, 212, 0.05) 100%);
      pointer-events: none;
    }

    /* SERVICES SECTION */
    .services-section {
      padding: 6rem 0;
      background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    }

    .text-center-custom {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 4rem;
    }

    .section-badge-custom {
      display: inline-block;
      background: linear-gradient(135deg, #2D1B69 0%, #0DB8D4 100%);
      color: white;
      padding: 0.5rem 1.25rem;
      border-radius: 50px;
      font-size: 0.875rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 1rem;
      font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    }

    .section-title-custom {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      color: #0f172a;
      margin-bottom: 1rem;
      line-height: 1.2;
      letter-spacing: -0.02em;
      font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    }

    .section-desc-custom {
      font-size: 1.125rem;
      color: #64748b;
      line-height: 1.75;
    }

    .services-grid-custom {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
      gap: 2rem;
    }

    .service-card-custom {
      background: white;
      padding: 2.5rem;
      border-radius: 16px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      border: 1px solid #e2e8f0;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }

    .service-card-custom::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, #2D1B69 0%, #0DB8D4 100%);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .service-card-custom:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(45, 27, 105, 0.15);
      border-color: #0DB8D4;
    }

    .service-card-custom:hover::before {
      transform: scaleX(1);
    }

    .service-icon-custom {
      font-size: 3rem;
      margin-bottom: 1.5rem;
      display: inline-block;
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      width: 100%;
      text-align: center;
    }

    .service-icon-custom img {
      /* max-height: 120px;  */
      width: auto;
    }

    .service-card-custom:hover .service-icon-custom {
      transform: scale(1.1);
    }

    .service-title-custom {
      font-size: 1.5rem;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 1rem;
      line-height: 1.3;
      font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    }

    .service-desc-custom {
      color: #4b4c4d;
      line-height: 1.75;
      margin-bottom: 1.5rem;
      font-size: 1rem;
      font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    }

    .service-link-custom {
      color: #2D1B69;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.3s ease;
      font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    }

    .service-link-custom:hover {
      color: #0DB8D4;
      gap: 0.75rem;
    }

    /* CTA SECTION */
    .cta-section-custom {
      position: relative;
      padding: 8rem 0;
      background: linear-gradient(135deg, #0f172a 0%, #2D1B69 50%, #E85C47 100%);
      overflow: hidden;
    }

    .cta-overlay-custom {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: radial-gradient(circle at 20% 50%, rgba(13, 184, 212, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(45, 27, 105, 0.15) 0%, transparent 50%);
      pointer-events: none;
    }

    .cta-content-custom {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 900px;
      margin: 0 auto;
      color: white;
    }

    .section-badge-custom.light {
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .cta-title-custom {
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 800;
      margin-bottom: 1.5rem;
      line-height: 1.2;
      background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .cta-desc-custom {
      font-size: 1.25rem;
      color: rgba(255, 255, 255, 0.9);
      line-height: 1.75;
      margin-bottom: 3rem;
    }

    .cta-buttons-custom {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .cta-btn-primary-custom {
      background: white;
      color: #2D1B69;
      padding: 1.25rem 2.5rem;
      border-radius: 12px;
      text-decoration: none;
      font-weight: 700;
      font-size: 1.125rem;
      transition: all 0.3s ease;
      box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
      font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    }

    .cta-btn-primary-custom:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
      background: #f8fafc;
    }

    .cta-btn-secondary-custom {
      background: transparent;
      color: white;
      padding: 1.25rem 2.5rem;
      border-radius: 12px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.125rem;
      border: 2px solid rgba(255, 255, 255, 0.3);
      backdrop-filter: blur(10px);
      transition: all 0.3s ease;
    }

    .cta-btn-secondary-custom:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.5);
      transform: translateY(-3px);
    }

    /* RESPONSIVE */
    @media (max-width: 1024px) {
      .top-bar-content {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.75rem 1.5rem;
      }

      .navbar-content {
        padding: 0 1.5rem;
        height: auto;
        padding-top: 1rem;
        padding-bottom: 1rem;
      }

      .navbar-links {
        position: fixed;
        top: 130px;
        right: -100%;
        width: 320px;
        max-width: 85%;
        height: calc(100vh - 130px);
        background: white;
        flex-direction: column;
        align-items: stretch;
        padding: 2rem 1.5rem;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        gap: 0.25rem;
      }

      .navbar-links.mobile-open {
        right: 0;
      }

      .nav-link {
        padding: 1rem 1.25rem;
      }

      .mobile-menu-toggle {
        display: block;
      }

      .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .services-grid-custom {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
      }
    }

    @media (max-width: 640px) {
      .navbar-cta span {
        display: none;
      }

      .about-features {
        grid-template-columns: 1fr;
      }

      .about-stats {
        grid-template-columns: 1fr;
      }

      .services-grid-custom {
        grid-template-columns: 1fr;
      }

      .cta-buttons-custom {
        flex-direction: column;
      }

      .cta-btn-primary-custom,
      .cta-btn-secondary-custom {
        width: 100%;
      }

      .slider-nav {
        width: 44px;
        height: 44px;
      }
    }
/* Enhanced Footer */
     footer { background: #0f172a; color: white; padding: 4rem 2rem; text-align: center; }
    footer p { margin-bottom: 1rem; }
    .footer-links { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-top: 2rem; }
    .footer-links a { color: #0DB8D4; text-decoration: none; transition: all 0.3s ease; }
    .footer-links a:hover { color: white; }


    /*ABOUT US*/
    .page-header { background: linear-gradient(135deg, #2D1B69 0%, #0DB8D4 100%); color: white; padding: 6rem 2rem; text-align: center; margin-top: 0; }
    .page-header h1 { font-size: 3rem; font-weight: 800; margin-bottom: 1rem;font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; }
    .page-header p { font-size: 1.25rem; opacity: 0.95; }

    .container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
    .section { padding: 6rem 0; }
    .section.alt { background: #f8fafc; }

    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
    .about-content h2 { font-size: 2.5rem; font-weight: 800; color: #0f172a; margin-bottom: 1.5rem;font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; }
    .about-content h2 span { color: #0DB8D4; }
    .about-content p { font-size: 1.1rem; color: #475569; line-height: 1.8; margin-bottom: 1.5rem; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;}
    .about-image { position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 40px rgba(45, 27, 105, 0.15); }
    .about-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .about-image::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(135deg, rgba(45, 27, 105, 0.1) 0%, rgba(13, 184, 212, 0.05) 100%); pointer-events: none; }

    .values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }
    .value-card { background: white; padding: 2rem; border-radius: 12px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); border: 1px solid #e2e8f0; transition: all 0.3s ease; }
    .value-card:hover { transform: translateY(-5px); box-shadow: 0 12px 24px rgba(45, 27, 105, 0.15); }
    .value-icon { font-size: 2.5rem; margin-bottom: 1rem; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;}
    .value-card h3 { font-size: 1.3rem; font-weight: 700; color: #0f172a; margin-bottom: 0.75rem;font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; }
    .value-card p { color: #64748b; line-height: 1.7; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;}

    .team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
    .team-member { text-align: center; }
    .team-member-image { width: 200px; height: 200px; margin: 0 auto 1.5rem; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 25px rgba(45, 27, 105, 0.2); }
    .team-member-image img { width: 100%; height: 100%; object-fit: cover; }
    .team-member h4 { font-size: 1.25rem; font-weight: 700; color: #0f172a; margin-bottom: 0.5rem; }
    .team-member p { color: #0DB8D4; font-weight: 600; margin-bottom: 0.75rem; }
    .team-member-desc { color: #64748b; font-size: 0.95rem; }

    .stats-section { background: linear-gradient(135deg, #2D1B69 0%, #0DB8D4 100%); color: white; padding: 4rem 2rem; text-align: center; }
    .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }
    .stat-item { padding: 2rem; }
    .stat-number { font-size: 3rem; font-weight: 800; margin-bottom: 0.5rem; }
    .stat-label { font-size: 1.1rem; opacity: 0.9; }

    /* ── MISSION / VISION / VALUES ── */
    .mvv-section {
      background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
      padding: 100px 0;
    }
    .mvv-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-top: 60px;
    }
    .mvv-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 48px 36px;
      text-align: center;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }
    .mvv-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--blue-btn), var(--accent));
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }
    .mvv-card:hover::before { transform: scaleX(1); }
    .mvv-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 60px rgba(64,146,205,0.1);
      border-color: rgba(64,146,205,0.3);
    }
    .mvv-icon {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, rgba(64,146,205,0.1), rgba(64,146,205,0.05));
      border-radius: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 36px;
      margin: 0 auto 24px;
      transition: all 0.4s ease;
    }
    .mvv-card:hover .mvv-icon {
      background: linear-gradient(135deg, var(--blue-btn), rgba(64,146,205,0.8));
      transform: scale(1.1);
    }
    .mvv-card h3 {
      font-size: 22px;
      font-weight: 800;
      color: var(--dark);
      margin-bottom: 16px;
      font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    }
    .mvv-card p {
      color: var(--gray);
      font-size: 17px;
      font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
      line-height: 1.7;
    }
    .values-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: center;
      margin-top: 16px;
      font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    }
    .values-list span {
      background: rgba(64,146,205,0.08);
      color: var(--blue-btn);
      padding: 6px 16px;
      border-radius: 50px;
      font-size: 13px;
      font-weight: 600;
      border: 1px solid rgba(64,146,205,0.15);
      font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    }