
        body {
            font-family: 'Poppins', sans-serif;
            background: #020617;
            color: #fff;
        }

        .btn {
            display: inline-block;
            padding: 12px 28px;
            border-radius: 30px;
            background: linear-gradient(90deg, #38bdf8, #a78bfa);
            color: #fff;
            text-decoration: none;
            margin-top: 15px;
            transition: 0.3s;
        }

        .btn:hover {
            box-shadow: 0 0 20px rgba(167, 139, 250, 0.7);
        }

        

        .section {
            margin-bottom: 70px;
        }

        .section h2 {
            text-align: center;
            font-size: 32px;
            margin-bottom: 10px;
        }

        .section p {
            text-align: center;
            color: #94a3b8;
            margin-bottom: 40px;
            text-align: justify;
        }

        .services {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .card {
            background: rgba(30, 41, 59, 0.6);
            border-radius: 22px;
            padding: 28px;
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: 0.4s;
            position: relative;
            overflow: hidden;
        }

        .card::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(
                120deg,
                transparent,
                rgba(255, 255, 255, 0.15),
                transparent
            );
            opacity: 0;
            transition: 0.4s;
        }

        .card:hover::before {
            opacity: 1;
        }

        .card:hover {
            transform: translateY(-12px) scale(1.03);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
        }

        .icon {
            font-size: 38px;
            margin-bottom: 15px;
            margin-left: auto;
            margin-right: auto;
        }

        .card h3 {
            margin-bottom: 10px;
            font-size: 20px;
            margin-left: auto;
            margin-right: auto;
        }

        .card p {
            font-size: 14px;
            color: #94a3b8;
            margin-bottom: 10px;
        }

        .card ul {
            list-style: none;
            margin-top: 10px;
        }

        .card ul li {
            font-size: 14px;
            color: #cbd5f5;
            margin: 6px 0;
        }

        .card ul li::before {
            content: '✔';
            color: #22c55e;
            margin-right: 8px;
        }

        .cta {
            text-align: center;
            padding: 80px 20px;
            background: linear-gradient(
                135deg,
                rgba(56, 189, 248, 0.15),
                rgba(167, 139, 250, 0.15)
            );
        }

        .cta h2 {
            font-size: 30px;
        }

        .cta p {
            color: #94a3b8;
            margin: 10px 0 20px;
        }