/* General Container Styling */
.container {
    padding-top: 40px;
    padding-bottom: 40px;
}

/* Card Styling */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

/* Card Image */
.card-img-top {
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

/* Card Title */
.card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}

/* Card Text */
.card-text {
    font-size: 0.95rem;
    color: #555;
   min-height: 80px;
}

/* Button Styling */
.card .btn-primary {
    background-color: #0069d9;
    border: none;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.card .btn-primary:hover {
    background-color: #0052a3;
}
.corporate
{
     background: url(./images/corporate.avif) no-repeat !important;
    background-size: cover !important;
    background-position: center center!important;
    min-height: 300px !important;
}

