/* ===============================
   HEADER BASE
================================ */
.site-header{
    width:100%;
    position:relative;
    z-index:1000;
}

.header-inner{
    max-width:1400px;
    margin:0 auto;
    padding:0 48px;
    height:120px;

    display:grid;
    grid-template-columns: auto 1fr auto;
    align-items:center;
}

/* ===============================
   LOGO
================================ */
.header-logo img{
    height:80px;
    width:auto;
    display:block;
}

/* ===============================
   CENTER PILL NAV
================================ */
.header-nav{
    display:flex;
    align-items:center;
    gap:56px;
    justify-self: center;

    padding:24px 64px;
    border-radius:999px;

    background:rgba(255,255,255,0.88);
    backdrop-filter:blur(12px);

    border:1px solid rgba(31,149,210,0.15);

    box-shadow:
        0 20px 50px rgba(21,46,83,0.15),
        inset 0 0 0 1px rgba(255,255,255,0.6);
}

.header-nav a{
    color:#152e53;
    text-decoration:none;

    font-size:14px;
    font-weight:500;
    letter-spacing:0.08em;
    text-transform:uppercase;

    transition:color .3s ease;
}

.header-nav a:hover,
.header-nav a.active{
    color:#1f95d2;
}
/* ===============================
   GLASS PILL (NO LAYOUT CHANGE)
================================ */

.header-nav a{
    position: relative;
    z-index: 1;
}

/* Glass layer */
.header-nav a::before{
    content: "";
    position: absolute;
    inset: -6px -16px;          /* visual only, does NOT affect layout */
    border-radius: 999px;

    background: rgba(255,255,255,0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    opacity: 0;
    transition: opacity 0.3s ease, box-shadow 0.3s ease;
    z-index: -1;
}

/* Hover state */
.header-nav a:hover::before{
    opacity: 1;
    box-shadow:
        0 8px 24px rgba(21,46,83,0.15),
        inset 0 0 0 1px rgba(31,149,210,0.25);
}

.header-nav a:hover{
    color:#1f95d2;
}

/* Active state */
.header-nav a.active::before{
    opacity: 1;
    box-shadow:
        0 10px 28px rgba(21,46,83,0.18),
        inset 0 0 0 1px rgba(31,149,210,0.35);
}

.header-nav a.active{
    color:#1f95d2;
}

/* ===== Glass effect on scroll ===== */
.site-header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: background .35s ease,
                box-shadow .35s ease,
                backdrop-filter .35s ease;
}

/* Default (top of page) */
.site-header{
    background: transparent;
}

/* When scrolled */
.site-header.scrolled{
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow: 0 18px 45px rgba(21,46,83,0.18);
}

/* ===============================
   CTA BUTTON
================================ */
.header-cta a{
    padding:14px 36px;
    border-radius:999px;

    background:#1f95d2;
    color:#ffffff;

    font-size:14px;
    font-weight:500;
    text-decoration:none;

    box-shadow:0 10px 30px rgba(31,149,210,0.45);
    transition:all .3s ease;
}
:root{
    --header-height: 120px; /* adjust if needed */
}
body{
    padding-top: var(--header-height);
}

.header-cta a:hover{
    box-shadow:
        0 14px 40px rgba(31,149,210,0.65),
        0 0 18px rgba(31,149,210,0.45);
}
/* DEFAULT HEADER STATE */
.site-header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.35s ease;
}

/* SCROLLED GLASS STATE */
.site-header.scrolled{
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    box-shadow:
        0 10px 40px rgba(21,46,83,0.18);

    border-bottom: 1px solid rgba(31,149,210,0.15);
}

/* Header style end */


/* Index Style Start */
/* ================= SPLIT INDUSTRIES SECTION ================= */
.industries-split {
    padding: 40px 20px;
    background: #ffffff;
}

.industries-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

/* LEFT SIDE */

.industries-left {
    flex: 1;
    position: sticky;
    top: 120px;
}

.section-tag {
    font-size: 13px;
    letter-spacing: 2px;
    color: #1f95d2;
    font-weight: 600;
}

.industries-left h2 {
    font-size: 42px;
    color: #152e53;
    margin: 20px 0;
}

.industries-left p {
    color: #5f6f81;
    line-height: 1.6;
    max-width: 400px;
}

.accent-line {
    width: 60px;
    height: 4px;
    background: #1f95d2;
    margin-top: 30px;
    transition: 0.4s ease;
}

/* Left column spacing */
.industries-left {
    flex: 1;
    position: sticky;
    top: 120px;
}

/* Intro paragraph spacing */
.industries-intro {
    color: #5f6f81;
    line-height: 1.7;
    max-width: 420px;
}

/* CTA Block */
.industries-custom {
    margin-top: 80px;
    max-width: 420px;
}

.custom-text {
    font-size: 16px;
    color: #6d7f92;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Premium Button */
.custom-btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    background: linear-gradient(135deg, #1f95d2, #4db7f2);
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.4s ease;
    box-shadow: 0 10px 25px rgba(31,149,210,0.25);
}

.custom-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(31,149,210,0.35);
}

/* RIGHT SIDE */

.industries-right {
    flex: 1.3;
}

.industry-row {
    padding: 30px 0;
    border-bottom: 1px solid rgba(21, 46, 83, 0.08);
    cursor: pointer;
    transition: 0.4s ease;
}

.industry-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.industry-header h3 {
    font-size: 22px;
    color: #152e53;
    transition: 0.3s ease;
}

.arrow {
    font-size: 22px;
    color: #1f95d2;
    transition: 0.3s ease;
}

.industry-desc {
    max-height: 0;
    overflow: hidden;
    color: #6d7f92;
    font-size: 15px;
    line-height: 1.6;
    transition: all 0.4s ease;
}

/* Hover Effect */

.industry-row:hover .industry-desc {
    max-height: 120px;
    margin-top: 15px;
}

.industry-row:hover .arrow {
    transform: translateX(8px);
}

.industry-row:hover h3 {
    color: #1f95d2;
}

/* Reveal Animation */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */

@media (max-width: 992px) {
    .industries-wrapper {
        flex-direction: column;
        gap: 60px;
    }

    .industries-left {
        position: relative;
        top: 0;
    }
}
/* ================= SCI-FI ORBS ================= */
.vx-sci-orbs{
    position:absolute;
    inset:0;
    pointer-events:none;
    z-index:1;
}

/* Orb base */
.vx-orb{
    position:absolute;
    width:90px;
    height:90px;
    border-radius:50%;

    background:
        radial-gradient(circle at 30% 30%,
            rgba(31,149,210,0.9),
            rgba(31,149,210,0.35),
            rgba(31,149,210,0.08)
        );

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 0 40px rgba(31,149,210,0.45),
        inset 0 0 25px rgba(255,255,255,0.6);

    animation: orbFloat 10s ease-in-out infinite;
    transition: transform .35s ease, box-shadow .35s ease;
    pointer-events:auto;
}

/* Orb glow ring */
.vx-orb::before{
    content:"";
    position:absolute;
    inset:-8px;
    border-radius:50%;
    background:
        radial-gradient(circle,
            rgba(31,149,210,0.35),
            transparent 60%
        );
    filter: blur(12px);
}

/* Hover = energy surge */
.vx-orb:hover{
    transform: scale(1.25);
    box-shadow:
        0 0 70px rgba(31,149,210,0.9),
        0 0 120px rgba(31,149,210,0.6);
}

/* Floating motion */
@keyframes orbFloat{
    0%{ transform: translateY(0); }
    50%{ transform: translateY(-18px); }
    100%{ transform: translateY(0); }
}

/* Orb positions (balanced around hero) */
.o1{ top:18%; left:16%; animation-delay:0s; }
.o2{ top:12%; right:18%; animation-delay:2s; }
.o3{ bottom:22%; left:20%; animation-delay:4s; }
.o4{ bottom:18%; right:22%; animation-delay:6s; }
.o5{ top:48%; right:6%; animation-delay:8s; }
.o6{top:48%; left:7%; animation-delay:9s;}

/* Get Started button */
.index-hero-btn{
    padding:14px 28px;
    border-radius:30px;
    background:#1f95d2;
    color:#ffffff;
    font-size:14px;
    font-weight:500;
    text-decoration:none;
    border:none;
    display:inline-block;
    transition:all .3s ease;
    box-shadow:0 8px 22px rgba(31,149,210,0.35);
}

.index-hero-btn:hover{
    transform:translateY(-3px);
    box-shadow:
        0 12px 30px rgba(31,149,210,0.55),
        0 0 20px rgba(31,149,210,0.45);
}

/* HERO LAYOUT (minimal, safe) */
.vx-hero{
    padding:70px 0 70px;
    background:#ffffff;
}

.vx-hero-content{
    max-width:1200px;
    margin:0 auto;
    padding:0 24px;
}

/* HERO TITLE */
.vx-hero-title{
    font-size:56px;
    line-height:1.2;
    font-weight:600;
    text-align:center;
    color:#152e53;
}

/* One-time animated line */
.once-text{
    display:inline-block;
    opacity:0;
    animation: revealOnce 1s ease forwards;
}

/* Looping text */
#loop-text{
    color:#1f95d2;
    position:relative;
}

/* Cursor */
#loop-text::after{
    content:"|";
    margin-left:4px;
    animation: blink 1s infinite;
}

/* Animations */
@keyframes revealOnce{
    from{
        opacity:0;
        transform:translateY(12px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes blink{
    0%,50%{opacity:1;}
    51%,100%{opacity:0;}
}

/* Responsive */
@media(max-width:768px){
    .vx-hero-title{
        font-size:40px;
    }
}


.vx-tag{
    display:inline-block;
    margin-bottom:14px;
    font-size:14px;
    letter-spacing:0.08em;
    color:#1f95d2;
    text-transform:uppercase;
}

.vx-hero h1{
    font-size:52px;
    line-height:1.15;
    color:#152e53;
    margin-bottom:20px;
    margin-top: 0px;
}

.vx-hero h1 span{
    color:#152e53;
}

.vx-hero p{
    max-width:520px;
    font-size:17px;
    color:#152e53;
    opacity:.85;
    margin-bottom:32px;
    margin-top: 0px;
}

.vx-actions{
    display:flex;
    justify-content: center;
    gap:18px;
}
/* HERO ENTRANCE ANIMATION */
.vx-hero-content{
    animation:heroFadeUp .8s ease forwards;
}

.vx-hero-visual{
    animation:heroFadeUp .8s ease .15s forwards;
    opacity:0;
}

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

/* HERO GRID */
.vx-hero-content{
    max-width: 760px;   /* keeps content visually centered */
    margin: 0 auto;
    padding: 0 24px;

    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Secondary button */
.vx-btn.secondary{
    padding:14px 28px;
    border-radius:30px;
    background:transparent;
    color:#1f95d2;
    font-size:14px;
    font-weight:500;
    text-decoration:none;
    border:1px solid rgba(31,149,210,0.35);
    display:inline-block;
    transition:all .3s ease;
}

.vx-btn.secondary:hover{
    background:rgba(31,149,210,0.08);
    border-color:#1f95d2;
    transform:translateY(-2px);
}

/* ===============================
   SERVICES SECTION
================================ */
.vx-services{
    padding:30px 0;
    background:#ffffff;
    margin-top: 20px;
}

.vx-services-inner{
    max-width:1200px;
    margin:0 auto;
    padding:0 24px;
}

/* Section heading */
.vx-section-head{
    text-align:center;
    max-width:680px;
    margin:0 auto 70px;
}

.vx-eyebrow{
    display:inline-block;
    font-size:17px;
    letter-spacing:.12em;
    color:#1f95d2;
    margin-bottom:-46px;
}

.vx-section-head h2{
    font-size:60px;
    color:#152e53;
    margin-bottom:18px;
}

.vx-section-head p{
    font-size:16px;
    color:#152e53;
    opacity:.75;
}

/* Grid */
.vx-services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:32px;
}

/* Glass cards */
.vx-service-card{
    padding:36px 30px;
    border-radius:22px;

    background:rgba(255,255,255,0.65);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);

    border:1px solid rgba(31,149,210,0.18);

    box-shadow:
        0 30px 60px rgba(21,46,83,0.12),
        inset 0 0 0 1px rgba(255,255,255,0.6);

    transition:transform .35s ease, box-shadow .35s ease;
}

.vx-service-card:hover{
    transform:translateY(-10px) scale(1.02);
    box-shadow:
        0 40px 80px rgba(31,149,210,0.28),
        0 0 35px rgba(31,149,210,0.25);
}

/* Icons */
.vx-icon{
    width:56px;
    height:56px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;

    font-size:26px;
    margin-bottom:18px;

    background:rgba(31,149,210,0.12);
    color:#1f95d2;
}

/* Card text */
.vx-service-card h3{
    font-size:20px;
    margin-bottom:12px;
    color:#152e53;
}

.vx-service-card p{
    font-size:15px;
    color:#152e53;
    opacity:.8;
    line-height:1.6;
}

.vx-icon{
    width:64px;
    height:64px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(31,149,210,0.12);
    backdrop-filter:blur(10px);

    margin-bottom:18px;

    transition:all .35s ease;
}

.vx-icon img{
    width:32px;
    height:32px;
    object-fit:contain;
    filter: drop-shadow(0 0 6px rgba(31,149,210,0.45));
}

/* Hover glow */
.vx-service-card:hover .vx-icon{
    background:rgba(31,149,210,0.18);
    box-shadow:
        0 0 25px rgba(31,149,210,0.45),
        inset 0 0 0 1px rgba(255,255,255,0.5);
}

.vx-service-card:hover .vx-icon img{
    transform:scale(1.1);
}
@media(max-width:600px){
    .vx-icon{
        width:56px;
        height:56px;
    }

    .vx-icon img{
        width:28px;
        height:28px;
    }
}

/* Responsive */
@media (max-width: 900px){
    .vx-services-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width: 600px){
    .vx-services-grid{
        grid-template-columns:1fr;
    }
}
/* ===============================
   WHY SECTION
================================ */
.vx-why-item{
    padding:34px 32px;
    border-radius:22px;
    background:rgba(255,255,255,0.9);
    border:1px solid rgba(21,46,83,0.08);

    box-shadow:
        0 20px 40px rgba(21,46,83,0.08);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.vx-why-item:hover{
    transform:translateY(-10px);
    border-color:rgba(31,149,210,0.4);

    box-shadow:
        0 30px 70px rgba(31,149,210,0.18),
        0 0 0 1px rgba(31,149,210,0.15);
}

.vx-why{
    position: relative;
    padding:60px 0;
    background: #ffffff;
    overflow: hidden;
}

/* subtle tech grid */
.vx-why::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            rgba(31,149,210,0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(31,149,210,0.05) 1px,
            transparent 1px
        );
    background-size: 48px 48px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 75%);
    pointer-events:none;
}

/* soft glow blobs */
.vx-why::after{
    content:"";
    position:absolute;
    inset:-20%;
    background:
        radial-gradient(circle at 20% 30%, rgba(31,149,210,0.12), transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(21,46,83,0.10), transparent 45%);
    pointer-events:none;
}


.vx-why-inner{
    max-width:1200px;
    margin:0 auto;
    padding:0 24px;
}

/* Head */
.vx-why-head{
    text-align:center;
    max-width:720px;
    margin:0 auto 80px;
}

.vx-why-head h2{
    font-size:42px;
    color:#152e53;
    margin-bottom:18px;
}

.vx-why-head p{
    font-size:16px;
    color:#152e53;
    opacity:.75;
}

/* Value grid */
.vx-why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
    margin-bottom:90px;
}

.vx-why-item h3{
    font-size:20px;
    font-weight:600;
    letter-spacing:-0.01em;
    color:#152e53;
    margin-bottom:14px;
}

.vx-why-item h3{
    position:relative;
}

.vx-why-item:hover h3{
    color:#1f95d2;
}

.vx-why-item p{
    font-size:15px;
    line-height:1.6;
    color:#152e53;
    opacity:.8;
}

/* Stats */
.vx-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
    padding-top:70px;
    border-top:1px solid rgba(21,46,83,0.08);
}

.vx-stat{
    text-align:center;
    padding:26px 16px;
    border-radius:18px;
    transition:transform .35s ease, box-shadow .35s ease;
}

.vx-stat:hover{
    transform:translateY(-8px);
    box-shadow:
        0 20px 40px rgba(31,149,210,0.18);
}

.vx-stat-num{
    font-size:44px;
    font-weight:700;
    color:#1f95d2;
    display:block;
    margin-bottom:10px;
    letter-spacing:-0.02em;
}

.vx-stat-label{
    font-size:14px;
    color:#152e53;
    opacity:.75;
}

/* Responsive */
@media(max-width:900px){
    .vx-why-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .vx-stats{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:520px){
    .vx-stats{
        grid-template-columns:1fr;
    }
}

/* ===============================
   PROCESS A – HORIZONTAL
================================ */

.vx-process-a{
    padding:60px 0;
    background:#ffffff;
}

.vx-process-a-inner{
    max-width:1200px;
    margin:0 auto;
    padding:0 24px;
}

/* Head */
.vx-process-head{
    text-align:center;
    max-width:720px;
    margin:0 auto 90px;
}

.vx-process-head h2{
    font-size:42px;
    color:#152e53;
    margin-bottom:14px;
}

.vx-process-head p{
    color:#152e53;
    opacity:.75;
}

/* Steps */
.vx-process-steps{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:48px;
    perspective:1200px;
}

/* Card */
.vx-process-card{
    position:relative;
    padding:42px 36px;
    border-radius:26px;

    background:#ffffff;
    border:1px solid rgba(21,46,83,0.12);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

/* Subtle elevation */
.vx-process-card:hover{
    transform: translateY(-6px);
    border-color:#1F95D2;

    box-shadow:
        0 20px 60px rgba(21,46,83,0.12);
}

.vx-process-card::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:26px;
    padding:1px;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(31,149,210,.8),
        transparent
    );
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    opacity:0;
    transition:opacity .4s ease;
}

.vx-process-card:hover::after{
    opacity:1;
}

.vx-process-card h3{
    transition:color .3s ease;
}

.vx-process-card:hover h3{
    color:#1F95D2;
}

/* Content */
.vx-step-num{
    display:block;
    font-size:14px;
    letter-spacing:.18em;
    font-weight:600;
    color:#1f95d2;
    margin-bottom:12px;
}

.vx-process-card h3{
    font-size:22px;
    color:#152e53;
    margin-bottom:10px;
}

.vx-process-card p{
    font-size:15px;
    line-height:1.6;
    color:#152e53;
    opacity:.8;
}

/* Mobile */
@media(max-width:900px){
    .vx-process-steps{
        grid-template-columns:1fr;
    }
}
/* ================= SECTION STYLE ================= */

.tech-constellation {
    padding: 20px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    overflow: hidden;
    position: relative;
}

.tech-const-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

/* LEFT SIDE */

.tech-const-left {
    flex: 1;
    color: #1F95D2;
}

.tech-const-left h2 {
    font-size: 42px;
    color: #152e53;
    margin: 20px 0;
    line-height: 1.2;
}

.tech-const-left p {
    color: #6d7f92;
    line-height: 1.7;
    max-width: 450px;
}

/* Word hover animation */

.hover-word {
    transition: color 0.25s ease;
}

.hover-word:hover {
    color: #1f95d2;
}

/* RIGHT SIDE */

.tech-const-right {
    flex: 1;
    position: relative;
    height: 450px;
}

/* Floating nodes */
/* Floating nodes */

.tech-node {
    position: absolute;
    animation: float 6s ease-in-out infinite;
    transition: transform 0.3s ease, filter 0.3s ease;
    transform-style: preserve-3d;
}

/* ALL icons same size */

.tech-node img {
    height: 85px;     /* 👈 Match Google Ads size */
    object-fit:contain;
}

/* Equal floating animation */

@keyframes float {
    0%,100% { transform: translateY(0px); }
    50% { transform: translateY(-16px); }
}
/* Blue glowing hover effect for ALL icons */

.tech-node img {
    transition: filter 0.3s ease;
}

.tech-node:hover img {
    filter:
        drop-shadow(0 0 15px rgba(31,149,210,0.6))
        drop-shadow(0 0 35px rgba(31,149,210,0.35));
}

/* Different animation timing */

.tech-node:nth-child(odd) { animation-duration: 7s; }
.tech-node:nth-child(even) { animation-duration: 9s; }

@keyframes float {
    0%,100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}
/* Positioning */

.tech-node:nth-child(1) { top: 20%; left: 10%; }
.tech-node:nth-child(2) { top: 60%; left: 20%; }
.tech-node:nth-child(3) { top: 40%; left: 35%; }
.tech-node:nth-child(4) { top: 15%; left: 60%; }
.tech-node:nth-child(5) { top: 50%; left: 60%; }
.tech-node:nth-child(6) { top: 75%; left: 50%; }
.tech-node:nth-child(7) { top: 30%; left: 83%; }
.tech-node:nth-child(8) { top: 70%; left: 85%; }
.tech-node:nth-child(9) { top: 10%; left: 40%; }

/* Subtle background glow */

.tech-constellation::after {
    content: "";
    position: absolute;
    right: 5%;
    top: 20%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(31,149,210,0.08), transparent 70%);
    filter: blur(90px);
    z-index: 0;
}

/* Responsive */

@media (max-width: 992px) {
    .tech-const-container {
        flex-direction: column;
        text-align: center;
    }

    .tech-const-right {
        width: 100%;
        height: 350px;
        margin-top: 60px;
    }
}

/* ================= TESTIMONIALS ================= */

.testimonials-section {
    padding: 40px 20px;
    background: #ffffff;
    text-align: center;
    position: relative;
}

.testimonials-container {
    max-width: 900px;
    margin: 0 auto;
}

.testimonials-header h2 {
    font-size: 40px;
    color: #152e53;
    margin: 20px 0 80px;
}

/* Slider */

.testimonial-slider {
    position: relative;
    min-height: 150px;
}

.testimonial {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.testimonial.active {
    opacity: 1;
    transform: translateY(0);
}

.testimonial p {
    font-size: 20px;
    color: #5f6f81;
    line-height: 1.6;
}

.testimonial h4 {
    margin-top: 25px;
    font-weight: 600;
    color: #1f95d2;
}

/* Dots */

.testimonial-dots {
    margin-top: 40px;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background: rgba(31,149,210,0.3);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: 0.3s ease;
}

.dot.active {
    background: #1f95d2;
}

/* ================= LAYERED CTA ================= */

.cta-layered {
    position: relative;
    padding: 50px 20px;
    overflow: hidden;
    background: #ffffff;
    text-align: center;
}

/* Huge background word */

.cta-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 220px;
    font-weight: 800;
    color: rgba(31,149,210,0.04);
    letter-spacing: 20px;
    pointer-events: none;
    user-select: none;
}

/* Moving light strip */

.cta-layered::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(31,149,210,0.08) 50%,
        transparent 100%
    );
    animation: lightMove 6s linear infinite;
}

@keyframes lightMove {
    0% { left: -50%; }
    100% { left: 120%; }
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 64px;
    font-weight: 700;
    color: #152e53;
    margin-bottom: 25px;
}

.cta-content p {
    font-size: 20px;
    color: #6d7f92;
    margin-bottom: 50px;
}

/* Glow button */

.cta-glow-btn {
    display: inline-block;
    padding: 18px 50px;
    border-radius: 60px;
    background: #1f95d2;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
    position: relative;
}

.cta-glow-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 60px;
    box-shadow: 0 0 40px rgba(31,149,210,0.4);
    opacity: 0;
    transition: 0.3s ease;
}

.cta-glow-btn:hover::after {
    opacity: 1;
}

.cta-glow-btn:hover {
    transform: translateY(-4px);
}
/* Index Style End */

