body {
    font-family: 'Poppins', sans-serif;
    background-color: white;
    
}
.services {
    padding: 20px 15px;
    background: linear-gradient(135deg, #d7e3fc, #fef9f8);
    animation: fadeIn 1s ease-in-out;
}

.services .container {
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 50%;
}

.services .main-h {
    font-size: 2.8rem;
    font-weight: 900;
    text-align: center;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: slideInUp 0.8s ease-out;
}



.services .sub-h {
    font-size: 1.4rem;
    font-weight: 400;
    text-align: center;
    color: #0de493;
    margin-bottom: 5px;
    animation: fadeIn 1.2s ease-out;
}

.service-wrapper {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    padding: 30px 20px;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease-in-out;
    animation: bounceInUp 1s ease-in-out;
}

.service-wrapper:hover {
    transform: scale(1.05);
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.15);
}

.service-wrapper .icon {
    width: 100px;
    height: 100px;
    margin: 0 auto -50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #214b97, #0dbb98);
    box-shadow: 0px 8px 20px rgba(33, 75, 151, 0.4), 0px 8px 20px rgba(13, 187, 152, 0.4);
    animation: pulseIcon 2s infinite;
}

.service-wrapper .icon img {
    width: 60%;
    height: auto;
}

.service-wrapper .title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2d3748;
    text-align: center;
    margin-top: 60px;
    animation: slideInLeft 1s ease-out;
}

.service-wrapper .p1 {
    font-size: 1rem;
    color: #6b7280;
    text-align: center;
    line-height: 1.6;
    padding: 0 15px;
    margin-top: 10px;
    text-align: justify;
    animation: fadeInUp 1.5s ease-in-out;
}

.service-wrapper a {
    display: block;
    text-align: center;
    margin: 20px auto 0;
    font-size: 1rem;
    font-weight: 600;
    padding: 10px 20px;
    width: fit-content;
    background: linear-gradient(135deg, #0dbb98, #4f46e5);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.4s ease;
    animation: bounceInLeft 1s ease-out;
}

.service-wrapper a:hover {
    background: linear-gradient(135deg, #4f46e5, #3b82f6);
    transform: translateY(-3px);
    box-shadow: 0px 6px 15px rgba(59, 130, 246, 0.4);
}

.view-more-btn {
    display: block;
    text-align: center;
    margin: 30px auto;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    color: #ffffff;
    padding: 12px 30px;
    background: linear-gradient(135deg, #214b97, #0dbb98);
    border-radius: 40px;
    transition: all 0.4s ease-in-out;
    box-shadow: 0px 8px 20px rgba(33, 75, 151, 0.4), 0px 8px 20px rgba(13, 187, 152, 0.4);
    animation: pulseButton 2s infinite;
}

.view-more-btn:hover {
    background: linear-gradient(135deg, #214b97, #0dbb98);
    box-shadow: 0px 8px 20px rgba(33, 75, 151, 0.4), 0px 8px 20px rgba(13, 187, 152, 0.4);
    transform: translateY(-3px);
}

/* Keyframes for animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounceInUp {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    60% {
        opacity: 1;
        transform: translateY(-10px);
    }
    80% {
        transform: translateY(5px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes bounceInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    60% {
        opacity: 1;
        transform: translateX(10px);
    }
    80% {
        transform: translateX(-5px);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes pulseIcon {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .services .main-h {
        font-size: 1rem;
    }



    .services .sub-h {
        font-size: 0.8rem;
    }
}
