﻿/* Theme Button */
.theme-btn {
    background: #1BAAA0;
    color: #fff;
    padding: 10px 25px;
    border-radius: 5px;
    transition: 0.3s;
}

    .theme-btn:hover {
        background: #159a90;
        color: #fff;
    }

/* Card Box (Modules / Features) */
.card-box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #eee;
    transition: 0.3s;
}

    .card-box i {
        font-size: 30px;
        color: #1BAAA0;
        margin-bottom: 15px;
    }

    .card-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

/* Pricing Box */
.price-box {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    border: 1px solid #eee;
    position: relative;
    transition: 0.3s;
}

    .price-box h2 {
        color: #1BAAA0;
        font-size: 32px;
        margin: 15px 0;
    }

    .price-box span {
        font-size: 16px;
        color: #777;
    }

    .price-box ul {
        list-style: none;
        padding: 0;
        margin: 20px 0;
    }

        .price-box ul li {
            margin: 10px 0;
        }

    /* Hover Effect */
    .price-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

    /* Popular Plan */
    .price-box.popular {
        border: 2px solid #1BAAA0;
        transform: scale(1.05);
    }

    .price-box .tag {
        position: absolute;
        top: -10px;
        right: 20px;
        background: #1BAAA0;
        color: #fff;
        padding: 5px 10px;
        font-size: 12px;
        border-radius: 5px;
    }

    /* Enterprise Highlight */
    .price-box.enterprise h2 {
        color: #f39c12;
    }
