* {
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    font-family: 'Poppins-Regular';
    background-color: var(--body);
    color: var(--white);
    scroll-behavior:smooth;
}

:root {
    --primary: #0682A4;
    --dark_primary: #035065;
    --box: #121212;
    --border: #949494;
    --header: #1A1A2E;
    --body: #0F0F1A;
    --box_bodrder: #313131;
    --white: #ffffff;

    --bg: #0f0f1a;
    --bg2: #13131f;
    --bg3: #1a1a2e;
    --p: #0682a4;
    --pl: #0da8d4;
    --pg: rgba(6, 130, 164, .22);
    --pb: rgba(6, 130, 164, .28);
    --w: #fff;
    --t: #e8eaf0;
    --m: #eaeaea;
    --cb: rgba(255, 255, 255, .06);
    --font:'Poppins',sans-serif;
    
}

/************************* Global Styles *************************/
h1,
h2,
h3,
h4,
h5,
h6,
ul,
p {
    margin: 0;
    padding: 0;
}

.cust_container {
    width: 100%;
    max-width: 1500px;
    margin: auto;
}

.toggle_btn {
    width: 30px;
    margin-left: 10px;
    display: none;
}

.common_flex {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
}

/************************* End Global Styles *************************/

/************************ authentication page styles *************************/
.auth_wrapper {
    display: flex;
    flex-direction: row;
    height: 100vh;
}

.auth_left_side {
    flex-grow: 1;
    flex-shrink: 0;
    overflow: hidden;
}

.auth_left_side .auth_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.auth_right_side {
    width: 60%;
}

.auth_right_side {
    padding: 50px 0;
}

.auth_logo {
    text-align: center;
}

.auth_form {
    position: relative;
    display: flex;
    justify-content: center;
    height: calc(100% - 100px);
    flex-direction: column;
    align-items: center;
}

.form_section {
    width: 100%;
    max-width: 450px;
    padding: 20px 40px 10px;
    background-color: var(--box);
    border: 1px solid var(--box_bodrder);
    border-radius: 6px;
}

.form_title h4 {
    font-family: 'Poppins-SemiBold';
    text-align: center;
    font-size: 26px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--box_bodrder);
    margin-bottom: 30px;
}

.form_box {
    margin-bottom: 12px;
}

.form_box .form_label h5 {
    font-family: 'Poppins-Light';
    font-size: 16px;
    color: var(--border);
}

.form_input {
    color: var(--white);
    width: stretch;
    padding: 14px 8px;
    margin-top: 4px;
    background-color: transparent;
    border: 1px solid var(--box_bodrder);
    border-radius: 6px;
    outline: none;
    transition: all .5s;
}

.form_input:focus {
    border: 1px solid var(--primary);
}

.form_box a {
    font-family: 'Poppins-SemiBold';
    text-decoration: none;
    color: var(--border);
    transition: all .5s;
}

.form_box a:hover {
    color: var(--primary);
}

.text_right {
    text-align: right;
}

.auth_action_btn {
    font-family: 'Poppins-Medium';
    width: 100%;
    padding: 12px 8px;
    border-radius: 6px;
    background-color: var(--primary);
    color: var(--white);
    font-size: 18px;
    border: 0;
    transition: all .5s;
}

.auth_action_btn:hover {
    background-color: var(--dark_primary);
}

.text_center {
    text-align: center;
    color: var(--border);
}

.text_center .white_text {
    font-family: 'Poppins-SemiBold';
    color: var(--white) !important;
    transition: all .5s;
}

.white_text:hover {
    color: var(--primary) !important;
}

.active_account_form_title h4 {
    margin-bottom: 20px;
}

.receive_code_section {
    text-align: center;
}

.receive_code_section p {
    color: var(--border);
}

.receive_code_section {
    margin-bottom: 10px;
}

.receive_code_section p button {
    font-family: 'Poppins-Medium';
    background-color: var(--primary);
    color: var(--white);
    border-radius: 6px;
    padding: 6px 12px;
    border: 0;
    margin-left: 2px;
    cursor: pointer;
    transition: all .5s;
}

.receive_code_section p button:hover {
    background-color: var(--dark_primary);
}

/************************* End authentication page styles *************************/


/*********************** header **********************************/
.header_section {
    padding: 8px 15px;
    background-color: var(--header);
    border-bottom: 1px solid #313131;
}

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

.header a {
    text-decoration: none;
    color: var(--white);
    margin: 0 26px 0 0;
    transition: all .5s;
    font-size: 18px;
}

.header a:hover {
    color: var(--primary);
}

.header_right_side {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.profile {
    position: relative;
}

.profile img {
    cursor: pointer;
}

.profile_dropdown {
    width: 235px;
    border-radius: 15px;
    background-color: var(--box);
    position: absolute;
    right: 0;
    border: 1px solid var(--box_bodrder);
    overflow: hidden;
    transform: scaleY(0);
    display: block;
    transition: all .5s;
    transform-origin: 50% 0;
}

.profile:hover .profile_dropdown {
    transform: scaleY(1);
}

.cust_padding {
    padding: 12px 12px;
    border-bottom: 1px solid var(--box_bodrder);
}

.cust_padding:last-child {
    border-bottom: 0;
}

.cust_padding a {
    display: flex;
    align-items: center;
}

.cust_padding a:hover {
    color: var(--white);
}

.cust_padding h4 {
    font-family: 18px;
}

.cust_padding img {
    margin-right: 10px;
}

.bg_primary {
    background-color: var(--primary);
}

/*********************** End header **********************************/

/********************** profile *************************************/
.profile_tab {
    width: 100%;
    background-color: #22222C;
    border-radius: 30px;
    margin: 0 auto;
    padding: 4px;
    max-width: 650px;
}

.profile_section {
    padding: 50px 15px;
}

.profile_tab a {
    display: inline-block;
    text-decoration: none;
    text-align: center;
    background-color: #000;
    color: var(--white);
    border-radius: 30px;
    padding: 16px 9px;
    max-width: 193px;
    width: 100%;
    border: 1px solid var(--box_bodrder);
}

.profile_tab a.active {
    font-family: 'Poppins-SemiBold';
    background-color: var(--primary);
}

.profile_box {
    background-color: var(--box);
    border-radius: 6px;
    border: 1px solid var(--box_bodrder);
    width: 100%;
    max-width: 450px;
    margin: 20px auto;
    padding: 30px 26px 10px;
}

.user_profile {
    text-align: center;
}

.user_profile img {
    width: 100%;
    max-width: 130px;
}

.form_input:disabled {
    background-color: #535353;
    color: var(--white);
    opacity: 1;
    cursor: not-allowed;
}

.btn_group {
    display: flex;
    column-gap: 10px;
}

.black_bg {
    background-color: #000;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.black_bg:hover {
    color: var(--white);
}

.reason-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
}

.custom-check {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    gap: 12px;
}

.custom-check input {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #cfcfcf;
    border-radius: 6px;
    display: inline-block;
    position: relative;
}

.custom-check input:checked+.checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

.custom-check input:checked+.checkmark::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.explain-box {
    display: none;
    margin-top: 10px;
}

/********************** end_profile *************************************/

/********************* footer **************************************/
.footer_section {
    background-color: #000;
    padding: 20px 0;
}

.footer_left_menu a {
    text-decoration: none;
    color: var(--white);
    padding: 0 0 0 10px;
    margin: 0 10px 0 0;
    transition: all .5s;
    font-size: 16px;
}

.footer_left_menu a:hover {
    color: var(--primary);
}

.footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.footer_mid_menu p {
    font-family: 16px;
    color: var(--white);
}

/********************* end footer ********************************/

/********************* services ********************************/
.services_wrapper {
    padding: 0 15px;
}

.services_title {
    text-align: center;
    padding-top: 48px;
}

.services_title h3 {
    font-family: 'Poppins-SemiBold';
    font-size: 48px;
}

.services_title p {
    width: 100%;
    max-width: 850px;
    margin: auto;
}

.services_title h3 span {
    color: var(--primary);
}

.services_container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}

.services_contanet {
    padding-top: 50px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    column-gap: 40px;
    row-gap: 10px;
}

.services_content h4 {
    font-family: 'Poppins-SemiBold';
    font-size: 28px;
}

.services_content p {
    font-family: 'Poppins-Regular';
    margin: 12px 0;
    text-align: justify;
}

.services_img {
    width: 50%;
    flex-grow: 1;
    flex-shrink: 0;
}

.services_img img {
    width: 100%;
}

.services_content h5 {
    font-family: 'Poppins-SemiBold';
    font-size: 18px;
}

.services_content h5 span {
    font-family: 'Poppins-ExtraLight';
}

.services_action_btn {
    margin-top: 20px;
}

.services_action_btn a {
    text-decoration: none;
    display: inline-block;
    padding: 10px 50px;
    border-radius: 10px;
    margin: 0 8px 0 0;
    transition: all .5s;
}

.services_action_btn a:first-child {
    background-color: #000;
    border: 1px solid var(--primary);
    color: var(--white);
}

.services_action_btn a:first-child:hover {
    background-color: var(--dark_primary);
}

.services_action_btn a:last-child {
    background-color: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary);
}

.services_action_btn a:last-child:hover {
    background-color: var(--dark_primary);
}

.services_slider_arrow {
    margin: 28px auto;
    text-align: center;
}

.services_slider_arrow button {
    background-color: transparent;
    border: 0;
    cursor: pointer;
}

.services_slider_arrow button {
    transition: 0.3s;
}

.services_slider_arrow button.disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

.services_preview {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

.services_preview::-webkit-scrollbar {
    height: 6px;
}

.services_preview::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.preview_item {
    min-width: 200px;
    height: 150px;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    opacity: 0.5;
    transition: 0.3s;
    border: 2px solid transparent;
    flex-shrink: 0;
}

.preview_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview_item.active {
    opacity: 1;
    border: 2px solid var(--primary);
}

.demo_common_box {
    width: 100%;
    max-width: 900px;
    margin: 50px auto;
}

.upload_box {
    border: 2px dashed var(--primary);
    background-color: var(--box);
    border-radius: 30px;
    padding: 28px;
    text-align: center;
    position: relative;
}

.upload_icon {
    width: 100px;
}

.upload_content p {
    color: white;
    font-size: 18px;
}

.upload_content span {
    color: #aaa;
    display: block;
    margin-bottom: 15px;
}

.browse_btn {
    font-family: 'Poppins-SemiBold';
    background: var(--primary);
    border: none;
    padding: 10px 50px;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.browse_btn:hover {
    background: var(--dark_primary);
}

.file_input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.prompt_box {
    border-radius: 30px;
    border: 1px solid var(--box_bodrder);
    background-color: var(--box);
    padding: 14px 30px;
    margin: 22px 0;
}

.submit_btn {
    text-align: center;
    margin: 10px auto;
}

.file_name {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

#fileName {
    margin-left: 10px;
}

.progress_wrapper {
    width: 100%;
}

.progress_header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: var(--border);
    font-size: 14px;
}

.progress_bar {
   width:100%;
    height:10px;
    background: #303030;
    border-radius:10px;
    overflow:hidden;
}

.progress_fill{
    width:0%;
    height:100%;
    background:var(--primary);
    transition:width 0.2s;
}

#progressPercent {
    color: var(--white);
}

.captured_images {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
}

.captured_images img {
    width: 180px;
    margin: 0 10px 10px 0;
    border: 2px solid var(--primary);
    border-radius: 20px;
}

.video_tag {
    width: 100%;
    margin-top: 10px;
    border-radius: 10px;
}

.download_btn {
    margin-top: 10px;
}

.download_btn a {
    padding: 12px 30px;
    margin: 0 10px 10px 0;
    border-radius: 30px;
    font-family: 'Poppins-SemiBold';
    display: inline-block;
    color: var(--white) !important;
}

.btn_blue {
    background-color: #2563EB;
}

.btn_green {
    background-color: #16A34A;
}

.btn_purple {
    background-color: #7C3AED;
}

.btn_orange {
    background-color: #F59E0B;
}

.flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.number_plate_detection {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    z-index: 100;
    max-width: 380px;
    background-color: var(--box);
    border-left: 1px solid var(--box_bodrder);
    transition: all .5s;
}

.number_plate_detection.active {
    right: 0;
}

.detected_title {
    padding: 20px;
    border-bottom: 1px solid var(--box_bodrder);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.detected_title h4 {
    font-size: 22px;
}

.detected_number ul li {
    padding: 10px;
    list-style-type: none;
    transition: all .5s;
    cursor: pointer;
}

.detected_number ul li:hover {
    background-color: #212125;
}

.close_plate {
    background-color: transparent;
    border: 0;
    cursor: pointer;
}

.close_plate img {
    width: 40px;
}

/********************* end services ********************************/



/**************************** landing page *************************/
/* ── NAV ── */
.landing_main{
    font-family: var(--font);
    
}
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 64px;
    background: rgba(15, 15, 26, .85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--cb);
    transition: background .3s;
}

.nav-logo {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -.3px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--w);
}

.logo-box {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--p), var(--pl));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 18px var(--pg);
}

.logo-box svg {
    width: 18px;
    height: 18px;
    color: #fff;
}

.nav-ul {
    display: flex;
    gap: 34px;
    list-style: none;
}

.nav-ul a {
    font-size: 18px;
    font-weight: 500;
    color: var(--m);
    text-decoration: none;
    transition: color .2s;
    position: relative;
}


.nav-ul a:hover {
    color: var(--primary);
}

.nav-ul a:hover::after {
    transform: scaleX(1);
}

.nav-r {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-o {
    font-family: var(--font);
    font-size: 16px;
    font-weight: 600;
    padding: 8px 20px;
    border: 1px solid var(--pb);
    color: var(--pl);
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all .3s;
}

.btn-o:hover {
    background: rgba(6, 130, 164, .1);
    border-color: var(--p);
}

.btn-s {
    font-family: var(--font);
    font-size: .85rem;
    font-weight: 600;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--p), var(--pl));
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 18px var(--pg);
    transition: all .3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-s:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 26px var(--pg);
}

.ham {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 300;
}

.ham span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--w);
    border-radius: 2px;
    transition: transform .35s, opacity .3s;
}

.ham.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.ham.open span:nth-child(2) {
    opacity: 0;
}

.ham.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 70px 64px 0;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 55% 65% at 80% 50%, rgba(6, 130, 164, .13) 0%, transparent 65%),
        radial-gradient(ellipse 35% 45% at 10% 30%, rgba(13, 168, 212, .07) 0%, transparent 60%),
        var(--bg);
}

/* Grid overlay */
.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(6, 130, 164, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(6, 130, 164, .04) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: radial-gradient(ellipse 80% 80% at 80% 50%, black 0%, transparent 100%);
}

/* Floating particles */
.particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--pl);
    opacity: 0;
    animation: float-p linear infinite;
}

@keyframes float-p {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: .6;
    }

    90% {
        opacity: .3;
    }

    100% {
        transform: translateY(-10vh) scale(1.2);
        opacity: 0;
    }
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 60px 0;
}

/* ── HERO TEXT ── */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(6, 130, 164, .1);
    border: 1px solid var(--pb);
    border-radius: 100px;
    padding: 5px 14px 5px 8px;
    font-size: .7rem;
    font-weight: 600;
    color: var(--pl);
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.badge-pulse {
    width: 6px;
    height: 6px;
    background: var(--pl);
    border-radius: 50%;
    animation: bp 2s infinite;
}

@keyframes bp {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(13, 168, 212, .6);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(13, 168, 212, 0);
    }
}

h1.hero-title {
    font-size: clamp(2.4rem, 4.2vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    color: var(--w);
    margin-bottom: 22px;
}

h1.hero-title .hl {
    background: linear-gradient(135deg, var(--pl), #3dcfec);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: .98rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--m);
    margin-bottom: 36px;
    max-width: 460px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-btns .btn-s,
.hero-btns .btn-o {
    font-size: .92rem;
    padding: 13px 28px;
    border-radius: 10px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.h-stat {}

.h-stat-num {
    font-size: 1.7rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--pl), #3dcfec);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.h-stat-label {
    font-size: .72rem;
    font-weight: 500;
    color: var(--m);
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-top: 4px;
}

/* ── AI VISION ANIMATION ── */
.vision-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.vision-scene {
    position: relative;
    width: 460px;
    height: 500px;
}

#visionCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

/* Floating data chips */
.data-chip {
    position: absolute;
    background: rgba(15, 15, 26, .92);
    border: 1px solid rgba(6, 130, 164, .38);
    border-radius: 12px;
    padding: 10px 14px;
    backdrop-filter: blur(12px);
    font-size: .72rem;
    font-weight: 600;
    color: var(--t);
    white-space: nowrap;
    z-index: 2;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .4);
}

.chip-val {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--pl);
    display: block;
    line-height: 1.2;
}

.data-chip.c1 {
    top: 6%;
    left: -10px;
    animation: cf1 3.5s ease-in-out infinite;
}

.data-chip.c2 {
    top: 12%;
    right: 0px;
    animation: cf2 4s ease-in-out infinite;
}

.data-chip.c3 {
    bottom: 24%;
    left: -10px;
    animation: cf1 4.5s ease-in-out infinite reverse;
}

.data-chip.c4 {
    bottom: 14%;
    right: 0px;
    animation: cf2 3.2s ease-in-out infinite reverse;
}

@keyframes cf1 {

    0%,
    100% {
        transform: translateY(0);
    }

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

@keyframes cf2 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

/* ── FEATURES SECTION ── */
.features-sec {
    padding: 110px 0;
    background: var(--bg2);
    border-top: 1px solid var(--cb);
}

.sec-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 64px;
}

.sec-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    gap: 24px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .68rem;
    font-weight: 700;
    color: var(--pl);
    text-transform: uppercase;
    letter-spacing: .14em;
    margin-bottom: 12px;
}

.eyebrow::before {
    content: '';
    width: 18px;
    height: 2px;
    background: var(--p);
    border-radius: 2px;
}

.sec-h {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.5px;
    color: var(--w);
    margin-bottom: 12px;
}

.sec-p {
    font-size: .95rem;
    font-weight: 400;
    line-height: 1.72;
    color: var(--m);
}

.feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.feat-grid a{
    text-decoration: none;
}

.feat-card {
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--cb);
    border-radius: 20px;
    padding: 34px 28px;
    transition: all .4s cubic-bezier(.16, 1, .3, 1);
    position: relative;
    overflow: hidden;
}

.feat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 130, 164, .07), transparent 60%);
    opacity: 0;
    transition: opacity .4s;
    border-radius: 20px;
}

.feat-card:hover {
    border-color: var(--pb);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
}

.feat-card:hover::before {
    opacity: 1;
}

.fi {
    width: 60px;
    height: 60px;
    border-radius: 13px;
    background: linear-gradient(135deg, rgba(6, 130, 164, .18), rgba(13, 168, 212, .08));
    border: 1px solid var(--pb);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all .4s;
    position: relative;
    z-index: 1;
}

.feat-card:hover .fi {
    box-shadow: 0 0 18px rgba(6, 130, 164, .3);
}

.fi svg {
    width: 35px;
    height: 35px;
    color: var(--pl);
}

.fn {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: .14em;
    color: rgba(255, 255, 255, .15);
    text-transform: uppercase;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.ft {
    font-size: 1rem;
    font-weight: 700;
    color: var(--w);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.fd {
    font-size: .83rem;
    font-weight: 400;
    line-height: 1.72;
    color: var(--m);
    position: relative;
    z-index: 1;
}

/* ── STATS SECTION ── */
.stats-sec {
    padding: 100px 0;
    background: var(--bg3);
    border-top: 1px solid var(--cb);
    border-bottom: 1px solid var(--cb);
}

.stats-inner {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: center;
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 40px;
}

.m-card {
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--cb);
    border-radius: 16px;
    padding: 24px 20px;
    transition: all .3s;
}

.m-card:hover {
    border-color: var(--pb);
    background: rgba(6, 130, 164, .05);
}

.m-num {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--pl), #3dcfec);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}

.m-label {
    font-size: .72rem;
    font-weight: 600;
    color: var(--m);
    text-transform: uppercase;
    letter-spacing: .07em;
}

.prog-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.prog-item {}

.prog-meta {
    display: flex;
    justify-content: space-between;
    font-size: .82rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.prog-meta span:first-child {
    color: var(--t);
}

.prog-meta span:last-child {
    color: var(--pl);
    font-weight: 700;
}

.prog-track {
    height: 6px;
    background: rgba(255, 255, 255, .06);
    border-radius: 10px;
    overflow: hidden;
}

.prog-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--p), var(--pl));
    border-radius: 10px;
    animation: pgrow 2.2s cubic-bezier(.16, 1, .3, 1) forwards;
}

@keyframes pgrow {
    from {
        width: 0 !important;
    }
}

/* ── USE CASES ── */
.uc-sec {
    padding: 110px 0;
    background: var(--bg2);
    border-top: 1px solid var(--cb);
}

.uc-header {
    text-align: center;
    margin-bottom: 60px;
}

.uc-header .eyebrow {
    justify-content: center;
}

.uc-header .sec-p {
    max-width: 500px;
    margin: 0 auto;
}

.uc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.uc-card {
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--cb);
    border-radius: 22px;
    padding: 36px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    transition: all .4s cubic-bezier(.16, 1, .3, 1);
    position: relative;
    overflow: hidden;
}

.uc-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--p), var(--pl));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s cubic-bezier(.16, 1, .3, 1);
}

.uc-card:hover {
    border-color: var(--pb);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
}

.uc-card:hover::after {
    transform: scaleX(1);
}

.uc-ico {
    flex-shrink: 0;
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, rgba(6, 130, 164, .18), rgba(13, 168, 212, .07));
    border: 1px solid var(--pb);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s;
}

.uc-card:hover .uc-ico {
    box-shadow: 0 0 20px rgba(6, 130, 164, .25);
}

.uc-ico svg {
    width: 26px;
    height: 26px;
    color: var(--pl);
}

.uc-tag {
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--pl);
    margin-bottom: 7px;
}

.uc-name {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--w);
    margin-bottom: 9px;
    line-height: 1.3;
}

.uc-desc {
    font-size: .83rem;
    font-weight: 400;
    line-height: 1.72;
    color: var(--m);
    margin-bottom: 14px;
}

.uc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .77rem;
    font-weight: 600;
    color: var(--pl);
    text-decoration: none;
    transition: gap .3s;
}

.uc-link:hover {
    gap: 10px;
}

.uc-link svg {
    width: 13px;
    height: 13px;
}

/* ── CTA ── */
.cta-sec {
    padding: 100px 0;
    background: var(--bg);
}

.cta-box {
    background: linear-gradient(135deg, rgba(6, 130, 164, .1), rgba(13, 168, 212, .05));
    border: 1px solid var(--pb);
    border-radius: 28px;
    padding: 72px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 320px;
    background: radial-gradient(ellipse, rgba(6, 130, 164, .14) 0%, transparent 70%);
}

.cta-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(6, 130, 164, .03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(6, 130, 164, .03) 1px, transparent 1px);
    background-size: 40px 40px;
    border-radius: 28px;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(6, 130, 164, .14);
    border: 1px solid var(--pb);
    border-radius: 100px;
    padding: 5px 16px;
    font-size: .68rem;
    font-weight: 700;
    color: var(--pl);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(2rem, 3.8vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.5px;
    color: var(--w);
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.cta-title .hl {
    background: linear-gradient(135deg, var(--pl), #3dcfec);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-desc {
    font-size: .97rem;
    color: var(--m);
    font-weight: 400;
    line-height: 1.72;
    max-width: 480px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

.cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-btns .btn-s,
.cta-btns .btn-o {
    font-size: .95rem;
    padding: 14px 32px;
    border-radius: 12px;
}

.cta-trust {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    margin-top: 44px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .76rem;
    font-weight: 500;
    color: var(--m);
}

.trust-item svg {
    width: 14px;
    height: 14px;
    color: var(--pl);
}

/* ── FOOTER ── */
footer {
    background: var(--bg);
    border-top: 1px solid var(--cb);
    padding: 20px 0;
}

.foot-inner {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 64px;
}

.foot-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--cb);
}

.foot-brand-desc {
    font-size: .84rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--m);
    margin-top: 14px;
    max-width: 255px;
}

.news-label {
    font-size: .76rem;
    font-weight: 500;
    color: var(--m);
    margin: 22px 0 8px;
}

.news-form {
    display: flex;
    gap: 8px;
}

.news-in {
    flex: 1;
    font-family: var(--font);
    font-size: .78rem;
    padding: 9px 13px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--cb);
    border-radius: 8px;
    color: var(--w);
    outline: none;
    transition: border-color .3s;
}

.news-in:focus {
    border-color: var(--pb);
}

.news-in::placeholder {
    color: var(--m);
}

.news-btn {
    font-family: var(--font);
    font-size: .76rem;
    font-weight: 600;
    padding: 9px 14px;
    background: linear-gradient(135deg, var(--p), var(--pl));
    border: none;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    transition: opacity .3s;
}

.news-btn:hover {
    opacity: .85;
}

.fc h4 {
    font-size: .78rem;
    font-weight: 700;
    color: var(--w);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 18px;
}

.fc ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.fc ul a {
    font-size: .83rem;
    font-weight: 400;
    color: var(--m);
    text-decoration: none;
    transition: color .2s;
}

.fc ul a:hover {
    color: var(--pl);
}

.foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    font-size: .76rem;
    font-weight: 400;
    color: var(--m);
}

.soc-row {
    display: flex;
    gap: 10px;
}

.soc {
    width: 34px;
    height: 34px;
    border: 1px solid var(--cb);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--m);
    text-decoration: none;
    font-size: .62rem;
    font-weight: 700;
    transition: all .3s;
}

.soc:hover {
    border-color: var(--pb);
    color: var(--pl);
    background: rgba(6, 130, 164, .08);
}

/* ── REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.d1 {
    transition-delay: .1s;
}

.d2 {
    transition-delay: .2s;
}

.d3 {
    transition-delay: .3s;
}

.d4 {
    transition-delay: .4s;
}


/*************************** landing page end *****************************/


/************************* Responsive Styles *************************/
@media (max-width: 1399.98px) {
    .header_section {
        padding: 6px 10px;
    }

    .header a {
        margin: 0 22px 0 0;
        font-size: 16px;
    }

    .services_title {
        padding-top: 25px;
    }

    .services_contanet {
        padding-top: 30px;
        column-gap: 30px;
    }
}

@media (max-width: 1199.98px) {
    .form_section {
        max-width: 350px;
        padding: 10px 20px 10px;
    }

    .auth_action_btn {
        padding: 10px 8px;
    }

    .header_left_side img {
        width: 200px;
    }

    .services_title {
        padding-top: 20px;
    }

    .services_title h3 {
        font-size: 38px;
    }

    .services_slider_arrow {
        margin: 28px auto 10px;
    }

    .services_preview {
        margin: 10px 0;
    }

    .demo_common_box {
        margin: 30px auto;
    }

    nav {
        padding: 0 32px;
    }

    .hero {
        padding: 70px 32px 0;
    }

    .hero-inner {
        gap: 40px;
    }

    .vision-scene {
        width: 340px;
        height: 420px;
    }

    .sec-wrap {
        padding: 0 32px;
    }

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

    .stats-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .foot-inner {
        padding: 0 32px;
    }

    .foot-top {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .foot-brand {
        grid-column: 1/-1;
    }

    .cta-box {
        padding: 52px 40px;
    }

}

@media (max-width: 991.98px) {
    .auth_left_side {
        display: none;
    }

    .auth_right_side {
        width: 100%;
    }

    .header a {
        margin: 0 18px 0 0;
    }

    .header_left_side img {
        width: 180px;
    }

    .services_title {
        padding-top: 15px;
    }

    .services_title h3 {
        font-size: 32px;
    }

    .services_contanet {
        flex-direction: column;
        padding-top: 20px;
    }

    .services_img {
        width: 100%;
    }

    .services_slider_arrow {
        margin: 16px auto 10px;
    }

    .demo_common_box {
        max-width: 700px;
    }

    .upload_box {
        padding: 19px;
    }

    nav {
        padding: 0 20px;
        height: 62px;
    }

    .nav-ul {
        position: fixed;
        inset: 0;
        z-index: 250;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 28px;
        list-style: none;
        background: rgba(15, 15, 26, .97);
        backdrop-filter: blur(24px);
        opacity: 0;
        pointer-events: none;
        transition: opacity .4s;
    }

    .nav-ul.open {
        opacity: 1;
        pointer-events: auto;
        height: max-content;
        margin-top: 60px;
    }

    .nav-ul a {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--t);
    }

    .mob-cta-li {
        display: none;
    }

    .mob-cta-li.show {
        display: flex !important;
    }

    .ham {
        display: flex;
    }

    .nav-r {
        display: none;
    }

    .hero {
        padding: 62px 20px 40px;
        min-height: auto;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 0 60px;
    }

    .vision-wrap {
        order: -1;
    }

    .vision-scene {
        width: 280px;
        height: 350px;
    }

    .data-chip {
        font-size: .65rem;
        padding: 7px 10px;
    }

    .chip-val {
        font-size: .95rem;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 2.6rem);
    }

    .hero-desc {
        font-size: .9rem;
    }

    .hero-btns {
        flex-direction: column;
    }

    .hero-btns .btn-s,
    .hero-btns .btn-o {
        text-align: center;
        justify-content: center;
    }

    .hero-stats {
        gap: 24px;
    }

    .features-sec,
    .uc-sec {
        padding: 80px 0;
    }

    .sec-wrap {
        padding: 0 20px;
    }

    .sec-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .feat-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .feat-card {
        padding: 26px 20px;
    }

    .stats-sec {
        padding: 72px 0;
    }

    .metrics-grid {
        gap: 12px;
    }

    .m-card {
        padding: 20px 16px;
    }

    .m-num {
        font-size: 1.7rem;
    }

    .uc-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .uc-card {
        flex-direction: column;
        gap: 16px;
        padding: 26px 20px;
    }

    .cta-sec {
        padding: 72px 0;
    }

    .cta-box {
        padding: 40px 20px;
        border-radius: 20px;
    }

    .cta-btns {
        flex-direction: column;
        align-items: center;
    }

    .cta-btns .btn-s,
    .cta-btns .btn-o {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        text-align: center;
    }

    .cta-trust {
        gap: 16px;
    }

    footer {
        padding: 52px 0 0;
    }

    .foot-inner {
        padding: 0 20px;
    }

    .foot-top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .foot-bottom {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }

    .soc-row {
        justify-content: center;
    }

    .news-form {
        flex-direction: column;
    }

    .news-btn {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .header_menu {
        /* display: none; */
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100%;
        background-color: var(--box);
        padding-top: 40px;
        transition: all .5s;
    }

    .header_menu a {
        display: block;
        padding-bottom: 10px;
        margin-bottom: 10px;
        padding-left: 10px;
        border-bottom: 1px solid var(--box_bodrder);
        margin-right: 0;
    }

    .toggle_btn {
        display: inline-block;
    }

    .profile_section {
        padding: 20px 15px;
    }

    .profile_tab a {
        max-width: stretch;
    }

    .profile_box {
        max-width: 350px
    }

    .demo_common_box {
        max-width: 500px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 7.5vw, 2.2rem);
    }

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

    .m-num {
        font-size: 1.5rem;
    }

    .sec-h {
        font-size: clamp(1.6rem, 6vw, 2rem);
    }

    .cta-title {
        font-size: clamp(1.7rem, 6vw, 2.2rem);
    }
}

@media (max-width: 575.98px) {
    .services_content h4 {
        font-size: 24px;
    }

    .services_action_btn a {
        padding: 10px 30px;
    }

    .demo_common_box {
        max-width: 400px;
    }

    .prompt_box {
        padding: 14px 10px;
        margin: 16px 0;
        border-radius: 10px;
    }

    .upload_box {
        border-radius: 10px;
    }

    .download_btn a {
        display: block;
        text-align: center;
    }
    .hero-inner, .features-sec, .uc-sec, .stats-sec, .cta-sec,footer{
        padding: 20px 0;
    }
    .footer{
        justify-content: center;
    }
    .logo{
        width: 200px;
    }
}

@media (max-width: 425.98px) {}

/************************* End Responsive Styles *************************/