
<!-- Additional Fancy Styling -->

    .payment-gateway-section {
    background-color: #f8f9fa;
    padding: 20px;
}

    .payment-gateway-section .section-title {
        font-size: 2.5rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        position: relative;
        color: #007bff;
    }

    /* Text Shadow and Animation on Hover */
    .fancy-text {
        font-size: 1.2rem;
        line-height: 1.6;
        color: #333;
        transition: all 0.3s ease-in-out;
    }

    .fancy-text:hover {
        color: #007bff;
        text-shadow: 2px 2px 10px rgba(0, 123, 255, 0.5); /* Blue shadow on hover */
        transform: scale(1.05);
    }

    .payment-gateway-section .features-list li {
        font-size: 1.2rem;
        line-height: 1.6;
        margin-bottom: 20px;
        transition: transform 0.3s ease;
    }

    .payment-gateway-section .features-list li:hover {
        transform: translateX(10px); /* Slight hover effect for list items */
    }

    .payment-gateway-section .features-list i {
        font-size: 1.5rem;
        margin-right: 10px;
        color: #007bff;
    }
.payment-gateway-section img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}
    .payment-gateway-section .image-container img {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .payment-gateway-section .image-container img:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }
.payment-gateway-section h2.section-title {
    color: #0D47A1;
    font-size: 2.2rem;
    text-transform: uppercase;
}
  @media (max-width: 768px) {
    .hero-section {
        padding: 10px;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .features-list li {
        font-size: 1rem;
    }
}


    /* Hover Effect for Cards */
    .hover-effect {
        transition: transform 0.3s, box-shadow 0.3s;
    }
    .hover-effect:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    /* Unique Effect for How Payment Gateways Work Section */
    .gateway-effect {
        overflow: hidden;
        position: relative;
    }

    .gateway-effect::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 70%);
        animation: gateway-glow 6s infinite alternate;
    }

    @keyframes gateway-glow {
        from {
            transform: rotate(0deg) translate(0, 0);
        }
        to {
            transform: rotate(360deg) translate(0, 0);
        }
    }
