:root {
    --primary-color: #1e50c8;
    --text-color: #333;
    --background-light: #f5f7ff;
}

body {
    font-family: 'Poppins', serif !important;
}

img.halo {
    position: relative;
    box-shadow: 0 0 20px rgba(30, 80, 200, 0.6);
    border-radius: 0%;
}

.cursor-zoom-in {
    cursor: zoom-in;
}

.transition-transform {
    transition: transform 0.2s;
}

.hover\:scale-\[1\.02\]:hover {
    transform: scale(1.02);
}

html {
    scroll-padding-top: 20px;
}

/* Branding */
.scp-blue-text {
    color: #1e50c8;
}

.scp-bg-blue {
    background-color: #1e50c8;
}

.scp-bg-light-blue {
    background-color: #E2EEFE;
}

.scp-button {
    background-color: #1e50c8;
    color: white;
    padding: 0.5rem 1rem;
    height: 40px;
    border-radius: 1.675rem;
    transition: background-color 0.2s ease;
}

    .scp-button:hover {
        background-color: #166AEA;
        box-shadow: 0 0 8px rgba(5, 5, 240, 0.1), 0 0 15px rgba(5, 5, 240, 0.15), 0 0 20px rgba(5, 5, 240, 0.2);
    }

.scp-button-red {
    background-color: #B91C1C;
    color: white;
    padding: 0.5rem 1rem;
    height: 40px;
    border-radius: 1.675rem;
    transition: background-color 0.2s ease;
}

    .scp-button-red:hover {
        background-color: #CC2828;
        box-shadow: 0 0 8px rgba(240, 5, 5, 0.1), 0 0 15px rgba(240, 5, 5, 0.15), 0 0 20px rgba(240, 5, 5, 0.2);
    }

.scp-button-light {
    background-color: white;
    border: 1px solid gray;
    color: #1e50c8;
    padding: 0.5rem 1rem;
    height: 40px;
    border-radius: 1.675rem;
    transition: background-color 0.2s ease;
}

    .scp-button-light:hover {
        background-color: #1e50c8;
        color: white;
        box-shadow: 0 0 8px rgba(5, 5, 240, 0.1), 0 0 15px rgba(5, 5, 240, 0.15), 0 0 20px rgba(5, 5, 240, 0.2);
    }

.scp-font-15 {
    font-size: 1.5rem;
}

.scp-font-bold {
    font-weight: bold;
}

.scp-gradient-text {
    font-size: 1.0rem;
    color: white;
    padding: 1px 10px 1px 10px;
    background: linear-gradient( 90deg, #a855f7 0%, #6b90e8 100% );
}

.scp-badge {
    display: inline-block;
    background-color: white;
    border: 1px solid #E66F3D;
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 13px;
    text-align: center;
    color: #E66F3D;
    text-transform: uppercase;
}

.image-container {
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px;
    background: linear-gradient(235deg, rgba(128, 163, 199, 0.8), rgba(145, 178, 212, 0.8), rgba(160, 185, 221, 0.8), rgba(128, 163, 199, 0.8));
    overflow: hidden;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-animation {
    animation: modalFadeIn 0.2s ease-out;
}

.pricing {
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    min-height: 100vh;
    padding: 20px;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

#pricing .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.pricing-card {
    flex: 1 1 calc(25% - 20px);
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    background-color: #f9f9f9;
    margin-top: 20px;
    transition: transform 0.3s ease-in-out;
}

.plan-button {
    cursor: pointer;
}

    .plan-button:hover {
        background-color: #0056b3;
    }

.pricing-card:hover {
    transform: translateY(-10px);
}

.popular {
    border: 2px solid #00bfff;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 1rem 0;
}

    .price span {
        font-size: 1rem;
        color: #666;
    }
