

    .hero-section{
    background: #130426;
    padding:140px 140px 50px 140px;
    overflow:hidden;
}

.hero-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.hero-text{
    flex:1;
}

.hero-tag{
    display:inline-block;
    background:#8a0ffb;
    color:#000;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.hero-text h1{
    color:#fff;
    font-size:41px;
    line-height:1.1;
    font-weight:800;
    margin-bottom:25px;
}

.hero-text p{
    color:#d9d9d9;
    font-size:18px;
    text-align:justify;
    line-height:1.8;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn-primary{
    background:#8a0ffb;
    color:#000;
    padding:14px 30px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.btn-primary:hover{
    background:#fff;
}

.btn-secondary{
    border:2px solid #8a0ffb;
    color:#8a0ffb;
    padding:14px 30px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.btn-secondary:hover{
    background:#8a0ffb;
    color:#000;
}

.hero-image{
    flex:1;
    text-align:center;
}

.hero-image img{
    width:100%;
    max-width:550px;
    height:auto;
    border:3px solid #8a0ffb;
    border-radius:20px;
    padding:10px;
    background:#111;
    box-shadow:
        0 0 10px rgba(138, 15, 251, .4),
        0 0 20px rgba(138, 15, 251, .3),
        0 0 30px rgba(138, 15, 251, .2);
    transition:all .3s ease;
}
.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.hero-buttons a{
    min-width:220px;
    text-align:center;
}
.hero-image img:hover{
    transform:translateY(-5px);
    box-shadow:
        0 0 15px rgba(138, 15, 251, .5),
        0 0 30px rgba(138, 15, 251, .4),
        0 0 45px rgba(138, 15, 251, .3);
}

/* Large Tablet */
@media (max-width: 1199px){

    .hero-section{
        padding:130px 60px 50px 60px;
    }

    .hero-text h1{
        font-size:40px;
    }
}

/* Tablet */
@media (max-width: 991px){

    .hero-section{
        padding:130px 40px 50px 40px;
    }

    .hero-content{
        flex-direction:column;
        text-align:center;
        gap:40px;
    }

    .hero-text{
        order:1;
    }

    .hero-image{
        order:2;
    }

    .hero-text h1{
        font-size:42px;
    }

   
    .hero-buttons{
        justify-content:center;
    }

   .hero-image{
        display:none;
    }
}

/* Mobile */
@media (max-width: 767px){

    .hero-section{
        padding:130px 20px 50px 20px;
    }

    .hero-text h1{
        font-size:34px;
    }

    .hero-text p{
        font-size:16px;
        line-height:1.7;
    }

    .hero-buttons{
        flex-direction:column;
        width:100%;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        text-align:center;
    }

    .hero-image img{
        max-width:100%;
    }
    .hero-buttons{
        flex-direction:column;
        width:100%;
        align-items:center;
    }

    .hero-buttons a{
        width:100%;
        max-width:320px;
        min-width:320px;
        text-align:center;
    }
    .hero-image{
        display:none;
    }

}

/* Small Mobile */
@media (max-width: 480px){

    .hero-section{
        padding:130px 15px 50px 15px;
    }

    .hero-text h1{
        font-size:28px;
    }

    .hero-tag{
        font-size:12px;
        padding:6px 14px;
    }

    .hero-text p{
        font-size:15px;
    }
    .hero-image{
        display:none;
    }

}
      


.consult-btn{
    display:inline-block;
    background:#8a0ffb;
    color:#000;
    padding:15px 35px;
    border-radius:50px;
    font-size:18px;
    font-weight:700;
    text-decoration:none;
    transition:.2s;
}

.consult-btn:hover{
    background:#fff;
    color:#8a0ffb;
    border:1px solid #8a0ffb;
}



    .digital-services{
    padding:60px 0;
    background:var(--navy);
}

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

.digital-card{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
    display:flex;
    flex-direction:column;
    height:100%;
    min-height:480px;
}

.digital-card:hover{
    transform:translateY(-8px);
}

.digital-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    flex-shrink:0;
}

.digital-content{
    padding:25px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.digital-content h3{
    font-size:22px;
    font-weight:700;
    color:#222;
    margin-bottom:12px;
    min-height:30px;
    line-height:1.3;
}

.digital-content p{
    color:#666;
    line-height:1.65;
    text-align:justify;
    text-justify:inter-word;
    margin-bottom:20px;
    flex:1;
    font-size:15px;
    min-height:75px;
}

.digital-btns{
    display:flex !important;
    flex-direction:row !important;
    gap:10px !important;
    justify-content:space-between !important;
    margin-top:auto !important;
    width:100% !important;
    flex-shrink:0 !important;
}
                /* =====================================================
       MAIN HERO SECTION
    ===================================================== */

                .trichy-web-hero {
                    --hero-violet: #8a0ffb;
                    --hero-violet-light: #b967ff;
                    --hero-white: #ffffff;
                    --hero-muted: rgba(255, 255, 255, 0.76);

                    position: relative;
                    isolation: isolate;
                    min-height: 100vh;
                    padding: 110px 0 50px;
                    overflow: hidden;
                    background-color: #130426;
                }

                /* Background image */

                .trichy-web-hero::before {
                    position: absolute;
                    inset: 0;
                    z-index: -4;
                    content: "";
                    background-image: var(--trichy-hero-bg);
                    background-repeat: no-repeat;
                    background-position: center;
                    background-size: cover;
                    transform: scale(1.02);
                    animation: trichyHeroBackground 18s ease-in-out infinite alternate;
                }

                /* Dark overlay */

                .trichy-web-hero__overlay {
                    position: absolute;
                    inset: 0;
                    z-index: -3;
                    pointer-events: none;
                    background:
                        linear-gradient(90deg,
                            rgba(0, 0, 0, 0.97) 0%,
                            rgba(0, 0, 0, 0.9) 32%,
                            rgba(0, 0, 0, 0.62) 55%,
                            rgba(0, 0, 0, 0.18) 100%),
                        linear-gradient(180deg,
                            rgba(0, 0, 0, 0.2) 0%,
                            rgba(0, 0, 0, 0.04) 55%,
                            rgba(0, 0, 0, 0.88) 100%);
                }

                .trichy-web-hero::after {
                    position: absolute;
                    right: 0;
                    bottom: -220px;
                    left: 0;
                    z-index: -2;
                    height: 440px;
                    content: "";
                    pointer-events: none;
                    background: rgba(138, 15, 251, 0.12);
                    filter: blur(120px);
                }

                /* Decorative glows */

                .trichy-web-hero__glow {
                    position: absolute;
                    z-index: -1;
                    pointer-events: none;
                    border-radius: 50%;
                    filter: blur(110px);
                }

                .trichy-web-hero__glow--one {
                    top: 10%;
                    right: 6%;
                    width: 420px;
                    height: 420px;
                    background: rgba(138, 15, 251, 0.15);
                    animation: trichyHeroGlow 7s ease-in-out infinite alternate;
                }

                .trichy-web-hero__glow--two {
                    bottom: 8%;
                    left: 30%;
                    width: 360px;
                    height: 280px;
                    background: rgba(113, 0, 220, 0.12);
                }

                /* Container */

                .trichy-web-hero__container {
                    position: relative;
                    z-index: 2;
                    width: min(100% - 40px, 1460px);
                    margin-inline: auto;
                    padding-left: clamp(25px, 5vw, 70px);
                    padding-right: clamp(15px, 2vw, 30px);
                }

                /* Content */

                .trichy-web-hero__content {
                    width: 100%;
                    max-width: 720px;
                    min-height: 640px;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                }

                /* Badge */

                .trichy-web-hero__badge {
                    display: inline-flex;
                    align-items: center;
                    align-self: flex-start;
                    gap: 11px;
                    margin-bottom: 23px;
                    padding: 11px 17px;
                    color: rgba(255, 255, 255, 0.92);
                    font-size: 13px;
                    font-weight: 700;
                    line-height: 1;
                    letter-spacing: 0.7px;
                    text-transform: uppercase;
                    background: rgba(8, 5, 12, 0.72);
                    border: 1px solid rgba(138, 15, 251, 0.8);
                    border-radius: 10px;
                    box-shadow: 0 0 25px rgba(138, 15, 251, 0.12);
                    backdrop-filter: blur(14px);
                    -webkit-backdrop-filter: blur(14px);
                    animation: trichyHeroFadeDown 0.7s ease both;
                }

                .trichy-web-hero__badge-dot {
                    width: 8px;
                    height: 8px;
                    flex: 0 0 8px;
                    background: var(--hero-violet);
                    border-radius: 50%;
                    box-shadow: 0 0 12px var(--hero-violet);
                }

                /* Title */

                .trichy-web-hero__title {
                    margin: 0;
                    color: var(--hero-white);
                    font-size: clamp(50px, 5vw, 76px);
                    font-weight: 800;
                    line-height: 1.05;
                    letter-spacing: -3px;
                    text-wrap: balance;
                    text-shadow: 0 12px 35px rgba(0, 0, 0, 0.72);
                    animation: trichyHeroFadeUp 0.8s 0.08s ease both;
                }

                .trichy-web-hero__title span {
                    display: block;
                    color: transparent;
                    background: linear-gradient(90deg,
                            #7720f5 0%,
                            #b24cff 50%,
                            #7f12f7 100%);
                    background-clip: text;
                    -webkit-background-clip: text;
                    filter: drop-shadow(0 0 20px rgba(138, 15, 251, 0.18));
                }

                /* Subtitle */

                .trichy-web-hero__subtitle {
                    position: relative;
                    margin: 24px 0 0;
                    padding-bottom: 17px;
                    color: rgba(255, 255, 255, 0.92);
                    font-size: clamp(22px, 2vw, 29px);
                    font-weight: 500;
                    line-height: 1.3;
                    animation: trichyHeroFadeUp 0.8s 0.16s ease both;
                }

                .trichy-web-hero__subtitle::after {
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    width: 410px;
                    max-width: 100%;
                    height: 2px;
                    content: "";
                    background: linear-gradient(90deg,
                            var(--hero-violet),
                            rgba(255, 255, 255, 0.72),
                            transparent);
                    box-shadow: 0 0 16px rgba(138, 15, 251, 0.75);
                }

                /* Description */

                .trichy-web-hero__description {
                    max-width: 650px;
                    margin: 20px 0 0;
                    color: var(--hero-muted);
                    font-size: 16px;
                    font-weight: 400;
                    line-height: 1.75;
                    text-align: justify;
                    text-justify: inter-word;
                    animation: trichyHeroFadeUp 0.8s 0.24s ease both;
                }

                .trichy-web-hero__description strong {
                    color: var(--hero-violet-light);
                    font-weight: 700;
                }

                /* Services */

                .trichy-web-hero__services {
                    display: grid;
                    grid-template-columns: repeat(5, minmax(0, 1fr));
                    gap: 15px;
                    margin-top: 30px;
                    animation: trichyHeroFadeUp 0.8s 0.32s ease both;
                }

                .trichy-web-hero__service {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    gap: 10px;
                    min-width: 0;
                    color: rgba(255, 255, 255, 0.86);
                    text-align: center;
                }

                .trichy-web-hero__service-icon {
                    display: grid;
                    width: 64px;
                    height: 64px;
                    place-items: center;
                    color: var(--hero-violet-light);
                    background: rgba(8, 5, 13, 0.68);
                    border: 1px solid rgba(153, 55, 255, 0.36);
                    border-radius: 14px;
                    box-shadow:
                        inset 0 0 20px rgba(138, 15, 251, 0.05),
                        0 8px 24px rgba(0, 0, 0, 0.28);
                    backdrop-filter: blur(12px);
                    -webkit-backdrop-filter: blur(12px);
                    transition:
                        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                        border-color 0.4s ease,
                        box-shadow 0.4s ease;
                }

                .trichy-web-hero__service:hover .trichy-web-hero__service-icon {
                    border-color: rgba(169, 61, 255, 0.8);
                    transform: translateY(-5px);
                    box-shadow:
                        0 12px 28px rgba(138, 15, 251, 0.2),
                        0 0 20px rgba(138, 15, 251, 0.16);
                }

                .trichy-web-hero__service-icon svg {
                    width: 28px;
                    height: 28px;
                    fill: none;
                    stroke: currentColor;
                    stroke-width: 1.7;
                    stroke-linecap: round;
                    stroke-linejoin: round;
                }

                .trichy-web-hero__service>span {
                    font-size: 12px;
                    font-weight: 500;
                    line-height: 1.35;
                }

                /* Buttons */

                .trichy-web-hero__buttons {
                    display: flex;
                    flex-wrap: wrap;
                    align-items: center;
                    gap: 18px;
                    margin-top: 35px;
                    animation: trichyHeroFadeUp 0.8s 0.4s ease both;
                }

                .trichy-web-hero__primary-btn,
                .trichy-web-hero__secondary-btn {
                    position: relative;
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    gap: 13px;
                    min-height: 57px;
                    padding: 16px 29px;
                    overflow: hidden;
                    color: #ffffff;
                    font-size: 15px;
                    font-weight: 700;
                    line-height: 1;
                    text-decoration: none;
                    border-radius: 50px;
                    transform: translate3d(0, 0, 0);
                    transition:
                        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
                        border-color 0.45s ease,
                        box-shadow 0.45s ease,
                        background 0.45s ease;
                }

                .trichy-web-hero__primary-btn span,
                .trichy-web-hero__secondary-btn span,
                .trichy-web-hero__primary-btn svg,
                .trichy-web-hero__secondary-btn svg {
                    position: relative;
                    z-index: 2;
                }

                .trichy-web-hero__primary-btn svg,
                .trichy-web-hero__secondary-btn svg {
                    width: 20px;
                    height: 20px;
                    flex-shrink: 0;
                    fill: none;
                    stroke: currentColor;
                    stroke-width: 2;
                    stroke-linecap: round;
                    stroke-linejoin: round;
                    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
                }

                .trichy-web-hero__primary-btn {
                    background: linear-gradient(135deg,
                            #7618f2 0%,
                            #9c35ff 55%,
                            #ba6cff 100%);
                    border: 1px solid rgba(201, 136, 255, 0.9);
                    box-shadow:
                        0 12px 34px rgba(138, 15, 251, 0.34),
                        0 0 28px rgba(138, 15, 251, 0.2);
                }

                .trichy-web-hero__primary-btn::before,
                .trichy-web-hero__secondary-btn::before {
                    position: absolute;
                    inset: 0;
                    z-index: 1;
                    content: "";
                    background: linear-gradient(120deg,
                            transparent 20%,
                            rgba(255, 255, 255, 0.3) 50%,
                            transparent 80%);
                    transform: translateX(-130%);
                    transition: transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
                }

                .trichy-web-hero__primary-btn:hover::before,
                .trichy-web-hero__secondary-btn:hover::before {
                    transform: translateX(130%);
                }

                .trichy-web-hero__secondary-btn {
                    background: rgba(5, 4, 8, 0.72);
                    border: 1px solid rgba(138, 15, 251, 0.9);
                    backdrop-filter: blur(14px);
                    -webkit-backdrop-filter: blur(14px);
                }

                .trichy-web-hero__primary-btn:hover,
                .trichy-web-hero__secondary-btn:hover {
                    color: #ffffff;
                    transform: translateY(-5px);
                    border-color: #b967ff;
                    box-shadow:
                        0 18px 40px rgba(138, 15, 251, 0.36),
                        0 0 30px rgba(138, 15, 251, 0.2);
                }

                .trichy-web-hero__primary-btn:hover svg,
                .trichy-web-hero__secondary-btn:hover svg {
                    transform: translateX(5px);
                }

                .trichy-web-hero__primary-btn:active,
                .trichy-web-hero__secondary-btn:active {
                    transform: translateY(-1px) scale(0.985);
                }

                /* Statistics */

                .trichy-web-hero__stats {
                    display: grid;
                    grid-template-columns: repeat(4, minmax(0, 1fr));
                    margin-top: 45px;
                    padding: 27px 30px;
                    background: linear-gradient(100deg,
                            rgba(138, 15, 251, 0.12),
                            rgba(7, 4, 12, 0.82),
                            rgba(138, 15, 251, 0.1));
                    border: 1px solid rgba(138, 15, 251, 0.42);
                    border-radius: 15px;
                    box-shadow:
                        inset 0 0 34px rgba(138, 15, 251, 0.05),
                        0 18px 45px rgba(0, 0, 0, 0.34);
                    backdrop-filter: blur(16px);
                    -webkit-backdrop-filter: blur(16px);
                    animation: trichyHeroFadeUp 0.9s 0.5s ease both;
                }

                .trichy-web-hero__stat {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 16px;
                    padding: 0 25px;
                    border-right: 1px solid rgba(255, 255, 255, 0.12);
                }

                .trichy-web-hero__stat:last-child {
                    border-right: 0;
                }

                .trichy-web-hero__stat-icon {
                    display: grid;
                    width: 42px;
                    height: 42px;
                    flex: 0 0 42px;
                    place-items: center;
                    color: var(--hero-violet-light);
                }

                .trichy-web-hero__stat-icon svg {
                    width: 31px;
                    height: 31px;
                    fill: none;
                    stroke: currentColor;
                    stroke-width: 1.7;
                    stroke-linecap: round;
                    stroke-linejoin: round;
                }

                .trichy-web-hero__stat>div:last-child {
                    display: flex;
                    flex-direction: column;
                    gap: 5px;
                }

                .trichy-web-hero__stat strong {
                    color: #ffffff;
                    font-size: 25px;
                    font-weight: 700;
                    line-height: 1;
                }

                .trichy-web-hero__stat span {
                    color: rgba(255, 255, 255, 0.68);
                    font-size: 13px;
                    line-height: 1.3;
                }

                /* Animations */

                @keyframes trichyHeroFadeDown {
                    from {
                        opacity: 0;
                        transform: translateY(-22px);
                    }

                    to {
                        opacity: 1;
                        transform: translateY(0);
                    }
                }

                @keyframes trichyHeroFadeUp {
                    from {
                        opacity: 0;
                        transform: translateY(32px);
                    }

                    to {
                        opacity: 1;
                        transform: translateY(0);
                    }
                }

                @keyframes trichyHeroGlow {
                    from {
                        opacity: 0.65;
                        transform: scale(0.95);
                    }

                    to {
                        opacity: 1;
                        transform: scale(1.08);
                    }
                }

                @keyframes trichyHeroBackground {
                    from {
                        transform: scale(1.02) translate3d(0, 0, 0);
                    }

                    to {
                        transform: scale(1.06) translate3d(-8px, -4px, 0);
                    }
                }

                /* Laptop */

                @media screen and (max-width: 1280px) {
                    .trichy-web-hero {
                        padding-top: 100px;
                    }

                    .trichy-web-hero::before {
                        background-position: 62% center;
                    }

                    .trichy-web-hero__content {
                        max-width: 680px;
                    }

                    .trichy-web-hero__title {
                        font-size: clamp(47px, 5vw, 67px);
                    }

                    .trichy-web-hero__stats {
                        padding-inline: 18px;
                    }

                    .trichy-web-hero__stat {
                        padding-inline: 18px;
                    }
                }

                /* Tablet */

                @media screen and (max-width: 991px) {
                    .trichy-web-hero {
                        min-height: auto;
                        padding: 95px 0 45px;
                    }

                    .trichy-web-hero::before {
                        background-position: 66% center;
                    }

                    .trichy-web-hero__overlay {
                        background:
                            linear-gradient(90deg,
                                rgba(0, 0, 0, 0.96) 0%,
                                rgba(0, 0, 0, 0.86) 58%,
                                rgba(0, 0, 0, 0.46) 100%),
                            linear-gradient(180deg,
                                rgba(0, 0, 0, 0.24),
                                rgba(0, 0, 0, 0.9));
                    }

                    .trichy-web-hero__content {
                        min-height: auto;
                        max-width: 680px;
                    }

                    .trichy-web-hero__title {
                        font-size: clamp(45px, 8vw, 65px);
                    }

                    .trichy-web-hero__stats {
                        grid-template-columns: repeat(2, minmax(0, 1fr));
                        gap: 28px 0;
                    }

                    .trichy-web-hero__stat:nth-child(2) {
                        border-right: 0;
                    }
                }

                /* Mobile */

                /* Mobile */

                @media screen and (max-width: 767px) {
                    .trichy-web-hero {
                        padding: 82px 0 35px;
                    }

                    .trichy-web-hero::before {
                        background-position: 72% center;
                        transform: none;
                        animation: none;
                    }

                    .trichy-web-hero__overlay {
                        background:
                            linear-gradient(180deg,
                                rgba(0, 0, 0, 0.88) 0%,
                                rgba(0, 0, 0, 0.93) 45%,
                                rgba(0, 0, 0, 0.98) 100%),
                            linear-gradient(90deg,
                                rgba(0, 0, 0, 0.9),
                                rgba(0, 0, 0, 0.58));
                    }

                    .trichy-web-hero__container {
                        width: min(100% - 30px, 1460px);
                        padding-left: 0;
                        padding-right: 0;
                    }

                    .trichy-web-hero__badge {
                        margin-bottom: 20px;
                        padding: 10px 14px;
                        font-size: 11px;
                    }

                    .trichy-web-hero__title {
                        font-size: clamp(38px, 11vw, 53px);
                        line-height: 1.08;
                        letter-spacing: -1.8px;
                    }

                    .trichy-web-hero__subtitle {
                        margin-top: 20px;
                        font-size: clamp(20px, 5.7vw, 26px);
                    }

                    .trichy-web-hero__description {
                        font-size: 15px;
                        line-height: 1.72;
                        text-align: left;
                    }

                    /* 5 Services: Row 1 has 3 items, Row 2 has 2 items centered */
                    .trichy-web-hero__services {
                        display: flex !important;
                        flex-wrap: wrap !important;
                        justify-content: center !important;
                        gap: 16px 12px !important;
                        margin-top: 28px !important;
                    }

                    .trichy-web-hero__service {
                        flex: 0 0 calc(33.333% - 10px) !important;
                        max-width: calc(33.333% - 10px) !important;
                        display: flex !important;
                        flex-direction: column !important;
                        align-items: center !important;
                    }

                    .trichy-web-hero__service-icon {
                        width: 56px;
                        height: 56px;
                    }

                    .trichy-web-hero__buttons {
                        gap: 14px;
                        margin-top: 30px;
                    }

                    .trichy-web-hero__primary-btn,
                    .trichy-web-hero__secondary-btn {
                        min-height: 54px;
                        padding: 15px 23px;
                        font-size: 14px;
                    }

                    /* Stats: 2x2 Grid (Row 1 has 2, Row 2 has 2) */
                    .trichy-web-hero__stats {
                        display: grid !important;
                        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
                        gap: 16px 12px !important;
                        margin-top: 35px !important;
                        padding: 20px 16px !important;
                    }

                    .trichy-web-hero__stat {
                        display: flex !important;
                        align-items: center !important;
                        justify-content: flex-start !important;
                        gap: 10px !important;
                        padding: 6px 4px !important;
                        border-right: 0 !important;
                        border-bottom: 0 !important;
                    }

                    .trichy-web-hero__stat-icon {
                        width: 36px !important;
                        height: 36px !important;
                        flex: 0 0 36px !important;
                    }

                    .trichy-web-hero__stat-icon svg {
                        width: 26px !important;
                        height: 26px !important;
                    }

                    .trichy-web-hero__stat strong {
                        font-size: 19px !important;
                    }

                    .trichy-web-hero__stat span {
                        font-size: 11.5px !important;
                    }
                }

                /* Small mobile */

                @media screen and (max-width: 480px) {
                    .trichy-web-hero {
                        padding-top: 74px;
                    }

                    .trichy-web-hero__before {
                        background-position: 76% top;
                    }

                    .trichy-web-hero__container {
                        width: min(100% - 24px, 1460px);
                    }

                    .trichy-web-hero__title {
                        font-size: clamp(34px, 10.8vw, 43px);
                    }

                    /* 5 Services: Row 1 = 3, Row 2 = 2 centered */
                    .trichy-web-hero__services {
                        display: flex !important;
                        flex-wrap: wrap !important;
                        justify-content: center !important;
                        gap: 14px 8px !important;
                    }

                    .trichy-web-hero__service {
                        flex: 0 0 calc(33.333% - 6px) !important;
                        max-width: calc(33.333% - 6px) !important;
                    }

                    .trichy-web-hero__service-icon {
                        width: 50px !important;
                        height: 50px !important;
                    }

                    .trichy-web-hero__service-icon svg {
                        width: 24px !important;
                        height: 24px !important;
                    }

                    .trichy-web-hero__service>span {
                        font-size: 11px !important;
                    }

                    .trichy-web-hero__buttons {
                        flex-direction: column;
                        width: 100%;
                    }

                    .trichy-web-hero__primary-btn,
                    .trichy-web-hero__secondary-btn {
                        width: 100%;
                    }

                    /* Stats: 2x2 Grid */
                    .trichy-web-hero__stats {
                        display: grid !important;
                        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
                        gap: 14px 8px !important;
                        padding: 16px 12px !important;
                    }

                    .trichy-web-hero__stat {
                        gap: 8px !important;
                        padding: 4px 2px !important;
                    }

                    .trichy-web-hero__stat-icon {
                        width: 32px !important;
                        height: 32px !important;
                        flex: 0 0 32px !important;
                    }

                    .trichy-web-hero__stat-icon svg {
                        width: 22px !important;
                        height: 22px !important;
                    }

                    .trichy-web-hero__stat strong {
                        font-size: 17px !important;
                    }

                    .trichy-web-hero__stat span {
                        font-size: 11px !important;
                    }
                }

                /* Very small mobile */

                @media screen and (max-width: 360px) {
                    .trichy-web-hero__title {
                        font-size: 32px;
                    }

                    .trichy-web-hero__description {
                        font-size: 14px;
                    }

                    .trichy-web-hero__service>span {
                        font-size: 10.5px;
                    }
                }

                /* Accessibility */

                @media (prefers-reduced-motion: reduce) {

                    .trichy-web-hero::before,
                    .trichy-web-hero__glow,
                    .trichy-web-hero__badge,
                    .trichy-web-hero__title,
                    .trichy-web-hero__subtitle,
                    .trichy-web-hero__description,
                    .trichy-web-hero__services,
                    .trichy-web-hero__buttons,
                    .trichy-web-hero__stats {
                        animation: none;
                    }

                    .trichy-web-hero__primary-btn,
                    .trichy-web-hero__secondary-btn,
                    .trichy-web-hero__primary-btn::before,
                    .trichy-web-hero__secondary-btn::before,
                    .trichy-web-hero__service-icon {
                        transition: none;
                    }
                }

                /* =====================================================
                   HOME PAGE MOBILE RESPONSIVE ENHANCEMENTS
                ===================================================== */
                /* Customer Journey Grid - DESKTOP (6 columns in 1 row) */
                .customer-journey-col {
                    flex: 0 0 16.666667% !important;
                    max-width: 16.666667% !important;
                    width: 16.666667% !important;
                    box-sizing: border-box !important;
                }

                .about-question-container {
                    background: #130426;
                    border-radius: 24px;
                    padding: 36px 30px;
                    margin-left: 0;
                    margin-right: 0;
                    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
                    border: 1px solid rgba(255,255,255,0.08);
                }

                .about-question-title {
                    font-size: 32px;
                    font-weight: 800;
                    color: #ffffff;
                    margin-top: 4px;
                    line-height: 1.3;
                }

                .about-question-desc {
                    color: #cbd5e1;
                    font-size: 16px;
                    line-height: 1.75;
                    text-align: justify;
                    text-justify: inter-word;
                    margin-top: 14px;
                    margin-bottom: 0;
                }

                @media screen and (max-width: 991px) {
                    .about-multi-image-wrapper {
                        padding: 30px 10px 20px 10px !important;
                        max-width: 520px;
                        margin: 0 auto 30px auto;
                    }
                    .about-content-block {
                        padding-left: 0 !important;
                        margin-top: 15px;
                    }
                    .strategic-foundations-container {
                        padding: 30px 18px !important;
                        border-radius: 18px !important;
                    }
                    .customer-journey-col {
                        flex: 0 0 33.333333% !important;
                        max-width: 33.333333% !important;
                        width: 33.333333% !important;
                    }
                }

                @media screen and (max-width: 767px) {
                    .about-question-container {
                        padding: 24px 18px !important;
                        border-radius: 18px !important;
                    }
                    .about-question-title {
                        font-size: 22px !important;
                        line-height: 1.35 !important;
                    }
                    .about-question-desc {
                        font-size: 14.5px !important;
                        line-height: 1.65 !important;
                    }
                    .about-multi-image-wrapper {
                        padding: 24px 0 10px 0 !important;
                        max-width: 100% !important;
                        margin: 0 auto 25px auto !important;
                    }
                    .about-floating-badge {
                        top: -12px !important;
                        left: 4px !important;
                        padding: 8px 14px !important;
                        border-radius: 14px !important;
                        gap: 8px !important;
                        z-index: 4 !important;
                    }
                    .about-floating-badge > div:first-child {
                        font-size: 20px !important;
                    }
                    .about-floating-badge > div:last-child {
                        font-size: 10.5px !important;
                    }
                    .about-rating-pill {
                        top: 12px !important;
                        right: 10px !important;
                        bottom: auto !important;
                        padding: 6px 12px !important;
                        font-size: 11.5px !important;
                        z-index: 4 !important;
                    }
                    .about-img-primary {
                        border-radius: 18px !important;
                        border-width: 2px !important;
                    }
                    .about-img-primary img {
                        height: 280px !important;
                        object-fit: cover !important;
                    }
                    .about-img-secondary {
                        display: none !important;
                    }
                    .home-process-grid {
                        display: grid !important;
                        grid-template-columns: 1fr !important;
                        gap: 16px !important;
                    }
                    .ratings-grid {
                        display: flex !important;
                        flex-direction: column !important;
                        align-items: center !important;
                        gap: 22px !important;
                        max-width: 340px !important;
                        width: 100% !important;
                        margin: 35px auto 0 auto !important;
                        padding: 0 !important;
                    }
                    .rating-card {
                        background: transparent !important;
                        border: none !important;
                        box-shadow: none !important;
                        padding: 0 !important;
                        width: 100% !important;
                        max-width: 340px !important;
                        min-height: auto !important;
                        display: flex !important;
                        align-items: center !important;
                        justify-content: center !important;
                        transition: transform 0.3s ease !important;
                    }
                    .rating-card:hover {
                        transform: translateY(-4px) !important;
                    }
                    .rating-card img {
                        width: 100% !important;
                        max-width: 340px !important;
                        height: auto !important;
                        max-height: none !important;
                        display: block !important;
                        border-radius: 28px !important;
                        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45) !important;
                    }
                    .customer-journey-col {
                        flex: 0 0 50% !important;
                        max-width: 50% !important;
                        width: 50% !important;
                    }
                    .customer-journey-col > div {
                        padding: 14px 10px !important;
                    }
                }

                @media screen and (max-width: 480px) {
                    .about-question-title {
                        font-size: 20px !important;
                    }
                    .customer-journey-col {
                        flex: 0 0 50% !important;
                        max-width: 50% !important;
                        width: 50% !important;
                    }
                    .customer-journey-col h5 {
                        font-size: 14.5px !important;
                    }
                    .customer-journey-col p {
                        font-size: 12px !important;
                        line-height: 1.35 !important;
                    }
                    .ratings-grid {
                        max-width: 320px !important;
                        gap: 18px !important;
                    }
                    .rating-card {
                        max-width: 320px !important;
                    }
                    .rating-card img {
                        max-width: 320px !important;
                        border-radius: 24px !important;
                    }
                }

.digital-view-btn{
    background:#8a0ffb;
    color:#fff !important;
    padding:11px 12px;
    text-align:center;
    border-radius:10px;
    text-decoration:none !important;
    font-weight:600;
    font-size:14px;
    flex:1 1 50% !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    gap:6px;
    white-space:nowrap;
    transition:.3s;
}

.digital-view-btn:hover{
    background:white;
    color:#8a0ffb !important;
    border:1px solid #8a0ffb;
}

.digital-call-btn{
    text-align:center;
    background:#111;
    color:#fff !important;
    padding:11px 12px;
    border-radius:10px;
    text-decoration:none !important;
    font-weight:600;
    font-size:14px;
    flex:1 1 50% !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    gap:6px;
    white-space:nowrap;
    transition:.3s;
}

.digital-call-btn:hover{
    background:#333;
}

/* ============================================
   ANIMATIONS & DYNAMIC BUTTON EFFECTS
============================================ */
@keyframes btnGlowPulse {
    0% { box-shadow: 0 0 0 0 rgba(138, 15, 251, 0.5); }
    70% { box-shadow: 0 0 0 16px rgba(138, 15, 251, 0); }
    100% { box-shadow: 0 0 0 0 rgba(138, 15, 251, 0); }
}

@keyframes shimmerEffect {
    0% { transform: translateX(-150%); }
    50%, 100% { transform: translateX(150%); }
}

.digital-all-btn {
    text-align: center;
    margin-top: 45px;
}

.digital-all-btn a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #7618f2 0%, #9c35ff 55%, #ba6cff 100%);
    color: #ffffff !important;
    padding: 16px 38px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(138, 15, 251, 0.35);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    animation: btnGlowPulse 2.8s infinite ease-in-out;
}

.digital-all-btn a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.35) 50%, transparent 80%);
    transform: translateX(-150%);
    transition: 0.8s;
}

.digital-all-btn a:hover::before {
    transform: translateX(150%);
}

.digital-all-btn a:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 16px 40px rgba(138, 15, 251, 0.5);
    color: #ffffff !important;
}

.digital-all-btn a i {
    transition: transform 0.3s ease;
}

.digital-all-btn a:hover i {
    transform: translateX(5px);
}


@media(max-width:1024px){
    .digital-grid{
        grid-template-columns:repeat(2,1fr);
    }
    
    .digital-card{
        min-height:440px;
    }
    
    .digital-content h3{
        font-size:20px;
        min-height:50px;
    }
}

@media(max-width:576px){
    .digital-grid{
        grid-template-columns:1fr;
    }

    .digital-btns{
        flex-direction:row !important;
        gap:8px !important;
    }

    .digital-card img{
        height:180px;
    }

    .digital-content h3{
        font-size:20px;
        min-height:auto;
    }
    
    .digital-card{
        min-height:400px;
    }
    
    .digital-content p{
        font-size:14px;
        -webkit-line-clamp:4;
    }
}



    .why-choose-us {
        background: #ffffff;
        padding: 40px 0;
    }

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

    .choose-card {
        background: #f6f0fe ;
        border-radius: 20px;
        padding: 35px 30px;
        transition: 0.3s;
        border: 1px solid #8a0ffb;
        text-align: center;
    }

    .choose-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        border-color: #8a0ffb;
    }

    .choose-icon {
        width: 70px;
        height: 70px;
        background: #8a0ffb;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        font-size: 30px;
        color: #000;
        transition: 0.3s;
    }

    .choose-card:hover .choose-icon {
        background: #000;
        color: #8a0ffb;
    }

    .choose-card h3 {
        font-size: 20px;
        font-weight: 700;
        color: #222;
        margin-bottom: 15px;
    }

    .choose-card p {
        color: #555;
        line-height: 1.8;
        text-align: justify;
        font-size: 15px;
        margin: 0;
    }

    /* Tablet */
    @media (max-width: 991px) {
        .choose-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }

        .choose-card {
            padding: 30px 25px;
        }

        .choose-card h3 {
            font-size: 18px;
        }
    }

    /* Mobile */
    @media (max-width: 576px) {
        .choose-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .why-choose-us {
            padding: 40px 0;
        }

        .choose-card {
            padding: 25px 20px;
        }

        .choose-icon {
            width: 60px;
            height: 60px;
            font-size: 25px;
        }

        .choose-card h3 {
            font-size: 17px;
        }

        .choose-card p {
            font-size: 14px;
        }
    }



    .industries-section {
        background: #130426;
        padding: 40px 0;
    }

    .industries-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-top: 50px;
    }

    .industry-item {
        background: #130426;
        border: 1px solid #222;
        border-radius: 15px;
        padding: 25px 20px;
        text-align: center;
        transition: 0.3s;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
/* Testimonial Slider */
.testimonial-track{
    display:flex;
    gap:30px;
}

/* Equal Height Cards */
.testimonial-card{
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    min-height:320px;   /* Adjust 300-360px as needed */
    height:100%;
    padding:30px;
    border-radius:16px;
}

/* Equal Text Area */
.testimonial-text{
    flex:1;
    margin:20px 0;
    line-height:1.8;
}

/* Keep Client Info at Bottom */
.client-info{
    margin-top:auto;
    display:flex;
    align-items:center;
    gap:15px;
}
    .industry-item:hover {
        transform: translateY(-5px);
        border-color: #8a0ffb;
        background: #130426;
        box-shadow: 0 10px 30px rgba(138, 15, 251, 0.1);
    }

    .industry-item i {
        font-size: 35px;
        color: #8a0ffb;
        transition: 0.3s;
    }

    .industry-item:hover i {
        transform: scale(1.1);
        color: #8a0ffb;
    }

    .industry-item span {
        color: #d9d9d9;
        font-size: 15px;
        font-weight: 500;
        line-height: 1.4;
        transition: 0.3s;
    }

    .industry-item:hover span {
        color: #ffffff;
    }

    /* Tablet */
    @media (max-width: 991px) {
        .industries-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        .industry-item {
            padding: 22px 18px;
        }

        .industry-item i {
            font-size: 30px;
        }

        .industry-item span {
            font-size: 14px;
        }
    }

    /* Mobile */
    @media (max-width: 576px) {
        .industries-section {
            padding: 40px 0;
        }

        .industries-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-top: 35px;
        }

        .industry-item {
            padding: 18px 15px;
        }

        .industry-item i {
            font-size: 25px;
        }

        .industry-item span {
            font-size: 13px;
        }
    }

    /* Small Mobile */
    @media (max-width: 380px) {
        .industries-grid {
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .industry-item {
            padding: 15px 12px;
        }

        .industry-item i {
            font-size: 22px;
        }

        .industry-item span {
            font-size: 12px;
        }
    }



    /* Modern Process Section (Light Background & Previous Color Scheme) */
    .modern-process-style {
        background: #ffffff;
        padding: 70px 0 80px;
        position: relative;
    }

    .modern-process-style .section-head .title1 {
        color: #111111;
    }

    .home-process-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-top: 50px;
    }

    .home-process-card {
        background: #f6f0fe;
        border: 1px solid #8a0ffb;
        border-left: 4px solid #8a0ffb;
        border-radius: 20px;
        padding: 35px 28px;
        position: relative;
        transition: all 0.35s ease;
        display: flex;
        flex-direction: column;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    }

    .home-process-card:hover {
        border-color: #8a0ffb;
        transform: translateY(-8px);
        box-shadow: 0 16px 35px rgba(138, 15, 251, 0.12);
        background: #ffffff;
    }

    .home-process-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 22px;
    }

    .home-process-num {
        font-size: 14px;
        font-weight: 800;
        color: #ffffff;
        background: #8a0ffb;
        padding: 6px 14px;
        border-radius: 30px;
        letter-spacing: 0.5px;
        box-shadow: 0 4px 12px rgba(138, 15, 251, 0.25);
    }

    .home-process-icon {
        width: 48px;
        height: 48px;
        background: rgba(138, 15, 251, 0.1);
        border: 1px solid rgba(138, 15, 251, 0.2);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #8a0ffb;
        font-size: 20px;
        transition: 0.3s;
    }

    .home-process-card:hover .home-process-icon {
        background: #8a0ffb;
        color: #ffffff;
        transform: scale(1.08) rotate(5deg);
    }

    .home-process-title {
        font-size: 20px;
        font-weight: 700;
        color: #111111;
        margin: 0 0 12px 0;
        line-height: 1.35;
    }

    .home-process-desc {
        font-size: 14px;
        color: #555555;
        line-height: 1.75;
        margin: 0;
        flex-grow: 1;
    }

    @media (max-width: 991px) {
        .home-process-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 22px;
        }
    }

    @media (max-width: 600px) {
        .home-process-grid {
            grid-template-columns: 1fr;
            gap: 18px;
        }

        .modern-process-style {
            padding: 50px 0 60px;
        }
    }

    /* Ratings & Recognition Section */
    .ratings-section {
        background: #130426 !important;
        padding: 70px 0;
        position: relative;
    }

    .ratings-section .title1 {
        color: #ffffff !important;
    }

    .rating-desc {
        color: #c5c5c5 !important;
        max-width: 700px;
        margin: 15px auto 0;
        font-size: 16px;
        line-height: 1.6;
    }

    .ratings-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        margin-top: 50px;
    }

.rating-card{
    background:#FEFEFE;
    border-radius:25px;
    padding:30px;
    min-height:170px;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
    border: 1.5px solid #8a0ffb;
}

.rating-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(138, 15, 251, .20);
    border-color: #8a0ffb;
}

.rating-card img{
    max-width:180px;
    width:100%;
    height:auto;
}

@media(max-width:991px){

    .ratings-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:576px){

    .ratings-grid{
        grid-template-columns:1fr;
    }

    .rating-card{
        min-height:140px;
        padding:20px;
    }

    .rating-card img{
        max-width:150px;
    }
}



    .testimonial-section {
        background: #ffffff;
        padding: 80px 0;
        position: relative;
        overflow: hidden;
    }

    .testimonial-section .section-head {
        text-align: center;
        margin-bottom: 30px;
    }

    .testimonial-section .section-head .sm-title {
        display: inline-block;
        background: rgba(138, 15, 251, 0.1);
        color: #8a0ffb;
        padding: 6px 20px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 12px;
    }

    .testimonial-section .section-head h2 {
        font-size: 36px;
        font-weight: 700;
        color: #222;
        margin: 10px 0;
    }

    .testimonial-section .section-head p {
        color: #666;
        max-width: 650px;
        margin: auto;
        font-size: 16px;
    }

    /* Stats */
    .testimonial-stats {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        max-width: 800px;
        margin: 0 auto 35px;
    }

    .testimonial-stat-item {
        text-align: center;
        padding: 18px 10px;
        background: #f6f0fe ;
        border: 1.5px solid #8a0ffb;
        border-radius: 14px;
        transition: 0.3s;
    }

    .testimonial-stat-item:hover {
        border-color: #8a0ffb;
        transform: translateY(-4px);
        box-shadow: 0 8px 25px rgba(138, 15, 251, 0.06);
    }

    .stat-number {
        font-size: 28px;
        font-weight: 800;
        color: #8a0ffb;
        display: block;
        line-height: 1.2;
    }

    .stat-label {
        font-size: 13px;
        color: #666;
        font-weight: 500;
        display: block;
        margin-top: 4px;
    }

    /* Slider */
    .testimonial-slider {
        overflow: hidden;
        position: relative;
        width: 100%;
        margin-top: 10px;
        padding: 20px 0;
    }

    .testimonial-track {
        display: flex;
        gap: 30px;
        width: max-content;
        animation: testimonialScroll 35s linear infinite;
        padding: 10px 0;
    }

    .testimonial-track:hover {
        animation-play-state: paused;
    }

    .testimonial-card {
        width: 380px;
        min-width: 380px;
        background: #f6f0fe ;
        border: 1.5px solid #8a0ffb;
        border-radius: 20px;
        padding: 30px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
        transition: 0.3s;
    }

    .testimonial-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(138, 15, 251, 0.15);
        border-color: #8a0ffb;
    }

    .stars {
        color: #8a0ffb;
        font-size: 20px;
        letter-spacing: 3px;
        margin-bottom: 8px;
    }

    .testimonial-text {
        color: #555;
        line-height: 1.8;
        margin: 10px 0 18px;
        font-size: 15px;
        text-align: justify;
    }

    .client-info {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .client-avatar {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        background: #8a0ffb;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 18px;
        flex-shrink: 0;
        transition: 0.3s;
    }

    .testimonial-card:hover .client-avatar {
        background: #000;
        color: red;
        transform: scale(1.05);
    }

    .client-info h4 {
        margin: 0;
        font-size: 17px;
        color: #222;
        font-weight: 700;
    }

    .client-info span {
        color: gold;
        font-size: 14px;
    }

    @keyframes testimonialScroll {
        from {
            transform: translateX(0);
        }
        to {
            transform: translateX(calc(-50% - 15px));
        }
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .testimonial-stats {
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
        }
    }

    @media (max-width: 991px) {
        .testimonial-section .section-head h2 {
            font-size: 32px;
        }

        .testimonial-card {
            width: 320px;
            min-width: 320px;
        }

        .testimonial-stats {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            max-width: 500px;
        }
    }

    @media (max-width: 768px) {
        .testimonial-section {
            padding: 60px 0;
        }

        .testimonial-section .section-head h2 {
            font-size: 28px;
        }

        .testimonial-card {
            width: 280px;
            min-width: 280px;
            padding: 22px;
        }

        .testimonial-track {
            gap: 20px;
            animation: testimonialScroll 28s linear infinite;
        }

        .stat-number {
            font-size: 24px;
        }

        .client-avatar {
            width: 45px;
            height: 45px;
            font-size: 15px;
        }

        .client-info h4 {
            font-size: 15px;
        }

        .testimonial-text {
            font-size: 14px;
        }

        .stars {
            font-size: 18px;
        }
    }

    @media (max-width: 480px) {
        .testimonial-section {
            padding: 40px 0;
        }

        .testimonial-section .section-head h2 {
            font-size: 24px;
        }

        .testimonial-section .section-head p {
            font-size: 14px;
        }

        .testimonial-stats {
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            max-width: 100%;
        }

        .stat-number {
            font-size: 22px;
        }

        .stat-label {
            font-size: 12px;
        }

        .testimonial-card {
            width: 250px;
            min-width: 250px;
            padding: 18px;
        }

        .testimonial-track {
            gap: 15px;
            animation: testimonialScroll 25s linear infinite;
        }

        .testimonial-text {
            font-size: 13px;
            margin: 8px 0 14px;
        }

        .client-avatar {
            width: 40px;
            height: 40px;
            font-size: 13px;
        }

        .client-info h4 {
            font-size: 14px;
        }

        .client-info span {
            font-size: 12px;
        }

        .stars {
            font-size: 16px;
        }
    }

    @media (max-width: 380px) {
        .testimonial-card {
            width: 220px;
            min-width: 220px;
            padding: 15px;
        }

        .testimonial-track {
            gap: 12px;
            animation: testimonialScroll 22s linear infinite;
        }

        .testimonial-text {
            font-size: 12px;
        }

        .stat-number {
            font-size: 20px;
        }

        .testimonial-section .section-head h2 {
            font-size: 22px;
        }
    }



    .client-logo-section{
        background: #130426;
        padding:70px 0;
        overflow:hidden;
        border-top:3px solid #8a0ffb;
        border-bottom:3px solid #8a0ffb;
    }

    .client-title{
        color:#fff;
        margin-bottom:40px;
    }

    .logo-slider{
        overflow:hidden;
        width:100%;
        position:relative;
        display:flex;
        white-space:nowrap;
    }

    .logo-slider::before,
    .logo-slider::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 100px;
        z-index: 2;
        pointer-events: none;
    }

    .logo-slider::before {
        left: 0;
        background: linear-gradient(to right, #130426, transparent);
    }

    .logo-slider::after {
        right: 0;
        background: linear-gradient(to left, #130426, transparent);
    }

    .logo-track{
        display:flex;
        align-items:center;
        gap:60px;
        animation:clientScroll 30s linear infinite;
        flex-shrink:0;
    }

    /* Duplicate track - created by CSS to repeat the same animation */
    .logo-track-duplicate {
        animation: clientScroll 30s linear infinite;
        flex-shrink: 0;
        margin-left: 60px;
    }

    @keyframes clientScroll{
        0%{
            transform:translateX(0);
        }
        100%{
            transform:translateX(-100%);
        }
    }

    .logo-slider:hover .logo-track,
    .logo-slider:hover .logo-track-duplicate {
        animation-play-state:paused;
    }

    .logo-item{
        width:180px;
        min-width:180px;
        height:90px;
        background:#fff;
        border-radius:15px;
        display:flex;
        align-items:center;
        justify-content:center;
        padding:15px;
        transition:0.3s;
        cursor:pointer;
        border:2px solid transparent;
    }

    .logo-item:hover{
        transform:scale(1.08);
        border-color:#8a0ffb;
        box-shadow:0 10px 30px rgba(138, 15, 251, 0.15);
    }

    .logo-item img{
        max-width:120px;
        max-height:60px;
        width:auto;
        height:auto;
        object-fit:contain;
        transition:0.3s;
    }

    .logo-item:hover img{
        filter:brightness(1.1);
    }

    /* Tablet */
    @media(max-width:991px){
        .client-logo-section{
            padding:60px 0;
        }

        .logo-item{
            width:150px;
            min-width:150px;
            height:80px;
        }

        .logo-item img{
            max-width:100px;
            max-height:50px;
        }

        .logo-track,
        .logo-track-duplicate{
            gap:40px;
            animation:clientScroll 25s linear infinite;
        }

        .logo-track-duplicate {
            margin-left: 40px;
        }

        .logo-slider::before,
        .logo-slider::after {
            width: 60px;
        }
    }

    /* Mobile */
    @media(max-width:576px){
        .client-logo-section{
            padding:40px 0;
        }

        .logo-track,
        .logo-track-duplicate{
            gap:25px;
            animation:clientScroll 20s linear infinite;
        }

        .logo-track-duplicate {
            margin-left: 25px;
        }

        .logo-item{
            width:110px;
            min-width:110px;
            height:65px;
            padding:10px;
            border-radius:12px;
        }

        .logo-item img{
            max-width:75px;
            max-height:40px;
        }

        .logo-slider::before,
        .logo-slider::after {
            width: 40px;
        }
    }

    /* Small Mobile */
    @media(max-width:380px){
        .logo-item{
            width:90px;
            min-width:90px;
            height:55px;
            padding:8px;
            border-radius:10px;
        }

        .logo-item img{
            max-width:60px;
            max-height:35px;
        }

        .logo-track,
        .logo-track-duplicate{
            gap:18px;
            animation:clientScroll 18s linear infinite;
        }

        .logo-track-duplicate {
            margin-left: 18px;
        }

        .client-logo-section{
            padding:30px 0;
        }

        .logo-slider::before,
        .logo-slider::after {
            width: 30px;
        }
    }

    /* Extra Small Mobile */
    @media(max-width:320px){
        .logo-item{
            width:75px;
            min-width:75px;
            height:48px;
            padding:6px;
            border-radius:8px;
        }

        .logo-item img{
            max-width:50px;
            max-height:30px;
        }

        .logo-track,
        .logo-track-duplicate{
            gap:14px;
            animation:clientScroll 15s linear infinite;
        }

        .logo-track-duplicate {
            margin-left: 14px;
        }
    }



    .stats-section{
    padding:60px 0;
    background:#fff;
}

.stats-wrapper{
    background: #130426;
    border-radius:30px;
    padding:45px 20px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    overflow:hidden;
}

.stat-item{
    text-align:center !important;
    position:relative;
    transition:.3s;
}

.stat-item:not(:last-child)::after{
    content:'';
    position:absolute;
    right:-10px;
    top:50%;
    transform:translateY(-50%);
    width:1px;
    height:70px;
    background:rgba(255,255,255,.15);
}

.stat-item h2{
    color:#8a0ffb;
    font-size:48px;
    font-weight:700;
    margin:0 0 10px;
    line-height:1;
    text-align:center !important;
    transition:.3s;
}

.stat-item p{
    color:#d9d9d9;
    font-size:16px;
    font-weight:500;
    margin:0;
    text-align:center !important;
}

/* Cute Hover Effect */

.stat-item:hover h2{
    transform:scale(1.12);
    color:#8a0ffb;
}

.stat-item:hover p{
    color:#fff;
}

/* Tablet */

@media(max-width:991px){

    .stats-wrapper{
        grid-template-columns:repeat(2,1fr);
        gap:35px;
    }

    .stat-item:nth-child(2)::after{
        display:none;
    }

    .stat-item h2{
        font-size:40px;
    }
}

/* Mobile */

@media(max-width:576px){

    .stats-wrapper{
        grid-template-columns:1fr;
        padding:35px 20px;
        border-radius:20px;
    }

    .stat-item::after{
        display:none !important;
    }

    .stat-item{
        border-bottom:1px solid rgba(255,255,255,.1);
        padding-bottom:20px;
    }

    .stat-item:last-child{
        border-bottom:none;
        padding-bottom:0;
    }

    .stat-item h2{
        font-size:34px;
    }

    .stat-item p{
        font-size:14px;
    }
}


.fq-section {
--fq-accent: #8a0ffb;      /* Rich Gold */
    --fq-accent2: #8a0ffb;     /* Bright Gold */
    --fq-dark: #130426;
    --fq-card: rgba(255, 255, 255, 0.05);

    --fq-border: rgba(138, 15, 251, 0.25);

    --fq-text: #c9d1d9;
    --fq-muted: #8b949e;
    --fq-white: #ffffff;
  --fq-radius: 14px;
  --fq-trans: 0.32s cubic-bezier(.4, 0, .2, 1);
  background: #130426;
  padding: 72px 0 80px;
  overflow: hidden
}

.fq-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: .18
}

.fq-blob--1 {
  width: 400px;
  height: 400px;
  background: #8a0ffb;
  top: -120px;
  left: -100px
}

.fq-blob--2 {
  width: 300px;
  height: 300px;
  background: var(--fq-accent2);
  bottom: -80px;
  right: -80px
}

.fq-wrap {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  position: relative;
  z-index: 1;
}

.fq-header {
  text-align: center;
  margin-bottom: 48px
}

.fq-badge {
  display: inline-block;
  background: rgb(145 217 4 / .12);
  border: 1px solid var(--fq-border);
  color: #8a0ffb;
  letter-spacing: .12em;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 18px
}

.fq-title {
  color: var(--fq-white);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.22;
  margin: 0 0 14px;
  letter-spacing: -.02em
}

.fq-title span {
  color: var(--fq-accent)
}

.fq-sub {
  color: var(--fq-muted);
  font-size: .97rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65
}

.fq-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.fq-item {
  background: var(--fq-card);
  border: 1px solid var(--fq-border);
  border-radius: var(--fq-radius);
  overflow: hidden;
  transition: border-color var(--fq-trans), box-shadow var(--fq-trans)
}

.fq-item:hover {
  border-color: #8a0ffb;   
}

.fq-item.fq-open {
  border-color: #8a0ffb;
  box-shadow: 0 0 0 1px rgb(145 217 4 / .25), 0 8px 32px rgb(0 0 0 / .35)
}

.fq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  outline: none
}

.fq-btn:focus-visible {
  outline: 2px solid var(--fq-accent);
  outline-offset: -2px
}

.fq-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgb(145 217 4 / .1);
  border: 1px solid var(--fq-border);
  color: #8a0ffb;
  font-size: .7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: .05em;
  transition: background var(--fq-trans), border-color var(--fq-trans)
}

.fq-open .fq-num {
  background: #8a0ffb;
  border-color: #8a0ffb;
  color: var(--fq-dark)
}

h2.fq-q-text {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  flex: 1;
  color: var(--fq-white);
  transition: color var(--fq-trans)
}

.fq-open h2.fq-q-text {
  color: #8a0ffb;
}

.fq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background:#000;
  border: 1px solid var(--fq-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--fq-trans), transform var(--fq-trans)
}

.fq-icon svg {
  width: 13px;
  height: 13px;
  stroke: var(--fq-accent);
  transition: transform var(--fq-trans)
}

.fq-open .fq-icon {
  background: #8a0ffb;
}

.fq-open .fq-icon svg {
  stroke: var(--fq-dark);
  transform: rotate(45deg)
}

.fq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--fq-trans)
}

.fq-answer-inner {
  padding: 0 22px 20px 70px;
  text-align: justify;
  color: var(--fq-text);
  font-size: .94rem;
  line-height: 1.72
}

.fq-more-wrap {
  text-align: center;
  margin-top: 40px
}

.fq-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #8a0ffb;
  color: var(--fq-dark);
  font-size: .9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background var(--fq-trans), transform var(--fq-trans), box-shadow var(--fq-trans);
  box-shadow: 0 4px 20px rgb(145 217 4 / .25)
}

.fq-more-btn:hover {
  background: var(--fq-accent2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgb(145 217 4 / .35)
}

.fq-more-btn svg {
  width: 16px;
  height: 16px;
  stroke: var(--fq-dark);
  flex-shrink: 0;
  transition: transform var(--fq-trans)
}

.fq-more-btn:hover svg {
  transform: translateX(3px)
}

.fq-answer {
  cursor: pointer
}

@media (max-width:600px) {
  .fq-section {
    padding: 52px 0 60px
  }
  .fq-answer-inner {
    padding-left: 22px
  }
  .fq-btn {
    padding: 16px 16px;
    gap: 12px
  }
}


    .final-cta-section {
        background: #ffffff;
        padding: 40px 0;
        position: relative;
        overflow: hidden;
    }

    .final-cta-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(138, 15, 251, 0.04), transparent);
        border-radius: 50%;
        pointer-events: none;
    }

    .final-cta-section::after {
        content: '';
        position: absolute;
        bottom: -40%;
        left: -10%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(138, 15, 251, 0.03), transparent);
        border-radius: 50%;
        pointer-events: none;
    }

    .cta-wrapper {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
        position: relative;
        z-index: 1;
        background: #f6f0fe;
        padding: 60px 50px;
        border-radius: 30px;
        border: 1.5px solid #8a0ffb;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
        transition: 0.3s;
    }

    .cta-wrapper:hover {
        border-color: #8a0ffb;
        box-shadow: 0 15px 50px rgba(138, 15, 251, 0.08);
    }

    .cta-badge {
        display: inline-block;
        background: rgba(138, 15, 251, 0.1);
        color: #8a0ffb;
        padding: 6px 20px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.5px;
        margin-bottom: 18px;
        text-transform: uppercase;
    }

    .cta-title {
        font-size: 38px;
        font-weight: 800;
        color: #222;
        margin-bottom: 18px;
        line-height: 1.2;
    }

    .cta-title span {
        color: #8a0ffb;
    }

    .cta-desc {
        color: #555;
        font-size: 16px;
        line-height: 1.8;
        text-align: justify;
        margin-bottom: 16px;
        max-width: 750px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-desc:last-of-type {
        margin-bottom: 30px;
    }

    .cta-buttons {
        display: flex;
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 35px;
    }

    .cta-btn-primary {
        display: inline-block;
        background: #8a0ffb;
        color: #000;
        padding: 14px 35px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        font-size: 16px;
        transition: 0.3s;
        border: 2px solid #8a0ffb;
    }

    .cta-btn-primary:hover {
        background: #ffffff !important;
        color: #8a0ffb !important;
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(138, 15, 251, 0.3);
    }

    .cta-btn-secondary {
        display: inline-block;
        background: transparent;
        color: #8a0ffb;
        padding: 14px 35px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        font-size: 16px;
        transition: 0.3s;
        border: 2px solid #8a0ffb;
    }

    .cta-btn-secondary:hover {
        background: #8a0ffb;
        color: #000;
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(138, 15, 251, 0.2);
    }

    .cta-trust {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
        padding-top: 25px;
        border-top: 1px solid rgba(138, 15, 251, 0.15);
    }

    .cta-trust span {
        color: #334155;
        font-size: 14.5px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #ffffff;
        border: 1.5px solid #8a0ffb;
        padding: 10px 22px;
        border-radius: 30px;
        box-shadow: 0 4px 15px rgba(138, 15, 251, 0.08);
        transition: all 0.3s ease;
    }

    .cta-trust span:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(138, 15, 251, 0.2);
    }

    .cta-trust span::before {
        content: '✦';
        color: #8a0ffb;
        font-size: 13px;
    }

    /* Responsive */
    @media (max-width: 991px) {
        .final-cta-section {
            padding: 40px 0;
        }

        .cta-wrapper {
            padding: 45px 30px;
            border-radius: 25px;
            margin: 0 15px;
        }

        .cta-title {
            font-size: 32px;
        }

        .cta-desc {
            font-size: 15px;
        }

        .cta-btn-primary,
        .cta-btn-secondary {
            padding: 12px 28px;
            font-size: 15px;
        }

        .cta-trust {
            gap: 20px;
        }
    }

    @media (max-width: 768px) {
        .cta-wrapper {
            padding: 35px 20px;
            border-radius: 20px;
        }

        .cta-title {
            font-size: 28px;
        }

        .cta-desc {
            font-size: 14px;
            text-align: justify;
        }

        .cta-buttons {
            flex-direction: column;
            align-items: center;
            width: 100%;
        }

        .cta-btn-primary,
        .cta-btn-secondary {
            width: 100%;
            max-width: 400px;
            text-align: center;
            padding: 12px 20px;
            font-size: 14px;
        }

        .cta-trust {
            flex-direction: column;
            gap: 10px;
            align-items: center;
        }

        .cta-trust span {
            font-size: 13px;
        }
    }

    @media (max-width: 480px) {
        .final-cta-section {
            padding: 40px 0;
        }

        .cta-wrapper {
            padding: 28px 16px;
            border-radius: 16px;
            margin: 0 10px;
        }

        .cta-badge {
            font-size: 11px;
            padding: 4px 14px;
        }

        .cta-title {
            font-size: 22px;
        }

        .cta-desc {
            font-size: 13px;
            line-height: 1.7;
        }

        .cta-btn-primary,
        .cta-btn-secondary {
            font-size: 13px;
            padding: 10px 16px;
            max-width: 100%;
        }

        .cta-trust span {
            font-size: 12px;
        }
    }

    @media (max-width: 380px) {
        .cta-wrapper {
            padding: 22px 12px;
        }

        .cta-title {
            font-size: 20px;
        }

        .cta-desc {
            font-size: 12px;
        }

        .cta-btn-primary,
        .cta-btn-secondary {
            font-size: 12px;
            padding: 8px 14px;
            white-space: nowrap !important;
        }
    }
