
/* =========================================
   HERO - STEP 1: IMAGE ONLY
========================================= */

.hero-section {
    position: relative;
    width: 100%;
    min-height: 700px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #06102b;
    display: flex;
    align-items: stretch;
}

.hero-image-only {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.hero-image-only img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
    pointer-events: none;
}

/* Subtle decorative motion over the existing hero image. This is an
   independent absolute layer, so it never changes the image or copy layout. */
.hero-float-layer {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-floating-icon {
    position: absolute;
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(160, 220, 255, .72);
    border-radius: 15px;
    background: rgba(10, 91, 224, .32);
    box-shadow: 0 0 14px rgba(69, 189, 255, .82), 0 0 31px rgba(25, 105, 255, .48), inset 0 0 12px rgba(224, 249, 255, .28);
    color: #e4f8ff;
    font-size: 20px;
    opacity: .88;
    backdrop-filter: blur(3px);
}

.hero-floating-icon::after {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 11px 4px rgba(128, 230, 255, .9);
    content: "";
}

.hero-float-search { top: 30%; left: 61%; animation: hero-float-one 6.4s ease-in-out infinite; }
.hero-float-chart { top: 19%; left: 77%; width: 42px; height: 42px; font-size: 17px; animation: hero-float-two 7.2s ease-in-out infinite .8s; }
.hero-float-share { top: 47%; left: 89%; width: 44px; height: 44px; font-size: 18px; animation: hero-float-three 6.8s ease-in-out infinite .35s; }
.hero-float-mail { top: 67%; left: 72%; width: 40px; height: 40px; font-size: 16px; animation: hero-float-two 7.8s ease-in-out infinite 1.2s; }
.hero-float-bolt { top: 61%; left: 91%; width: 37px; height: 37px; border-radius: 12px; font-size: 15px; animation: hero-float-one 5.9s ease-in-out infinite .55s; }

.hero-live-card {
    position: absolute;
    display: flex;
    min-width: 152px;
    align-items: center;
    gap: 10px;
    padding: 11px 13px;
    border: 1px solid rgba(184, 225, 255, .84);
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(8, 46, 117, .84), rgba(13, 111, 211, .72));
    box-shadow: 0 10px 25px rgba(0, 31, 93, .38), 0 0 18px rgba(62, 181, 255, .32), inset 0 1px 0 rgba(255,255,255,.22);
    color: #fff;
    backdrop-filter: blur(5px);
}

.hero-live-card-icon {
    display: flex;
    width: 31px;
    height: 31px;
    flex: 0 0 31px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255,255,255,.16);
    box-shadow: inset 0 0 12px rgba(190,236,255,.18);
    color: #bdeeff;
    font-size: 14px;
}

.hero-live-card strong,
.hero-live-card small { display: block; line-height: 1.2; }
.hero-live-card strong { color: #fff; font-size: 15px; font-weight: 800; letter-spacing: .01em; }
.hero-live-card small { margin-top: 3px; color: #c4dcf7; font-size: 10px; font-weight: 600; letter-spacing: .02em; }

.hero-live-clients { top: 19%; left: 56%; animation: hero-card-float-left 8.2s ease-in-out infinite .4s; }
.hero-live-experience { top: 43%; left: 78%; animation: hero-card-float-right 8.9s ease-in-out infinite 1.1s; }
.hero-live-roi { top: 70%; left: 78%; min-width: 177px; animation: hero-card-float-left 7.7s ease-in-out infinite 1.8s; }

.hero-live-graph { display: flex; height: 22px; align-items: end; gap: 3px; margin-left: auto; }
.hero-live-graph b { display: block; width: 4px; border-radius: 3px 3px 0 0; background: #8ce8ff; box-shadow: 0 0 6px rgba(140,232,255,.72); }
.hero-live-graph b:nth-child(1) { height: 7px; }.hero-live-graph b:nth-child(2) { height: 11px; }.hero-live-graph b:nth-child(3) { height: 16px; }.hero-live-graph b:nth-child(4) { height: 22px; background: #fff; }

@keyframes hero-float-one {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(-4deg); }
    50% { transform: translate3d(10px, -16px, 0) rotate(5deg); }
}

@keyframes hero-float-two {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(5deg); }
    50% { transform: translate3d(-12px, 13px, 0) rotate(-4deg); }
}

@keyframes hero-float-three {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(0); }
    50% { transform: translate3d(8px, -12px, 0) rotate(7deg); }
}

@keyframes hero-card-float-left {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(-1deg); }
    50% { transform: translate3d(-10px, -12px, 0) rotate(1deg); }
}

@keyframes hero-card-float-right {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(1deg); }
    50% { transform: translate3d(9px, 12px, 0) rotate(-1deg); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-floating-icon,
    .hero-live-card { animation: none; }
}

/* left content*/
/* HERO CONTENT */

.hero-content{
    position:absolute;
    top:145px;
    left:90px;
    width:520px;
    z-index:3;
}

.hero-tag{
    display:inline-block;
    margin-bottom:18px;
    color:#246BFD;
    font-size:14px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
}

.hero-content .hero-h1{

    color:#FFFFFF !important;

    font-size:67px !important;

    font-weight:800 !important;

    line-height:1.03 !important;

    font-family:"Poppins",sans-serif !important;

    margin:0;
}

.hero-content .hero-highlight{
    position:relative;
    display:inline-block;
    margin-top:8px;
    color:#246BFD;
    font-family:'Caveat', cursive;
    font-size:80px;
    font-weight:700;
}

.hero-highlight::after{

    content:"";

    position:absolute;

    left:0;

    bottom:6px;

    width:100%;

    height:5px;

    background:#246BFD;

    border-radius:20px;

    opacity:.35;
}
.hero-description{
    margin-top:28px;
    margin-bottom:38px;
    color:#B8C0D0;
    font-size:18px;
    line-height:1.8;
    max-width:470px;
}

.hero-buttons{
    display:flex;
    gap:18px;
    margin-bottom:45px;
}

.hero-content .btn-primary{

    width:180px;

    height:56px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    border-radius:50px;

    background:#246BFD;

    color:#ffffff;

    text-decoration:none;

    font-weight:600;

    transition:.3s;
    padding:10px 20px;
}

.hero-content .btn-primary:hover{

    background:#1758D6;

    transform:translateY(-3px);
}

.hero-content .btn-secondary{

    width:180px;

    height:56px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    border:2px solid #246BFD;

    border-radius:50px;

    color:#246BFD;

    text-decoration:none;

    font-weight:600;

    transition:.3s;
}

.hero-content .btn-secondary:hover{

    background:#246BFD;

    color:#ffffff;
}

/* .hero-trust{

    display:flex;

    align-items:center;

    gap:18px;
}

.partner-group{

    display:flex;
}

.partner-group img{

    width:46px;

    height:46px;

    border-radius:50%;

    border:3px solid #fff;

    margin-left:-12px;
}

.partner-group img:first-child{

    margin-left:0;
}

.trust-text{

    color:#B8C0D0;

    font-size:15px;

    line-height:1.4;
}

.trust-text strong{

    display:block;

    color:#FFFFFF;

    font-size:28px;

    font-weight:800;
} */
/* ===========================
   MOBILE HERO
=========================== */

@media (max-width:991px){

.hero-float-layer {

    display: block;
    z-index: 15;
}

.hero-section{

    min-height:auto;
    flex-direction:column;
    padding-bottom:30px;
}

.hero-image-only{

    position:relative;
    height:450px;
    order:2;
    z-index: 5;
}

.hero-image-only img{

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center center;
}

.hero-float-search { top: 58% !important; left: 15% !important; }
.hero-float-chart { top: 62% !important; left: 70% !important; }
.hero-float-share { top: 76% !important; left: 80% !important; }
.hero-float-mail { top: 81% !important; left: 20% !important; }
.hero-float-bolt { top: 79% !important; left: 85% !important; }

.hero-live-clients { top: 52% !important; left: 10% !important; }
.hero-live-experience { top: 68% !important; left: 65% !important; }
.hero-live-roi { top: 85% !important; left: 15% !important; }

.hero-content{

    position:relative;
    top:0;
    left:0;
    transform:none;
    width:100%;
    max-width:100%;
    text-align:center;
    z-index:3;
    padding:50px 20px;
    margin-top:20px;
    order:1;
    background:linear-gradient(135deg, rgba(6, 16, 43, 0.95) 0%, rgba(6, 16, 43, 0.9) 100%);
}

.hero-content .hero-h1{

    font-size:32px !important;

    line-height:1.2 !important;

    margin-bottom:12px;

    margin-top:0;
}

.hero-content .hero-highlight{

    font-size:38px;

}

.hero-tag{

    font-size:12px;

    margin-bottom:12px;

}

.hero-description{

    font-size:15px;

    margin-bottom:25px;

    max-width:100%;

}

.hero-buttons{

    flex-direction:column;

    gap:12px;

    margin-bottom:0;
    position: relative;
    z-index: 3;

}

.hero-content .btn-primary,
.hero-content .btn-secondary{

    width:100%;

    height:50px;

    font-size:14px;

}

}

/* Extra small mobile phones */
@media (max-width:576px){

.hero-section{

    padding-bottom:20px;
}

.hero-image-only{

    height:380px;
}

.hero-float-search { top: 60% !important; left: 12% !important; }
.hero-float-chart { top: 64% !important; left: 75% !important; }
.hero-float-share { top: 78% !important; left: 82% !important; }
.hero-float-mail { top: 83% !important; left: 15% !important; }
.hero-float-bolt { top: 81% !important; left: 83% !important; }

.hero-live-clients { top: 54% !important; left: 8% !important; }
.hero-live-experience { top: 70% !important; left: 62% !important; }
.hero-live-roi { top: 87% !important; left: 10% !important; }

.hero-content{

    padding:40px 16px;
    margin-top:15px;
}

.hero-content .hero-h1{

    font-size:26px !important;

    line-height:1.2 !important;

    margin-bottom:10px;

}

.hero-content .hero-highlight{

    font-size:30px;

}

.hero-tag{

    font-size:11px;

    margin-bottom:10px;

}

.hero-description{

    font-size:14px;

    margin-bottom:20px;

}

.hero-content .btn-primary,
.hero-content .btn-secondary{

    height:46px;

    font-size:13px;

}

}
