@keyframes flipIn {
    0% { transform: rotateY(90deg); opacity: 0; }
    100% { transform: rotateY(0); opacity: 1; }
  }

  @keyframes shimmerText {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
  }

  .box {
    animation: flipIn 1s ease forwards;
    transform-style: preserve-3d;
    perspective: 1000px;
    position: relative;
    overflow: hidden;
    font-size: 1rem; /* Base font size */
  }

  .box::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 10%, transparent 10.01%);
    background-repeat: no-repeat;
    background-position: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
    border-radius: 50%;
    z-index: 0;
  }

  .box:hover::before {
    transform: translate(-50%, -50%) scale(1);
  }

  .box * {
    position: relative;
    z-index: 1;
  }

  .box .icon-animate {
    font-size: 2rem; /* 32px */
    color: purple;
    margin-bottom: 15px;
  }

  .box h5 {
    font-weight: 700;
    font-size: 1.25rem; /* 20px */
    margin: 0 0 10px 0;
  }

  .box h6 {
    color: #555;
    font-size: 1rem; /* 16px */
  }

  body {
    font-family: "Segoe UI", sans-serif;
    background: #f2f6ff;
    margin: 0;
    padding: 0;
  }

  .enterprise-section {
    padding: 5rem 0;
  }

  .enterprise-section h2 {
    font-size: 2.7rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: #222;
  }

  .card-service {
    background: linear-gradient(145deg, #ffffff, #e6e9f0);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
    transition: all 0.4s ease;
    height: 100%;
    text-align: center;
  }

  .card-service:hover {
    transform: translateY(-10px);
    background: linear-gradient(145deg, #e8f0ff, #ffffff);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
  }

  .card-service img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
  }

  .card-service h5 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: #333;
  }

  .card-service p {
    font-size: 0.95rem;
    color: #555;
  }

  @media (max-width: 767px) {
    .enterprise-section h2 {
      font-size: 2rem;
    }
  }


  section.hero {
    padding: 60px 20px;
    text-align: center;
    background: url("home/a1.jpg") center/cover no-repeat;
  }

  .hero h2 {
    font-size: 2.25rem;
    font-weight: 300;
  }

  .hero h2 strong {
    font-weight: 700;
  }

  .hero-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
  }

  .box {
    flex: 1 1 220px;
    max-width: 250px;
    padding: 25px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 12px;
    background-color: #fafafa;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

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

  .box .icon-animate {
    font-size: 2rem;
    margin-bottom: 12px;
  }

  .box h5 {
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 600;
  }

  .box h6 {
    font-size: 0.95rem;
    color: #555;
    font-weight: 400;
  }

  section.features {
    background: linear-gradient(
        rgba(184, 188, 195, 0.85),
        rgba(184, 188, 195, 0.85)
      ),
      url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80') center/cover no-repeat;
    padding: 80px 20px;
    color: #333;
  }

  .features-container {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }

  .feature-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: 30px 25px;
    flex: 1 1 300px;
    max-width: 350px;
    text-align: center;
    opacity: 0;
    transform: scale(0.9);
    animation: fadeScaleIn 0.6s forwards;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .feature-card:hover {
    transform: scale(1.05);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
  }

  .feature-card img {
    width: 90px;
    margin-bottom: 18px;
  }

  .feature-card h3 {
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 1.25rem;
  }

  .feature-card p {
    font-size: 0.95rem;
    color: #555;
  }

  @keyframes fadeScaleIn {
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  .strategic-partner-section {
    background: linear-gradient(
        rgba(255, 255, 255, 0.85),
        rgba(255, 255, 255, 0.85)
      ),
      url('https://dxc.scene7.com/is/image/dxc/Four-Steps-to-IT-Modernization_1800x650:banner_desktop') center/cover no-repeat;
    padding: 40px 20px;
    color: #333;
    text-align: center;
  }
  
  .section-heading {
    font-size: 2rem;
    color: #222;
    margin-bottom: 60px;
  }
  .section-heading strong {
    color: #007bff;
  }
  
  /* Grid Layout */
  .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  /* Feature Card = Combined .core-card + .feature-card */
  .feature-card {
    transition: transform 0.4s ease, background 0.4s ease;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid #e0e0e0;
    background: #fff;
    height: 100%;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
    text-align: center;
  }
  
  /* Icon Container */
  .feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
  }
  
  .feature-card:hover .feature-icon {
    transform: rotate(10deg) scale(1.1);
  }
  
  /* Text Styling */
  .feature-card h5 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
  }
  .feature-card p {
    font-size: 0.95rem;
    color: #555;
  }
  
  /* Optional Fade Card (for frosted-glass effects) */
  .fade-card {
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    width: 280px;
    color: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
  }