.custom-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 325px; /* Increase the height */
    width: 250px; /* Decrease the width */
}

.custom-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.custom-card-img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 200px;
    object-fit: cover;
}

.custom-card-body {
    padding: 15px;
    text-align: center;
}

.custom-card-title {
    font-size: 2.5rem; /* Increase the font size */
    font-weight: bold;
    color: #333;
    text-align: left;
}

.custom-card-text {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 15px;
    text-align: left;
}

.custom-card-btn {
    background-color: #007bff;
    border: none;
    color: white;
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.custom-card-btn:hover {
    background-color: #0056b3;
}

.logo {
    margin-top: -10px;
    width: 150px;
    height: 100px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo img {
    max-height: 120px; /* Adjust as needed */
}

.footer-logo img:first-child {
    margin-right: -60px; /* Adjust spacing as needed */
}