* {
            margin: 0;
            padding: 0;
           ;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #0a1628 0%, #162947 100%);
            
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-label {
            color: #4a9eff;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .section-title {
            color: #ffffff;
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .section-description {
            color: #94a3b8;
            font-size: 18px;
            line-height: 1.6;
            max-width: 900px;
            margin: 0 auto;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .step-card {
            background: rgba(22, 41, 71, 0.6);
            border: 1px solid rgba(74, 158, 255, 0.2);
            border-radius: 12px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .step-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #4a9eff, #00d4ff);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .step-card:hover {
            transform: translateY(-5px);
            border-color: rgba(74, 158, 255, 0.5);
            box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
        }

        .step-card:hover::before {
            transform: scaleX(1);
        }

        .icon-wrapper {
            width: 120px;
            height: 120px;
            margin: 0 auto 30px;
            background: linear-gradient(135deg, #ff8c00 0%, #4a9eff 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .icon-wrapper::after {
            content: '';
            position: absolute;
            width: 130px;
            height: 130px;
            border-radius: 50%;
            border: 2px solid rgba(74, 158, 255, 0.3);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
                opacity: 1;
            }

            50% {
                transform: scale(1.1);
                opacity: 0.5;
            }
        }

        .icon-wrapper svg {
            width: 60px;
            height: 60px;
            fill: white;
            position: relative;
            z-index: 1;
        }

        .step-number {
            position: absolute;
            top: 15px;
            right: 20px;
            width: 35px;
            height: 35px;
            background: rgba(74, 158, 255, 0.2);
            color: #4a9eff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 16px;
        }

        .step-title {
            color: #ffffff;
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .step-description {
            color: #94a3b8;
            font-size: 15px;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 32px;
            }

            .steps-grid {
                grid-template-columns: 1fr;
            }
        }
.services-one .col-xl-4 {
    display: flex;
     margin-bottom: 30px;
}

.services-one__single {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    
}

.services-one__single-content {
    flex: 1;
    margin-bottom: 10vh;
}