    /* Custom Styles */
    .shadow-hover {
        transition: all 0.3s ease;
        border: 1px solid rgba(5, 5, 136, 0.1);
    }
    
    .shadow-hover:hover {
        transform: translateY(-5px);
        box-shadow: 0 1rem 3rem rgba(5, 5, 136, 0.15) !important;
    }
    
    .service-icon {
        transition: all 0.3s ease;
    }
    
    .shadow-hover:hover .service-icon {
        transform: scale(1.1);
        background: linear-gradient(135deg, #0a0a2a 0%, #1a1a4a 100%) !important;
    }
    
    .bg-primary {
        background-color: rgb(5, 5, 136) !important;
    }
    
    .text-primary {
        color: rgb(5, 5, 136) !important;
    }
    /* .row{padding-top: 2.5vw !important;} */
    .img-fluid{
            opacity: 0.8;
    }
    /* Responsive adjustments */
    @media (max-width: 768px) {
        .display-5 {
            font-size: 2rem;
        }
        
        .ps-lg-5 {
            padding-left: 1rem !important;
        }
        h2{
                text-align: center;
        }
    }