/* Pricing Section Styles */
#pricing {
    padding: 50px 0;
    background-color: black;
    color: white;
}

.title-container {
    text-align: center;
    margin-bottom: 30px;
}

.title {
    font-size: 3rem;
    color: #E5BC5D;
}

.line-con {
    margin-top: 10px;
}

.line-1 {
    width: 100px;
    height: 4px;
    background-color: #E5BC5D;
    margin: 0 auto;
}

.card-con {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    position: relative;
    background-image: url("../assets/Pricing_img.webp");
    border: 3px solid #E5BC5D;
    background-size: cover;
    border-radius: 8px;
    padding: 20px;
    height: 400px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 10px;
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.card .content-con {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.card h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: white;
}

.card .line {
    display: block;
    width: 50px;
    height: 3px;
    background-color: #E5BC5D;
    margin: 0 auto;
}

.card h3 {
    font-size: 1.2em;
    margin-bottom: 5px;
    color: white;
}

.card h4 {
    font-size: 2em;
    margin-bottom: 100px;
    color: #E5BC5D;
    font-weight: bolder;
}

.card .pricing-button {
    background-color: #E5BC5D;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.card .pricing-button:hover {
    background-color: #ddd;
    color: #E5BC5D;
}

/* Responsive Design */
@media (max-width: 768px) {
    .card {
        max-width: calc(100% - 20px);
    }
}
