﻿/* ----------------------- */
/* Default Sneat-style CSS */
/* ----------------------- */

/* Card hover effect */
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: .25rem;
    overflow: hidden;
    background: #fff;
}

    .card-hover:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    }

/* Card image */
.card-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Accordion button */
.accordion-btn {
    width: 100%;
    text-align: left;
    background: #f7f7f9;
    border: none;
    padding: .5rem 1rem;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s ease;
}

    .accordion-btn:hover {
        background: #e2e6ea;
    }

/* Accordion content */
.accordion-content {
    display: none;
    padding: .5rem 1rem;
}

    .accordion-content.show {
        display: block;
    }

/* Icon hover animation */
.icon-hover {
    transition: transform 0.3s ease, color 0.3s ease;
}

    .icon-hover:hover {
        transform: rotate(-10deg);
        color: #0d6efd;
    }

/* Lists inside cards */
.list-unstyled {
    padding-left: 0;
    margin: 0;
    list-style: none;
}

    .list-unstyled li {
        margin-bottom: .5rem;
    }

/* Page title */
.page-header .page-title {
    font-size: 2rem;
    font-weight: 600;
    color: #0d6efd;
}

/* Call-to-action button */
.btn-primary {
    background-color: #0d6efd;
    color: #fff;
    border: none;
    padding: .75rem 1.5rem;
    font-size: 1rem;
    border-radius: .25rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: background 0.3s ease;
}

    .btn-primary:hover {
        background-color: #0b5ed7;
    }

/* Responsive row spacing */
.row.g-4 {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 768px) {
    .col-md-4 {
        flex: 0 0 32%;
        max-width: 32%;
    }
}
