@media (max-width: 768px) {
    .about-image > div[style*="position: relative"] {
        min-width: unset !important;
    }
    .about-image iframe {
        min-width: unset !important;
    }
    .testimonial-image img {
        max-width: 370px !important;
    }
    .icon-items-area .icon-items {
        max-width: 100% !important;
    }
}
@media (min-width: 769px) and (max-width: 991.98px) {
    .about-image > div[style*="position: relative"] {
        height: 350px !important;
        min-height: 350px !important;
        max-height: unset !important;
        min-width: 710px !important;
    }
    .about-image iframe {
        min-height: 350px !important;
        max-height: unset !important;
        min-width: 710px !important;
    }
}
@media (min-width: 992px) {
    .about-image > div[style*="position: relative"] {
        height: 850px !important;
        min-height: 850px !important;
        max-height: 850px !important;
    }
    .about-image iframe {
        min-height: 850px !important;
        max-height: 850px !important;
    }
    .testimonial-image img {
        max-width: 470px !important;
    }
}
@media (min-width: 1400px) {
    .about-image > div[style*="position: relative"] {
        height: 850px !important;
        min-height: 850px !important;
        max-height: 850px !important;
        min-width: 610px !important;
    }
    .about-image iframe {
        min-height: 850px !important;
        max-height: 850px !important;
        min-width: 610px !important;
    }
}
@media (max-width: 576px) {
    .cta-title-responsive {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }
}
@media (min-width: 577px) and (max-width: 768px) {
    .cta-title-responsive {
        font-size: 2rem !important;
    }
}


.modern-gallery-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10), 0 1.5px 4px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.modern-gallery-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(0,0,0,0.14), 0 1.5px 4px rgba(0,0,0,0.10);
}
.modern-gallery-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    transition: filter 0.2s;
}
.modern-gallery-card:hover .modern-gallery-img {
    filter: brightness(0.92);
}
.modern-gallery-info {
    padding: 1.2rem 1.2rem 1rem 1.2rem;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.modern-gallery-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: .5rem;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.modern-gallery-category {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: .5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.modern-gallery-action {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0,0,0,0.55);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 2;
}
.modern-gallery-action:hover {
    background: #0d6efd;
}
.modern-gallery-action i {
    color: #fff;
    font-size: 1.4rem;
}
.modern-gallery-footer {
    margin-top: .5rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}


