.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    cursor: pointer;
    transition: .4s;
    background: #fff;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
}

.gallery-card img {
    width: 100%;
    transition: .6s;
    display: block;
}

.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .82),
            rgba(0, 0, 0, .15),
            transparent);
    color: #fff;
    opacity: 0;
    transition: .4s;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3,
.gallery-overlay h4,
.gallery-overlay h5 {
    margin-bottom: 8px;
    font-weight: 700;
}

.gallery-overlay p {
    margin: 0;
    opacity: .9;
}

@media(max-width:991px) {

    .gallery-card {
        margin-bottom: 10px;
    }

    .pth{
        text-align: center;
    }

}

.pre{

    background-color: #211014;
}



.process-card {

    background: #fff;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
    transition: .35s;
    position: relative;
    overflow: hidden;

}

.process-card:hover {

    transform: translateY(-10px);

}

.process-number {

    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 42px;
    font-weight: 800;
    color: rgba(220, 53, 69, .08);

}

.process-icon {

    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    background: #dc3545;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: #fff;

}

.feature-icon {

    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #dc3545;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    flex-shrink: 0;

}

.info-card {

    background: #fff;
    padding: 40px 25px;
    border-radius: 22px;
    text-align: center;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    transition: .35s;

}

.info-card:hover {

    transform: translateY(-8px);

}

.info-card i {

    font-size: 40px;
    color: #dc3545;
    margin-bottom: 20px;

}

.info-card h3 {

    font-weight: 800;
    margin-bottom: 10px;

}

.info-card p {

    margin: 0;
    color: #6c757d;

}





.member-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
    transition: .35s;
    height: 100%;
}

.member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, .15);
}

.member-image {
    position: relative;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: .5s;
    display: block;
}

.member-card:hover img {
    transform: scale(1.08);
}

.member-status {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #198754;
}

.member-content {
    padding: 28px;
}

.member-age {
    background: #dc3545;
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 600;
}

.member-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.member-tags span {
    padding: 8px 14px;
    background: #f8f9fa;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
}

@media(max-width:991px) {

    .member-image img {
        height: 360px;
    }

}




.testimonial-card {
    background: #fff;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
    transition: .35s;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, .15);
}

.quote-icon {
    width: 70px;
    height: 70px;
    background: #dc3545;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    margin-bottom: 25px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.testimonial-user img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.review-stat {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.review-stat h2 {
    font-size: 42px;
    font-weight: 800;
    color: #dc3545;
    margin-bottom: 8px;
}

.review-stat p {
    margin: 0;
    color: #6c757d;
    font-weight: 500;
}

.premium-cta {
    background: linear-gradient(135deg, #111, #2b0f16, #dc3545);
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .25);
}

.cta-feature {
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 20px;
    backdrop-filter: blur(8px);
}

.cta-feature i {
    font-size: 40px;
    margin-bottom: 18px;
}

.cta-feature h5 {
    margin: 0;
    font-weight: 600;
}




.footer a {
    color: #adb5bd;
    text-decoration: none;
    transition: .3s;
}

.footer a:hover {
    color: #fff;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1d1d1d;
    border-radius: 50%;
    color: #fff !important;
    transition: .3s;
}

.social-link:hover {
    background: #dc3545;
    transform: translateY(-4px);
}

.accordion-button {
    padding: 22px;
    font-size: 21px;
}

.accordion-button:not(.collapsed) {
    background: #dc3545;
    color: #fff;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 22px;
    color: #6c757d;
    font-size: 20px;
}

ul{
    font-size: 1.2rem;
}




