/*==========================================
Premium Radar Perception Section
Part 2 : CSS
Unique Class : radx-
==========================================*/

/* =========================================================
   W3WIRE — PREMIUM / CLEAN VERSION
========================================================= */

.w3wire-section {
    position: relative;
    padding: 100px 0;
    background:
        radial-gradient(circle at 8% 15%, rgba(0, 110, 220, .055), transparent 28%),
        #f6f8fa;
    overflow: hidden;
}

.w3wire-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .28;
    background-image:
        linear-gradient(rgba(20,30,40,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(20,30,40,.025) 1px, transparent 1px);
    background-size: 45px 45px;
}


/* =========================================================
   INTRO
========================================================= */

.w3wire-intro {
    position: relative;
    max-width: 900px;
    margin-bottom: 55px;
}

.w3wire-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #68727c;
}

.w3wire-eyebrow span {
    width: 32px;
    height: 2px;
    background: #151d24;
}

.w3wire-main-title {
    margin: 0 0 20px;

    font-size: clamp(42px, 5vw, 68px);
    line-height: .98;
    letter-spacing: -3px;
    font-weight: 300;

    color: #101820;
}

.w3wire-main-title strong {
    display: block;
    font-weight: 750;
}

.w3wire-intro-text {
    max-width: 820px;
    margin: 0;

    color: #69737d;
    font-size: 15px;
    line-height: 1.85;
}

.w3wire-intro-bottom {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 22px;
}

.w3wire-intro-bottom span {
    width: 55px;
    height: 1px;
    background: #bbc2c9;
}

.w3wire-intro-bottom p {
    margin: 0;
    color: #929aa2;
    font-size: 12px;
}


/* =========================================================
   MAIN SHOWCASE
========================================================= */

.w3wire-showcase {
    position: relative;

    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);

    gap: 60px;
    align-items: center;
}


/* =========================================================
   IMAGE SLIDER
========================================================= */

.w3wire-visual {
    position: relative;
    min-width: 0;
}

.w3wire-carousel {
    position: relative;

    overflow: hidden;

    border-radius: 22px;

    background: #111820;

    box-shadow:
        0 25px 60px rgba(12, 25, 38, .14),
        0 8px 20px rgba(12, 25, 38, .07);
}


/* Image container */

.w3wire-image-wrap {
    position: relative;

    height: 540px;

    overflow: hidden;

    background: #111820;
}


/*
IMPORTANT:
Do NOT manually change carousel-item opacity.
Bootstrap handles the slide transition.
*/

.w3wire-slide-image {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transform: scale(1.025);

    transition:
        transform 4.5s cubic-bezier(.2,.65,.2,1);

    will-change: transform;
}


/* Gentle zoom on active image */

.w3wire-carousel .carousel-item.active .w3wire-slide-image {
    transform: scale(1);
}


/* Image overlay */

.w3wire-image-wrap::after {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.02) 45%,
            rgba(0,0,0,.22) 100%
        );
}


/* =========================================================
   IMAGE COUNTER
========================================================= */

.w3wire-counter {
    position: absolute;

    top: 22px;
    left: 22px;

    z-index: 20;

    display: flex;
    align-items: center;
    gap: 9px;

    padding: 9px 13px;

    color: #fff;

    font-size: 10px;
    letter-spacing: 2px;

    background: rgba(10,18,25,.55);

    border: 1px solid rgba(255,255,255,.16);

    border-radius: 40px;

    backdrop-filter: blur(12px);
}

.w3wire-counter span:first-child {
    font-weight: 700;
}

.w3wire-counter i {
    width: 18px;
    height: 1px;
    background: rgba(255,255,255,.5);
}


/* =========================================================
   SLIDER ARROWS
========================================================= */

.w3wire-nav {
    width: 48px !important;
    height: 48px;

    top: auto !important;
    bottom: 22px !important;

    opacity: 1 !important;

    margin: 0 8px;

    border-radius: 50%;

    background: rgba(255,255,255,.12);

    border: 1px solid rgba(255,255,255,.25);

    backdrop-filter: blur(10px);

    transition:
        background .3s ease,
        transform .3s ease;
}

.w3wire-prev {
    left: auto !important;
    right: 68px !important;
}

.w3wire-next {
    right: 8px !important;
}

.w3wire-arrow {
    color: #fff;
    font-size: 18px;
    line-height: 1;

    transition: color .3s ease;
}

.w3wire-nav:hover {
    background: rgba(255,255,255,.95);
    transform: translateY(-2px);
}

.w3wire-nav:hover .w3wire-arrow {
    color: #111820;
}


/* =========================================================
   PROGRESS
========================================================= */

.w3wire-progress {
    width: 100%;
    height: 2px;

    margin-top: 14px;

    overflow: hidden;

    background: #dfe3e6;

    border-radius: 10px;
}

#w3wireProgressBar {
    width: 16.66%;
    height: 100%;

    background: #111820;

    transition:
        width .6s cubic-bezier(.4,0,.2,1);
}


/* =========================================================
   THUMBNAILS
========================================================= */

.w3wire-thumbnails {
    display: flex;
    gap: 8px;

    margin-top: 15px;
}

.w3wire-thumb {
    position: relative;

    width: 72px;
    height: 50px;

    padding: 0;

    flex: 0 0 auto;

    overflow: hidden;

    cursor: pointer;

    border: 0;
    border-radius: 7px;

    background: #111820;

    opacity: .42;

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

.w3wire-thumb img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.w3wire-thumb span {
    position: absolute;

    right: 5px;
    bottom: 3px;

    color: #fff;

    font-size: 8px;
    font-weight: 700;

    text-shadow: 0 1px 4px rgba(0,0,0,.8);
}

.w3wire-thumb:hover {
    opacity: .8;
    transform: translateY(-2px);
}

.w3wire-thumb.active {
    opacity: 1;

    transform: translateY(-3px);

    box-shadow:
        0 0 0 2px #111820,
        0 7px 15px rgba(0,0,0,.10);
}


/* =========================================================
   RIGHT SIDE — SIMPLIFIED
========================================================= */

.w3wire-content {
    position: relative;

    padding: 35px 38px;

    border-radius: 18px;

    color: #fff;

    background: #111a22;

    box-shadow:
        0 20px 50px rgba(10,20,30,.11);

    overflow: hidden;
}


/* Small decorative line */

.w3wire-content::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 4px;
    height: 90px;

    background: #4c9cff;

    opacity: .8;
}


/* Content top */

.w3wire-content-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 24px;
}

.w3wire-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.5px;

    color: #8d99a4;
}

.w3wire-status {
    display: flex;
    align-items: center;
    gap: 7px;

    font-size: 8px;
    letter-spacing: 1.2px;

    color: #7d8994;
}

.w3wire-status span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #62d49f;

    box-shadow:
        0 0 8px rgba(98,212,159,.7);
}


/* Heading */

.w3wire-content h3 {
    margin: 0 0 15px;

    font-size: clamp(32px, 3vw, 44px);
    line-height: 1.05;

    font-weight: 300;

    letter-spacing: -1.5px;
}

.w3wire-content h3 span {
    display: inline;
    font-weight: 750;
}


/* Description */

.w3wire-description {
    margin: 0 0 25px;

    color: #8f9aa4;

    font-size: 16px;
    line-height: 1.75;
}


/* =========================================================
   CAPABILITY LIST
========================================================= */

.w3wire-capabilities {
    border-top: 1px solid rgba(255,255,255,.09);
}

.w3wire-capability {
    display: flex;
    align-items: center;

    gap: 15px;

    padding: 11px 0;

    border-bottom: 1px solid rgba(255,255,255,.065);

    transition:
        padding-left .25s ease,
        border-color .25s ease;
}

.w3wire-capability:hover {
    padding-left: 5px;

    border-color: rgba(255,255,255,.18);
}

.w3wire-capability span {
    width: 22px;

    color: #586570;

    font-size: 13px;
    letter-spacing: 1px;
}

.w3wire-capability p {
    margin: 0;

    color: #dce2e7;

    font-size: 14px;
    line-height: 1.4;
}


/* =========================================================
   BOTTOM HIGHLIGHT — SIMPLIFIED
========================================================= */

.w3wire-highlight {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-top: 23px;
    padding-top: 18px;

    border-top: 1px solid rgba(255,255,255,.08);
}

.w3wire-highlight-icon {
    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.15);
}

.w3wire-highlight-icon span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #62d49f;

    box-shadow:
        0 0 8px rgba(98,212,159,.7);
}

.w3wire-highlight strong {
    display: block;

    font-size: 11px;
    font-weight: 600;
}

.w3wire-highlight small {
    display: block;

    margin-top: 2px;

    color: #717d88;

    font-size: 9px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .w3wire-showcase {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .w3wire-content {
        max-width: 850px;
    }

}


@media (max-width: 767px) {

    .w3wire-section {
        padding: 70px 0;
    }

    .w3wire-main-title {
        font-size: 44px;
        letter-spacing: -2px;
    }

    .w3wire-intro-text {
        font-size: 14px;
    }

    .w3wire-image-wrap {
        height: 380px;
    }

    .w3wire-content {
        padding: 28px 24px;
        border-radius: 17px;
    }

    .w3wire-content h3 {
        font-size: 36px;
    }

    .w3wire-thumbnails {
        overflow-x: auto;
        scrollbar-width: none;
        padding-bottom: 5px;
    }

    .w3wire-thumbnails::-webkit-scrollbar {
        display: none;
    }

    .w3wire-thumb {
        width: 65px;
        height: 47px;
    }

}


@media (max-width: 480px) {

    .w3wire-image-wrap {
        height: 310px;
    }

    .w3wire-main-title {
        font-size: 39px;
    }

    .w3wire-content {
        padding: 25px 20px;
    }

    .w3wire-content h3 {
        font-size: 33px;
    }

    .w3wire-status {
        display: none;
    }

}
.radx-section{
    background:#f7f9fc;
    position:relative;
    overflow:hidden;
}

.radx-section:before{
    content:'';
    position:absolute;
    width:420px;
    height:420px;
    background:radial-gradient(circle,#1f5eff20 0%,transparent 70%);
    top:-180px;
    left:-180px;
    border-radius:50%;
}

.radx-section:after{
    content:'';
    position:absolute;
    width:380px;
    height:380px;
    background:radial-gradient(circle,#00bfff18 0%,transparent 70%);
    right:-150px;
    bottom:-150px;
    border-radius:50%;
}

.radx-subtitle{

    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 22px;

    background:#eef5ff;

    border:1px solid rgba(37,99,235,.18);

    color:#2563eb;

    border-radius:50px;

    font-size:15px;

    font-weight:600;

}

.radx-title{

    font-size:44px;

    font-weight:800;

    color:#132238;

    line-height:1.25;

}

.radx-title span{

    color:#2563eb;

}

.radx-description{

    max-width:850px;

    margin:auto;

    color:#667085;

    font-size:18px;

    line-height:1.8;

}

/*-------------------------*/

.radx-card{

    background:#ffffff;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 12px 35px rgba(16,24,40,.08);

    border:1px solid rgba(226,232,240,.8);

    transition:.45s;

    position:relative;

}

.radx-card:hover{

    transform:translateY(-12px);

    box-shadow:0 28px 60px rgba(37,99,235,.18);

}

.radx-card:before{

    content:'';

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:linear-gradient(90deg,#2563eb,#00b7ff);

}

/*-------------------------*/

.radx-image{

    position:relative;

    overflow:hidden;

}

.radx-image img{

    width:100%;

    height:220px;

    object-fit:cover;

    transition:1s;

}

.radx-card:hover img{

    transform:scale(1.12);

}

.radx-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(to top,rgba(8,15,35,.82),transparent);

    display:flex;

    align-items:flex-end;

    justify-content:flex-end;

    padding:18px;

}

.radx-icon{

    width:60px;

    height:60px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(12px);

    border-radius:18px;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:26px;

    border:1px solid rgba(255,255,255,.25);

    transition:.4s;

}

.radx-card:hover .radx-icon{

    background:#009ee3;

    transform:rotate(10deg) scale(1.1);

}

/*-------------------------*/

.radx-content{

    padding:28px;

}

.radx-content h4{

    font-size:24px;

    font-weight:700;

    color:#132238;

    margin-bottom:22px;

    line-height:1.35;

}

/*-------------------------*/

.radx-content ul{

    list-style:none;

    margin:0;

    padding:0;

}

.radx-content li{

    position:relative;

    padding-left:28px;

    margin-bottom:16px;

    color:#4b5563;

    line-height:1.8;

    font-size:15px;

}

.radx-content li:last-child{

    margin-bottom:0;

}

.radx-content li:before{

    content:'';

    position:absolute;

    left:0;

    top:11px;

    width:10px;

    height:10px;

    border-radius:50%;

    background:#2563eb;

    box-shadow:0 0 0 5px rgba(37,99,235,.12);

}

/*-------------------------*/

.radx-card:hover h4{

    color:#2563eb;

}

/*-------------------------*/

@keyframes radxFloat{

    0%{transform:translateY(0);}

    50%{transform:translateY(-6px);}

    100%{transform:translateY(0);}

}

.radx-icon{

    animation:radxFloat 3s ease-in-out infinite;

}

/*-------------------------*/

@media(max-width:1199px){

.radx-title{

font-size:38px;

}

}

@media(max-width:991px){

.radx-title{

font-size:34px;

}

.radx-content{

padding:24px;

}

}

@media(max-width:767px){

.radx-section{

padding-top:70px!important;

padding-bottom:70px!important;

}

.radx-title{

font-size:30px;

}

.radx-description{

font-size:16px;

}

.radx-image img{

height:220px;

}

.radx-content h4{

font-size:22px;

}

}

@media(max-width:575px){

.radx-title{

font-size:27px;

}

.radx-subtitle{

font-size:13px;

padding:8px 16px;

}

.radx-content{

padding:22px;

}

.radx-content li{

font-size:14px;

line-height:1.7;

}

}

/*====================================================
 ALGORITHM & SIGNAL INTELLIGENCE
 Premium CSS
====================================================*/

.algx-section{
    position:relative;
    overflow:hidden;
    padding:100px 0;
    background:
        radial-gradient(circle at top right,#dff2ff 0%,transparent 30%),
        radial-gradient(circle at bottom left,#edf7ff 0%,transparent 35%),
        linear-gradient(180deg,#f8fbff,#eef6fd);
}

/* Animated Grid */

.algx-section::before{

content:'';

position:absolute;

inset:0;

background-image:

linear-gradient(rgba(5,86,146,.05) 1px,transparent 1px),
linear-gradient(90deg,rgba(5,86,146,.05) 1px,transparent 1px);

background-size:60px 60px;

animation:algGrid 22s linear infinite;

opacity:.6;

}

@keyframes algGrid{

0%{
transform:translateY(0);
}

100%{
transform:translateY(60px);
}

}

/* Glow */

.algx-section::after{

content:'';

position:absolute;

width:700px;

height:700px;

right:-250px;

top:-250px;

border-radius:50%;

background:#055692;

opacity:.08;

filter:blur(130px);

}

.algx-badge{

display:inline-flex;

align-items:center;

gap:10px;

padding:10px 22px;

border-radius:50px;

font-size:13px;

font-weight:700;

letter-spacing:1px;

background:#fff;

color:#055692;

box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.algx-title{

font-size:48px;

font-weight:800;

color:#0b1d3d;

margin-bottom:20px;

}

.algx-desc{

max-width:850px;

margin:auto;

font-size:18px;

line-height:1.9;

color:#617187;

}

/*=============================*/

.algx-card{

position:relative;

height:100%;

padding:40px;

border-radius:28px;

overflow:hidden;

background:rgba(255,255,255,.85);

backdrop-filter:blur(12px);

border:1px solid rgba(5,86,146,.08);

box-shadow:

0 18px 45px rgba(0,0,0,.08);


}

.algx-card:hover{



box-shadow:

0 35px 70px rgba(5,86,146,.16);

}

.algx-featured{

transform:scale(1.04);

border:1px solid rgba(5,86,146,.25);

}

/* Shine */

.algx-card:before{

content:'';

position:absolute;

left:-120%;

top:0;

width:70%;

height:100%;

background:

linear-gradient(90deg,

transparent,

rgba(255,255,255,.55),

transparent);

transform:skewX(-25deg);

transition:1s;

}

.algx-card:hover:before{

left:150%;

}

/* Corner Accent */

.algx-card:after{

content:'';


position:absolute;

right:18px;

top:18px;

width:55px;

height:55px;

border-top:2px solid #0d6efd;

border-right:2px solid #0d6efd;

opacity:.25;

transition:.4s;

}

.algx-card:hover:after{

opacity:1;

}

/* Number */

.algx-card-no{
    display: none;

position:absolute;

right:30px;

bottom:18px;

font-size:72px;

font-weight:800;

color:#eef5fb;

}

/* Icon */

.algx-icon-wrap{

display:flex;

justify-content:center;

margin-bottom:22px;

}

.algx-icon{

width:82px;

height:82px;

display:flex;

align-items:center;

justify-content:center;

font-size:30px;

color:#fff;

background:linear-gradient(90deg,#000717,#055692)!important;

clip-path:polygon(
25% 6%,
75% 6%,
100% 50%,
75% 94%,
25% 94%,
0 50%
);

box-shadow:

0 20px 40px rgba(5,86,146,.30);

transition:.4s;

}

.algx-card:hover .algx-icon{

transform:rotate(8deg) scale(1.08);

}

/* Tag */

.algx-tag{

display:inline-block;

padding:6px 14px;

border-radius:50px;

background:#edf6ff;

color:#055692;

font-size:12px;

font-weight:700;

letter-spacing:.5px;

margin-bottom:18px;

}

.algx-card h3{

font-size:30px;

font-weight:800;

color:#0d1b37;

margin-bottom:22px;

line-height:1.3;

}

/* List */

.algx-card ul{

padding:0;

margin:0;

list-style:none;

}

.algx-card li{

position:relative;

padding-left:30px;

margin-bottom:16px;

line-height:1.8;

color:#5d6d83;

transition:.35s;

}

.algx-card li:before{

content:'';

position:absolute;

left:0;

top:10px;

width:14px;

height:14px;

border-radius:50%;

background:

linear-gradient(90deg,#000717,#055692);

box-shadow:0 0 10px rgba(5,86,146,.4);

}

.algx-card:hover li{

transform:translateX(6px);

}

/* Link */

.algx-more{

display:inline-flex;

align-items:center;

gap:10px;

margin-top:25px;

text-decoration:none;

font-weight:700;

color:#055692;

transition:.3s;

}

.algx-more:hover{

gap:16px;

}

/* Bottom Panel */

.algx-bottom-panel{

margin-top:20px;

padding:35px;

border-radius:24px;

background:#fff;

box-shadow:0 15px 40px rgba(0,0,0,.07);

}

.algx-stat h4{

font-size:38px;

font-weight:800;

margin-bottom:8px;

background:linear-gradient(90deg,#000717,#055692);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}

.algx-stat span{

color:#6d7b90;

font-weight:600;

}

/* Responsive */

@media(max-width:991px){

.algx-title{

font-size:38px;

}

.algx-featured{

transform:none;

}

.algx-card{

padding:32px;

}

}

@media(max-width:576px){

.algx-section{

padding:70px 0;

}

.algx-title{

font-size:30px;

}

.algx-desc{

font-size:15px;

}

.algx-card{

padding:25px;

}

.algx-icon{

width:65px;

height:65px;

font-size:24px;

}

.algx-card h3{

font-size:24px;

}

.algx-card-no{

font-size:48px;

}

.algx-bottom-panel{

padding:20px;

}

.algx-stat{

margin-bottom:25px;

}

}



.cuasx-section{

    position:relative;
    overflow:hidden;
    padding:100px 0;
    background:
    linear-gradient(180deg,#fbfdff,#eef7ff);
}


/* Background Grid */

.cuasx-section::before{

    content:'';

    position:absolute;

    inset:0;

    background-image:

    linear-gradient(rgba(5,86,146,.05) 1px,transparent 1px),
    linear-gradient(90deg,rgba(5,86,146,.05) 1px,transparent 1px);

    background-size:60px 60px;

    opacity:.6;

    animation:cuasGrid 18s linear infinite;

}

@keyframes cuasGrid{

0%{

transform:translateY(0);

}

100%{

transform:translateY(60px);

}

}

/* Glow */

.cuasx-section::after{

content:'';

position:absolute;

right:-250px;

top:-180px;

width:600px;

height:600px;

background:#0b7adf;

opacity:.08;

filter:blur(130px);

border-radius:50%;

}




/* Heading */

.cuasx-badge{

display:inline-flex;

align-items:center;

gap:10px;

padding:10px 22px;

border-radius:60px;

background:#fff;

font-size:13px;

font-weight:700;

letter-spacing:1px;

color:#055692;

box-shadow:0 10px 35px rgba(0,0,0,.06);

}

.cuasx-title{

font-size:48px;

font-weight:800;

color:#09152f;

margin-bottom:20px;

}

.cuasx-desc{

font-size:18px;

line-height:1.9;

color:#617187;

max-width:820px;

margin:auto;

}




/*================================================*/

.cuasx-module{

position:relative;

overflow:hidden;

height:100%;

padding:40px;

background:rgba(255,255,255,.85);

backdrop-filter:blur(14px);

border-radius:28px;

border:1px solid rgba(5,86,146,.08);

box-shadow:

0 18px 45px rgba(10,37,64,.08);

transition:.45s;

}


/* Featured Card */

.cuasx-module.featured{

transform:scale(1.02);

background:#ffffff;

}


/* Top Glow */

.cuasx-module::before{

content:'';

position:absolute;

left:-60%;

top:0;

width:60%;

height:100%;

background:

linear-gradient(

90deg,

transparent,

rgba(255,255,255,.55),

transparent);

transform:skewX(-25deg);

transition:1s;

}

.cuasx-module:hover::before{

left:150%;

}



/* Neon Border */

.cuasx-module::after{

content:'';

position:absolute;

inset:0;

padding:1px;

border-radius:28px;

background:

linear-gradient(

135deg,

transparent,

rgba(5,86,146,.25),

transparent);

-webkit-mask:

linear-gradient(#fff 0 0) content-box,

linear-gradient(#fff 0 0);

-webkit-mask-composite:xor;

mask-composite:exclude;

pointer-events:none;

}




.cuasx-module:hover{

transform:translateY(-12px);

box-shadow:

0 30px 70px rgba(5,86,146,.16);

}




/* Corner */

.cuasx-corner{

position:absolute;

right:18px;

top:18px;

width:55px;

height:55px;

border-top:2px solid #0b7adf;

border-right:2px solid #0b7adf;

opacity:.25;

transition:.4s;

}

.cuasx-module:hover .cuasx-corner{

opacity:1;

}




/* HEXAGON */

.cuasx-icon{

width:74px;

height:74px;

display:flex;

align-items:center;

justify-content:center;

font-size:28px;

color:#fff;

margin-bottom:28px;

background:linear-gradient(90deg,#000717,#055692)!important;

clip-path:polygon(
25% 6%,
75% 6%,
100% 50%,
75% 94%,
25% 94%,
0 50%
);

box-shadow:

0 15px 35px rgba(5,86,146,.35);

transition:.45s;

}

.cuasx-module:hover .cuasx-icon{

transform:rotate(8deg) scale(1.08);

}




/* Number */

.cuasx-number{

position:absolute;

right:35px;

bottom:30px;

font-size:72px;

font-weight:800;

color:#eef5fb;

user-select:none;

}




.cuasx-module h3{

font-size:28px;

font-weight:800;

color:#0c1836;

margin-bottom:18px;

}




.cuasx-line{

width:70px;

height:4px;

border-radius:50px;

background:

linear-gradient(90deg,#000717,#055692);

margin-bottom:28px;

}




.cuasx-module ul{

padding:0;

margin:0;

list-style:none;

}

.cuasx-module ul li{

position:relative;

padding-left:34px;

margin-bottom:18px;

line-height:1.7;

color:#5d6d83;

transition:.35s;

}

.cuasx-module ul li::before{

content:'';

position:absolute;

left:0;

top:7px;

width:16px;

height:16px;

border-radius:50%;

background:

linear-gradient(90deg,#000717,#055692);

box-shadow:

0 0 12px rgba(5,86,146,.45);

}

.cuasx-module:hover li{

transform:translateX(6px);

}




.cuasx-arrow{

position:absolute;

right:30px;

bottom:26px;

width:48px;

height:48px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

background:#fff;

color:#055692;

font-size:20px;

box-shadow:0 10px 25px rgba(0,0,0,.08);

opacity:0;

transition:.35s;

}

.cuasx-module:hover .cuasx-arrow{

opacity:1;

transform:translateX(5px);

}




/* Desktop connector */

@media(min-width:992px){

.cuasx-module{

min-height:480px;

}

.cuasx-module::marker{

display:none;

}

}




/* Tablet */

@media(max-width:991px){

.cuasx-title{

font-size:38px;

}

.cuasx-module{

padding:35px;

}

}




/* Mobile */

@media(max-width:576px){

.cuasx-section{

padding:70px 0;

}

.cuasx-title{

font-size:30px;

}

.cuasx-desc{

font-size:15px;

line-height:1.8;

}

.cuasx-module{

padding:28px;

border-radius:22px;

}

.cuasx-icon{

width:62px;

height:62px;

font-size:24px;

}

.cuasx-number{

font-size:50px;

}

.cuasx-module h3{

font-size:24px;

}

}

.embdshow-section{
background:#f8fbff;
position:relative;
overflow:hidden;
}

.embdshow-section:before{
content:'';
position:absolute;
width:320px;
height:320px;
border-radius:50%;
background:linear-gradient(135deg,#0d6efd18,#00c2ff18);
left:-120px;
top:-120px;
}

.embdshow-section:after{
content:'';
position:absolute;
width:260px;
height:260px;
border-radius:50%;
background:linear-gradient(135deg,#2563eb18,#38bdf818);
right:-80px;
bottom:-80px;
}

.embdshow-badge{
display:inline-block;
background:#eaf4ff;
padding:10px 22px;
border-radius:50px;
font-weight:600;
color:#0d6efd;
font-size:15px;
}

.embdshow-title{
font-size:42px;
font-weight:800;
color:#22304d;
}

.embdshow-subtitle{
max-width:820px;
margin:auto;
font-size:17px;
line-height:30px;
color:#667085;
}

.embdshow-card{
position:relative;
padding:18px;
background:#fff;
border-radius:24px;
overflow:hidden;
border:1px solid rgba(255,255,255,.6);
box-shadow:
0 18px 60px rgba(0,0,0,.08),
0 0 0 1px rgba(13,110,253,.05);
transition:.45s;
}

.embdshow-card:hover{
transform:translateY(-8px);
box-shadow:
0 28px 70px rgba(13,110,253,.18);
}

.embdshow-card::before{
content:"";
position:absolute;
top:-2px;
left:-2px;
right:-2px;
bottom:-2px;
background:linear-gradient(135deg,#0d6efd,#00c2ff,#7c3aed,#0d6efd);
background-size:300% 300%;
animation:embdshowBorder 8s linear infinite;
z-index:0;
border-radius:26px;
opacity:.35;
}

.embdshow-card::after{
content:"";
position:absolute;
top:2px;
left:2px;
right:2px;
bottom:2px;
background:#fff;
border-radius:22px;
z-index:1;
}

.embdshow-image{
position:relative;
z-index:2;
overflow:hidden;
border-radius:18px;
}

.embdshow-image img{
width:100%;
display:block;
transition:transform .8s ease;
}

.embdshow-card:hover img{
transform:scale(1.05);
}

.embdshow-image::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(to top,
rgba(0,0,0,.18),
rgba(0,0,0,0));
z-index:2;
pointer-events:none;
}

@keyframes embdshowBorder{

0%{
background-position:0% 50%;
}

100%{
background-position:300% 50%;
}

}

@media(max-width:991px){

.embdshow-title{
font-size:34px;
}

}

@media(max-width:767px){

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

.embdshow-card{
padding:10px;
}

.embdshow-subtitle{
font-size:15px;
line-height:28px;
}

}


.esfpga-section{
background:#f8fbff;
position:relative;
overflow:hidden;
}

.esfpga-section:before{
content:'';
position:absolute;
width:350px;
height:350px;
background:linear-gradient(135deg,#2563eb22,#06b6d422);
border-radius:50%;
top:-120px;
left:-120px;
}

.esfpga-section:after{
content:'';
position:absolute;
width:280px;
height:280px;
background:linear-gradient(135deg,#0ea5e922,#3b82f622);
border-radius:50%;
bottom:-100px;
right:-100px;
}

.esfpga-badge{
display:inline-block;
background:#eaf4ff;
padding:10px 22px;
border-radius:50px;
font-weight:600;
color:#0d6efd;
font-size:15px;
}

.esfpga-title{
font-size:42px;
font-weight:800;
color:#1b2b48;
margin-bottom:18px;
}

.esfpga-subtitle{
max-width:850px;
margin:auto;
font-size:17px;
line-height:30px;
color:#6b7280;
}

.esfpga-card{
background:#fff;
border-radius:22px;
padding:35px;
height:100%;
position:relative;
z-index:2;
transition:.35s;
border:1px solid #eef3f9;
box-shadow:0 10px 35px rgba(30,41,59,.08);
}

.esfpga-card:hover{
transform:translateY(-10px);
box-shadow:0 25px 60px rgba(37,99,235,.18);
}

.esfpga-icon{
width:78px;
height:78px;
border-radius:18px;
background: linear-gradient(135deg, #000f24, #05518a);
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-size:34px;
margin-bottom:25px;
box-shadow:0 12px 25px rgba(13,110,253,.25);
}

.esfpga-card h4{
font-weight:700;
font-size:25px;
margin-bottom:22px;
color:#1f2937;
}

.esfpga-list{
padding:0;
margin:0;
list-style:none;
}

.esfpga-list li{
display:flex;
align-items:flex-start;
gap:12px;
margin-bottom:16px;
font-size:15.5px;
line-height:28px;
color:#5b6578;
}

.esfpga-list li i{
color:#0d6efd;
font-size:18px;
margin-top:4px;
}

@media(max-width:991px){

.esfpga-title{
font-size:34px;
}

}

@media(max-width:767px){

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

.esfpga-card{
padding:28px;
}

.esfpga-subtitle{
font-size:15px;
line-height:28px;
}

}
.rfad-section{
    background:linear-gradient(180deg,#f8fbff,#eef5ff);
    position:relative;
    overflow:hidden;
}

.rfad-section:before{
    content:'';
    position:absolute;
    width:420px;
    height:420px;
    background:#0d6efd10;
    border-radius:50%;
    top:-180px;
    left:-180px;
}

.rfad-section:after{
    content:'';
    position:absolute;
    width:320px;
    height:320px;
    background:#00bcd410;
    border-radius:50%;
    bottom:-150px;
    right:-150px;
}

.rfad-tag{
    display:inline-block;
    background:#dceeff;
    color:#0d4d91;
    padding:10px 28px;
    border-radius:50px;
    font-weight:700;
    font-size:14px;
    letter-spacing:1px;
}

.rfad-title{
    font-size:36px;
    font-weight:800;
    color:#1f2937;
    margin-bottom:10px;
}

.rfad-subtitle{
    max-width:760px;
    margin:auto;
    color:#667085;
    font-size:16px;
}

/* 5 Column */
.col-lg-2-4{
    position:relative;
    width:20%;
    padding-left:12px;
    padding-right:12px;
}

.rfad-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.45s;
    height:100%;
    border:1px solid rgba(0,0,0,.05);
}

.rfad-card:hover{
    transform:translateY(-12px);
    box-shadow:0 22px 50px rgba(13,110,253,.22);
}

.rfad-img{
    position:relative;
    overflow:hidden;
}

.rfad-img img{
    width:100%;
    height:240px;
    object-fit:cover;
    transition:.6s;
}

.rfad-card:hover .rfad-img img{
    transform:scale(1.08);
}

.rfad-img:after{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(0,0,0,.35),transparent);
}

.rfad-content{
    text-align:center;
    padding:28px 18px 25px;
    position:relative;
}

.rfad-icon{
    width:72px;
    height:72px;
    border-radius:50%;
    background:linear-gradient(135deg,#0d6efd,#00c6ff);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin:-62px auto 18px;
    position:relative;
    z-index:5;
    border:6px solid #fff;
    box-shadow:0 12px 25px rgba(13,110,253,.25);
}

.rfad-content h4{
    font-size:21px;
    font-weight:700;
    color:#24364d;
    line-height:1.4;
    margin:0;
}

/* Tablet */

@media(max-width:991px){

    .col-lg-2-4{
        width:33.333%;
    }

    .rfad-title{
        font-size:30px;
    }

}

/* Mobile */

@media(max-width:767px){

    .col-lg-2-4{
        width:50%;
    }

    .rfad-title{
        font-size:26px;
    }

    .rfad-img img{
        height:200px;
    }

    .rfad-icon{
        width:62px;
        height:62px;
        font-size:24px;
    }

    .rfad-content h4{
        font-size:18px;
    }

}

@media(max-width:575px){

    .col-lg-2-4{
        width:100%;
    }

}

.rfcom-section{
    background:
    radial-gradient(circle at top right,#d9f0ff 0%,transparent 30%),
    radial-gradient(circle at bottom left,#eef8ff 0%,transparent 35%),
    #ffffff;
    overflow:hidden;
}

.rfcom-badge{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:#eaf6ff;
    color:#0078ff;
    font-weight:700;
    font-size:13px;
    letter-spacing:1px;
}

.rfcom-title{
    font-size:48px;
    font-weight:800;
    color:#16253d;
    line-height:1.2;
}

.rfcom-title span{
    color:#0077ff;
}

.rfcom-desc{
    font-size:18px;
    color:#5f6f82;
    line-height:1.9;
    max-width:900px;
}

.rfcom-card{

    position:relative;

    background:rgba(255,255,255,.75);

    backdrop-filter:blur(18px);

    border:1px solid rgba(0,123,255,.12);

    border-radius:24px;

    padding:40px;

    transition:.4s;

    overflow:hidden;

    box-shadow:
    0 10px 35px rgba(22,42,70,.08);

}

.rfcom-card:before{

    content:'';

    position:absolute;

    width:220px;

    height:220px;

    border-radius:50%;

    background:linear-gradient(45deg,#0d6efd,#54c6ff);

    opacity:.07;

    right:-80px;

    top:-80px;

}

.rfcom-card:hover{

    transform:translateY(-10px);

    border-color:#0d6efd;

    box-shadow:
    0 22px 60px rgba(13,110,253,.20);

}

.rfcom-icon{

    width:78px;

    height:78px;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:22px;

    background: linear-gradient(135deg, #000f24, #05518a);

    color:#fff;

    font-size:32px;

    box-shadow:0 15px 35px rgba(13,110,253,.35);

}

.rfcom-card h3{

    font-size:28px;

    font-weight:700;

    margin-bottom:20px;

    color:#22354e;

}

.rfcom-card ul{

    margin:0;

    padding:0;

    list-style:none;

}

.rfcom-card ul li{

    position:relative;

    padding-left:34px;

    margin-bottom:16px;

    color:#56677a;

    font-size:17px;

    line-height:1.8;

}

.rfcom-card ul li:before{

    content:"✓";

    position:absolute;

    left:0;

    top:2px;

    width:22px;

    height:22px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:12px;

    font-weight:700;

    color:#fff;

    background:linear-gradient(135deg,#0d6efd,#45c8ff);

}

@media(max-width:991px){

.rfcom-title{

font-size:38px;

}

.rfcom-card{

padding:30px;

}

.rfcom-card h3{

font-size:24px;

}

}

@media(max-width:767px){

.rfcom-title{

font-size:30px;

}

.rfcom-desc{

font-size:16px;

line-height:1.8;

}

.rfcom-card{

padding:25px;

}

.rfcom-card h3{

font-size:22px;

}

.rfcom-card ul li{

font-size:15px;

}

.rfcom-icon{

width:65px;

height:65px;

font-size:26px;

border-radius:18px;

}

}

.w3ps-power-section{

    position:relative;
    overflow:hidden;

    background:
    radial-gradient(circle at top left,#dff5ff 0,#ffffff 42%),
    linear-gradient(135deg,#ffffff,#eef6fb);

}

.w3ps-power-section::before{

    content:"";

    position:absolute;

    width:520px;
    height:520px;

    background:rgba(15,98,168,.05);

    border-radius:50%;

    right:-180px;
    top:-120px;

}

.w3ps-power-section::after{

    content:"";

    position:absolute;

    width:320px;
    height:320px;

    border-radius:50%;

    background:rgba(0,170,255,.05);

    left:-120px;
    bottom:-120px;

}

.w3ps-subtitle{

    display:inline-block;

    padding:8px 18px;

    border-radius:50px;

    background:#eaf5ff;

    color:#0f5b8d;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

}

.w3ps-title{

    font-size:36px;

    line-height:1.1;

    font-weight:800;

    color:#1f2937;

    margin-top:20px;

}

.w3ps-title span{

    color:#0c7dbf;

}

.w3ps-block h3{

    font-size:30px;

    font-weight:700;

    margin-bottom:20px;

    color:#12395a;

    position:relative;

    padding-left:22px;

}

.w3ps-block h3:before{

    content:"";

    position:absolute;

    left:0;

    top:6px;

    width:8px;

    height:30px;

    border-radius:30px;

    background:linear-gradient(#00c6ff,#0072ff);

}

.w3ps-block ul{

    list-style:none;

    padding:0;

    margin:0;

}

.w3ps-block li{

    position:relative;

    padding-left:34px;

    margin-bottom:16px;

    color:#49566c;

    font-size:17px;

    line-height:1.8;

}

.w3ps-block li:before{

    content:"✓";

    position:absolute;

    left:0;

    top:2px;

    width:22px;

    height:22px;

    border-radius:50%;

    background:#0ea5e9;

    color:#fff;

    text-align:center;

    line-height:22px;

    font-size:12px;

    font-weight:bold;

}

.w3ps-product-wrapper{

    position:relative;

    padding:35px;

    border-radius:30px;

    background:linear-gradient(180deg,#0f4f74,#0a3957);

    overflow:hidden;

    box-shadow:
    0 25px 60px rgba(0,0,0,.25);

}

.w3ps-product-wrapper h4{

    color:#fff;

    font-size:30px;

    font-weight:700;

}

.w3ps-product-card{

    position:relative;

    margin-bottom:22px;

    padding:28px;

    border-radius:22px;

    border:1px solid rgba(255,255,255,.25);

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(15px);

    transition:.35s;

}

.w3ps-product-card:hover{

    transform:translateY(-8px);

    background:rgba(255,255,255,.14);

    box-shadow:0 15px 40px rgba(0,0,0,.25);

}

.w3ps-product-card h5{

    color:#fff;

    font-size:20px;

    margin-bottom:12px;

    font-weight:700;

}

.w3ps-product-card p{

    color:#d7edf8;

    margin:0;

    font-size:18px;

}

.w3ps-glow{

    position:absolute;

    border-radius:50%;

    filter:blur(80px);

}

.w3ps-glow.one{

    width:180px;

    height:180px;

    background:#00c3ff;

    top:-60px;

    right:-40px;

    opacity:.25;

}

.w3ps-glow.two{

    width:150px;

    height:150px;

    background:#0088ff;

    bottom:-40px;

    left:-40px;

    opacity:.18;

}

@media(max-width:992px){

    .w3ps-title{

        font-size:40px;

    }

    .w3ps-block h3{

        font-size:26px;

    }

    .w3ps-product-wrapper{

        margin-top:10px;

    }

}

@media(max-width:768px){

    .w3ps-power-section{

        padding-top:70px!important;
        padding-bottom:70px!important;

    }

    .w3ps-title{

        font-size:34px;

    }

    .w3ps-block h3{

        font-size:24px;

    }

    .w3ps-block li{

        font-size:16px;

    }

    .w3ps-product-wrapper{

        padding:25px;

    }

    .w3ps-product-card{

        padding:22px;

    }

    .w3ps-product-card h5{

        font-size:22px;

    }

    .w3ps-product-card p{

        font-size:15px;

    }

}



/*next*/


.fps-premium-section{
    background:linear-gradient(180deg,#f7f9fc,#ffffff);
    position:relative;
    overflow:hidden;
}

.fps-premium-section:before{
    content:'';
    position:absolute;
    width:380px;
    height:380px;
    background:#0d6efd10;
    border-radius:50%;
    top:-180px;
    left:-150px;
}

.fps-premium-section:after{
    content:'';
    position:absolute;
    width:420px;
    height:420px;
    background:#ffc10712;
    border-radius:50%;
    right:-180px;
    bottom:-180px;
}

.fps-badge{
    display:inline-block;
    background:#011f3d;
    color:#fff;
    padding:8px 22px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
}

.fps-title{
    font-size:42px;
    font-weight:800;
    color:#182848;
    margin-bottom:15px;
}

.fps-subtitle{
    max-width:760px;
    color:#666;
    font-size:17px;
    line-height:1.8;
}

.fps-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    height:100%;
    transition:.4s;
    border:1px solid #edf0f5;
    box-shadow:0 15px 45px rgba(0,0,0,.06);
}

.fps-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.14);
}

.fps-img-box{
    background:#fff;
    height:270px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    overflow:hidden;
}

.fps-img-box img{
    max-height:100%;
    transition:.5s;
}

.fps-card:hover img{
    transform:scale(1.08);
}

.fps-content{
    padding:25px;
    text-align:center;
    position:relative;
}

.fps-content:before{
    content:'';
    width:55px;
    height:4px;
    background:#0d6efd;
    display:block;
    margin:0 auto 18px;
    border-radius:10px;
}

.fps-content h4{
    font-size:23px;
    font-weight:700;
    color:#16243d;
    margin-bottom:8px;
    line-height:1.4;
}

.fps-content p{
    color:#6c757d;
    font-size:16px;
    margin:0;
    font-weight:500;
}

/******************************
 Responsive
******************************/

@media(max-width:991px){

.fps-title{
    font-size:34px;
}

.fps-img-box{
    height:240px;
}

}

@media(max-width:767px){

.fps-premium-section{
    padding:70px 0;
}

.fps-title{
    font-size:30px;
}

.fps-subtitle{
    font-size:15px;
}

.fps-img-box{
    height:220px;
}

.fps-content{
    padding:22px;
}

.fps-content h4{
    font-size:20px;
}

}


