.hp {
    display: none !important;
}

/* ─── Case Card (imgtext block) ─── */

.img-text {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.75rem 2rem;
    margin-bottom: 1.5rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03), 0 4px 16px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(.22,1,.36,1),
                box-shadow 0.4s cubic-bezier(.22,1,.36,1);
}

.img-text::before {
    content: '';
    position: absolute;
    top: 16px;
    bottom: 16px;
    left: 0;
    width: 3px;
    border-radius: 0 3px 3px 0;
    background: linear-gradient(to bottom, #6cbb23, #4a9a10);
    opacity: 0;
    transition: opacity 0.35s ease, top 0.35s ease, bottom 0.35s ease;
}

.img-text:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.05),
                0 16px 48px rgba(108,187,35,0.10);
}

.img-text:hover::before {
    opacity: 1;
    top: 10px;
    bottom: 10px;
}

/* Right-aligned variant */

.img-text--right {
    flex-direction: row-reverse;
}

.img-text--right::before {
    left: auto;
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* Image */

.img-text__media {
    flex-shrink: 0;
    width: 180px;
}

.img-text__media img {
    border-radius: 8px;
    width: 100%;
    height: auto;
    display: block;
    filter: saturate(0.75);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.img-text:hover .img-text__media img {
    filter: saturate(1);
    transform: scale(1.03);
}

/* Text body */

.img-text__body {
    flex: 1;
    min-width: 0;
}

.img-text__body p {
    margin-bottom: 0.4rem;
    line-height: 1.7;
}

.img-text__body p:last-child {
    margin-bottom: 0;
}

/* ─── Scroll reveal animation ─── */

[data-animate] {
    opacity: 0;
    transform: translateY(20px);
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s cubic-bezier(.22,1,.36,1),
                transform 0.7s cubic-bezier(.22,1,.36,1);
}

/* ─── Gallery logo tiles ─── */

.gallery-item .single-gallery-image {
    height: 130px;
    margin-top: 20px;
    border-radius: 8px;
    background-color: #f7f8fa;
    padding: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item .single-gallery-image:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* ─── Banner entrance animation ─── */

@keyframes bannerFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.banner-area .story-content h6 {
    animation: bannerFadeUp 0.7s cubic-bezier(.22,1,.36,1) 0.1s both;
}

.banner-area .story-content h1 {
    animation: bannerFadeUp 0.7s cubic-bezier(.22,1,.36,1) 0.3s both;
}

.banner-area .story-content .genric-btn {
    animation: bannerFadeUp 0.7s cubic-bezier(.22,1,.36,1) 0.5s both;
}

.banner-area .banner-left img {
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

/* ─── Feature cards ─── */

.single-feature {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03), 0 4px 16px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.04);
    padding: 2rem 1.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(.22,1,.36,1),
                box-shadow 0.4s cubic-bezier(.22,1,.36,1);
}

.single-feature::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 3px;
    border-radius: 3px 3px 0 0;
    background: linear-gradient(to right, #6cbb23, #4a9a10);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.single-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.05),
                0 16px 48px rgba(108,187,35,0.10);
}

.single-feature:hover::after {
    opacity: 1;
}

.single-feature .icon {
    border-radius: 10px;
}

/* ─── About section ─── */

.about-area img {
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    filter: saturate(0.75);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.about-area img:hover {
    filter: saturate(1);
    transform: scale(1.02);
}

/* ─── Contact form polish ─── */

.contact-form .common-input,
.contact-form .common-textarea {
    border-radius: 6px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .common-input:focus,
.contact-form .common-textarea:focus {
    border-color: #6cbb23;
    box-shadow: 0 0 0 3px rgba(108,187,35,0.15);
    outline: none;
}

.contact-form .primary-btn {
    transition: transform 0.3s cubic-bezier(.22,1,.36,1),
                box-shadow 0.3s cubic-bezier(.22,1,.36,1);
}

.contact-form .primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* ─── FAQ cards ─── */

.single-faq {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03), 0 4px 16px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.04);
    transition: transform 0.4s cubic-bezier(.22,1,.36,1),
                box-shadow 0.4s cubic-bezier(.22,1,.36,1);
}

.single-faq:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.05),
                0 16px 48px rgba(108,187,35,0.10);
}

/* ─── Fact counters ─── */

.single-facts {
    transition: transform 0.4s cubic-bezier(.22,1,.36,1);
}

.single-facts:hover {
    transform: translateY(-3px);
}

/* ─── Video play button pulse ─── */

@keyframes playPulse {
    0%   { box-shadow: 0 0 0 0 rgba(108,187,35,0.4); }
    70%  { box-shadow: 0 0 0 20px rgba(108,187,35,0); }
    100% { box-shadow: 0 0 0 0 rgba(108,187,35,0); }
}

.play-btn {
    animation: playPulse 2s infinite;
    border-radius: 50%;
}

/* ─── Header scroll effect ─── */

.default-header {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.default-header.header-scrolled {
    background-color: #fff;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

/* ─── Footer polish ─── */

.footer-bottom {
    padding-top: 1.5rem;
    padding-bottom: 1rem;
}

footer .footer-nav a {
    transition: color 0.3s ease;
}

footer .footer-nav a:hover {
    color: #6cbb23;
}

/* ─── Thank you card ─── */

.thankyou-card {
    max-width: 520px;
    margin: 80px auto 60px;
    padding: 3rem 2.5rem;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03), 0 4px 16px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
}

.thankyou-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 3px;
    border-radius: 0 0 3px 3px;
    background: linear-gradient(to right, #6cbb23, #4a9a10);
}

.thankyou-icon {
    margin-bottom: 1.5rem;
}

@keyframes thankyouPop {
    0%   { transform: scale(0); opacity: 0; }
    60%  { transform: scale(1.15); }
    100% { transform: scale(1); opacity: 1; }
}

.thankyou-icon .lnr {
    font-size: 4rem;
    color: #6cbb23;
    animation: thankyouPop 0.6s cubic-bezier(.22,1,.36,1) 0.3s both;
}

.thankyou-card h2 {
    margin-bottom: 0.75rem;
    font-size: 1.6rem;
}

.thankyou-card p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.thankyou-card .genric-btn {
    animation: bannerFadeUp 0.7s cubic-bezier(.22,1,.36,1) 0.6s both;
}

/* ─── Stagger delay utilities ─── */

[data-animate-delay="1"] { transition-delay: 0.1s !important; }
[data-animate-delay="2"] { transition-delay: 0.2s !important; }
[data-animate-delay="3"] { transition-delay: 0.3s !important; }
[data-animate-delay="4"] { transition-delay: 0.4s !important; }

/* ─── Responsive ─── */

@media (max-width: 767px) {
    .img-text {
        flex-direction: column !important;
        padding: 1.25rem;
        gap: 1rem;
        text-align: center;
    }

    .img-text::before {
        top: 0;
        bottom: auto;
        left: 20px;
        right: 20px;
        width: auto;
        height: 3px;
        border-radius: 0 0 3px 3px;
    }

    .img-text--right::before {
        left: 20px;
        right: 20px;
    }

    .img-text__media {
        width: 140px;
        margin: 0 auto;
    }
}
