
       
/* Service Styles */
        .service {
            background-color: #f8f9fa;
            padding: 80px 0;
        }

        .service-card {
            text-align: center;
            padding: 30px;
            border-radius: 15px;
            background: white;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            line-height: 60px;
            border-radius: 50%;
            background: #3E93FC;
            color: white;
            font-size: 2rem;
            margin: 0 auto 20px;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            background: #2c3e50;
            transform: rotateY(180deg);
        }

        .service-title {
            color: #2c3e50;
            font-weight: 600;
            margin-bottom: 15px;
        }