﻿
.services__two {
    padding: 80px 20px;
    background: #f9faff;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 45px rgba(0,0,0,0.15);
    }

.service-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(135deg, #0078ff, #00bfa6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: floatIcon 4s ease-in-out infinite;
}

    .service-icon i {
        transition: transform 0.3s ease;
    }

.service-card:hover .service-icon i {
    transform: rotate(15deg) scale(1.2);
}

.service-content h4 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #222;
}

.service-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 12px;
}

.service-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 16px;
}

    .service-content ul li {
        margin-bottom: 6px;
        color: #555;
        font-size: 14px;
    }

.btn-three {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #0078ff, #00bfa6);
    color: #fff;
    padding: 10px 22px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
    .btn-three:hover i{
        color:white;
    }
    .btn-three:hover {
        background: linear-gradient(135deg, #0056b3, #009377);
        transform: translateY(-3px);
        color: white;
    }

@keyframes floatIcon {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}
