
.content-sec{

	margin: 50px 0;
}
.section-heading {
    text-align: start;
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.separator {
    display: block;
    width: 80px;
    height: 4px;
    background-color: #329FE9;
    border-radius: 2px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.card {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 250px;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.card:hover img {
    transform: scale(1.05);
}

.card-title {
    position: absolute;
    bottom: 15px;
    right: 0;
    background-color: rgba(0, 0, 0, 0.0);
    color: white !important;
    padding: 0.75rem 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    transition: all 0.3s ease;
    width: 100%;
    text-align: right;
}

.card:hover .card-title {
    background-color: rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .page-title {
        font-size: 3rem;
    }

    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-heading {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .grid-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .content-sec {
        padding: 4rem 2rem;
    }
}