
    .services {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 20px 0;
        }

        .service {
            background: linear-gradient(to bottom right, #ffffff, #f1f1f1);
            border-radius: 15px;
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
            padding: 30px 20px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            overflow: hidden;
            position: relative;
        }

        .service::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom right, rgba(79, 172, 254, 0.1), rgba(0, 242, 254, 0.1));
            z-index: 0;
            transition: opacity 0.3s ease;
        }

        .service:hover::before {
            opacity: 0.3;
        }

        .service:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
        }

        .service .icon {
            font-size: 3.5rem;
            color: #0ebcc2;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }

        .service h2 {
            font-size: 1.6rem;
            color: black;
            font-weight: bold;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }

        .service p {
            font-size: 1rem;
            color: #555;
            position: relative;
            z-index: 1;
        }

