﻿/* General Styling */
body {
    font-family: "Poppins", sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

/* Card Styling */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    width: 250px;
    height: 450px;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
        border-top-left-radius: 60px;
        border-top-right-radius: 60px;
    }

.card-img-top {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    width: 250px;
    height: 250px;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.card-text {
    font-size: 14px;
    color: #555;
}

.btn-primary,
.btn-secondary {
    border: none;
    font-size: 14px;
    font-weight: 600;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    transition: background 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
}

    .btn-primary:hover {
        background: linear-gradient(135deg, #2575fc, #6a11cb);
    }

.btn-secondary {
    background: #ff758c;
}

    .btn-secondary:hover {
        background: #ff5268;
    }

.card-container {
    margin: 10px 0;
  
}
