﻿
body {
    font-family: 'Poppins', sans-serif;
    background-color: #F1F2F9;
    color: #212529;
}

.navbar-brand img {
    height: 35px;
}

#navMenu {
    font-weight: 500;
}

.hero {
    padding: 60px 0;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.icon-circle {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
}

.hero h1 {
    font-weight: 700;
    font-size: 2.8rem;
}

.hero ul {
    list-style: none;
    padding-left: 0;
}

    .hero ul li::before {
        content: "✔";
        color: #0d6efd;
        font-weight: bold;
        margin-right: 10px;
    }

.btn-primary {
    background-color: #4464f8;
    border: none;
}

.btn-outline-primary {
    border-color: #4464f8;
    color: #4464f8;
}

    .btn-outline-primary:hover {
        background-color: #4464f8;
        color: #fff;
    }

.small-note {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 10px;
}

.hero-img {
    max-width: 100%;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
}


/* Pricing Section Scoped Styles */
.pricing-section {
    background-color: #f9f9fc;
    padding: 60px 20px;
    text-align: center;
}

    .pricing-section .section-title {
        font-size: 40px;
        color: #1e2a3c;
        font-weight: 700;
    }

    .pricing-section .section-subtitle {
        font-size: 18px;
        color: #5f6c7b;
        margin-top: 10px;
    }

    .pricing-section .trial-info {
        font-weight: 600;
        color: #3a4860;
        margin: 20px 0 40px;
    }

    /* Cards */
    .pricing-section .pricing-cards {
        display: flex;
        gap: 30px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .pricing-section .pricing-card {
        background-color: white;
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
        padding: 40px 30px;
        flex: 1;
        max-width: 350px;
        position: relative;
        transition: transform 0.3s ease;
    }

        .pricing-section .pricing-card:hover {
            transform: translateY(-5px);
        }

    .pricing-section .plan-icon {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .pricing-section .pricing-card h3 {
        font-size: 24px;
        color: #1e2a3c;
        margin-bottom: 20px;
    }

    .pricing-section .pricing-card ul {
        list-style: none;
        padding: 0;
        text-align: left;
        color: #4a5568;
    }

        .pricing-section .pricing-card ul li {
            padding-left: 25px;
            position: relative;
            margin: 10px 0;
        }

            .pricing-section .pricing-card ul li::before {
                content: "✔️";
                position: absolute;
                left: 0;
            }

    /* Button */
    .pricing-section .try-btn {
        background-color: #4561f1;
        color: white;
        border: none;
        border-radius: 10px;
        padding: 12px 24px;
        font-weight: 600;
        font-size: 16px;
        margin-top: 20px;
        cursor: pointer;
        transition: background 0.3s;
    }

        .pricing-section .try-btn:hover {
            background-color: #334ee0;
        }

    /* Highlighted Card */
    .pricing-section .pricing-card.popular {
        background-color: #d6f9d6;
        border: 2px solid #7ee37e;
    }

    .pricing-section .popular-tag {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        background-color: #4561f1;
        color: white;
        padding: 8px 0;
        border-radius: 20px 20px 0 0;
        font-weight: bold;
    }
