body,
.page-wrapper {
    font-family: "Exo 2", sans-serif;
}

.form-label-sol {
    font-weight: 600;
}

.solution-card-sol {
    border-radius: 15px;
    border: none;
}

.btn-primary-sol {
    background-color: #007bff;
    border: none;
    font-weight: 600;
}

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

.bg-sol {
    background: url('{{ asset('assets/frontend/images/hero.png') }}') no-repeat center center fixed;
    background-size: cover;
    background-color: #f8f9fa;
}

.highlight-question {
    background: #fff8e1;
    border-left: 5px solid #ffc107;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 250px;
    /* Set your preferred height */
    background-color: #eee;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.gallery-img-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-text {
    text-align: center;
    color: white;
}

.btn-view {
    background: #fff;
    color: #000;
    padding: 6px 14px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
}

.btn-view:hover {
    background: #000;
    color: #fff;
}

.custom-list ul {
    list-style-type: none;
    padding: 0;
}

.custom-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    line-height: 150%;
    /* font-family: 'Noto Sans', sans-serif !important; */
}

.custom-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    display: inline-block;
    width: 15px;
    height: 15px;
    background-size: contain;
    background-repeat: no-repeat;
    /* background-image: url('{{ asset('/assets/frontend/images/p1.png') }}'); */
    background-image: url('/assets/frontend/images/p1.png');
}

li::marker {
    content: none;
}

.custom-article-content table {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 1rem auto;
    border-collapse: collapse;
}

.custom-article-content th,
.custom-article-content td {
    border: 1px solid #dee2e6;
    padding: 0.75rem;
    text-align: center;
    /* center-align content */
    vertical-align: middle;
}

.custom-article-content thead {
    background-color: #f8f9fa;
    font-weight: bold;
}

.custom-article-content tr:nth-child(even) {
    background-color: #f2f2f2;
}

.custom-article-content a {
    color: #0d6efd;
    text-decoration: underline;
}

.custom-article-content p {
    margin-bottom: 0.5rem;
}