﻿/* ENQUIRY BUTTON — GLASS + PRIMARY THEME */
.enquiry-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    color: var(--primary);
    font-size: 0.9rem;
    /* Glass UI */
    background: rgba(20,185,140,0.08);
    border: 1px solid rgba(20,185,140,0.25);
    backdrop-filter: blur(10px);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

    /* Hover */
    .enquiry-btn:hover {
        color: var(--white);
        background: var(--primary);
        border-color: var(--primary);
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(20,185,140,.35);
        gap: 12px;
    }

    /* Soft Glow */
    .enquiry-btn::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: var(--radius);
        box-shadow: 0 0 0 0 rgba(20,185,140,0.4);
        transition: .4s ease;
    }

    .enquiry-btn:hover::after {
        box-shadow: 0 0 20px 4px rgba(20,185,140,0.25);
    }

/* Animation */
@keyframes slideLine {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.service-points {
    display: grid;
    gap: 12px;
}

.point {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--dark-3);
    background: rgba(20,185,140,0.06);
    border: 1px solid rgba(20,185,140,0.15);
    padding: 10px 14px;
    border-radius: var(--radius);
    transition: all var(--transition);
}

    /* Icon */
    .point i {
        color: var(--primary);
        font-size: 1rem;
    }

    /* Hover */
    .point:hover {
        background: rgba(20,185,140,0.12);
        transform: translateX(4px);
    }

.text-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    position: relative;
}

    /* underline animation */
    .text-link::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 0%;
        height: 1px;
        background: var(--primary);
        transition: width 0.3s ease;
    }

    .text-link:hover::after {
        width: 100%;
    }

/* TECH CARDS */
.tech-card {
    background: rgba(255,255,255,0.6);
    border: 1px solid rgba(20,185,140,0.12);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* ICON */
.tech-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: rgba(20,185,140,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    transition: all var(--transition);
}

/* TITLE */
.tech-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
}

/* TEXT */
.tech-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* HOVER EFFECT */
.tech-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(20,185,140,0.3);
}

    /* ICON HOVER */
    .tech-card:hover .tech-icon {
        background: var(--primary);
        color: #fff;
        transform: scale(1.1);
    }

/* SUBTLE GLOW */
.tech-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    box-shadow: 0 0 0 0 rgba(20,185,140,0.3);
    transition: .4s ease;
}

.tech-card:hover::after {
    box-shadow: 0 0 30px rgba(20,185,140,0.15);
}

/* REMOVE DEFAULT LINK LOOK */
.tech-card-link {
    text-decoration: none !important;
    display: block;
    height: 100%;
}

    /* REMOVE BLUE LINK STYLE FROM ALL TEXT INSIDE */
    .tech-card-link * {
        text-decoration: none !important;
    }

    /* FIX HOVER TEXT COLOR */
    .tech-card-link:hover {
        color: inherit;
    }

/* OPTIONAL: POINTER CURSOR */
.tech-card-link {
    cursor: pointer;
}

/* WHY SECTION CARDS */
.why-card {
    background: rgba(255,255,255,0.6);
    border-radius: var(--radius-lg);
    padding: 30px 25px;
    text-align: left;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(20,185,140,0.1);
    transition: all var(--transition);
    height: 100%;
    position: relative;
}

/* ICON STYLE */
.why-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background: rgba(20,185,140,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 15px;
    transition: all var(--transition);
}

/* TITLE */
.why-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

/* TEXT */
.why-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* UNIQUE HOVER (LEFT BORDER + SLIDE EFFECT) */
.why-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 0%;
    width: 4px;
    background: var(--primary);
    border-radius: 4px;
    transition: 0.4s ease;
}

.why-card:hover::before {
    height: 100%;
}

/* HOVER EFFECT */
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

    /* ICON LIFT */
    .why-card:hover .why-icon {
        transform: translateY(-3px) scale(1.05);
        background: var(--primary);
        color: #fff;
    }

/* CARD */
.testimonial-card-advanced {
    position: relative;
    border-radius: 14px;
    padding: 20px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    transition: 0.3s;
}

/* HEADER */
.testi-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.testi-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.testi-info h6 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
}

.testi-info span {
    font-size: 12px;
    color: #777;
}

.testi-rating {
    font-size: 13px;
    color: #f4b400;
    margin-top: 2px;
}

.testi-text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* REVIEW */
.testimonial-card-advanced p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* 🔥 NEW HOVER (More Premium & Stable) */
.testimonial-card-advanced:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* SUBTLE TOP LINE EFFECT */
.testimonial-card-advanced::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--primary);
    transition: 0.4s;
    border-radius: 3px;
}

.testimonial-card-advanced:hover::after {
    width: 100%;
}

/* SWIPER FIX */
.testimonialSwiper {
    padding: 10px 10px 50px;
    overflow: hidden;
}

    /* FIX SLIDE */
    .testimonialSwiper .swiper-slide {
        height: auto;
        display: flex;
    }

/* CARD FULL WIDTH */
.testimonial-card-advanced {
    width: 100%;
}

/* PAGINATION DOTS */
.swiper-pagination-bullet {
    background: rgba(20,185,140,0.4);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    width: 20px;
    border-radius: 10px;
}

/* FORCE SLIDE TO CENTER CONTENT */
.testimonialSwiper .swiper-wrapper {
    align-items: stretch;
}

.testimonialSwiper .swiper-slide {
    display: flex;
    align-items: center; /* vertical center */
    justify-content: center;
    height: auto;
    padding: 5px;
}

/* BASE NAV BUTTON STYLE */
.swiper-button-next,
.swiper-button-prev {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.85);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%) scale(1);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(20,185,140,0.2);
    color: var(--primary);
    transition: 0.3s;
}

    /* ICON SIZE */
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 16px;
        font-weight: bold;
    }

    /* HOVER */
    .swiper-button-next:hover,
    .swiper-button-prev:hover {
        background: var(--primary);
        color: #fff;
        transform: translateY(-50%) scale(1.1); /* 🔥 FIX */
    }

.swiper-button-next,
.swiper-button-prev {
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

/* =========================
   DESKTOP POSITION (OUTSIDE)
   ========================= */
/* DESKTOP - PERFECT OUTSIDE */
@media (min-width: 992px) {

    .testimonialSwiper {
        position: relative;
        padding: 10px 50px 60px;
    }

    .swiper-button-prev {
        left: 10px;
    }

    .swiper-button-next {
        right: 10px;
    }
}

/* =========================
   MOBILE OPTIMIZATION
   ========================= */
@media (max-width: 991px) {

    .testimonialSwiper {
        padding: 10px 10px 50px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 32px;
        height: 32px;
        top: 52%;
    }

    .swiper-button-prev {
        left: 0;
    }

    .swiper-button-next {
        right: 0;
    }
}

/* =========================
EQUAL HEIGHT FIX (ADD LAST)
========================= */

/* Make slide stretch properly */
.testimonialSwiper .swiper-slide {
    display: flex;
    height: auto;
}

/* Make card full height + flex layout */
.testimonial-card-advanced {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Keep header fixed */
.testi-header {
    flex-shrink: 0;
}

/* Clamp text to equalize height */
.testi-text {
    display: -webkit-box;
    -webkit-line-clamp: 5; /* 🔧 change 4–6 if needed */
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}


.faq-wrapper {
    max-width: 100%;
    padding-right: 20px;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 15px 0;
    text-align: left;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

    .faq-question span {
        font-size: 18px;
        transition: 0.3s;
    }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease;
    font-size: 14px;
    color: #555;
}

/* ACTIVE */
.faq-item.active .faq-answer {
    max-height: 120px;
    padding-bottom: 10px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

/* IMAGE */
.faq-img {
    max-width: 90%;
    border-radius: 12px;
    transition: 0.4s ease;
}

    .faq-img:hover {
        transform: translateY(-8px) scale(1.02);
    }

@media (max-width: 991px) {
    .faq-wrapper {
        padding-right: 0;
        margin-bottom: 30px;
    }
}

.cta-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark), var(--dark-2));
    padding: 70px 25px;
    border-radius: var(--radius-lg);
    margin: 60px 0;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(20,185,140,0.15);
}

    /* subtle glow accents */
    .cta-section::before,
    .cta-section::after {
        content: "";
        position: absolute;
        width: 260px;
        height: 260px;
        background: var(--primary);
        filter: blur(100px);
        opacity: 0.12;
        border-radius: 50%;
        z-index: 0;
    }

    .cta-section::before {
        top: -80px;
        left: -80px;
    }

    .cta-section::after {
        bottom: -100px;
        right: -100px;
    }

    /* ensure content above glow */
    .cta-section * {
        position: relative;
        z-index: 1;
    }

    /* TITLE */
    .cta-section h2 {
        font-family: var(--font-display);
        font-weight: 800;
        font-size: 2.1rem;
        color: var(--white);
        margin-bottom: 12px;
        letter-spacing: -0.4px;
    }

    /* PARAGRAPH */
    .cta-section p {
        color: var(--text-muted);
        font-size: 1.05rem;
        max-width: 650px;
        margin: 0 auto 26px;
        line-height: 1.7;
    }

/* BUTTON */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: var(--transition);
    box-shadow: 0 0 0 rgba(20,185,140,0);
    position: relative;
    overflow: hidden;
}

    /* BUTTON HOVER - GLOW PULSE */
    .cta-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 0 25px rgba(20,185,140,0.45);
        background: var(--primary-dark);
    }

    /* animated shine effect */
    .cta-btn::after {
        content: "";
        position: absolute;
        top: 0;
        left: -120%;
        width: 60%;
        height: 100%;
        background: linear-gradient( 120deg, transparent, rgba(255,255,255,0.25), transparent );
        transform: skewX(-20deg);
    }

    .cta-btn:hover::after {
        animation: shine 0.9s ease;
    }

@keyframes shine {
    0% {
        left: -120%;
    }

    100% {
        left: 140%;
    }
}

/* ICON */
.cta-btn i {
    transition: transform var(--transition);
}

.cta-btn:hover i {
    transform: translateX(6px);
}

/* CONTACT INFO */
.cta-contact {
    margin-top: 18px;
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

    .cta-contact span {
        padding: 7px 14px;
        background: rgba(255,255,255,0.04);
        border: 1px solid rgba(20,185,140,0.15);
        border-radius: 999px;
        transition: var(--transition);
    }

        .cta-contact span:hover {
            background: var(--primary-light);
            color: var(--dark);
            transform: translateY(-2px);
        }
