﻿@keyframes move {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes slide-in-right {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes slide-in-left {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes pop-in {
    0% {
        transform: scale(0.5);
    }

    100% {
        transform: scale(1);
    }
}

.animated-image {
    animation: move 4s infinite;
}

.slide-in-right {
    animation: slide-in-right 1s forwards, move 5s infinite 1s;
}

.slide-in-left {
    animation: slide-in-left 1s forwards, move 5s infinite 1s;
}

.pop-in {
    animation: pop-in 0.5s forwards, move 5s infinite 0.5s;
}


.pricing-section {
    background: linear-gradient(to right, #6dd5ed, #2193b0);
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.pricing-header {
    margin-bottom: 50px;
}

.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.pricing-box {
    background: #fff;
    color: #333;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 20px;
    width: calc(33% - 40px);
    max-width: 350px;
    transition: transform 0.3s;
    flex: 1 1 calc(33.333% - 40px);
    text-align: left;
    display: flex;
    flex-direction: column;
}

    .pricing-box:hover {
        transform: translateY(-10px);
    }

.pricing-title {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #5da4d8;
}

.pricing-price {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #5da4d8;
}

.pricing-features {
    margin-bottom: 20px;
}

    .pricing-features li {
        margin-bottom: 10px;
    }

.pricing-button {
    background: #5da4d8;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    align-self: center;
    margin-top: auto;
    transition: background 0.3s;
}

    .pricing-button:hover {
        background: #3a8db8;
    }


.service-section {
    background: #f9f9f9;
    padding: 50px 0;
}

.service-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service-box {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 20px;
    width: calc(33% - 40px);
    max-width: 350px;
    text-align: center;
    transition: transform 0.3s;
    flex: 1 1 calc(33.333% - 40px);
}

    .service-box:hover {
        transform: translateY(-10px);
    }

.service-icon {
    font-size: 50px;
    margin-bottom: 20px;
    color: #5da4d8;
}

.service-title {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #333;
}

.service-desc {
    font-size: 1em;
    color: #666;
    text-align: left;
}

    .service-desc ul {
        padding-left: 20px;
    }

@media (max-width: 768px) {
    .service-box {
        width: calc(50% - 40px);
    }
}

@media (max-width: 480px) {
    .service-box {
        width: calc(100% - 40px);
    }
}
