
/* Section */
.pricing-section {
    padding: 60px 0;
}

/* Card */
.pricing-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: 0.4s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* Title */
.plan-title {
    font-weight: 700;
    color: #18bcc7;
    margin-bottom: 10px;
}

/* Features */
.feature {
    font-size: 14px;
    color: #000000;
    margin-bottom: 6px;
}

/* Price */
.price {
    font-size: 26px;
    font-weight: bold;
    color: #dc3545;
}

/* Highlight */
.highlight {
    border: 2px solid #0dedfd;
}

/* Button */
.btn-plan {
    border-radius: 50px;
}

/* Scroll Animation */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.6s;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}


.how-box {
    transition: 0.3s;
}

.how-icon {
    font-size: 50px;
    color: #18bcc7; /* dark green */
    transition: 0.3s;
}

/* Hover Effect */
.how-box:hover .how-icon {
    transform: translateY(-5px) scale(1.1);
    color: #0fa6b1;
}

.how-box h6 {
    font-size: 15px;
    line-height: 1.5;
    color: #0f5132;
}
