.custom-heading {
    font-size: 65px;
    line-height: 70px;
    letter-spacing: -0.03em;
}
.custom-heading span:first-child {
    color: #fff;
    background: linear-gradient(
        90deg,
        #794aff 0%,
        rgba(121, 74, 255, 0.15) 100%
    );
    text-transform: uppercase;
    padding: 0px 10px;
    margin-left: 5px;
}
.custom-heading span:last-child {
    font-style: italic;
}

.testimonial_bg {
    background-image: url(images/testimonial-bg.webp);
}
.service_image {
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
}
.svg-color svg {
    color: #facc15;
}
.fill-yellow {
    color: #facc15 !important;
}
.fill-gray {
    color: #9ca3af;
}
svg.active {
    color: #ff002a;
}
.three-line-limit {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.custom_style {
    background: linear-gradient(
        270deg,
        #794aff 50%,
        rgba(121, 74, 255, 0) 90.03%
    );
}

.cart-qty-box {
    width: 50px !important;
}

.custom-single-product-swiper {
    --swiper-navigation-color: #fff !important;
    --swiper-pagination-color: #fff !important;
}

.inner_layout_footer {
    background: linear-gradient(90deg, #794aff 0%, #f3f4f9 63.23%) !important;
}

.remember-me-checkbox {
    animation-delay: 0.8s !important;
}

.service-description-line-clamp {
    -webkit-line-clamp: 3 !important;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.max_height_none {
    max-height: none !important;
}

.custom_swiper_wrapper {
    transition-duration: 0ms !important;
    transform: translate3d(-223.333px, 0px, 0px) !important;
    transition-delay: 0ms !important;
}

.custom_partner_swiper_slide {
    width: 173.333px !important;
    margin-right: 50px !important;
}

.testimonial-section{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(images/testimonials-home-bg.png);
}

.testimonial-shape-bg{
    background: linear-gradient(180deg, rgba(255, 64, 95, 0.05) 0%, rgba(255, 32, 69, 0) 100%);

}


@media screen and (max-width: 768px) {
    .custom-heading {
        font-size: 54px;
        line-height: 60px;
    }
}
@media screen and (max-width: 425px) {
    .custom-heading {
        font-size: 36px;
        line-height: 46px;
    }
    .inner_layout_footer {
        background: linear-gradient(90deg, #794aff 0%, #f3f4f9 96.23%) !important;
    }
}
/* ================= EXPLORE SERVICES (PIXEL PERFECT) ================= */

.explore-services-section {
    background: #ffffff;
    padding: 100px 0;
}

.explore-container {
    max-width: 1300px;
    margin: auto;
    padding: 0 20px;
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.explore-card {
    background: #fff;
    border-radius: 18px;
    padding: 32px 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.explore-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.bg-purple { background: #6d28d9; }
.bg-indigo { background: #4f46e5; }
.bg-violet { background: #7c3aed; }

.explore-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
}

.explore-card .tech {
    font-size: 14px;
    color: #6d28d9;
    margin: 6px 0 14px;
}

.explore-card .desc {
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 16px;
}

.explore-card ul {
    padding-left: 18px;
    margin-bottom: 26px;
}

.explore-card ul li {
    font-size: 14px;
    color: #334155;
    margin-bottom: 10px;
}

.explore-footer {
    margin-top: auto;
    background: #f7f5ff;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;

    border: 1.5px solid rgba(109, 40, 217, 0.35);

    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.6),
        0 8px 20px rgba(109, 40, 217, 0.12);

    transition: all 0.45s cubic-bezier(0.4,0,0.2,1);
}


.explore-footer .big {
    font-size: 26px;
    font-weight: 800;
    color: #6d28d9;
}

.explore-footer span:last-child {
    font-size: 14px;
    color: #475569;
}

@media (max-width: 1024px) {
    .explore-grid {
        grid-template-columns: 1fr;
    }
}
/* ================= EXPLORE SERVICES ANIMATION ================= */

.explore-card {
    transition: 
        transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.explore-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(109, 40, 217, 0.18);
}

.explore-footer {
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.explore-card:hover .explore-footer {
    transform: translateY(-4px);
}
.explore-card:hover .explore-footer {
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.7),
        0 14px 32px rgba(109, 40, 217, 0.18);
}
/* ===============================
   Awards / Recognition Section
================================ */

.awards-recognition-section {
    border-radius: 20px;
}

.awards-recognition-section img {
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.awards-recognition-section img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* button tweak */
.awards-recognition-section a {
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.awards-recognition-section img {
    filter: grayscale(100%);
    transition: transform 0.4s ease, filter 0.3s ease;
}

.awards-recognition-section img:hover {
    filter: grayscale(0%);
    transform: translateY(-6px) scale(1.04);
}



/* ===============================
   Awards Section – Desktop Animation
================================ */

/* initial hidden state (desktop only) */
@media (min-width: 1024px) {

    .js-awards .awards-subtitle,
    .js-awards .awards-title,
    .js-awards .awards-cta {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .js-awards .award-big {
        opacity: 0;
        transform: translateX(-40px) scale(0.95);
        transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .js-awards .award-small {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    }

    /* active state */
    .js-awards.is-visible .awards-subtitle,
    .js-awards.is-visible .awards-title,
    .js-awards.is-visible .awards-cta,
    .js-awards.is-visible .award-big,
    .js-awards.is-visible .award-small {
        opacity: 1;
        transform: none;
    }
}


