/* ===================================
GLOBAL STYLING
=================================== */

body{
    background:#010b1d;
    font-family:'Poppins', sans-serif;
    overflow-x: hidden;
}

a{
    text-decoration:none;
    transition:0.3s;
}

ul{
    margin:0;
    padding:0;
    list-style:none;
}

/* ===================================
HEADER
=================================== */

.blueritt-header{
    position:relative;
    background:#010b1d;
    border-bottom:1px solid rgba(255,255,255,0.08);
    padding:18px 0;
    z-index:999;
}

.blueritt-header::after{
    content:'';
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:2px;
    background:linear-gradient(to right,#ff6a00,#0057ff);
}

/* ===================================
LOGO
=================================== */

.header-logo img{
    max-width:220px;
}

/* ===================================
MENU
=================================== */

.main-menu{
    display:flex;
    align-items:center;
    gap:38px;
    justify-content:center;
    margin: 0;
    padding: 0;
}

.menu-item{
    position:relative;
}

.menu-item > a{
    color:#ffffff;
    font-size: 16px;
    font-weight: 300;
    font-family: "Commissioner", sans-serif;
    text-decoration: none;
}

.menu-item.active > a{
    color:#2c5de3;
}

.menu-item > a:hover{
    color:#2c5de3;
}

.menu-item i{
    font-size:12px;
    margin-left:6px;
}

/* ===================================
HEADER ACTIONS
=================================== */

.header-actions{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:15px;
}
section.hero-section {
    background-size: cover !important;
        background-position: center !important;
}

.header-btn{
 min-width: 115px;
    height: 39px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    font-family: "Bricolage Grotesque", sans-serif;
    letter-spacing: -0.72px;
    text-decoration: none;
}

.login-btn{
    border:1px solid #0057ff;
    color:#ffffff;
}

.signup-btn{
    border:1px solid #ff6a00;
    background:rgba(255,106,0,0.10);
    color:#ffffff;
}

.header-btn:hover{
    transform:translateY(-2px);
}

.search-btn{
    background:transparent;
    border:none;
    color:#ff6a00;
    font-size:28px;
}

/* ===================================
MEGA DROPDOWN
=================================== */


.mega-links {
display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 50px;
}


.has-dropdown{
    position:unset;
}

.bl-content {
    color: #8B8B8B;
    font-size: 18px;
    line-height: 26px;
    font-weight: 300;
    font-family: "Commissioner", sans-serif;
    letter-spacing: -0.54px;
    width: 70%;
}

.mega-dropdown{
    position:absolute;
    top:70px;
    left:0px;
    width:100%;
    background:#020d22;
    border-top:1px solid rgba(255,255,255,0.06);
    padding:35px 40px;
    opacity: 0;
    visibility: hidden;
    transition:0.3s;
}

.has-dropdown:hover .mega-dropdown{
    opacity:1;
    visibility:visible;
    top:80px;
}

.mega-dropdown-wrapper{
    display:grid;
    grid-template-columns:320px 1fr 320px;
    gap:50px;
}

/* ===================================
DROPDOWN TITLE
=================================== */

.dropdown-title{
    color:#ffffff;
    font-size: 19px;
    font-weight:500;
    margin-bottom:25px;
    letter-spacing: -0.44px;
    font-family: "Commissioner", sans-serif;
}

/* ===================================
SERVICE CARD
=================================== */

.services-list{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.service-card{
    display:flex;
    align-items:center;
    gap:18px;
    background:#071b42;
    border-radius:14px;
    padding:18px;
}

.service-card{
    opacity:0.45;
    transition:all .3s ease;
}

.service-card.active{
    opacity:1;
    background:#071b42;
    border:1px solid rgba(255,255,255,0.08);
}

.service-card:hover{
    opacity:1;
}

.service-icon{
    width:52px;
    height:52px;
    background:#0d2a60;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.service-icon img
{
    width: 30px;
}

.service-content h6{
    color:#ffffff;
    font-size: 17px;
    margin:0;
    letter-spacing: 0.17px;
    font-family: "Commissioner", sans-serif;
}

/* ===================================
CENTER LINKS
=================================== */

.dropdown-link-group ul{
    display:flex;
    flex-direction:column;
    gap:18px;
    padding: 0;
}

.dropdown-link-group ul li a{
    color: #51698E;
    font-size: 17px;
    text-decoration: none;
}

.dropdown-link-group ul li a:hover{
    color:#ffffff;
}

.support-group{
    margin-top:70px;
    padding-top:30px;
    border-top:1px solid rgba(255,255,255,0.08);
}

.support-group.dropdown-link-group ul {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
}


/* ===================================
PROMO CARD
=================================== */

.promo-card{
    background:#071b42;
    border-radius:20px;
    padding:20px;
}

.promo-image img{
width: 100%;
    border-radius: 18px;
    height: 227px;
    object-fit: cover;
}

.promo-content{
    margin-top:20px;
}

.promo-content h4{
    color:#ffffff;
    font-size: 17px;
    line-height:1.3;
    margin-bottom:18px;
    letter-spacing: -0.39px;
    font-family: "Commissioner", sans-serif;
}

.promo-content p{
    color:#c7d3ea;
    font-size: 14px;
    line-height:1.7;
    margin-bottom:25px;
    letter-spacing: -0.32px;
    font-family: "Commissioner", sans-serif;
    font-weight: 300;
}

.theme-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:190px;
    height:50px;
    border-radius:50px;
    border:1px solid #ff6a00;
    color:#ffffff;
    font-size:16px;
}

.theme-btn:hover{
    background:#ff6a00;
}

/* ===================================
RESPONSIVE
=================================== */

@media(max-width:1399px){

    .mega-dropdown{
        width:1100px;
    }

}

@media(max-width:991px){

    .main-menu{
        display:none;
    }

}



/* ===================================
HERO SECTION
=================================== */

.hero-section{
    position: relative;
    overflow: hidden;
    padding: 120px 0 70px;
    background: #000917;
    z-index: 1;
    /*background-image: url(../images/hero-bg.png);*/
    background-position: center -130px;
    background-repeat: no-repeat;
}

/* ===================================
BACKGROUND BLUR
=================================== */

.hero-blur{
    position: absolute;
    border-radius: 50%;
    filter: blur(180px);
    z-index: -1;
}

.hero-blur-left{
    width: 650px;
    height: 650px;
    background: rgba(255, 98, 0, 0.35);
    top: -250px;
    left: -220px;
}

.hero-blur-right{
    width: 700px;
    height: 700px;
    background: rgba(0, 76, 255, 0.35);
    top: -180px;
    right: -220px;
}

/* ===================================
CONTENT
=================================== */

.hero-content{
    position: relative;
}

/* ===================================
RINGS
=================================== */

.hero-rings{
    position: relative;
    width: 420px;
    height: 420px;
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ring{
    position: absolute;
    border-radius: 50%;
}

.ring-1{
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255, 98, 0, 0.18);
}

.ring-2{
    width: 300px;
    height: 300px;
    border: 2px solid rgba(0, 76, 255, 0.55);
}

.ring-3{
    width: 190px;
    height: 190px;
    border: 2px solid rgba(255, 98, 0, 0.45);
}

/* ===================================
CENTER LOGO
=================================== */

.hero-logo{
    width: 92px;
    height: 92px;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo img{
    width: 100%;
}

/* ===================================
TITLE
=================================== */

.hero-title{
    color: #FFFFFF;
    font-size: 58px;
    font-weight: 300;
    line-height: 1.18;
    letter-spacing: -1.33px;
    margin-bottom: 30px;
    margin-top: -140px;
    font-family: "Commissioner", sans-serif;
        position: relative;
}

/* ===================================
DESCRIPTION
=================================== */

.hero-description{
    max-width: 980px;
    margin: 0 auto 45px;
    color: #8B8B8B;
    font-size: 18px;
    line-height: 26px;
    font-weight: 300;
    font-family: "Commissioner", sans-serif;
    letter-spacing: -0.54px;
    width: 70%;
}

/* ===================================
BUTTON
=================================== */

.hero-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 152px;
    height: 48px;
    padding: 0 40px;
    border-radius: 100px;
    border: 1px solid #FF6200;
    background: rgba(255, 98, 0, 0.08);
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 400;
    transition: 0.3s;
    font-family: "Bricolage Grotesque", sans-serif;
    text-decoration: none;
}

.hero-btn span{
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-btn:hover{
    background: #FF6200;
    color: #FFFFFF;
    transform: translateY(-3px);
}

/* ===================================
RESPONSIVE
=================================== */

@media(max-width: 1399px){

    .hero-title{
        font-size: 66px;
    }

}

@media(max-width: 991px){

    .hero-section{
        padding: 140px 0 100px;
    }

    .hero-rings{
        width: 300px;
        height: 300px;
    }

    .ring-1{
        width: 300px;
        height: 300px;
    }

    .ring-2{
        width: 220px;
        height: 220px;
    }

    .ring-3{
        width: 140px;
        height: 140px;
    }

    .hero-title{
        font-size: 48px;
        line-height: 1.3;
    }

    .hero-description{
        font-size: 18px;
    }

}

@media(max-width: 767px){

    .hero-title{
        font-size: 38px;
    }

    .hero-btn{
        min-width: 220px;
        height: 58px;
        font-size: 18px;
    }

}




/* ===================================
TRUSTED SECTION
=================================== */

.trusted-section{
    position: relative;
    padding: 50px 0;
    overflow: hidden;
    background: #000917;
}

/* ===================================
HEADING
=================================== */

.trusted-heading{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    margin-bottom: 30px;
}

.trusted-heading .line{
    width: 520px;
    height: 1px;
    background: rgba(255,255,255,0.06);
}

.trusted-heading h5{
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    font-weight: 400;
    margin: 0;
    white-space: nowrap;
    font-family: "Commissioner", sans-serif;
    letter-spacing: -0.15px;
}

/* ===================================
SLIDER
=================================== */

.trusted-slider{
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* ===================================
TRACK
=================================== */

.trusted-track{
    display: flex;
    align-items: center;
    width: max-content;
    animation: trustedScroll 28s linear infinite;
}

/* ===================================
LOGO
=================================== */

.trusted-logo{
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 300px;
    padding: 0 45px;
}

.trusted-logo img{
    max-width: 240px;
    /* opacity: 0.18; */
    transition: 0.3s;
}

.trusted-logo:hover img{
    opacity: 1;
}

/* ===================================
ANIMATION
=================================== */

@keyframes trustedScroll{

    0%{
        transform: translateX(0);
    }

    100%{
        transform: translateX(-50%);
    }

}

/* ===================================
RESPONSIVE
=================================== */

@media(max-width: 991px){

    .trusted-heading{
        gap: 18px;
        margin-bottom: 45px;
    }

    .trusted-heading .line{
        width: 180px;
    }

    .trusted-heading h5{
        font-size: 18px;
    }

    .trusted-logo{
        min-width: 220px;
        padding: 0 25px;
    }

    .trusted-logo img{
        max-width: 160px;
    }

}




/* ===================================
VIDEO SECTION
=================================== */

.video-section{
    padding: 50px 0;
    background: #000917;
}

/* ===================================
VIDEO WRAPPER
=================================== */

.video-wrapper{
    position: relative;
    overflow: hidden;
    border-radius: 28px;
}

/* ===================================
VIDEO
=================================== */

.video-wrapper video{
    width: 100%;
    display: block;
    border-radius: 28px;
}

/* ===================================
RESPONSIVE
=================================== */

@media(max-width: 991px){

    .video-wrapper{
        border-radius: 18px;
    }

    .video-wrapper video{
        border-radius: 18px;
    }

}

@media(max-width: 767px){

    .video-section{
        padding-bottom: 80px;
    }

}


/* ===================================
ABOUT SECTION
=================================== */

.about-section{
    padding: 50px 0;
    background: #000917;
}

/* ===================================
TOP TAG
=================================== */

.section-tag{
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 5px 14px 5px 24px;
    border: 1px solid #FF6200;
    border-radius: 100px;
    background: rgba(255, 98, 0, 0.08);
    margin-bottom: 30px;
}

.section-tag span{
    color: #FF5900;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -0.72px;
    font-family: "Bricolage Grotesque", sans-serif;
}

.section-tag strong{
    color: #FFFFFF;
    font-weight: 500;
}

.tag-arrow{
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 16px;
}

/* ===================================
TITLE
=================================== */

.about-title{
    color: #FFFFFF;
    font-size: 52px;
    line-height: 1.25;
    font-weight: 500;
    margin-bottom: 55px;
    font-family: "Commissioner", sans-serif;
    letter-spacing: -0.42px;
}

/* ===================================
TITLE ICON
=================================== */

.title-icon{
}

.title-icon img{
    width: 62px;
    margin: 0px 0 0px;
}

/* ===================================
DESCRIPTION
=================================== */

.about-description{
    color: #FFFFFF;
    font-size: 52px;
    line-height: 1.25;
    font-weight: 500;
    margin-bottom: 55px;
    font-family: "Commissioner", sans-serif;
    letter-spacing: -0.42px;
}

.about-description span{
    position: relative;
}

.about-description span::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 3px;
    background: #FF6200;
}

/* ===================================
STATS ROW
=================================== */

.stats-row{
    row-gap: 30px;
}

/* ===================================
CARD
=================================== */

.stats-card{
    background: #041A49;
    border-radius: 26px;
    padding: 50px 40px;
    height: 100%;
    background: radial-gradient(ellipse 86% 61% at 6% 14%, #0a2d82 0%, #051f5c 45%, #020e26 100%);
    border: 1.5px solid rgb(93 131 197 / 35%);
    text-align: center;
}

/* ===================================
NUMBER
=================================== */

.stats-card h3{
    color: #FFFFFF;
    font-size: 58px;
    line-height: 1;
    font-weight: 500;
    margin-bottom: 5px;
    font-family: "Commissioner", sans-serif;
    letter-spacing: -0.46px;
}

/* ===================================
TEXT
=================================== */

.stats-card p{
    color: #A2A2A2;
    font-size: 22px;
    margin: 0;
    font-family: "Commissioner", sans-serif;
    font-weight: 300;
}

/* ===================================
RESPONSIVE
=================================== */

@media(max-width: 1399px){

    .about-title{
        font-size: 68px;
    }

    .about-description{
        font-size: 38px;
    }

}

@media(max-width: 991px){

    .about-section{
        padding: 70px 0 90px;
    }

    .section-tag{
        margin-bottom: 35px;
    }

    .section-tag span{
        font-size: 16px;
    }

    .about-title{
        font-size: 48px;
        line-height: 1.4;
    }

    .title-icon{
        width: 58px;
        height: 58px;
        border-radius: 16px;
    }

    .title-icon img{
        width: 28px;
    }

    .about-description{
        font-size: 28px;
        margin-bottom: 50px;
    }

    .stats-card{
        padding: 35px 28px;
    }

    .stats-card h3{
        font-size: 48px;
    }

    .stats-card p{
        font-size: 18px;
    }

}

@media(max-width: 767px){

    .about-title{
        font-size: 38px;
    }

    .about-description{
        font-size: 22px;
        line-height: 1.5;
    }

}




/* ===================================
WHO BUILT FOR SECTION
=================================== */

.built-for-section{
    padding: 50px 0;
    background: #000917;
    position: relative;
    overflow: visible;
}

/* ===================================
SECTION HEADING
=================================== */

.section-heading{
    margin-bottom: 60px;
}

.section-heading h2{
    color: #FFFFFF;
    font-size: 43px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.34px;
    margin: 0;
    font-family: "Commissioner", sans-serif;
}

/* ===================================
ITEM
=================================== */

.built-for-item{
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
    z-index: 9;
}

/* ===================================
CONTENT
=================================== */

.built-for-content{
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.built-for-content h3{
    color: #FFFFFF;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.26px;
    font-family: "Commissioner", sans-serif;
}

.built-for-content p{
    color: #9D9D9D;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5;
    margin: 0;
    font-family: "Commissioner", sans-serif;
    letter-spacing: -0.18px;
}

/* ===================================
BUTTON
=================================== */

.theme-btn{
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px 16px 34px;
    border: 1px solid #FF6200;
    border-radius: 100px;
    background: rgba(255, 98, 0, 0.10);
    color: #FFFFFF;
    text-decoration: none;
    font-size: 22px;
    font-weight: 500;
    transition: 0.3s ease;
}

.theme-btn span{
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.theme-btn:hover{
    background: #FF6200;
    color: #FFFFFF;
}

/* ===================================
RESPONSIVE
=================================== */

@media(max-width: 1399px){

    .section-heading h2{
        font-size: 58px;
    }

    .built-for-content h3{
        font-size: 36px;
    }

    .built-for-content p{
        font-size: 22px;
    }

}

@media(max-width: 991px){

    .built-for-section{
        padding: 80px 0;
    }

    .section-heading{
        margin-bottom: 40px;
    }

    .section-heading h2{
        font-size: 44px;
    }

    .built-for-item{
        padding: 30px 0;
    }

    .built-for-content{
        margin-bottom: 25px;
    }

    .built-for-content h3{
        font-size: 30px;
    }

    .built-for-content p{
        font-size: 18px;
    }

    .theme-btn{
        font-size: 18px;
        padding: 14px 16px 14px 28px;
    }

}

@media(max-width: 767px){

    .section-heading h2{
        font-size: 36px;
    }

    .built-for-content{
        display: block;
    }

    .built-for-content h3{
        margin-bottom: 12px;
        font-size: 28px;
    }

    .built-for-content p{
        font-size: 17px;
        line-height: 1.7;
    }

}



/* ===================================
FEATURE CARD SECTION
=================================== */

.feature-card-section{
    padding: 50px 0;
    background: #000917;
    position: relative;
    /* overflow-x: hidden; */
}

/* ===================================
BACKGROUND GLOW
=================================== */

.feature-card-section::before{
    content: "";
    position: absolute;
    left: -610px;
    bottom: -550px;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, #FF5900 0%, rgba(255, 98, 0, 0) 70%);
    pointer-events: none;
    z-index: 1;
    opacity: 47%;
}

.feature-card-section::after{
    content: "";
    position: absolute;
    right: -550px;
    top: -550px;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, #155DFC 0%, rgba(0, 76, 255, 0) 70%);
    pointer-events: none;
    opacity: 47%;
}

/* ===================================
CARD WRAPPER
=================================== */

.feature-card-wrapper{
    position: relative;
    border-radius: 34px;
    overflow: hidden;
    border: 1.5px solid rgb(93 131 197 / 35%);
    background: radial-gradient(ellipse 86% 61% at 6% 14%, #0a2d82 0%, #051f5c 45%, #020e26 100%);
    padding: 60px 70px 0;
    position: relative;
    z-index: 9;
}

/* ===================================
LEFT CONTENT
=================================== */

.feature-card-content{
    padding-bottom: 60px;
}

/* ===================================
BADGE
=================================== */

.feature-badge{
    display: inline-flex;
    align-items: center;
    padding: 9px 18px;
    border-radius: 100px;
    border: 1px solid #FF6200;
    color: #FFFFFF;
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 20px;
    background: rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.feature-badge::before{
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 100px;
    background: linear-gradient(90deg,#0057FF,#FF6200);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
}

/* ===================================
HEADING
=================================== */

.feature-card-content h2{
    font-size: 52px;
    line-height: 1.05;
    font-weight: 300;
    color: #FFFFFF;
    margin-bottom: 10px;
    letter-spacing: -1.2px;
    max-width: 500px;
    font-family: "Bricolage Grotesque", sans-serif;
}

/* ===================================
PARAGRAPH
=================================== */

.feature-card-content p{
    font-size: 16px;
    line-height: 1.7;
    color: #9D9D9D;
    margin-bottom: 20px;
    max-width: 650px;
    font-family: "Commissioner", sans-serif;
    letter-spacing: -0.13px;
    width: 80%;
}

/* ===================================
BUTTON
=================================== */

.theme-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 20px;
    border-radius: 100px;
    border: 1px solid #FF5900;
    background: rgba(255,98,0,0.08);
    color: #FFFFFF;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: "Bricolage Grotesque", sans-serif;
}

.theme-btn::before{
}

.theme-btn:hover{
    background: #FF6200;
    color: #FFFFFF;
}

/* ===================================
IMAGE
=================================== */

.feature-card-image{
    /* position: relative; */
    text-align: right;
}

.feature-card-image img{
    width: 100%;
    max-width: 640px;
    display: block;
    margin-left: auto;
    position: absolute;
    bottom: 0px;
    right: 0;
}

/* ===================================
RESPONSIVE
=================================== */

@media(max-width: 1399px){

    .feature-card-content h2{
        font-size: 58px;
    }

    .feature-card-content p{
        font-size: 20px;
    }

}

@media(max-width: 991px){

    .feature-card-section{
        padding: 80px 0;
    }

    .feature-card-wrapper{
        padding: 50px 40px 0;
    }

    .feature-card-content{
        padding-bottom: 50px;
    }

    .feature-card-content h2{
        font-size: 46px;
    }

    .feature-card-content p{
        font-size: 18px;
    }

    .theme-btn{
        font-size: 22px;
        padding: 16px 34px;
    }

    .feature-card-image{
        margin-top: 20px;
    }

}

@media(max-width: 767px){

    .feature-card-wrapper{
        padding: 35px 25px 0;
        border-radius: 24px;
    }

    .feature-badge{
        font-size: 14px;
        padding: 10px 16px;
    }

    .feature-card-content h2{
        font-size: 34px;
        line-height: 1.15;
    }

    .feature-card-content p{
        font-size: 16px;
        line-height: 1.8;
    }

    .theme-btn{
        font-size: 18px;
        padding: 14px 28px;
    }

}



/* ===================================
PRODUCT ANALYSIS SECTION
=================================== */

.product-analysis-section{
    padding: 50px 0 120px;
    background: #000917;
    position: relative;
    /* overflow: hidden; */
}

/* ===================================
BACKGROUND GLOW
=================================== */

.product-analysis-section::before{
    content: "";
    position: absolute;
    left: -350px;
    top: 50%;
    transform: translateY(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255,98,0,0.22) 0%, rgba(255,98,0,0) 70%);
    pointer-events: none;
    display: none;
}

.product-analysis-section::after{
    content: "";
    position: absolute;
    right: -250px;
    top: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,87,255,0.18) 0%, rgba(0,87,255,0) 70%);
    pointer-events: none;
}

/* ===================================
LEFT CONTENT
=================================== */

.analysis-content{
    position: relative;
    z-index: 2;
}

/* ===================================
TOP HEADING
=================================== */

.analysis-top-heading{
    font-size: 52px;
    line-height: 1.12;
    font-weight: 600;
    margin-bottom: 20px;
    max-width: 720px;
    background: linear-gradient(90deg,#6D5B69 0%, #123D92 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Commissioner", sans-serif;
    letter-spacing: -0.42px;
    opacity: .7;
}

/* ===================================
MAIN HEADING
=================================== */

.analysis-main-heading{
    font-size: 52px;
    line-height: 1.12;
    font-weight: 500;
    color: #FFFFFF;
    max-width: 690px;
    margin-bottom: 30px;
    letter-spacing: -0.42px;
    font-family: "Commissioner", sans-serif;
}

/* ===================================
CTA CARD
=================================== */

.analysis-cta-card{
    padding: 28px 20px;
    border-radius: 28px;
    position: relative;
    background: rgba(0, 10, 35, 0.65);
    overflow: hidden;
    width: max-content;
}

.analysis-cta-card::before{
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 28px;
    background: linear-gradient(90deg,#FF6200,#FFFFFF);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
}

.analysis-cta-card p{
    color: #9D9D9D;
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 20px;
    font-family: "Commissioner", sans-serif;
    font-weight: 100;
    letter-spacing: -0.16px;
}

/* ===================================
BUTTON
=================================== */

.theme-btn{
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 10px 18px 20px;
    border-radius: 100px;
    background: rgba(255,98,0,0.14);
    border: 1px solid #FF6200;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s ease;
    font-family: "Bricolage Grotesque", sans-serif;
}

.theme-btn span{
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.theme-btn:hover{
    background: #FF6200;
    color: #FFFFFF;
}

/* ===================================
RIGHT VISUAL
=================================== */

.analysis-visual{
    position: relative;
    height: 100%;
    /* min-height: 700px; */
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

/* ===================================
CURVE LINE
=================================== */

.curve-line{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.curve-line svg{
    width: 100%;
    height: auto;
}

.curve-line path{
    stroke: rgba(255,255,255,0.75);
    stroke-width: 2;
    fill: none;
}

/* ===================================
STATS
=================================== */

.analysis-stats{
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 0px;
}
.analysis-stats img{
    width: 100%;
}
.analysis-stats h2{
    font-size: 240px;
    line-height: 0.9;
    font-weight: 700;
    margin: 0;
    letter-spacing: -8px;
    color: transparent;
    -webkit-text-stroke: 2px #FF6200;
}

.analysis-stats p{
    color: #003D93;
    font-size: 40px;
    font-weight: 400;
    margin-top: 20px;
    font-family: "Commissioner", sans-serif;
    letter-spacing: -0.32px;
}

/* ===================================
RESPONSIVE
=================================== */

@media(max-width: 1399px){

    .analysis-top-heading{
        font-size: 58px;
    }

    .analysis-main-heading{
        font-size: 60px;
    }

    .analysis-stats h2{
        font-size: 180px;
    }

}

@media(max-width: 991px){

    .product-analysis-section{
        padding: 90px 0;
    }

    .analysis-top-heading{
        font-size: 44px;
        margin-bottom: 25px;
    }

    .analysis-main-heading{
        font-size: 46px;
        margin-bottom: 40px;
    }

    .analysis-cta-card{
        padding: 30px;
        margin-bottom: 60px;
    }

    .analysis-cta-card p{
        font-size: 22px;
    }

    .theme-btn{
        font-size: 20px;
        padding: 15px 24px;
    }

    .analysis-visual{
        min-height: auto;
    }

    .analysis-stats h2{
        font-size: 130px;
    }

    .analysis-stats p{
        font-size: 34px;
    }

}

@media(max-width: 767px){

    .analysis-top-heading{
        font-size: 34px;
    }

    .analysis-main-heading{
        font-size: 36px;
        line-height: 1.2;
    }

    .analysis-cta-card{
        padding: 24px;
        border-radius: 22px;
    }

    .analysis-cta-card p{
        font-size: 18px;
    }

    .theme-btn{
        font-size: 16px;
        padding: 13px 22px;
    }

    .analysis-stats h2{
        font-size: 90px;
        -webkit-text-stroke: 1px #FF6200;
    }

    .analysis-stats p{
        font-size: 24px;
    }

}



/* ===================================
FEATURE SHOWCASE SECTION
=================================== */

.feature-showcase-section{
    background: #000917;
    position: relative;
    overflow: hidden;
    padding-bottom: 70px;
}

/* ===================================
CARD
=================================== */

.feature-showcase-card{
    position: relative;
    height: 100%;
    background: #000917;
    /* border-right: 1px solid rgba(255,255,255,0.04); */
}

/* ===================================
IMAGE
=================================== */

.feature-showcase-image{
    position: relative;
    overflow: hidden;
}

.feature-showcase-image img{
    width: 100%;
    display: block;
}

/* ===================================
CONTENT
=================================== */

.feature-showcase-content{
    padding: 48px 42px 55px;
}

.feature-showcase-content h3{
    color: #FFFFFF;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 500;
    margin-bottom: 22px;
    letter-spacing: -0.24px;
    font-family: "Commissioner", sans-serif;
}

.feature-showcase-content p{
    color: #9D9D9D;
    font-size: 20px;
    line-height: 27px;
    font-weight: 400;
    margin: 0;
    font-family: "Commissioner", sans-serif;
    letter-spacing: -0.16px;
    font-weight: 300;
}

/* ===================================
RESPONSIVE
=================================== */

@media(max-width: 1399px){

    .feature-showcase-content{
        padding: 40px 35px 50px;
    }

    .feature-showcase-content h3{
        font-size: 44px;
    }

    .feature-showcase-content p{
        font-size: 20px;
    }

}

@media(max-width: 991px){

    .feature-showcase-card{
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .feature-showcase-content{
        padding: 35px 28px 45px;
    }

    .feature-showcase-content h3{
        font-size: 36px;
        margin-bottom: 18px;
    }

    .feature-showcase-content p{
        font-size: 18px;
        line-height: 1.8;
    }

}

@media(max-width: 767px){

    .feature-showcase-content{
        padding: 28px 22px 35px;
    }

    .feature-showcase-content h3{
        font-size: 28px;
        line-height: 1.2;
    }

    .feature-showcase-content p{
        font-size: 16px;
        line-height: 1.8;
    }

}





/* ===================================
PRODUCT PLATFORM SECTION
=================================== */

.product-platform-section{
    background: #000610;
    position: relative;
    /* overflow: hidden; */
    padding-bottom: 50px;
}

/* ===================================
TOP TABS
=================================== */

.platform-tabs-wrapper{
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.platform-tabs{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.platform-tab-btn{
    width: 14.33%;
    height: 120px;
    background: transparent;
    border: 0;
    border-right: 1px solid rgba(255,255,255,0.06);
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    transition: 0.3s ease;
}

.platform-tab-btn:last-child{
    border-right: 0;
}

.platform-tab-btn::before{
    content: "";
    position: absolute;
    width: stretch;
    height: 80px;
    border-radius: 100px;
    background: rgba(255,98,0,0.10);
    border: 1px solid #FF6200;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: 0.3s ease;
    width: 100%;
}

.platform-tab-btn.active::before{
    opacity: 1;
}

.platform-tab-btn span{
    position: relative;
    z-index: 2;
}

/* ===================================
MAIN CARD
=================================== */

.platform-card{
    position: relative;
    overflow: hidden;
}

/* ===================================
IMAGE
=================================== */

.platform-image-wrapper{
    position: relative;
    z-index: 2;
    margin: -90px 0 0;
}

.platform-main-image{
    width: 100%;
    display: block;
}

/* ===================================
BIG TYPOGRAPHY
=================================== */

.platform-big-text{
    /* position: absolute; */
    left: 0;
    right: 0;
    bottom: 810px;
    z-index: 3;
    pointer-events: none;
    margin: 0 0 40px;
}

.platform-big-text h2{
    margin: 0;
    position: relative;
    text-align: center;
}

.platform-big-text .left-text{
    position: absolute;
    left: 30px;
    top: 0;
    font-size: 140px;
    font-weight: 700;
    line-height: 1;
    color: rgba(0,58,145,0.65);
    letter-spacing: -1.28px;
    font-family: "Commissioner", sans-serif;
}

.platform-big-text .right-text{
    position: absolute;
    right: 20px;
    top: 0;
    font-size: 140px;
    font-weight: 700;
    line-height: 1;
    color: rgba(0,58,145,0.65);
    letter-spacing: -1.28px;
    font-family: "Commissioner", sans-serif;
}

.platform-big-text .bottom-text{
    display: inline-block;
    font-size: 140px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
    letter-spacing: -1.28px;
    margin-top: 140px;
    font-family: "Commissioner", sans-serif;
}

/* ===================================
CONTENT
=================================== */

.platform-content{
    position: relative;
    z-index: 5;
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 40px;
}

.platform-heading{
    font-size: 30px;
    line-height: 1.2;
    color: #FFFFFF;
    font-weight: 500;
    margin-bottom: 18px;
    letter-spacing: -0.24px;
    font-family: "Commissioner", sans-serif;
    display: inline-block;
    margin: 0 20px 0 0;
    display: block;
}

.platform-description{
    font-size: 22px;
    line-height: 1.7;
    color: #9D9D9D;
    margin-bottom: 18px;
    /* max-width: 670px; */
    letter-spacing: -0.18px;
    display: inline-block;
}

.platform-small-text{
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.45);
    max-width: 649px;
    margin-bottom: 30px;
    letter-spacing: -0.13px;
}

/* ===================================
BUTTON
=================================== */

.theme-btn{
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 28px;
    border-radius: 100px;
    border: 1px solid #FF6200;
    background: rgba(255,98,0,0.10);
    color: #FFFFFF;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    transition: 0.3s ease;
}

.theme-btn span{
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.theme-btn:hover{
    background: #FF6200;
    color: #FFFFFF;
}

/* ===================================
RESPONSIVE
=================================== */

@media(max-width: 1600px){

    .platform-big-text .left-text,
    .platform-big-text .right-text{
        font-size: 130px;
    }

    .platform-big-text .bottom-text{
        font-size: 110px;
    }

}

@media(max-width: 1199px){

    .platform-big-text{
        bottom: 300px;
    }

    .platform-big-text .left-text,
    .platform-big-text .right-text{
        font-size: 90px;
    }

    .platform-big-text .bottom-text{
        font-size: 80px;
        margin-top: 80px;
    }

    .platform-heading{
        font-size: 42px;
    }

    .platform-description{
        font-size: 22px;
    }

}

@media(max-width: 991px){

    .platform-tabs{
        flex-direction: column;
    }

    .platform-tab-btn{
        width: 100%;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .platform-big-text{
        position: relative;
        bottom: auto;
        margin-top: -100px;
        margin-bottom: 40px;
    }

    .platform-big-text .left-text,
    .platform-big-text .right-text{
        position: relative;
        display: block;
        left: auto;
        right: auto;
        font-size: 70px;
    }

    .platform-big-text .bottom-text{
        margin-top: 20px;
        font-size: 70px;
    }

    .platform-content{
        padding: 0 25px;
    }

    .platform-heading{
        font-size: 34px;
    }

    .platform-description{
        font-size: 18px;
    }

    .platform-small-text{
        font-size: 16px;
    }

}

@media(max-width: 767px){

    .platform-big-text .left-text,
    .platform-big-text .right-text{
        font-size: 48px;
    }

    .platform-big-text .bottom-text{
        font-size: 46px;
    }

    .platform-heading{
        font-size: 28px;
    }

}






/* ===================================
COMMON SECTION HEADING
=================================== */

.section-heading{
    margin-bottom: 20px;
}

.section-heading h2{
    font-size: 43px;
    line-height: 1.15;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 20px;
    letter-spacing: -0.34px;
    font-family: "Commissioner", sans-serif;
}

.section-heading p{
    font-size: 18px;
    line-height: 1.7;
    color: #9D9D9D;
    max-width: 1100px;
    margin: 0;
    letter-spacing: -0.14px;
    font-family: "Commissioner", sans-serif;
}

/* ===================================
DATA SOURCES SECTION
=================================== */

.data-sources-section{
    position: relative;
    /* overflow: hidden; */
    padding: 50px 1px;
    background: #000610;
}

.data-sources-section::before{
    content: "";
    position: absolute;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, #155DFC 0%, rgba(0, 0, 0, 0) 70%);
    left: -350px;
    bottom: -650px;
    z-index: 1;
    opacity: 47%;
}

.data-sources-section::after{
    content: "";
    position: absolute;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, #FF5900 0%, rgba(0, 0, 0, 0) 70%);
    right: -600px;
    top: 40px;
    opacity: 47%;
    z-index: 1;
}

.data-source-card{
    background: radial-gradient(ellipse 86% 61% at 6% 14%, #0a2d82 0%, #051f5c 45%, #020e26 100%);
    border-radius: 28px;
    min-height: 310px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 30px;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
    z-index: 9;
}

.data-source-card:hover{
    transform: translateY(-6px);
}

.data-source-icon{
    margin-bottom: 20px;
}

.data-source-icon img{
    width: 60px;
}

.data-source-card h3{
    font-size: 26px;
    line-height: 1.3;
    color: #FFFFFF;
    font-weight: 300;
    text-align: center;
    margin: 0;
    font-family: "Commissioner", sans-serif;
}
.data-source-card p{text-align: center;    color: #8a8a8a;    margin: 10px 0 0;    font-size: 16px;    font-family: "Commissioner", sans-serif;    font-weight: 400;}


.mt-70{
    margin-top: 70px;
}

/* ===================================
CTA SECTION
=================================== */

.platform-cta-section{
    position: relative;
    background: #000610;
    padding: 50px 0;
    overflow: visible;
}

.platform-cta-box{
    border: 1px solid rgba(97,128,255,0.35);
    border-radius: 42px;
    overflow: hidden;
    padding: 90px 90px;
    position: relative;
    background: #000000;
    z-index: 0;
}

.platform-cta-box::before{
    content: "";
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0,72,255,0.10) 0%, rgba(0,0,0,0) 70%);
    left: -200px;
    bottom: -250px;
}

.platform-cta-content{
    position: relative;
    z-index: 3;
}

.platform-cta-content h2{
    font-size: 43px;
    line-height: 1.12;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 30px;
    letter-spacing: -0.34px;
    max-width: 720px;
    font-family: "Commissioner", sans-serif;
}

.platform-cta-content p{
    font-size: 18px;
    line-height: 1.7;
    color: #9D9D9D;
    max-width: 720px;
    margin-bottom: 42px;
    font-family: "Commissioner", sans-serif;
    letter-spacing: -0.14px;
    font-weight: 300;
}

.platform-cta-image{
    position: relative;
    z-index: 3;
}

.platform-cta-image img{
    width: 100%;
    max-width: 380px;
}

/* ===================================
THEME BUTTON
=================================== */

.theme-btn{
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 30px;
    border-radius: 100px;
    border: 1px solid #FF6200;
    background: rgba(255,98,0,0.12);
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s ease;
}

.theme-btn span{
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.theme-btn:hover{
    background: #FF6200;
    color: #FFFFFF;
}

/* ===================================
RESPONSIVE
=================================== */

@media(max-width: 1399px){

    .section-heading h2{
        font-size: 52px;
    }

    .platform-cta-content h2{
        font-size: 56px;
    }

}

@media(max-width: 1199px){

    .section-heading h2{
        font-size: 46px;
    }

    .section-heading p{
        font-size: 20px;
    }

    .data-source-card{
        min-height: 260px;
    }

    .data-source-card h3{
        font-size: 28px;
    }

    .platform-cta-box{
        padding: 70px 60px;
    }

    .platform-cta-content h2{
        font-size: 48px;
    }

    .platform-cta-content p{
        font-size: 20px;
    }

}

@media(max-width: 991px){

    .data-sources-section{
        padding: 100px 0;
    }

    .section-heading{
        text-align: center;
    }

    .section-heading h2{
        font-size: 40px;
    }

    .section-heading p{
        font-size: 18px;
        margin: auto;
    }

    .platform-cta-box{
        padding: 60px 40px;
    }

    .platform-cta-content{
        text-align: center;
        margin-bottom: 60px;
    }

    .platform-cta-content h2{
        max-width: 100%;
        font-size: 42px;
    }

    .platform-cta-content p{
        max-width: 100%;
    }

}

@media(max-width: 767px){

    .section-heading h2{
        font-size: 34px;
    }

    .data-source-card{
        min-height: 220px;
    }

    .data-source-icon{
        width: 100px;
        height: 100px;
    }

    .data-source-icon img{
        width: 50px;
    }

    .data-source-card h3{
        font-size: 24px;
    }

    .platform-cta-box{
        border-radius: 28px;
        padding: 50px 24px;
    }

    .platform-cta-content h2{
        font-size: 34px;
    }

    .platform-cta-content p{
        font-size: 17px;
    }

    .theme-btn{
        font-size: 16px;
        padding: 15px 24px;
    }

}







/* ===================================
TESTIMONIAL SECTION
=================================== */

.testimonial-section{
    position: relative;
    /* overflow: hidden; */
    padding: 50px 0;
    background: #000610;
}

.testimonial-section::before{
    content: "";
    position: absolute;
    width: 850px;
    height: 850px;
    background: radial-gradient(circle, rgba(0,72,255,0.18) 0%, rgba(0,0,0,0) 70%);
    left: -280px;
    top: -150px;
    display: none;
}

.testimonial-section::after{
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255,98,0,0.10) 0%, rgba(0,0,0,0) 70%);
    right: -200px;
    bottom: -150px;
}

.testimonial-top-content p{
    font-size: 18px;
    line-height: 1.7;
    color: #9D9D9D;
    margin: 0;
    letter-spacing: -0.14px;
    font-family: "Commissioner", sans-serif;
}

/* ===================================
TESTIMONIAL CARD
=================================== */

.testimonial-card{
    background: radial-gradient(ellipse 86% 61% at 6% 14%, #0a2d82 0%, #051f5c 45%, #020e26 100%);
    border-radius: 30px;
    padding: 34px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover{
    transform: translateY(-6px);
}

.testimonial-user{
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
}

.testimonial-user-image img{
    width: 62px;
    height: 62px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-user-info h4{
    font-size: 18px;
    line-height: 1.2;
    color: #FFFFFF;
    font-weight: 400;
    margin-bottom: 0px;
    letter-spacing: -0.14px;
    font-family: "Commissioner", sans-serif;
}

.testimonial-user-info span{
    font-size: 14px;
    color: #9D9D9D;
}

.testimonial-card p{
    letter-spacing: -0.14px;
    font-size: 18px;
    line-height: 24px;
    color: rgba(255,255,255,0.82);
    margin-bottom: 35px;
    font-family: "Commissioner", sans-serif;
    font-weight: 200;
}

/* ===================================
BUTTON INSIDE CARD
=================================== */

.testimonial-btn{
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 22px;
    border-radius: 100px;
    border: 1px solid #FF6200;
    background: rgba(255,98,0,0.12);
    color: #FFFFFF;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s ease;
    width: fit-content;
}

.testimonial-btn span{
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.testimonial-btn:hover{
    background: #FF6200;
    color: #FFFFFF;
}

/* ===================================
VIDEO CARD
=================================== */

.testimonial-video-card{
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    height: 60%;
    min-height: 560px;
}

.testimonial-video-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-video-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.10) 45%,
    rgba(0,0,0,0) 100%);
    display: flex;
    align-items: end;
    justify-content: space-between;
    padding: 34px;
}

.testimonial-video-content h4{font-size: 18px;line-height: 1.2;color: #FFFFFF;font-weight: 400;margin-bottom: 5px;letter-spacing: -0.14px;font-family: "Commissioner", sans-serif;}

.testimonial-video-content p{font-size: 14px;color: #9D9D9D;}

.video-play-btn{
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 24px;
    text-decoration: none;
    transition: 0.3s ease;
}

.video-play-btn:hover{
    background: #FF6200;
    color: #FFFFFF;
}

.mt-80{
    margin-top: 80px;
}

/* ===================================
RESPONSIVE
=================================== */

@media(max-width: 1399px){

    .testimonial-user-info h4{
        font-size: 24px;
    }

    .testimonial-card p{
        font-size: 20px;
    }

}

@media(max-width: 1199px){

    .testimonial-section{
        padding: 100px 0;
    }

    .testimonial-video-card{
        min-height: 600px;
    }

}

@media(max-width: 991px){

    .testimonial-top-content{
        margin-top: 30px;
    }

    .testimonial-video-card{
        min-height: 500px;
    }

}

@media(max-width: 767px){

    .testimonial-card{
        padding: 26px;
        min-height: auto;
    }

    .testimonial-user-info h4{
        font-size: 22px;
    }

    .testimonial-card p{
        font-size: 18px;
    }

    .testimonial-btn{
        font-size: 15px;
    }

    .testimonial-video-content h4{
        font-size: 26px;
    }

    .video-play-btn{
        width: 65px;
        height: 65px;
        font-size: 18px;
    }

}








/* =========================================
FEATURES SECTION
========================================= */

.features-accordion-section{
    position: relative;
    /* overflow: hidden; */
    padding: 50px 0;
    background: #000610;
}

/* BACKGROUND GLOW */

.features-accordion-section::before{
    content: "";
    position: absolute;
    width: 800px;
    height: 800px;
    left: -250px;
    top: -250px;
    background: radial-gradient(circle, rgba(12,74,255,0.18) 0%, rgba(0,0,0,0) 70%);
    z-index: 0;
}

.features-accordion-section::after{
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    right: -250px;
    bottom: -200px;
    background: radial-gradient(circle, rgba(255,98,0,0.12) 0%, rgba(0,0,0,0) 70%);
    display: none;
}

/* =========================================
SECTION TITLE
========================================= */

.section-title-wrapper{
    margin-bottom: 70px;
}

.section-title{
    color: #3A517B;
    font-size: 43px;
    font-weight: 700;
    line-height: 1;
    margin: 0;
    letter-spacing: -0.34px;
    font-family: "Commissioner", sans-serif;
}

/* =========================================
ACCORDION WRAPPER
========================================= */

.features-accordion-wrapper{
    display: flex;
    align-items: stretch;
    gap: 20px;
    min-height: auto;
}

/* =========================================
TABS
========================================= */

.feature-tab{
    position: relative;
    border-radius: 34px;
    border: 1px solid rgba(53,94,180,0.45);
    background: radial-gradient(ellipse 86% 61% at 6% 14%, #0a2d82 0%, #051f5c 45%, #020e26 100%);
    border: 1.5px solid rgb(93 131 197 / 35%);
    overflow: hidden;
    transition: all 0.45s ease;
}

/* ACTIVE */

.feature-tab.active{
    width: 100%;
    max-width: 1080px;
    padding: 48px;
}

.feature-tab.active .collapsed-title{display:none;}
/* COLLAPSED */

.feature-tab.collapsed{
    width: 86px;
    min-width: 86px;
    cursor: pointer;
    background: #000917;
}

/* =========================================
COLLAPSED TITLE
========================================= */

.collapsed-title{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(180deg);
    writing-mode: vertical-rl;
    color: #ffffff;
    font-size: 24px;
    font-weight: 400;
    white-space: nowrap;
}

/* =========================================
CONTENT
========================================= */

.feature-tab-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    height: 100%;
    flex-direction: column;
}

.feature-left-content{
    /* width: 100%; */
}


.feature-left-content h3{
    color: #ff6200;
    font-size: 18px;
    line-height: 1.1;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: -0.24px;
    font-family: "Commissioner", sans-serif;
}
.feature-left-content h4{
    color: #FFFFFF;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: -0.24px;
    font-family: "Commissioner", sans-serif;
}
.feature-left-content p{
    letter-spacing: -0.14px;
    font-size: 18px;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 10px;
    font-family: "Commissioner", sans-serif;
    font-weight: 400;
}

/* =========================================
LINKS
========================================= */

.feature-links-wrapper{
    display: flex;
    gap: 0px;
}

.feature-links-wrapper ul{
    padding: 0;
    margin: 10px 0 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 50%;
}

.feature-links-wrapper li{
    margin-bottom: 0px;
    /* display: inline-flex; */
    align-items: center;
    /* gap: 16px; */
    color: rgba(255,255,255,0.90);
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    transition: 0.3s ease;
    letter-spacing: -0.18px;
}

.feature-links-wrapper li span{
    display: block;
    color: #9D9D9D;
    font-size: 18px;
    font-weight: 400;
    width: 80%;
}

.feature-links-wrapper li:last-child{
    margin-bottom: 0;
}

.feature-links-wrapper a span{
    color: #0D63FF;
    font-size: 34px;
}

/* =========================================
IMAGE
========================================= */

.feature-right-image{
    width: 100%;
}

.feature-right-image img{
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

/* HIDE CONTENT IN COLLAPSED */

.feature-tab.collapsed .feature-tab-content{
    opacity: 0;
    visibility: hidden;
    width: 0;
    overflow: hidden;
}
.hero-blur.hero-blur-left.lf-1 {
    z-index: 1;
    left: auto;
    right: -64px;
    top: auto;
    bottom: -140px;
}
.hero-blur.hero-blur-right.lf-2 {
    left: 0;
    z-index: 1;
    top: auto;
    bottom: -140px;
}

   /* SECTION */
      .pricing-section {
       padding: 80px 0px 80px;
    background: #000610;
    min-height: 100vh;
        position: relative;
      }

      .container {
        max-width: 1280px;
        margin: auto;
      }
    .card-crd:last-child {
    border: none;
    padding-right: 0;
}
      /* TOP */
      .title-crd {
          text-align: center;
        font-family: "Commissioner", sans-serif;
        font-size: 52px;
        line-height: 1;
        color: #f5f2ea;
        margin-bottom: 50px;
      }

      .switch-crd-wrapper {
        display: flex;
        justify-content: center;
        margin-bottom: 55px;
      }

      .switch-crd {
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .switch-crd button {
        border: none;
        background: transparent;
        color: #b8b6b2;
        font-size: 14px;
        cursor: pointer;
        padding: 10px 18px;
        border-radius: 12px;
        transition: 0.3s;
      }

      .switch-crd button.active {
        background: #2f2f2f;
        color: #fff;
      }

      /* GRID */
      .pricing-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 26px;
        background: radial-gradient(ellipse 86% 61% at 6% 14%, #0a2d82 0%, #051f5c 45%, #020e26 100%);
    border: 1.5px solid rgb(93 131 197 / 35%);
    border-radius: 30px;
    padding: 34px 28px;
    min-height: 670px;
    flex-direction: column;
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
    z-index:2;
      }
.card-crd .hero-btn {
    width: 100%;
    margin-bottom: 15px;
}
  .icon img {
    width: auto;
    height: 35px;
}
  
      /* CARD-crd */
      .card-crd {
           border-right: 1px solid #ffffff3d;
    padding-right: 25px;
    position: relative;
      }

      /*.card-crd:hover {*/
      /*  transform: translateY(-6px);*/
      /*  box-shadow:*/
      /*    0 0 0 1px rgba(91, 123, 164, 0.08),*/
      /*    0 30px 80px rgba(0, 0, 0, 0.55);*/
      /*}*/

      /*.card-crd::before {*/
      /*  content: "";*/
      /*  position: absolute;*/
      /*  inset: 0;*/
      /*  border-radius: 30px;*/
      /*  background: linear-gradient(*/
      /*    to bottom,*/
      /*    rgba(255, 255, 255, 0.02),*/
      /*    transparent 20%*/
      /*  );*/
      /*  pointer-events: none;*/
      /*}*/

      /* ICON-crd */
      .icon-crd {
        width: 44px;
        margin-bottom: 24px;
      }

      /* TITLE-crd */
      .plan-name {
font-family: "Commissioner", sans-serif;
    font-size: 28px;
    line-height: 1.2;
    color: #faf6ed;
    margin-bottom: 10px;
      }

      .plan-subtitle-crd {
    font-size: 15px;
    font-weight: 400;
    color: #b0aba3;
    margin-bottom: 14px;
      }

      /* PRICE */
      .price {
        font-size: 42px;
        font-weight: 600;
        color: #ffffff;
            margin-bottom: 10px;
            font-family: "Commissioner", sans-serif;
        /*position: absolute;*/
        /*right: 30px;*/
        /*top: 0;*/
      }

      .price small {
         font-size: 16px;
        color: #b7b2ab;
        font-weight: 400;
        text-transform: capitalize;
      }

      .billing {
        font-size: 14px;
        color: #b0aba3;
        line-height: 1.8;
        margin-bottom: 18px;
      }

      .description {
        font-size: 12px;
        line-height: 1.7;
        color: #b8b4ae;
        margin-bottom: 10px;
        text-align: center;
      }

      /* BUTTON */
      .btn-crd {
        width: 100%;
        height: 52px;
        border: none;
        border-radius: 12px;
        background:#ffffff;
        color: #000000;
        font-size: 18px;
        cursor: pointer;
        transition: 0.25s;
        margin-bottom: 14px;
        font-weight: 600;
      }

      .btn-crd:hover {
        background: #ffffff;
      }

      .note-crd {
        text-align: center;
        color: #99948d;
        font-size: 12px;
        margin-bottom: 22px;
      }

      /* DIVIDER-crd */
      .divider-crd {
        height: 1px;
        background: #ffffff3d;
        margin-bottom: 22px;
      }

      /* CONTENT */
      .section-name {
         font-size: 18px;
        font-weight: 500;
        color: #ffffff;
        margin-bottom: 14px;
      }

      .category-crd {
        color: #ffffff;
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 12px;
      }

      .feature-list {
    list-style: none;
    margin-bottom: 24px;
    padding-left: 0px;
      }

      .feature-list li {
        position: relative;
        padding-left: 22px;
        color: #ece7de;
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 6px;
      }

      .feature-list li::before {
        content: "✓";
        position: absolute;
        left: 0;
        top: 0;
        color: #f1eee8;
        font-size: 13px;
      }

      /* RESPONSIVE */
      @media (max-width: 1200px) {
        .pricing-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      @media (max-width: 768px) {
        .title-crd {
          font-size: 40px;
        }

        .pricing-grid {
          grid-template-columns: 1fr;
        }

        .card-crd {
          min-height: auto;
        }

        .plan-name {
          font-size: 38px;
        }

        .price {
          font-size: 36px;
        }
      }


/* =========================================
RESPONSIVE
========================================= */

@media(max-width: 1399px){

    .feature-left-content h3{
        font-size: 46px;
    }

    .feature-links-wrapper a{
        font-size: 24px;
    }

}

@media(max-width: 1199px){

    .features-accordion-wrapper{
        flex-direction: column;
    }

    .feature-tab.active{
        max-width: 100%;
    }

    .feature-tab.collapsed{
        width: 100%;
        min-width: 100%;
        height: 80px;
    }

    .collapsed-title{
        writing-mode: initial;
        transform: translate(-50%, -50%);
    }

    .feature-tab-content{
        flex-direction: column;
    }

    .feature-left-content{
        width: 100%;
    }

    .feature-right-image{
        width: 100%;
    }

}

@media(max-width: 767px){

    .features-accordion-section{
        padding: 100px 0;
    }

    .section-title{
        font-size: 52px;
    }

    .feature-tab.active{
        padding: 30px;
    }

    .feature-left-content h3{
        font-size: 34px;
        margin-bottom: 40px;
    }

    .feature-links-wrapper{
        flex-direction: column;
        gap: 25px;
    }

    .feature-links-wrapper a{
        font-size: 20px;
    }

}





/* =========================================
GLOBAL NETWORK SECTION
========================================= */

.global-network-section{
    position: relative;
    /* overflow: hidden; */
    padding: 50px 0 0;
    background: #000610;
}

/* LEFT BLUE GLOW */

.global-network-section::before{
    content: "";
    position: absolute;
    width: 750px;
    height: 750px;
    left: -250px;
    top: 200px;
    background: radial-gradient(circle, rgba(14,75,255,0.18) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
    display: none;
}

/* RIGHT ORANGE GLOW */

.global-network-section::after{
    content: "";
    position: absolute;
    width: 900px;
    height: 900px;
    right: -480px;
    top: -300px;
    background: radial-gradient(circle, #FF5900 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    opacity: 33%;
    z-index: 1;
}

/* =========================================
HEADING
========================================= */

.global-network-heading{
    margin-bottom: 80px;
}

.global-network-heading h2{
    color: #FFFFFF;
    font-size: 52px;
    line-height: 1.08;
    font-weight: 300;
    margin-bottom: 24px;
    letter-spacing: -0.42px;
    font-family: "Commissioner", sans-serif;
}

.global-network-heading p{
    max-width: 850px;
    margin: 0 auto;
    color: #9D9D9D;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: -0.14px;
    font-family: "Commissioner", sans-serif;
}

/* =========================================
MAP IMAGE
========================================= */

.global-network-map{
    position: relative;
    text-align: center;
}

.global-network-map img{
    width: 100%;
    max-width: 1450px;
    object-fit: contain;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width: 1399px){

    .global-network-heading h2{
        font-size: 58px;
    }

}

@media(max-width: 991px){

    .global-network-section{
        padding: 100px 0 80px;
    }

    .global-network-heading{
        margin-bottom: 60px;
    }

    .global-network-heading h2{
        font-size: 46px;
    }

    .global-network-heading p{
        font-size: 18px;
    }

}

@media(max-width: 767px){

    .global-network-heading h2{
        font-size: 34px;
        line-height: 1.2;
    }

    .global-network-heading p{
        font-size: 16px;
    }

}







/* =========================================
CTA SECTION
========================================= */

.cta-section{
    position: relative;
    overflow: hidden;
    padding: 0px 0;
    background: #000610;
}

/* =========================================
CTA BOX
========================================= */

.cta-box{
    position: relative;
    overflow: hidden;
    border-radius: 36px;
    padding: 300px 0px;
    background:
        linear-gradient(
            90deg,
            rgba(255,94,0,0.22) 0%,
            rgba(4,11,29,0.92) 34%,
            rgba(13,74,255,0.26) 100%
        );
    background-image: url(../images/bottom-cta.png);
    background-size: cover;
    background-position: center, center;
    padding-bottom: 50px;
    display: flex;
    align-content: flex-end;
    flex-wrap: wrap;
}

/* =========================================
BACKGROUND LOGO
========================================= */

.cta-bg-logo{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -58%);
    opacity: 0.08;
    pointer-events: none;
}

.cta-bg-logo img{
    width: 420px;
    object-fit: contain;
}

/* =========================================
CONTENT
========================================= */

.cta-content{
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
}

.cta-content h2{
    color: #FFFFFF;
    font-size: 43px;
    line-height: 1.05;
    font-weight: 500;
    margin-bottom: 30px;
    letter-spacing: -0.34px;
    font-family: "Commissioner", sans-serif;
}

.cta-content p{
    max-width: 760px;
    margin: 0 auto 40px;
    color: rgba(255,255,255,0.48);
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: -0.14px;
    font-family: "Commissioner", sans-serif;
}

/* =========================================
BUTTON
========================================= */

.theme-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 66px;
    padding: 0 34px;
    border-radius: 100px;
    border: 2px solid #B44B00;
    background: rgba(63,22,0,0.65);
    color: #FFFFFF;
    text-decoration: none;
    font-size: 22px;
    font-weight: 500;
    transition: all 0.35s ease;
}

.theme-btn span{
    font-size: 24px;
    transition: transform 0.35s ease;
}

.theme-btn:hover{
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255,94,0,0.18);
}

.theme-btn:hover span{
    transform: translateX(4px);
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width: 1399px){

    .cta-content h2{
        font-size: 62px;
    }

}

@media(max-width: 991px){

    .cta-section{
        padding: 100px 0;
    }

    .cta-box{
        padding: 120px 30px;
    }

    .cta-content h2{
        font-size: 50px;
    }

    .cta-content p{
        font-size: 18px;
    }

    .cta-bg-logo img{
        width: 320px;
    }

}

@media(max-width: 767px){

    .cta-box{
        border-radius: 26px;
        padding: 90px 24px;
    }

    .cta-content h2{
        font-size: 38px;
        line-height: 1.15;
    }

    .cta-content p{
        font-size: 16px;
        margin-bottom: 30px;
    }

    .theme-btn{
        height: 56px;
        padding: 0 24px;
        font-size: 16px;
    }

    .cta-bg-logo img{
        width: 220px;
    }

}





/* =========================================
CONTACT FORM SECTION
========================================= */

.contact-form-section{
    position: relative;
    overflow: hidden;
    padding: 70px 0;
    background: #000610;
}

/* LEFT BLUE GLOW */

.contact-form-section::before{
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    left: -250px;
    top: 150px;
    background: radial-gradient(circle, rgba(10,71,255,0.20) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
    display: none;
}

/* BOTTOM ORANGE GLOW */

.contact-form-section::after{
    content: "";
    position: absolute;
    width: 1500px;
    height: 1100px;
    left: 50%;
    bottom: -400px;
    transform: translateX(-50%);
    background: radial-gradient(circle, #FF5900 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    opacity: 47%;
}

/* =========================================
SECTION TITLE
========================================= */

.contact-section-title{
    margin-bottom: 70px;
}

.contact-section-title h2{
    color: #FFFFFF;
    font-size: 43px;
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: -0.34px;
    margin: 0;
    font-family: "Commissioner", sans-serif;
}

/* =========================================
CARDS
========================================= */

.contact-info-card,
.contact-form-wrapper{
    position: relative;
    height: 100%;
    border-radius: 34px;
    border: 1px solid rgba(47,88,179,0.45);
    background: rgba(2,12,30,0.92);
}

/* LEFT CARD */

.contact-info-card{
    min-height: 100%;
    padding: 42px 34px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* RIGHT FORM */

.contact-form-wrapper{
    padding: 42px 34px;
}

/* =========================================
HEADINGS
========================================= */

.contact-info-card h3,
.contact-form-heading h3{
    color: #FFFFFF;
    font-size: 22px;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: -0.18px;
    font-family: "Commissioner", sans-serif;
}

.contact-form-heading{
    margin-bottom: 34px;
}

.contact-form-heading p{
    color: #9D9D9D;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* =========================================
LIST
========================================= */

.contact-info-card ul{
    padding: 0;
    margin: 0;
    list-style: none;
}

.contact-info-card ul li{
    position: relative;
    color: #9D9D9D;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
    padding-left: 22px;
    letter-spacing: 0.12px;
}

.contact-info-card ul li:last-child{
    margin-bottom: 0;
}

.contact-info-card ul li::before{
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #0B63FF;
    left: 0px;
    top: 10px;
}

/* =========================================
FORM
========================================= */

.form-group{
    position: relative;
    z-index: 9;
}

.form-group input,
.form-group textarea{
    width: 100%;
    border: 1px solid rgba(16,43,101,0.70);
    background: rgba(1,10,25,0.95);
    border-radius: 18px;
    outline: none;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.form-group input{
    height: 72px;
    padding: 0 24px;
}

.form-group textarea{
    height: 220px;
    resize: none;
    padding: 24px;
}

.form-group input::placeholder,
.form-group textarea::placeholder{
    color: rgba(255,255,255,0.38);
}

.form-group input:focus,
.form-group textarea:focus{
    border-color: rgba(255,94,0,0.65);
}

/* =========================================
BUTTON
========================================= */

.theme-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: auto;
    padding: 8px 20px;
    border-radius: 100px;
    background: rgba(61,21,0,0.72);
    border: 2px solid #B84D00;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 300;
    text-decoration: none;
    transition: all 0.35s ease;
    /* z-index: 9; */
}

.theme-btn span{
    font-size: 20px;
    transition: 0.3s ease;
}

.theme-btn:hover{
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(255,94,0,0.16);
}

.theme-btn:hover span{
    transform: translateX(4px);
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width: 1399px){

    .contact-section-title h2{
        font-size: 58px;
    }

    .contact-info-card h3,
    .contact-form-heading h3{
        font-size: 34px;
    }

}

@media(max-width: 991px){

    .contact-form-section{
        padding: 100px 0;
    }

    .contact-section-title{
        margin-bottom: 50px;
    }

    .contact-section-title h2{
        font-size: 46px;
    }

}

@media(max-width: 767px){

    .contact-section-title h2{
        font-size: 34px;
        line-height: 1.2;
    }

    .contact-info-card,
    .contact-form-wrapper{
        padding: 28px 22px;
        border-radius: 24px;
    }

    .contact-info-card h3,
    .contact-form-heading h3{
        font-size: 28px;
    }

    .form-group input{
        height: 60px;
        font-size: 16px;
    }

    .form-group textarea{
        height: 180px;
        font-size: 16px;
    }

    .theme-btn{
        height: 56px;
        font-size: 16px;
        padding: 0 26px;
    }

}









/* =========================================
FOOTER START
========================================= */

.main-footer{
    position: relative;
    overflow: hidden;
    padding-top: 90px;
    background: #000610;
}

/* TOP BORDER */

.main-footer::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(
        90deg,
        rgba(255,94,0,0.75),
        rgba(0,77,255,0.75)
    );
    display: none;
}

/* =========================================
TOP AREA
========================================= */

.footer-top{
    padding-bottom: 34px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

/* LOGO */

.footer-logo img{
    max-width: 220px;
}

/* SOCIAL */

.footer-social{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
}

.footer-social a{
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.88);
    color: #010B1D;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.35s ease;
}

.footer-social a:hover{
    background: #FF5E00;
    color: #FFFFFF;
    transform: translateY(-3px);
}

/* =========================================
MIDDLE AREA
========================================= */

.footer-middle{
    padding: 70px 0 80px;
}

/* ABOUT */

.footer-about{
    max-width: 360px;
}

.footer-about p{
    color: #A8B0BF;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
    font-family: "Commissioner", sans-serif;
}

/* WIDGET */

.footer-widget h4{
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 32px;
    font-family: "Commissioner", sans-serif;
}

/* LINKS */

.footer-widget ul{
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-widget ul li{
    margin-bottom: 10px;
}

.footer-widget ul li:last-child{
    margin-bottom: 0;
}

.footer-widget ul li a{
    color: rgba(255,255,255,0.46);
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: "Commissioner", sans-serif;
}

.footer-widget ul li a:hover{
    color: #FF5E00;
    padding-left: 4px;
}

/* =========================================
BOTTOM AREA
========================================= */

.footer-bottom{
    padding: 34px 0;
    border-top: 1px solid rgba(255,255,255,0.12);
}

/* POLICY */

.footer-policy{
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-policy a,
.footer-policy span{
    color: rgba(255,255,255,0.42);
    font-size: 14px;
    text-decoration: none;
    font-family: "Bricolage Grotesque", sans-serif;
}

.footer-policy a:hover{
    color: #FF5E00;
}

/* COPYRIGHT */

.footer-copyright{
    text-align: center;
}

.footer-copyright p{
    margin: 0;
    color: rgba(255,255,255,0.40);
    font-size: 14px;
    line-height: 1.7;
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 300;
}

.brand-highlight{
    color: #FF5E00;
    font-weight: 500;
}

/* CREDIT */

.footer-credit{
    text-align: right;
}

.footer-credit p{
    margin: 0;
    color: rgba(255,255,255,0.40);
    font-size: 14px;
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 300;
}

.footer-credit a{
    color: #FF5E00;
    font-weight: 700;
    text-decoration: none;
}






/* ==========================================
LANDING STRATEGY SECTION
========================================== */

.landing-strategy-section{
    padding: 50px 0;
    background: #000917;
    position: relative;
    overflow: hidden;
}

.landing-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    margin-bottom: 40px;
}

.landing-heading{
    max-width: 850px;
}

.landing-heading h2{
font-size: 52px;
    line-height: 1.12;
    font-weight: 500;
    color: #FFFFFF;
    max-width: 690px;
    margin-bottom: 30px;
    letter-spacing: -0.42px;
    font-family: "Commissioner", sans-serif;
}

.landing-heading p{
    max-width: 760px;
    color: #9D9D9D;
    font-size: 20px;
    line-height: 27px;
    font-weight: 400;
    margin: 0;
    font-family: "Commissioner", sans-serif;
    letter-spacing: -0.16px;
    font-weight: 300;
}

.landing-btn-wrap{
    flex-shrink: 0;
}

.landing-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 35px;
}

.landing-card{
    background: radial-gradient(ellipse 86% 61% at 6% 14%, #0a2d82 0%, #051f5c 45%, #020e26 100%);
    border: 1.5px solid rgb(93 131 197 / 35%);
    border-radius: 34px;
    padding: 35px;
    transition: .4s ease;
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.landing-card:hover{
    transform: translateY(-8px);
}

.landing-icon{
}
.tb-bl-sc {
    margin-top: 35px;
}
.landing-icon img{
    width: 60px;
    margin: 0 0 30px;
}

.landing-card h3{
    color: #FFFFFF;
    font-size: 26px;
    line-height: 1.15;
    font-weight: 500;
    margin-bottom: 22px;
    letter-spacing: -0.24px;
    font-family: "Commissioner", sans-serif;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.landing-card p{
color: #9D9D9D;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    margin: 0;
    font-family: "Commissioner", sans-serif;
    letter-spacing: -0.16px;
    font-weight: 300;
    /*display: -webkit-box;*/
    /*-webkit-box-orient: vertical;*/
    /*-webkit-line-clamp: 2;*/
    /*overflow: hidden;*/
    /*text-overflow: ellipsis;*/
}
/* ==========================================
BETTER SHOWCASE HERO
========================================== */

.lp-showcase-section{
    padding: 90px 0 50px;
    background: #000917;
    position: relative;
    overflow: hidden;
}
section.lp-showcase-section .hero-blur {
    z-index: 9;
}

/* Glow BG */

.lp-showcase-section::before{
    content: "";
    position: absolute;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(255,208,0,0.12) 0%, transparent 70%);
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

/* Top Content */

.lp-showcase-top{
    text-align: center;
    max-width: 950px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.section-badge{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 100px;
    border: 1px solid rgba(255,208,0,0.25);
    background: rgba(255,208,0,0.08);
    color: #FF6200;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 35px;
    backdrop-filter: blur(10px);
}

.lp-showcase-top h1{
    /* font-size: 82px; */
    /* line-height: 1.05; */
    /* color: #fff; */
    /* font-weight: 700; */
    /* letter-spacing: -3px; */
    /* margin-bottom: 30px; */
    margin: 0;
}

.lp-showcase-top p{
    /* max-width: 760px; */
    /* margin: auto; */
    /* font-size: 21px; */
    /* line-height: 1.8; */
    /* color: rgba(255,255,255,0.7); */
    width: 80%;
    margin: 20px auto 0;
}

/* Buttons */

.lp-showcase-btns{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 45px;
}

.secondary-btn{
    background: transparent !important;
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff !important;
}

.secondary-btn:hover{
    border-color: #FF6200;
    color: #FF6200 !important;
}

/* Showcase */

.lp-preview-wrapper{
    margin-top: 100px;
    position: relative;
    display: flex;
    justify-content: center;
    z-index: 2;
}

.preview-glow{
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255,208,0,0.18) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: -1;
}

/* Frame */

.lp-preview-frame{
    width: 100%;
    max-width: 1180px;
    background: linear-gradient(180deg,#141414 0%, #0d0d0d 100%);
    border-radius: 24px;
    padding: 0px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 0 80px rgba(0,0,0,0.7);
    position: relative;
}

.lp-preview-frame img{
    width: 100%;
    border-radius: 24px;
    display: block;
}

/* Floating Tags */

.floating-tag{
    position: absolute;
    padding: 18px 28px;
    border-radius: 100px;
    background: rgba(255,208,0,0.18);
    border: 1px solid rgba(255,208,0,0.2);
    backdrop-filter: blur(12px);
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    z-index: 3;
}

.floating-tag span{
    width: 10px;
    height: 10px;
    background: #FF6200;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
}

.tag-left{
    left: 16px;
    top: 40px;
}

.tag-right{
    right: -20px;
    bottom: 90px;
}

/* ==========================================
RESPONSIVE
========================================== */

@media(max-width:1400px){

    .lp-showcase-top h1{
        font-size: 68px;
    }

}

@media(max-width:991px){

    .lp-showcase-section{
        padding: 120px 0 90px;
    }

    .lp-showcase-top h1{
        font-size: 52px;
        line-height: 1.1;
    }

    .lp-showcase-top p{
        font-size: 18px;
    }

    .lp-preview-frame{
        padding: 20px;
    }

    .tag-left{
        left: 20px;
        top: 30px;
    }

    .tag-right{
        right: 20px;
        bottom: 30px;
    }

}

@media(max-width:767px){

    .lp-showcase-top h1{
        font-size: 40px;
        letter-spacing: -1px;
    }

    .lp-showcase-btns{
        flex-direction: column;
    }

    .floating-tag{
        font-size: 14px;
        padding: 14px 18px;
    }

    .lp-preview-wrapper{
        margin-top: 70px;
    }

    .lp-preview-frame{
        border-radius: 26px;
    }

}


/* ==========================================
SERVICES PLATFORM SECTION
========================================== */

.services-platform-section{
    padding: 50px 0;
    background: #000917;
    position: relative;
    overflow: hidden;
}

.services-platform-top{
    max-width: 1100px;
    margin-bottom: 70px;
}

.section-mini-title{
    display: inline-block;
    color: #FF6200;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 28px;
    text-transform: uppercase;
}

.services-platform-top h2 {
    font-size: 36px;
    line-height: 46px;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 30px;
    letter-spacing: -0.42px;
    font-family: "Commissioner", sans-serif;
}
.services-platform-top p{max-width: 810px;
    color: #9D9D9D;
    font-size: 20px;
    line-height: 27px;
    font-weight: 400;
    margin: 0;
    font-family: "Commissioner", sans-serif;
    letter-spacing: -0.16px;
    font-weight: 300;}
/* Grid */

.services-platform-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 28px;
}

/* Card */

.platform-service-card{
    background: radial-gradient(ellipse 86% 61% at 6% 14%, #0a2d82 0%, #051f5c 45%, #020e26 100%);
    border: 1.5px solid rgb(93 131 197 / 35%);
    border-radius: 34px;
    padding: 34px;
    position: relative;
    overflow: hidden;
    transition: .4s ease;
    min-height: 620px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.platform-service-card:hover{
    transform: translateY(-10px);
    
}

.platform-card-content h3{
    color: #FFFFFF;
    font-size: 26px;
    line-height: 1.15;
    font-weight: 500;
    margin-bottom: 22px;
    letter-spacing: -0.24px;
    font-family: "Commissioner", sans-serif;
}

.platform-card-content p{
    color: #9D9D9D;
    font-size: 18px;
    line-height: 26px;
    margin: 0;
    font-family: "Commissioner", sans-serif;
    letter-spacing: -0.16px;
    font-weight: 300;
}

/* Image */

.platform-card-image{
    margin-top: 50px;
}

.platform-card-image img{
    width: 100%;
    border-radius: 20px;
    display: block;
    opacity: .9;
}


/* =========================
   OUR APPROACH SECTION
========================= */

.approach-section{
    padding: 50px 0;
    background: #000610;
    position:relative;
    overflow:hidden;
}

.approach-section .container{
    width:100%;
    max-width:1320px;
    margin:0 auto;
    padding:0 20px;
}

/* Top Area */

.approach-top{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:40px;
    margin-bottom: 50px;
}

.approach-heading h2{
    font-size: 43px;
    line-height: 1.15;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 10px;
    letter-spacing: -0.34px;
    font-family: "Commissioner", sans-serif;
}

.approach-heading p{
    color: #9D9D9D;
    font-size: 20px;
    line-height: 27px;
    margin: 0;
    font-family: "Commissioner", sans-serif;
    letter-spacing: -0.16px;
    font-weight: 300;
}

/* Button */

.primary-btn{
    display:inline-flex;
    align-items:center;
    gap:14px;
    padding:18px 34px;
    border:1px solid rgba(255,214,0,0.35);
    border-radius:60px;
    background:rgba(255,214,0,0.08);
    color:#FF6200;
    text-decoration:none;
    font-size:20px;
    font-weight:600;
    transition:0.35s ease;
    white-space:nowrap;
}

.primary-btn:hover{
    background:#FF6200;
    color:#000;
    transform:translateY(-3px);
}

.primary-btn i{
    font-size:14px;
}

/* Grid */

.approach-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

/* Card */

.approach-card{
    position:relative;
    background: radial-gradient(ellipse 86% 61% at 6% 14%, #0a2d82 0%, #051f5c 45%, #020e26 100%);
    border-radius: 19px;
    padding: 22px 20px;
    min-height: auto;
    border: 1.5px solid rgb(93 131 197 / 35%);
    transition:0.4s ease;
    z-index: 9;
}

.approach-card:hover{
    transform:translateY(-10px);
    border-color:rgba(255,214,0,0.2);
    box-shadow:0 20px 50px rgba(255,214,0,0.06);
}

.step-number{
    position:absolute;
    top:36px;
    right:36px;
    font-size:32px;
    font-weight:700;
    color#FF6200;
    color: #ffff;
}

/* Icon */

.icon-wrap{
}

.icon-wrap img{
    width: 50px;
    margin: 0 0 30px;
}

/* Content */

.approach-card h3{
    font-size: 32px;
    line-height: 1.05;
    font-weight: 300;
    color: #FFFFFF;
    margin-bottom: 10px;
    letter-spacing: -1.2px;
    max-width: 500px;
    font-family: "Bricolage Grotesque", sans-serif;
}

.approach-card p{font-size: 16px;line-height: 1.7;color: #9D9D9D;font-family: "Commissioner", sans-serif;letter-spacing: -0.13px;}

/* Responsive */

@media(max-width:1200px){

    .approach-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .approach-heading h2{
        font-size:58px;
    }

}

@media(max-width:768px){

    .approach-section{
        padding:80px 0;
    }

    .approach-top{
        flex-direction:column;
        align-items:flex-start;
    }

    .approach-grid{
        grid-template-columns:1fr;
    }

    .approach-heading h2{
        font-size:44px;
    }

    .approach-heading p{
        font-size:18px;
    }

    .approach-card{
        min-height:auto;
        padding:34px 28px;
    }

    .approach-card h3{
        font-size:32px;
    }

    .approach-card p{
        font-size:18px;
    }

    .step-number{
        font-size:24px;
        top:28px;
        right:28px;
    }

    .primary-btn{
        font-size:17px;
        padding:16px 26px;
    }

}


/* =========================================
   BLUERITT CASE STUDY SECTION
========================================= */

.blueritt-case-study{
    position:relative;
    padding: 50px 0;
    background: #000610;
    /* overflow:hidden; */
}

.blueritt-case-study::before{
    content:'';
    position: absolute;
    left: -610px;
    bottom: 380px;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, #FF5900 0%, rgba(255, 98, 0, 0) 70%);
    pointer-events: none;
    z-index: 1;
    opacity: 47%;
}

.blueritt-case-study::after{
    content:'';
    position: absolute;
    right: -300px;
    top: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 87, 255, 0.18) 0%, rgba(0, 87, 255, 0) 70%);
    pointer-events: none;
}

.case-study-wrapper{
    display:grid;
    grid-template-columns:1.05fr 0.95fr;
    gap:70px;
    align-items:start;
    position:relative;
    z-index:2;
}

/* =======================
   LEFT SIDE
======================= */

.preview-window{
    position:relative;
    background:linear-gradient(180deg,#141414 0%, #0b0b0b 100%);
    border:1px solid rgba(255,255,255,0.06);
    border-radius:34px;
    padding:22px;
    overflow:hidden;
    box-shadow:
    0 20px 60px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.window-topbar{
    display:flex;
    gap:10px;
    margin-bottom:20px;
}

.window-topbar span{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#2a2a2a;
}

.window-topbar span:first-child{
    background:#FF6200;
}

.preview-window img{
    width:100%;
    border-radius:22px;
    display:block;
    object-fit:cover;
}

.floating-badge{
    position:absolute;
    bottom:35px;
    right:35px;
    background:linear-gradient(135deg,#FF6200 0%, #b89600 100%);
    color:#000;
    padding:14px 24px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    box-shadow:0 10px 25px rgba(255,208,0,0.25);
}

.case-info{
    padding-top:40px;
}

.case-label{
    display:inline-block;
    color:#FF6200;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:22px;
}

.case-info h2{
     missioner", sans-serif;
     font-size: 43px;
     line-height: 1.15;
     font-weight: 500;
     color: #FFFFFF;
     margin-bottom: 20px;
     letter-spacing: -0.34px;
     font-family: "Commissioner", sans-serif;
}

.case-info p{
    color: #9D9D9D;
    font-size: 20px;
    line-height: 27px;
    margin: 0 0 30px;
    font-family: "Commissioner", sans-serif;
    letter-spacing: -0.16px;
    font-weight: 300;
}

/* =======================
   BUTTON
======================= */

.primary-btn{
    display:inline-flex;
    align-items:center;
    gap:14px;
    padding:18px 34px;
    border-radius:60px;
    text-decoration:none;
    background:rgba(255,208,0,0.08);
    border:1px solid rgba(255,208,0,0.25);
    color:#FF6200;
    font-weight:600;
    font-size:17px;
    transition:all 0.35s ease;
}

.primary-btn:hover{
    background:#FF6200;
    color:#000;
    transform:translateY(-2px);
    box-shadow:0 12px 30px rgba(255,208,0,0.22);
}

/* =======================
   RIGHT SIDE
======================= */

.scope-heading{
    margin-bottom:38px;
}

.scope-heading span{
    display:inline-block;
    color:#FF6200;
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:1px;
    font-weight:700;
    margin-bottom:16px;
}

.scope-heading h3{
     font-size: 43px;
     line-height: 1.15;
     font-weight: 500;
     color: #FFFFFF;
     margin-bottom: 20px;
     letter-spacing: -0.34px;
     font-family: "Commissioner", sans-serif;
}

.scope-item{
    display:flex;
    gap:20px;
    align-items:flex-start;
    padding:34px;
    border-radius:32px;
    background: radial-gradient(ellipse 86% 61% at 6% 14%, #0a2d82 0%, #051f5c 45%, #020e26 100%);
    border: 1.5px solid rgb(93 131 197 / 35%);
    margin-bottom:24px;
    transition:all 0.35s ease;
    position:relative;
    overflow:hidden;
}

/* .scope-item::before{
    content:'';
    position:absolute;
    inset:0;
    background: linear-gradient(135deg, #0057ff2e, transparent 45%);
    opacity:0;
    transition:0.35s ease;
} */

.scope-item:hover::before,
.scope-item.active::before{
    opacity:1;
}

.scope-item:hover{
    transform:translateY(-5px);
    border-color:rgb(93 131 197 / 35%);
}

.scope-icon{
    /* width:84px; */
    /* height:84px; */
    /* min-width:84px; */
    /* border-radius:24px; */
    /* background:#0f0f0f; */
    /* border:1px solid rgba(255,255,255,0.05); */
    /* display:flex; */
    /* align-items:center; */
    /* justify-content:center; */
}

.scope-icon img{
    height: 45px;
    filter: brightness(14.5);
}

.scope-content h4{
    color: #FFFFFF;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.1;
    margin: -10px 0 10px;
    letter-spacing: -0.26px;
    font-family: "Commissioner", sans-serif;
}

.scope-content p{
    color: #9D9D9D;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5;
    margin: 0;
    font-family: "Commissioner", sans-serif;
    letter-spacing: -0.18px;
}

ul.cntct-sc li span svg {
    width: 26px;
}

ul.cntct-sc li span {
    display: block;
    padding-bottom: 10px;
}

ul.cntct-sc li:before {
    display: none;
}

ul.cntct-sc li {
padding-left: 0;
    border-top: 1px solid #46364d;
    padding-top: 22px;
    padding-bottom: 20px;
    margin-bottom: 0;
}

.cn-map iframe {
    width: 100%;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}


tr.border.border-defaultborder.dark\:border-defaultborder\/10 td:first-child {
    padding-left: 16px;
}


ul.cntct-sc li a {
      color: #fff;
    text-decoration: none;
    font-size: 18px;
}

ul.cntct-sc h3 {
    margin-bottom: 8px;
    font-size: 18px;
}


.ab-tsc {
    /*background-image: url(../images/abt-banner2.png);*/
    background-size: cover;
    background-repeat: no-repeat;
    height: auto;
    background-position: center 40px;
        padding-bottom: 0;
}

.ab-tsc p.hero-description {
    color: #ffff;font-size: 20px;
}

.ab-case{
    position: sticky;
    top: 10px;

}

section.blg-sc {
    background: #000610;
    padding:80px 0px;
}

section.blg-sc img {
    height: 240px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

section.blg-sc .landing-card {
    margin-bottom: 30px;
}

.landing-card a {
    text-decoration: none;
    color: inherit;
}


p.dynamic-service-description {
    color: #c1c1c1;
    font-family: "Commissioner", sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin: 0;
}


            button.ti-btn {
              width: 100%;
              height: 52px;
              border: none;
              border-radius: 12px;
              background: #ffffff;
              color: #000000;
              font-size: 18px;
              cursor: pointer;
              transition: 0.25s;
              margin-bottom: 14px;
              font-weight: 600;

            }

            .tx-head {
              font-family: "Commissioner", sans-serif;
              font-size: 35px;
              line-height: 1;
              color: #faf6ed;
              margin-bottom: 10px;
            }

            .top-sc-tb ul.nav.nav-pills {
    justify-content: center;
    width: fit-content;
    background: rgb(0 0 0 / 0%);
   border: 1.5px solid rgb(93 131 197 / 35%);
    margin: 0px auto;
    padding: 3px;
    border-radius: 80px;
            }

            .top-sc-tb button.nav-link {
          text-transform: uppercase;
    padding: 3px 20px;
    font-weight: 500;
    border-radius: 100px;
    color: #aaa;
    border: 1px solid #00000000;
            }
            p.whitespace-normal.text-center.cont-p {
    font-size: 14px;
    color: #b0aba3;
    line-height: 1.5;
    margin-bottom: 10px;
}


th.text-info-tb b {
    color: #ff6200;
}
.tb-sc {
    width: 80%;
    margin: 40px auto 0;
}
.tb-fx {
    display: flex;
    align-items: center;
}

.tb-fx img {
    height: 32px;
    margin-right: 9px;
    margin-top: 7px;
    margin-bottom: 10px;
}
tr.text-hd-sc td {
    border-radius: 30px !important;
    padding-left: 16px;
}
tr.text-hd-sc {
    background: #ffffff38;
    border-radius: 30px !important;
}
            .top-sc-tb button.nav-link.active {
 background: radial-gradient(ellipse 86% 61% at 6% 14%, #0a2d82 0%, #051f5c 45%, #020e26 100%);
    color: #ffffff;
    border-color:rgb(93 131 197 / 35%);
            }
h2.title-crd.prcng {
text-align: center;
    font-family: "Commissioner", sans-serif;
    font-size: 46px;
    line-height: 1;
    color: #f5f2ea;
    margin-bottom: 30px;
    margin-top: 40px;
    font-weight: 300;
    line-height: 1.18;
    letter-spacing: -1.33px;

}

.box-body button.hero-btn {    width: 90%;margin: 0 0 20px;}

            .box-body {
              gap: 26px;
             
              background: radial-gradient(ellipse 86% 61% at 6% 14%, #0a2d82 0%, #051f5c 45%, #020e26 100%);
             border: 1.5px solid rgb(93 131 197 / 35%);
              border-radius: 30px;
              padding: 34px 28px;
              min-height: 740px;
              flex-direction: column;
              transition: 0.35s ease;
              position: relative;
              overflow: hidden;
              z-index: 2;
            }

          
            tr.text-hd-sc span {
              font-family: "Commissioner", sans-serif;
              font-size: 22px;
              line-height: 1;
              color: #ffffff !important;
              font-weight: 500 !important;
            }

            .badge {
              display: inline-flex !important;
              align-items: center !important;
              padding: .25rem .45rem !important;
              font-size: 12px !important;
              font-weight: 600 !important;
              height: 27px !important;
              border-radius: 32px !important;
            }

            .bg-success {
              color: #ffffff;
              background: #00ff247a !important;
            }

            .bg-failed {
              color: #ffffff;
              background: #dc3038c4 !important;
            }

            .flex.justify-center {
              text-align: center;
            }

            th.text-info-tb {
              font-style: italic;
              font-size: 16px;
              border-bottom: 1px solid #ffffff45 !important;
            }

            .cont-p {
              margin: 0;
            }

            /* add on tab  */

            .box-body .accordion-button {
              background: transparent !important;
              color: #ffff;
              font-weight: 700;
            }


            .box-body .accordion,
            .box-body .accordion-item {
              background: transparent;
            }

            .adon-box {
              background: #0000003d;
              border: 1px solid rgb(93 131 197 / 35%);
              border-radius: 14px;
              padding: 28px 22px;
              text-align: center;
              transition: border-color .2s;
              background: radial-gradient(ellipse 86% 61% at 6% 14%, #0a2d82 0%, #051f5c 45%, #020e26 100%);
            }
            .hero-blur.hero-blur-right.lf-2 {
    display: none;
}

            .adon-box a {
              display: block;
              width: 100%;
              background: #ffffffbf;
              color: #f66700;
              text-decoration: none;
              padding: 10px;
              font-weight: 500;
              border-radius: 7px;
              margin-top: 23px;
              font-weight: 700;
            }

            .icon {
          margin-bottom: 15px;
        
            }
            .b2b-adon-s .icon{
               padding-right: 10px;
    margin: 0;
            }
.b2b-adon-cnt {
    width: 100%;
}
            .adon-box h4 {
          margin-top: 16px;
    font-family: "Commissioner", sans-serif;
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 300 !important;
    margin-bottom: 0;
    color:gray;
            }

            .accordion-button::after {
              filter: brightness(56);
            }

            .pkg-logo img {
              width: 270px;
              filter: brightness(40.5);
            }

            .tb-sc .accordion-item,
            .box-body .accordion-button {
              border-color: #ffffff45 !important;
              outline: none !important;
              box-shadow: none !important;
            }

            /* add on sc  */
            .ax-wrap {
              color: #fff;
              padding: 100px 0px;
              text-align: center;
              /* min-height: 100vh; */
              padding-bottom: 0;
            }

            .ax-eyebrow {
              font-size: 11px;
              letter-spacing: 3px;
              color:#ff6200;
              text-transform: uppercase;
              margin-bottom: 16px
            }

            .ax-headline {
    text-transform: capitalize;
    text-align: center;
    font-family: "Commissioner", sans-serif;
    font-size: 46px;
    color: #f5f2ea;
    margin-bottom: 20px;
    margin-top: 10px;
    font-weight: 300;
    line-height: 1.18;
    letter-spacing: -1.33px;
}


            .ax-subtext {
              font-size: 16px;
              color: #aaa;
              max-width: 680px;
              margin: 0 auto 48px;
              line-height: 1.6
            }
            
            

            .ax-tabs-wrap {
          display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    width: 70%;
    margin: 0px auto;
    margin-bottom: 40px !important;
            }

            .ax-tab-btn {
              background: transparent;
              border: 1px solid #333;
              color: #aaa;
              padding: 9px 18px;
              border-radius: 999px;
              font-size: 12px;
              font-weight: 600;
              letter-spacing: 1px;
              cursor: pointer;
              text-transform: uppercase;
              transition: all .2s
            }

            .ax-tab-btn:hover {
              border-color: #666;
              color: #fff
            }

            .ax-tab-btn.ax-active {
    color: #ffffff;
    border-color: rgb(93 131 197 / 35%);
    background: radial-gradient(ellipse 86% 61% at 6% 14%, #0a2d82 0%, #051f5c 45%, #020e26 100%);
            }

            .ax-cards-grid {
              display: grid;
              grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
              gap: 16px;
              max-width: 1100px;
              margin: 0 auto
            }

            .ax-card {
              background: #111;
              border: 1px solid #222;
              border-radius: 14px;
              padding: 28px 22px;
              text-align: center;
              transition: border-color .2s
            }

            .ax-card:hover {
              border-color: #444
            }

            .ax-card-price {
              font-size: 28px;
              font-weight: 700;
              color: #fff;
              margin-bottom: 4px
            }

            .ax-card-price span {
              font-size: 15px;
              font-weight: 400;
              color: #888
            }

            .ax-card-title {
              font-size: 11px;
              letter-spacing: 2px;
              text-transform: uppercase;
              color: #bbb;
              margin: 12px 0 14px;
              font-weight: 600
            }

            .ax-card-desc {
              font-size: 13px;
              color: #777;
              line-height: 1.65
            }

            .ax-tab-panel {
              display: none
            }

            .ax-tab-panel.ax-panel-active {
              display: block
            }

            .adon-sc {
              position: relative;
              z-index: 1;
            }


.b2b-adon-s p {
 color: gray;
    margin-bottom: 0px;
    line-height: 1.2;
}

.b2b-adon-s span {
color: gray;
    /* font-style: italic; */
    font-size: 16px;
    font-weight: 300;
}

.b2b-adon-s h4 {
  margin-top: 10px;
    font-family: "Commissioner", sans-serif;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 500 !important;
    color: #fff;
    margin: 20px 0 5px;
}


.adon-box h5 {
   
    font-family: "Commissioner", sans-serif;
    text-transform: capitalize;
    font-size: 26px;
    font-weight: 500 !important;
}
.b2b-adon-s .adon-box {
 display: flex;
    /* align-items: center; */
    text-align: left;
    justify-content: space-between;
    gap: 10px;
    height: 160px;
    padding:22px;
}
/* =========================================
FAQ SECTION
========================================= */

.faq-section{
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    background: #010B1D;
}


.faq-section h2{color: #ff6200;    font-size: 26px;    line-height: 1.05;    font-weight: 500;    letter-spacing: -0.34px;    font-family: "Commissioner", sans-serif;    margin: 60px 0 30px 0;}

/* =========================================
FAQ WRAPPER
========================================= */

.faq-wrapper{
    max-width: 1050px;
    margin: auto;
}

/* =========================================
FAQ ITEM
========================================= */

.faq-item{
    border: 1px solid rgba(38,76,148,0.45);
    background: rgba(5,16,36,0.94);
    border-radius: 24px;
    margin-bottom: 22px;
    overflow: hidden;
    transition: all .3s ease;
}

.faq-item.active{
    background: radial-gradient(ellipse 86% 61% at 6% 14%, #0a2d82 0%, #051f5c 45%, #020e26 100%);
    border-color: rgb(93 131 197 / 35%);
}

/* =========================================
QUESTION
========================================= */

.faq-question{
    position: relative;
    cursor: pointer;
    padding: 32px 85px 32px 34px;
}

.faq-question h3{
    color: #FFFFFF;
    font-size: 26px;
    line-height: 1.5;
    font-weight: 500;
    margin: 0;
    font-family: "Commissioner", sans-serif;
}

/* =========================================
ICON
========================================= */

.faq-icon{
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);

    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: rgba(255,255,255,0.06);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #FFFFFF;

    transition: all .3s ease;
}

.faq-item.active .faq-icon{
    background: #FF6200;
    transform: translateY(-50%) rotate(45deg);
}

/* =========================================
ANSWER
========================================= */

.faq-answer{    display: none;    padding: 0 34px 34px;}
.faq-answer p{    color: rgba(255,255,255,0.56);    font-size: 18px;    line-height: 1.4;    margin: 0 0 10px;}
.faq-answer h6{    color: #fff;    font-size: 20px;    font-weight: 500;    margin: 20px 0 5px;}
.faq-answer ul{    display: flex;    flex-wrap: wrap;    gap: 10px;}
.faq-answer ul li{    color: rgba(255,255,255,0.56);    position: relative;width: 100%;}
.faq-answer ul li:after{content:'';width: 5px;height: 5px;background: #ff6200;position: absolute;left: -25px;top: 10px;border-radius: 30px;}



.blg-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    border-radius: 11px;
}

.blg-img {
    padding-bottom: 50px;
}




/* =========================================
RESPONSIVE
========================================= */

@media(max-width:991px){

    .faq-section{
        padding: 100px 0;
    }

    .faq-question h3{
        font-size: 22px;
    }

    .faq-answer p{
        font-size: 16px;
    }

}

@media(max-width:767px){

    .faq-question{
        padding: 26px 70px 26px 24px;
    }

    .faq-question h3{
        font-size: 18px;
    }

    .faq-answer{
        padding: 0 24px 28px;
    }

    .faq-icon{
        right: 20px;
        width: 36px;
        height: 36px;
    }

}




/* ==========================================
RESPONSIVE
========================================== */

@media(max-width:1400px){

    .services-platform-top h2{
        font-size: 54px;
    }

    .platform-card-content h3{
        font-size: 38px;
    }

}

@media(max-width:991px){

    .services-platform-grid{
        grid-template-columns: 1fr;
    }

    .services-platform-top h2{
        font-size: 42px;
    }

    .platform-service-card{
        min-height: auto;
    }

}

@media(max-width:767px){

    .services-platform-section{
        padding: 90px 0;
    }

    .services-platform-top h2{
        font-size: 34px;
        line-height: 1.2;
    }

    .platform-service-card{
        padding: 26px;
        border-radius: 24px;
    }

    .platform-card-content h3{
        font-size: 30px;
    }

    .platform-card-content p{
        font-size: 17px;
    }

}

/* ==========================================
RESPONSIVE
========================================== */

@media(max-width:1400px){

    .landing-heading h2{
        font-size: 58px;
    }

    .landing-card h3{
        font-size: 34px;
    }

}

@media(max-width:991px){

    .landing-top{
        flex-direction: column;
        align-items: flex-start;
    }

    .landing-grid{
        grid-template-columns: 1fr;
    }

    .landing-heading h2{
        font-size: 48px;
    }

    .landing-heading p{
        font-size: 18px;
    }

    .landing-card{
        min-height: auto;
    }

}

@media(max-width:767px){

    .landing-strategy-section{
        padding: 90px 0;
    }

    .landing-heading h2{
        font-size: 38px;
    }

    .landing-card{
        padding: 30px;
        border-radius: 26px;
    }

    .landing-card h3{
        font-size: 30px;
    }

    .landing-card p{
        font-size: 17px;
        max-width: 100%;
    }

}



section.terms-content-section {
    background: #000610;
    color: #ffff;
    padding: 100px 0px;
}


/* =========================================
RESPONSIVE
========================================= */

@media(max-width: 1199px){

    .footer-widget h4{
        font-size: 28px;
    }

    .footer-widget ul li a,
    .footer-about p{
        font-size: 17px;
    }

}

.ux_fullscreen_menu_2026 {
    display: none;
}

@media(max-width: 991px){

    .footer-social{
        justify-content: flex-start;
        margin-top: 30px;
    }

    .footer-middle{
        padding: 60px 0;
    }

    .footer-widget h4{
        margin-bottom: 22px;
    }

    .footer-copyright,
    .footer-credit{
        text-align: left;
    }

}

    
    /* =========================
       DESKTOP
    ========================== */

    @media(min-width:768px){

      .ux_fullscreen_menu_2026{
        width:340px;
        left:-340px;
      }

      .ux_fullscreen_menu_2026.active_menu_2026{
        left:0;
      }

    }

.ux_menu_toggle_btn_2026 {
    display: none;
}

@media(max-width: 767px){
    
    
    .ux_menu_toggle_btn_2026 {
    display: block;
}

    .main-footer{
        padding-top: 70px;
    }

    .footer-logo img{
        max-width: 180px;
    }

    .footer-about p,
    .footer-widget ul li a,
    .footer-policy a,
    .footer-policy span,
    .footer-copyright p,
    .footer-credit p{
        font-size: 15px;
    }

    .footer-widget h4{
        font-size: 24px;
    }

    .footer-middle{
        padding: 50px 0;
    }

    .footer-bottom{
        padding: 26px 0;
    }
    
    .case-study-wrapper{
            display: block;
    }
    .case-scope {
    margin-top: 80px;
}

.hero-blur.hero-blur-right {
    width: auto;
}

    
html {
    overflow-x: hidden;
}
.approach-heading {
    width: 100%;
}

.d-none-mb{
    display:none;
}
.header-logo {
    display: flex;
    justify-content: space-between;
    color: #ffff;
}



.ux_navbar_wrap_2026{
      width:100%;
      background:#111;
      color:#fff;
      padding:18px 20px;
      display:flex;
      justify-content:space-between;
      align-items:center;
    }

    .ux_logo_text_2026{
      font-size:24px;
      font-weight:bold;
    }

    .ux_menu_toggle_btn_2026{
      font-size:34px;
      cursor:pointer;
      line-height:1;
    }

    /* =========================
       FULLSCREEN MENU
    ========================== */

    .ux_fullscreen_menu_2026{
position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: #010818;
    z-index: 99999;
    transition: 0.4s ease;
    overflow-y: auto;
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    }

.ux_bottom_cta_wrap_2026 a {
    margin-bottom: 22px;
}
    .ux_fullscreen_menu_2026.active_menu_2026{
      left:0;
    }

    /* =========================
       TOP AREA
    ========================== */

    .ux_menu_top_area_2026{
      width:100%;
    }

    /* Close Button */
    .ux_menu_close_btn_2026{
      position:absolute;
      top:20px;
      right:25px;
      color:#fff;
      font-size:42px;
      cursor:pointer;
      line-height:1;
    }

    /* Logo Area */
    .ux_menu_logo_area_2026{
    text-align: left;
    margin-bottom: 30px;
    padding-top: 5px;
    padding-left: 20px;
    }

    .ux_menu_logo_area_2026 img{
    width: 190px;
    max-width: 100%;
    object-fit: contain;
    }

    /* =========================
       MENU
    ========================== */

    .ux_menu_list_2026{
    list-style: none;
    width: 100%;
    padding-left: 0;
    }

    .ux_menu_item_2026{
      border-bottom:1px solid rgba(255,255,255,0.08);
    }

    .ux_menu_link_2026{
      display:block;
      color:#fff;
      text-decoration:none;
      padding:22px;
      font-size:22px;
      transition:0.3s;
    }

    .ux_menu_link_2026:hover{
      background:#2d2d2d;
    }

    /* =========================
       SUBMENU
    ========================== */

    .ux_submenu_wrap_2026{
      display:none;
      background:#2a2a2a;
      list-style:none;
    }

    .ux_submenu_link_2026{
      display:block;
      color:#fff;
      text-decoration:none;
      padding:18px 22px 18px 45px;
      font-size:18px;
      border-top:1px solid rgba(255,255,255,0.05);
    }

    .ux_submenu_link_2026:hover{
      background:#3a3a3a;
    }

    /* =========================
       CTA BUTTONS
    ========================== */

    .ux_bottom_cta_wrap_2026{
      width:100%;
      padding:25px 20px 35px;
    }

    .ux_cta_btn_2026{
      width:100%;
      display:block;
      text-align:center;
      text-decoration:none;
      padding:16px;
      border-radius:8px;
      font-size:18px;
      font-weight:600;
      margin-bottom:15px;
      transition:0.3s;
    }

    /* Sign Up */   
    .ux_signup_btn_2026{
      background:#ffffff;
      color:#111;
    }

    .ux_signup_btn_2026:hover{
      background:#e5e5e5;
    }

    /* Sign In */
    .ux_signin_btn_2026{
      background:transparent;
      border:2px solid #fff;
      color:#fff;
    }

    .ux_signin_btn_2026:hover{
      background:#fff;
      color:#111;
    }


}


.parallax-wrap{/* position: relative; */}    
.stats-1{position: absolute;width: 930px;left: -30px;top: 80px;z-index: -1;box-shadow: 0px 5px 19px 2px #00000047;opacity: .5;}
.stats-2{position: absolute;width: 730px;right: 0;bottom: -80px;z-index: -1;box-shadow: 0px 5px 19px 2px #00000047;opacity: .5;}

.approach-heading {
    width: 60%;
}





.counter{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:0;
}

.counter .digit-box{
    height:1em;
    overflow:hidden;
    display:inline-block;
}

.counter .digit{
    display:flex;
    flex-direction:column;
    transition:transform 2s cubic-bezier(.19,1,.22,1);
}

.counter .digit span{
    display:flex;
    align-items:center;
    justify-content:center;
    height:1em;
    line-height:1em;
}

.whoweare{}
.whoweare p{color: #9D9D9D;    font-size: 20px;    line-height: 27px;    margin: 0 0 30px;    font-family: "Commissioner", sans-serif;    letter-spacing: -0.16px;    font-weight: 300;}
.whoweare .scope-heading {    margin-bottom: 0px;}
.services-platform-section.copy .services-platform-grid{grid-template-columns: repeat(2, 1fr);}
.services-platform-section.copy .platform-service-card{min-height: auto;}
.services-platform-section.copy .platform-card-content p{margin: 0 0 20px;}
.services-platform-section.copy .services-platform-top {    margin-bottom: 40px;}


.owner-quote{padding: 0;    margin: -50px 0 0;}
.owner-quote .feature-card-wrapper{    background-image: url(../images/owner-img.png);    background-size: cover;    background-position: top;    background-repeat: no-repeat;    padding: 60px;    height: 700px;    display: flex;    flex-direction: column;    justify-content: flex-end;    border: 0px solid rgb(93 131 197 / 35%);}
.owner-quote .feature-card-wrapper .feature-card-content{    border: 1.5px solid rgb(93 131 197 / 35%);    background: radial-gradient(ellipse 86% 61% at 6% 14%, #0a2d8257 0%, #051f5c70 45%, #020e2669 100%);    padding: 30px;    border-radius: 30px;    margin: 0px 0 0px;    backdrop-filter: blur(10px);}
.owner-quote .feature-card-wrapper .feature-card-content h2{font-size: 34px;    max-width: max-content;    line-height: 1.2;}
.owner-quote .feature-card-wrapper .feature-card-content h6{    margin: 30px 0 0;    font-size: 20px;    color: #fff;    font-weight: 300;}
.owner-quote .feature-card-wrapper .feature-card-content h6 span{    display: block;    color: #aaa;    margin: 2px 0 0;    font-size: 16px;}

td p {
    margin: 0;
}
.tb-ptm td {
    padding-bottom: 30px !important;
}

section.use-cases {
    background: #000610;
    color: #ffff;
    padding: 100px 0px;
}
.quote-box {
    background-color: #ffffff2b;
    margin: 20px auto;
    padding: 20px;
    width: 100%;
    position: relative;
    border-radius: 10px;
    color: #eae8e8;
    margin-bottom: 30px;
}

.cases-heading {
    font-size: 24px;
    padding-bottom: 0;
    font-weight: 500;
    color: #ffff;
    margin-top: 40px;
    padding-bottom: 5px;
}

section.use-cases {
    color: #b3b3b3;
    font-size: 20px;
    line-height: 27px;
    font-family: "Commissioner", sans-serif;
    letter-spacing: -0.16px;
    font-weight: 300;
}
p.cases-paragraph {
    padding-bottom: 20px;
}

ul.cases-list {
    list-style: disc;
    padding-left: 20px;
}

ul.cases-list li {
    padding-bottom: 10px;
}


.pricing-bottom-text{    text-align: center;}
.pricing-bottom-text p{color: rgb(255 255 255);    font-size: 24px;    line-height: 1.6;    font-weight: 400;    letter-spacing: -0.14px;    font-family: "Commissioner", sans-serif;    margin: 30px auto 0;    font-style: italic;    width: 40%;}











/* ==========================================================================
   Privacy Policy Section Styles
   Matches: .terms-content-section > .container > .terms-content-wrapper
   ========================================================================== */
 
.terms-content-section {
  padding: 60px 0;
  background-color: #ffffff;
  color: #444444;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  line-height: 1.7;
}
 
.terms-content-section .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
 
/* Paragraphs */
.terms-content-wrapper p {
  margin: 0 0 16px;
  font-size: 16px;
}
 
.terms-content-wrapper strong {
  font-weight: 600;
  color: #f2f2f2;
}
 
/* Headings */
.terms-content-wrapper h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 40px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #eaeaea;
}
 
.terms-content-wrapper h4 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 32px 0 12px;
}
 
.terms-content-wrapper h5 {
  font-size: 17px;
  font-weight: 600;
  color: #2b2b2b;
  margin: 24px 0 10px;
}
 
/* First heading shouldn't have extra top margin */
.terms-content-wrapper > h3:first-of-type,
.terms-content-wrapper > h4:first-of-type {
  margin-top: 0;
}
 
/* Lists */
.terms-content-wrapper ul {
  margin: 0 0 16px;
  padding-left: 22px;
}
 
.terms-content-wrapper li {
  margin-bottom: 8px;
  font-size: 16px;
  position: relative;
}
.terms-content-wrapper li:after{content:'';width: 5px;height: 5px;background: #fff;position: absolute;left: -20px;top: 10px;border-radius: 30px;} 
 
.terms-content-wrapper li:last-child {
  margin-bottom: 0;
}
 
/* Table */
.terms-content-wrapper table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 15px;
}
 
.terms-content-wrapper table th,
.terms-content-wrapper table td {
  border: 1px solid #e5e5e5;
  padding: 12px 16px;
  text-align: left;
  vertical-align: top;
}
 
.terms-content-wrapper table th {
  background-color: #f7f7f9;
  font-weight: 600;
  color: #1a1a1a;
}
 
.terms-content-wrapper table tbody tr:nth-child(even) td {
  background-color: #000000;
}
 
/* Links inside content */
.terms-content-wrapper a {
  color: #2563eb;
  text-decoration: underline;
}
 
.terms-content-wrapper a:hover {
  color: #1d4ed8;
}
 
/* Responsive */
@media (max-width: 768px) {
  .terms-content-section {
    padding: 40px 0;
  }
 
  .terms-content-wrapper h3 {
    font-size: 20px;
    margin: 32px 0 12px;
  }
 
  .terms-content-wrapper h4 {
    font-size: 18px;
    margin: 28px 0 10px;
  }
 
  .terms-content-wrapper h5 {
    font-size: 16px;
  }
 
  .terms-content-wrapper table,
  .terms-content-wrapper table th,
  .terms-content-wrapper table td {
    font-size: 14px;
    padding: 10px 12px;
  }
}













.radar-animation{
    position:relative;
    width:380px;
    height:380px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin: 0 auto;
}

.center-logo{
    width: 120px;
    height: 120px;
    border-radius:50%;
    background: #090b28;
    z-index:10;
    display:flex;
    align-items:center;
    justify-content:center;
}

.center-logo img{
    width: 105px;
    border-radius: 50%;
}

.circle{
    position:absolute;
    border-radius:50%;
    transform-origin:center;
}

/* Orange outer ring */
.c1{
    width:380px;
    height:380px;
    background:
    radial-gradient(circle,
    transparent 55%,
    rgba(255,106,0,.15) 65%,
    #ff6600 82%,
    #ff6600 100%);
    animation:pulse1 4s infinite;
}

/* Blue ring */
.c2{
    width:290px;
    height:290px;
    background:
    radial-gradient(circle,
    transparent 55%,
    rgba(37,99,235,.25) 70%,
    #2563eb 90%);
    animation:pulse2 4s infinite .3s;
}

/* Orange glow ring */
.c3{
    width:190px;
    height:190px;
    background:
    radial-gradient(circle,
    transparent 40%,
    rgba(255,106,0,.3) 70%,
    rgba(255,106,0,.8) 100%);
    animation:pulse3 4s infinite .6s;
}

/* Inner blue glow */
.c4{
    width:120px;
    height:120px;
    background:
    radial-gradient(circle,
    rgba(37,99,235,.9) 0%,
    rgba(37,99,235,.3) 70%,
    transparent 100%);
    animation:pulse4 4s infinite .9s;
}

@keyframes pulse1{
    0%,100%{
        transform:scale(1);
        opacity:.8;
    }
    50%{
        transform:scale(1.06);
        opacity:1;
    }
}

@keyframes pulse2{
    0%,100%{
        transform:scale(1);
        opacity:.75;
    }
    50%{
        transform:scale(1.08);
        opacity:1;
    }
}

@keyframes pulse3{
    0%,100%{
        transform:scale(1);
        opacity:.6;
    }
    50%{
        transform:scale(1.12);
        opacity:1;
    }
}

@keyframes pulse4{
    0%,100%{
        transform:scale(1);
        opacity:.8;
    }
    50%{
        transform:scale(1.15);
        opacity:1;
    }
}



.blg-pg .landing-card p{display: -webkit-box;
    -webkit-box-orient: vertical;
     -webkit-line-clamp: 2; 
     overflow: hidden; 
     text-overflow: ellipsis;}
     
     
     


.trial-announce-main{text-align: center;}     
.trial-announce-main p{font-size: 16px; width: max-content; margin: 40px auto 0; padding: 4px 9px; border-radius: 9px; color: #ff6200; border: 1.5px solid rgb(93 131 197 / 35%); position: relative; font-style: italic;}     
/*.trial-announce-main p:after{    content: '';background-image: url(../images/blueritt-arrow.png);    position: absolute;    right: -70px;    top: -40px;    width: 65px;    height: 55px;    background-size: contain;    filter: contrast(0.2);    background-repeat: no-repeat;    transform: rotate(-29deg);    z-index: 9;}*/








.cookie-banner{position:fixed;bottom:25px;left:25px;max-width:430px;width:calc(100% - 40px);z-index:999999;background:rgba(20,20,20,.75);backdrop-filter:blur(25px);-webkit-backdrop-filter:blur(25px);border:1px solid rgba(255,255,255,.15);border-radius:18px;padding:28px;box-shadow:0 20px 60px rgba(0,0,0,.45);display:none;animation:cookieUp .5s ease;}

@keyframes cookieUp{

from{
opacity:0;
transform:translateY(40px);
}

to{
opacity:1;
transform:translateY(0);
}

}

.cookie-content h4{margin:0 0 12px;color:#fff;font-size:22px;}
.cookie-content p{margin:0;color:#cfcfcf;line-height:1.7;}
.cookie-buttons{margin-top:22px;display:flex;gap:12px;flex-wrap:wrap;align-items:center;}
.cookie-btn{padding:12px 26px;border:none;border-radius:50px;cursor:pointer;font-weight:600;transition:.3s;}
.cookie-btn.primary{background:#3b82f6;color:#fff;}
.cookie-btn.primary:hover{background:#2563eb;}
.cookie-btn.secondary{background:transparent;border:1px solid rgba(255,255,255,.25);color:#fff;}
.cookie-btn.secondary:hover{background:rgba(255,255,255,.08);}
.cookie-link{color:#59b4ff;text-decoration:none;font-weight:600;}
.cookie-link:hover{text-decoration:underline;}

@media(max-width:768px){

.cookie-banner{left:15px;right:15px;bottom:15px;width:auto;padding:22px;}
.cookie-buttons{flex-direction:column;align-items:stretch;}
.cookie-btn{width:100%;}
.cookie-link{text-align:center;}

}



.diff{}
.diff.active{background: radial-gradient(ellipse 86% 61% at 6% 14%, #d55a2dab 0%, #ff6a0061 45%, #1b151a 100%) !important;    border: 1px solid #ff6a00 !important;}
.forb2b{    width: 90%;}


.abt-functionimage{    width: 100%;    margin: -160px 0 0 0;}