﻿.hero {
    background: #2f2bb3;
}

.cta {
    /* Direction + subtle color shift */
    background: linear-gradient(135deg, #F0F2F2, #DAE6E1, #D3E3E8);
    /* Ensure the element is visible and readable */
    color: black;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.card p,
.small.text-muted {
    font-size: 1.1rem;
    line-height: 1.7;
}

h1, h2 {
    letter-spacing: -0.5px;
}

.card {
    border-radius: 18px;
}
section p {
    font-size: 1.09rem;
    line-height: 1.8;
    color: #5b6777;
}

h4 {
    margin-top: 1.5rem;
}
.card:hover {
    transform: translateY(-5px);
    transition: 0.3s;
}
.solution-card {
    cursor: pointer;
}

.solution-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,#0d6efd,#6f42c1);
    opacity: 0;
    transition: 0.4s;
}

.solution-card:hover .solution-overlay {
    opacity: 0.95;
}
/*.product-card {
    position: relative;
    overflow: hidden;
    transition: transform .3s ease;
}*/

    .product-card:hover {
        transform: translateY(-6px);
    }

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.8);
    color: white;
    padding: 20px;
    opacity: 0;
    transition: opacity .3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.price-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(45deg,#0d6efd,#6f42c1);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
}

.student-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: #198754;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
}
.product-card {
    height: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

    .product-card img {
        height: 320px;
        
        object-fit: cover;
    }

    .product-card .card-body {
        flex-grow: 1;
    }
.product-card {
    border-radius: 14px;
}
.product-overlay {
    pointer-events: none;  
}

    .product-overlay a,
    .product-overlay button {
        pointer-events: auto;  
    }
.page-shell {
    padding: 12px 8px;
}

.page-container {
    max-width: 900px; /* adjust: 760–1000 works well */
    margin: 0 auto; /* centers */
}
.form-card {
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}
.footer-link {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
}

    .footer-link:hover {
        color: #ffffff;
        text-decoration: underline;
    }

.job-action-btn {
    width: 130px;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: normal;
    font-weight: 500;
}

.job-action-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}