
  /* 🌐 Section Wrapper */
  .intro-pro-section {
    background: linear-gradient(135deg, #f5f9ff 0%, #eaf1ff 100%);
    padding: 80px 20px;
  }

  /* 🧭 Layout */
  .intro-row {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    flex-wrap: wrap;
  }

  /* 🖼️ Image */
  .intro-image {
    flex: 1 1 45%;
    overflow: hidden;
    border-radius: 20px;
    background-color: #fff;
    border: 6px solid #ffffff;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    transform: translateX(-50px);
    opacity: 0;
    animation: slideInLeft 1s forwards;
  }

  .intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 14px;
    transition: transform 1s ease;
  }

  .intro-image:hover img {
    transform: scale(1.08);
  }

  /* 📜 Content */
  .intro-content {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0e2a5a;
    margin-bottom: 15px;
  }

  .section-subtitle {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
  }

  /* 📦 Info Boxes */
  .intro-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .intro-info-box {
    background: #fff;
    border-radius: 16px;
    padding: 18px 15px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeUp 0.8s forwards;
  }

  .intro-info-box:nth-child(1) { animation-delay: 0.3s; }
  .intro-info-box:nth-child(2) { animation-delay: 0.5s; }
  .intro-info-box:nth-child(3) { animation-delay: 0.7s; }
  .intro-info-box:nth-child(4) { animation-delay: 0.9s; }

  /* 🧭 Icon - outline only */
  .intro-info-box .icon {
    font-size: 1.6rem;
    color: #CE1810; /* red outline color */
    padding: 12px;
    border-radius: 50%;
    border: 2px solid #CE1810; /* outline only */
    background: transparent; /* no fill */
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
  }

  /* ✍ Text */
  .intro-info-box .text h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #0e2a5a;
  }

  .intro-info-box .text p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
  }

  .intro-info-box a {
    color: #0066cc;
    text-decoration: underline;
    font-weight: 600;
  }

  /* 🔴 Hover Effects */
  .intro-info-box:hover {
    border: 2px solid #CE1810;
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }

  .intro-info-box:hover .icon {
    background: #CE1810; /* fill red */
    color: #fff; /* white icon */
    transform: rotate(10deg) scale(1.1);
  }

  /* ✨ Animations */
  @keyframes slideInLeft {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* 📱 Responsive */
  @media (max-width: 992px) {
    .intro-row {
      flex-direction: column;
    }

    .intro-image {
      flex: 1 1 100%;
      transform: translateX(0);
      animation: fadeUp 1s forwards;
    }

    .intro-boxes {
      grid-template-columns: 1fr;
    }
  }

        .global-critical-transfer-img {
            padding: 60px 0;
            background-color: #fff;
        }

        .transfer-image {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
            object-fit: cover;
        }

        .transfer-right h2 {
            color: #0a1754;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .lead-text {
            color: #333;
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 15px;
        }

        .transfer-box {
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
            padding: 25px 20px;
            transition: all 0.3s ease;
            height: 100%;
        }

        .transfer-box:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .transfer-box h4 {
            color: #0a1754;
            font-weight: 700;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .icon-black {
            font-size: 2rem;
            color: #000;
        }

        @media (max-width: 768px) {
            .transfer-right {
                margin-top: 30px;
            }
        }
 
       
                    .serve-photo {
                        width: 100%;
                        height: 548;
                        border-radius: 10px;
                        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
                        object-fit: cover;
                    }

                    /* ✅ Responsive for smaller screens */
                    @media (max-width: 768px) {
                        .serve-photo {
                            height: auto;
                            max-height: 400px;
                        }
                    }
   

        .trust-section {
            text-align: center;
            padding: 80px 0;
        }

        .trust-section h2 {
            font-weight: 700;
            margin-bottom: 60px;

        }

        .box-card {
            background-color: #ffffff;
            border: 2px solid #b30000;
            border-radius: 15px;
            padding: 40px 20px;
            text-align: center;
            color: #b30000;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            height: 100%;
        }

        .box-card:hover {
            background-color: #ffe5e5;
            transform: translateY(-6px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .box-card i {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: #b30000;
        }

        .box-card h5 {
            font-size: 1rem;
            font-weight: 600;
            line-height: 1.4;
            margin: 0;
        }

        @media (max-width: 992px) {
            .box-card {
                padding: 30px 15px;
            }

            .box-card i {
                font-size: 2rem;
            }

            .trust-section h2 {
                font-size: 1.6rem;
            }
        }
 