/* =====================================================
   LOGIZENT - ENTERPRISE BLACK GOLD DESIGN SYSTEM
   ===================================================== */

/* ================= ROOT VARIABLES ================= */

:root{
    --primary-black:#0b0b0f;
    --deep-black:#111318;
    --card-black:#151821;

    --gold:#d4af37;
    --gold-light:#f7e18d;

    --text-light:#ffffff;
    --text-muted:#a1a1aa;

    --transition:0.3s ease;
}

/* ================= GLOBAL RESET ================= */

body{
    margin:0;
    padding:0;
    font-family:'Inter', sans-serif;
    background:var(--primary-black);
    color:var(--text-light);
    overflow-x:hidden;
}

section{
    padding:100px 0;
    position:relative;
}

a{
    text-decoration:none;
}

/* ================= NAVBAR ================= */

.custom-navbar{
    background: transparent;
    transition: all 0.4s ease;
    padding: 20px 0;
}

.custom-navbar.nav-scrolled{
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(8px);
    padding: 12px 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.custom-navbar.nav-scrolled{
    border-bottom: 1px solid rgba(212,175,55,0.3);
}


.navbar-brand{
    font-size:24px;
    font-weight:700;
    letter-spacing:2px;
    color:var(--gold) !important;
}

.nav-link{
    color:var(--text-light) !important;
    margin-left:25px;
    font-weight:500;
    transition:var(--transition);
}

.nav-link:hover{
    color:var(--gold) !important;
}

/* Gold Button */
.btn-gold{
    background:linear-gradient(135deg,var(--gold),#f7e18d);
    border:none;
    color:#000;
    font-weight:600;
    padding:14px 34px;
    border-radius:50px;
    transition:0.3s ease;
}

.btn-gold:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(212,175,55,0.3);
}


.hero-sub-app{
    font-size:20px;
    max-width:540px;
}


/* ================= HERO ================= */

.hero-section{
    height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding-top:120px;
    background:
        radial-gradient(circle at center, #1a1a1f 0%, #000 80%);
}

.hero-title{
    font-size:60px;
    font-weight:700;
    line-height:1.2;
    max-width:900px;
    margin:auto;
}

.hero-title span{
    background:linear-gradient(135deg,var(--gold),var(--gold-light));
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero-subtitle{
    margin-top:25px;
    font-size:20px;
    color:var(--text-muted);
    max-width:700px;
    margin-left:auto;
    margin-right:auto;
}

/* ================= GOLD GLOW GRID ================= */

.hero-section::after{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:100%;
    background:
        repeating-linear-gradient(
            to right,
            rgba(212,175,55,0.05) 0px,
            rgba(212,175,55,0.05) 1px,
            transparent 1px,
            transparent 100px
        ),
        repeating-linear-gradient(
            to top,
            rgba(212,175,55,0.05) 0px,
            rgba(212,175,55,0.05) 1px,
            transparent 1px,
            transparent 100px
        );
    opacity:0.2;
    pointer-events:none;
}

/* ================= SECTION TITLES ================= */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    font-weight:700;
}

.section-title span{
    background:linear-gradient(135deg,var(--gold),var(--gold-light));
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* ================= CARDS SYSTEM ================= */

.luxury-card{
    background:var(--card-black);
    padding:40px 30px;
    border-radius:20px;
    transition:var(--transition);
    border:1px solid rgba(255,255,255,0.05);
}

.luxury-card:hover{
    transform:translateY(-10px);
    border:1px solid var(--gold);
    box-shadow:0px 0px 30px rgba(212,175,55,0.15);
}

.luxury-card h4{
    margin-bottom:15px;
    font-weight:600;
}

.luxury-card p{
    color:var(--text-muted);
}

/* ================= FOOTER ================= */

footer{
    background:var(--deep-black);
    padding:60px 0;
}

.footer-links a{
    display:block;
    color:var(--text-muted);
    margin-bottom:8px;
    transition:var(--transition);
}

.footer-links a:hover{
    color:var(--gold);
}

/* ================= RESPONSIVE ================= */

@media(max-width:991px){

    .hero-title{
        font-size:40px;
    }

    section{
        padding:80px 0;
    }

}

@media(max-width:576px){

    .hero-title{
        font-size:30px;
    }

    .hero-subtitle{
        font-size:16px;
    }

}



/* ================= MEGA MENU ================= */

.mega-dropdown{
    position:static !important;
}

/* ===== MEGA MENU GLASS STYLE ===== */

.mega-menu{
    width:100%;
    left:0 !important;
    right:0 !important;
    border-radius:16px;
    padding:40px !important;

    background: rgba(15,15,20,0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border:1px solid rgba(212,175,55,0.2);

    box-shadow:
        0 20px 60px rgba(0,0,0,0.6),
        0 0 40px rgba(212,175,55,0.05);

    transition: all 0.4s ease;
}

.mega-dropdown .dropdown-menu{
    opacity:0;
    transform: translateY(20px);
    visibility:hidden;
    display:block;
}

.mega-dropdown:hover .dropdown-menu{
    opacity:1;
    transform: translateY(0);
    visibility:visible;
}



/* ===== GLASS LIGHT REFLECTION ===== */

.mega-menu{
    position:relative;
    overflow:hidden;
}

.mega-menu::before{
    content:"";
    position:absolute;
    top:-50%;
    left:-60%;
    width:200%;
    height:200%;

    background: linear-gradient(
        120deg,
        rgba(255,255,255,0) 30%,
        rgba(255,255,255,0.08) 50%,
        rgba(255,255,255,0) 70%
    );

    transform: rotate(25deg);
    animation: glassShimmer 6s linear infinite;
    pointer-events:none;
}


/* Animated gradient overlay */
/*.mega-menu::before{
    content:"";
    position:absolute;
    top:-50%;
    left:-50%;
    width:200%;
    height:200%;
    background:radial-gradient(circle at center,
        rgba(212,175,55,0.03),
        transparent 65%
    );
    animation: megaGlowMove 25s linear infinite;
    pointer-events:none;
}*/

/* Slow movement animation */
@keyframes megaGlowMove{
    0%{
        transform:translate(0,0);
    }
    50%{
        transform:translate(5%,5%);
    }
    100%{
        transform:translate(0,0);
    }
}

.mega-heading{
    color:#d4af37;
    margin-bottom:15px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    font-size:14px;
}
.navbar .dropdown-menu{
    top:100%;
    margin-top:15px;
}


.mega-menu a{
    display:block;
    padding:8px 0;
    color:#ddd;
    text-decoration:none;
    transition: all 0.3s ease;
}

.mega-menu a:hover{
    color:#d4af37;
    transform: translateX(6px);
}

/* Smooth dropdown animation */
.dropdown-menu{
    opacity:0;
    transform:translateY(10px);
    transition:all 0.3s ease;
    display:block;
    visibility:hidden;
}

.mega-dropdown:hover .dropdown-menu{
    opacity:1;
    transform:translateY(0px);
    visibility:visible;
}


/* ================= STICKY SHRINK NAVBAR ================= */

.custom-navbar{
    padding:25px 0;
    transition:all 0.4s ease;
}

.navbar-brand{
    font-size:24px;
    transition:all 0.4s ease;
}

/* Shrink state */
.custom-navbar.nav-scrolled{
    padding:12px 0;
    background:rgba(10,10,15,0.95) !important;
    backdrop-filter:blur(8px);
    box-shadow:0 5px 25px rgba(0,0,0,0.6);
}

.custom-navbar.nav-scrolled .navbar-brand{
    font-size:20px;
}


.mega-feature-card{
    background:linear-gradient(145deg,#141820,#0e1118);
    padding:40px 50px;
    border-radius:20px;
    border:1px solid rgba(212,175,55,0.25);
    transition:0.3s ease;
    color:#ffffff;
}

.mega-feature-card h4{
    color:var(--gold);
    font-weight:600;
    margin-bottom:15px;
}

.mega-feature-card p{
    color:#cbd5e1;
    font-size:14px;
    line-height:1.6;
}

.mega-feature-card:hover{
    border:1px solid var(--gold);
    box-shadow:0 0 20px rgba(212,175,55,0.12);
    transform:translateY(-5px);
}

.feature-illustration img{
    width:170px;
}

.mega-feature-card{
    box-shadow:0 0 15px rgba(212,175,55,0.12);
}

.services-section{
    background:linear-gradient(180deg,#0b0b0f,#0f141b);
}

.service-card{
    background:rgba(20,25,35,0.9);
    padding:40px;
    border-radius:20px;
    border:1px solid rgba(212,175,55,0.15);
    transition:0.4s ease;
    backdrop-filter:blur(6px);
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 10px 40px rgba(212,175,55,0.15);
    border:1px solid var(--gold);
}

.service-icon{
    width:60px;
    height:60px;
    background:linear-gradient(135deg,var(--gold),var(--gold-light));
    color:#000;
    font-weight:bold;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    margin-bottom:20px;
}

.stats-section{
    background:radial-gradient(circle at center,#0f141c,#0b0b0f);
    padding:100px 0;
}

.stat-box{
    padding:40px 20px;
    border-radius:20px;
    border:1px solid rgba(212,175,55,0.15);
    background:rgba(20,25,35,0.7);
    transition:0.3s ease;
}

.stat-box:hover{
    border:1px solid var(--gold);
    box-shadow:0 10px 30px rgba(212,175,55,0.2);
    transform:translateY(-5px);
}

.counter{
    font-size:50px;
    font-weight:700;
    background:linear-gradient(135deg,var(--gold),var(--gold-light));
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.stat-box p{
    color:var(--text-muted);
    margin-top:10px;
    font-size:16px;
}

/* ================= APPINVENTIV HERO ================= */

.hero-appinv{
    padding:180px 0 140px;
    background:
        radial-gradient(circle at 20% 20%, rgba(212,175,55,0.08), transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(212,175,55,0.05), transparent 40%),
        #0b0b0f;
    position:relative;
    overflow:hidden;
}


.hero-title-app{
    font-size:72px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:30px;
    letter-spacing:-1px;
}


.hero-title-app span{
    color:var(--gold);
}

.hero-sub-app{
    font-size:18px;
    color:#a1a1aa;
    max-width:520px;
    margin-bottom:35px;
}

.hero-buttons-app .btn{
    padding:12px 28px;
    border-radius:50px;
}

/* RIGHT SIDE VISUAL */

.hero-visual{
    position:relative;
    width:350px;
    height:350px;
    margin:0 auto;
}

.core-circle{
    width:120px;
    height:120px;
    background:linear-gradient(135deg,var(--gold),#f7e18d);
    border-radius:50%;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

.orbit{
    position:absolute;
    border-radius:50%;
    border:1px solid rgba(212,175,55,0.4);
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

.orbit-1{
    width:250px;
    height:250px;
    animation:rotateOrbit 12s linear infinite;
}

.orbit-2{
    width:300px;
    height:300px;
    animation:rotateOrbitReverse 18s linear infinite;
}

@keyframes rotateOrbit{
    from{ transform:translate(-50%,-50%) rotate(0deg); }
    to{ transform:translate(-50%,-50%) rotate(360deg); }
}

@keyframes rotateOrbitReverse{
    from{ transform:translate(-50%,-50%) rotate(360deg); }
    to{ transform:translate(-50%,-50%) rotate(0deg); }
}


.hero-visual{
    position:relative;
    width:420px;
    height:420px;
    margin:0 auto;
}

.glow-core{
    width:150px;
    height:150px;
    background:linear-gradient(145deg,var(--gold),#f7e18d);
    border-radius:50%;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    box-shadow:0 0 80px rgba(212,175,55,0.3);
}

.floating-ring{
    position:absolute;
    border-radius:50%;
    border:1px solid rgba(212,175,55,0.4);
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

.ring-1{
    width:300px;
    height:300px;
    animation:floatRotate 15s linear infinite;
}

.ring-2{
    width:370px;
    height:370px;
    animation:floatRotateReverse 20s linear infinite;
}

@keyframes floatRotate{
    from{ transform:translate(-50%,-50%) rotate(0deg); }
    to{ transform:translate(-50%,-50%) rotate(360deg); }
}

@keyframes floatRotateReverse{
    from{ transform:translate(-50%,-50%) rotate(360deg); }
    to{ transform:translate(-50%,-50%) rotate(0deg); }
}


/* ================= CASE STUDIES ================= */

.case-section{
    padding:140px 0;
    background:#0e1118;
}

.case-heading h2{
    font-size:48px;
    font-weight:700;
}

.case-heading span{
    color:var(--gold);
}

.case-heading p{
    color:#a1a1aa;
    margin-top:20px;
    font-size:18px;
}

/* Case Cards */

.case-card{
    position:relative;
    height:380px;
    border-radius:20px;
    overflow:hidden;
    cursor:pointer;
    transition:0.4s ease;
    background-size:cover;
    background-position:center;
}

.case-1{
    background-image:url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?ixlib=rb-4.0.3&w=1400&q=80');
}

.case-2{
    background-image:url('https://images.unsplash.com/photo-1556157382-97eda2d62296?ixlib=rb-4.0.3&w=1400&q=80');
}

.case-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
    transition:0.4s ease;
}

.case-card:hover::before{
    background:rgba(0,0,0,0.75);
}

.case-overlay{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:30px;
    transform:translateY(40px);
    transition:0.4s ease;
}

.case-card:hover .case-overlay{
    transform:translateY(0);
}


.case-tag{
    display:inline-block;
    padding:6px 12px;
    font-size:12px;
    background:rgba(212,175,55,0.2);
    border:1px solid var(--gold);
    border-radius:50px;
    margin-bottom:15px;
}

.case-card h4{
    font-size:22px;
    font-weight:600;
    max-width:300px;
}

.case-card:hover{
    transform:scale(1.02);
}


.case-link{
    display:inline-block;
    margin-top:15px;
    color:var(--gold);
    font-weight:500;
    opacity:0;
    transform:translateY(10px);
    transition:0.3s ease;
}

.case-card:hover .case-link{
    opacity:1;
    transform:translateY(0);
}
.case-card{
    background-size:cover;
    background-position:center;
    transition:0.5s ease;
}

.case-card:hover{
    transform:scale(1.02);
}
/*.hero-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:0;
}

.hero-appinventiv::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0.5));
    z-index:1;
}*/

.hero-left-app,
.hero-right-app{
    position:relative;
    z-index:2;
}
.ai-grid-bg{
    position:fixed;
    inset:0;
    background-image: 
        linear-gradient(rgba(212,175,55,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212,175,55,0.05) 1px, transparent 1px);
    background-size:60px 60px;
    animation:moveGrid 40s linear infinite;
    z-index:-1;
}

@keyframes moveGrid{
    from{ background-position:0 0; }
    to{ background-position:1000px 1000px; }
}
.capabilities-section{
    background:#070a14;
    position:relative;
}

.section-title{
    font-size:48px;
    font-weight:700;
}

.capability-card{
    border:1px solid rgba(212,175,55,0.15);
    padding:50px 30px;
    background:rgba(15,20,40,0.4);
    backdrop-filter:blur(15px);
    border-radius:12px;
    transition:0.4s ease;
    transform:scale(0.9);
    opacity:0;
}

.capability-card h4{
    color:var(--gold);
    margin-bottom:15px;
}

.capability-card p{
    color:#bbb;
}

.capability-card:hover{
    border-color:var(--gold);
    transform:scale(1);
}
.hero-video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:0;
}

.hero-appinventiv{
    position:relative;
    overflow:hidden;
    height:100vh;
    background:#050816;
}

/* Generic parallax layer */
.parallax-layer{
    position:absolute;
    inset:0;
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
    transition:transform 0.2s ease-out;
}

/* Layer 1 – AI Grid */
.layer-bg{
    background-image:
        linear-gradient(rgba(212,175,55,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212,175,55,0.08) 1px, transparent 1px);
    background-size:80px 80px;
    z-index:1;
}

/* Layer 2 – Robotics Image */
.layer-robot{
    background-image:url('https://images.unsplash.com/photo-1581090700227-1e37b190418e?q=80&w=1600&auto=format&fit=crop');
    opacity:0.15;
    z-index:2;
}

/* Layer 3 – AI HUD Glow */
.layer-hud{
    background-image:url('https://images.unsplash.com/photo-1620712943543-bcc4688e7485?q=80&w=1200&auto=format&fit=crop');
    mix-blend-mode:screen;
    opacity:0.2;
    z-index:3;
}

/* Content always on top */
.hero-content{
    position:relative;
    z-index:5;
}
.hero-appinventiv::after{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    background:radial-gradient(circle, rgba(212,175,55,0.2), transparent);
    top:30%;
    left:60%;
    filter:blur(120px);
    animation:floatGlow 8s ease-in-out infinite alternate;
    z-index:4;
}

@keyframes floatGlow{
    from{ transform:translateY(-20px); }
    to{ transform:translateY(20px); }
}
#aiCanvas{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    z-index:0;
}
.ai-float-box{
    position:absolute;
    padding:12px 20px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(212,175,55,0.3);
    backdrop-filter:blur(8px);
    border-radius:30px;
    font-size:14px;
    color:#fff;
    animation:floatBox 6s ease-in-out infinite alternate;
}

.box-1{
    top:20%;
    right:20%;
}

.box-2{
    bottom:20%;
    left:15%;
}

@keyframes floatBox{
    from{ transform:translateY(-10px); }
    to{ transform:translateY(10px); }
}
.hero-divider{
    height:120px;
    background:linear-gradient(to bottom, transparent, #070a14);
}
#globe-container{
    position:absolute;
    top:50%;
    right:5%;
    width:400px;
    height:400px;
    transform:translateY(-50%);
    z-index:2;
    pointer-events:none;
}
#globe-container canvas{
    filter: drop-shadow(0 0 25px rgba(212,175,55,0.4));
}

@keyframes glassShimmer{
    0%{
        transform: translateX(-100%) rotate(25deg);
    }
    100%{
        transform: translateX(100%) rotate(25deg);
    }
}
/* ===== NEON EDGE GLOW ===== */

.mega-menu{
    position:relative;
    transition: all 0.4s ease;
}

.mega-menu:hover{
    border:1px solid rgba(212,175,55,0.6);
    box-shadow:
        0 0 15px rgba(212,175,55,0.4),
        0 0 40px rgba(212,175,55,0.2),
        0 20px 60px rgba(0,0,0,0.6);
}







/* ===== VERTICAL DIVIDER LINES ===== */

.mega-menu .col-lg-2{
    position:relative;
}

.mega-menu .col-lg-2:not(:last-child)::after{
    content:"";
    position:absolute;
    top:10%;
    right:0;
    width:1px;
    height:80%;
    background: linear-gradient(
        to bottom,
        rgba(212,175,55,0),
        rgba(212,175,55,0.6),
        rgba(212,175,55,0)
    );
    animation: dividerGlow 3s ease-in-out infinite;
}

@keyframes dividerGlow{
    0%{ opacity:0.3; }
    50%{ opacity:1; }
    100%{ opacity:0.3; }
}


.mega-menu{
    transform-style:preserve-3d;
    perspective:1000px;
}


/*AI-GRID SECTION CSS START*/


.vx9AiGrid_742_wrap {
    width: 100%;
    background: #000000;
    overflow: hidden;
}

.vx9AiGrid_742_container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    min-height: 90vh;
}

/* LEFT VIDEO */
.vx9AiGrid_742_videoSide {
    position: relative;
    overflow: hidden;
}

.vx9AiGrid_742_video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* RIGHT CONTENT */
.vx9AiGrid_742_contentSide {
    background: #000;
    color: #fff;
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vx9AiGrid_742_heading {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 25px;
}

.vx9AiGrid_742_heading span {
    display: block;
    color: #d4af37;
}

.vx9AiGrid_742_subtext {
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.8;
    margin-bottom: 50px;
}

/* CARDS */
.vx9AiGrid_742_cards {
    display: flex;
    gap: 25px;
    margin-bottom: 50px;
}

.vx9AiGrid_742_card {
    flex: 1;
    padding: 30px;
    border-radius: 18px;
    background: #121212;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    transition: all 0.4s ease;
}

.vx9AiGrid_742_card:hover {
    border-color: #d4af37;
    transform: translateY(-8px) scale(1.02);
}


.vx9AiGrid_742_card h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

.vx9AiGrid_742_card ul {
    list-style: none;
    padding: 0;
}

.vx9AiGrid_742_card ul li {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 8px;
}

/* BUTTONS */
.vx9AiGrid_742_btnWrap {
    display: flex;
    gap: 20px;
}

.vx9AiGrid_742_btnPrimary {
    background: #d4af37;
    padding: 14px 30px;
    border-radius: 30px;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.vx9AiGrid_742_btnPrimary:hover {
    background: #c39c2f;
}

.vx9AiGrid_742_btnOutline {
    padding: 14px 30px;
    border-radius: 30px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.vx9AiGrid_742_btnOutline:hover {
    background: #fff;
    color: #000;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .vx9AiGrid_742_container {
        grid-template-columns: 1fr;
    }

    .vx9AiGrid_742_contentSide {
        padding: 80px 40px;
    }

    .vx9AiGrid_742_cards {
        flex-direction: column;
    }
}


.vx9AiGrid_742_videoSide {
    mask-image: linear-gradient(to right, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, black 80%, transparent 100%);
}

/*AI-GRID SECTION CSS END*/



/* Main Section Wrapper */
.rzX_parallax_902_wrap {
    position: relative;
    min-height: 120vh;
    width: 100%;

    background: 
        linear-gradient(
            90deg,
            rgba(0, 10, 40, 0.85) 0%,
            rgba(0, 15, 60, 0.8) 40%,
            rgba(0, 0, 0, 0.7) 100%
        ),
        url('/assets/images/robotic-ai-hd.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    background-attachment: fixed;  /* THIS IS THE MAGIC */
}


/* Fixed Ultra HD Background */
/*.rzX_parallax_902_bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;

    background-image: url('../images/robotic-ai-hd.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    z-index: -2;
}*/

/* Dark Blue Gradient Overlay */
.rzX_parallax_902_wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 10, 40, 0.85) 0%,
        rgba(0, 15, 60, 0.8) 40%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: -1;
}

/* Content Area */
.rzX_parallax_902_content {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 120px 8%;
    color: #fff;
}

.rzX_parallax_902_inner {
    max-width: 650px;
}

.rzX_parallax_902_left h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
}

.rzX_parallax_902_left h2 span {
    display: block;
    color: #d4af37;
}

.rzX_parallax_902_left p {
    font-size: 17px;
    opacity: 0.85;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Button */
.rzX_parallax_902_btn {
    display: inline-block;
    padding: 14px 30px;
    background: #ffffff;
    color: #000;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.rzX_parallax_902_btn:hover {
    background: #d4af37;
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .rzX_parallax_902_wrap {
        height: auto;
    }

    .rzX_parallax_902_content {
        padding: 100px 30px;
    }

}


/*contact section css start by rishabh*/

.lzContact_891_wrap {
    position: relative;
    padding: 120px 8%;
    min-height: 100vh;
    color: #fff;

    background: url('../images/contact-bg5.jpg') center/cover no-repeat;
}

.lzContact_891_overlay {
    position: absolute;
    inset: 0;
    /*background: linear-gradient(
        rgba(125, 150, 190, 0.85),
        rgba(95, 120, 170, 0.9)
    );*/
    /*backdrop-filter: blur(2px);*/
}

.lzContact_891_container {
    position: relative;
    display: flex;
    gap: 80px;
    align-items: flex-start;
    z-index: 2;
}

.lzContact_891_profile {
    width: 250px;
    text-align: center;
}

.lzContact_891_profile img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.lzContact_891_profile h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.lzContact_891_profile p {
    opacity: 0.8;
}

/* FORM BLOCK */

.lzContact_891_formBlock {
    flex: 1;
}

.lzContact_891_formBlock h2 {
    font-size: 42px;
    margin-bottom: 10px;
}

.lzContact_891_desc {
    margin-bottom: 50px;
    opacity: 0.9;
}

.lzContact_891_form input,
.lzContact_891_form textarea {
    width: 100%;
    padding: 12px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.6);
    color: #fff;
    font-size: 15px;
    outline: none;
}

.lzContact_891_form textarea {
    resize: none;
    min-height: 100px;
}

.lzContact_891_row {
    margin-bottom: 30px;
    display: flex;
    gap: 30px;
}

.lzContact_891_row input:focus,
.lzContact_891_row textarea:focus {
    border-bottom: 1px solid #ffffff;
}

.lzContact_891_check {
    margin-bottom: 30px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lzContact_891_btn {
    background: #9ACD32;
    color: #000;
    padding: 12px 40px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s ease;
}

.lzContact_891_btn:hover {
    background: #7fbf2e;
}


/* INPUT WRAPPER */
.lzContact_891_inputWrap {
    position: relative;
    width: 100%;
}

/* Input Field */
.lzContact_891_inputWrap input,
.lzContact_891_inputWrap textarea {
    width: 100%;
    padding: 16px 0 8px 25px;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    font-size: 15px;
    outline: none;
    transition: 0.4s ease;
}

/* Bent Diagonal Line */
.lzContact_891_inputWrap::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 20px;
    height: 1px;
    background: rgba(255,255,255,0.6);
    transform: rotate(-20deg);
    transform-origin: left center;
}

/* Floating Label */
.lzContact_891_inputWrap label {
    position: absolute;
    left: 25px;
    top: 16px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    transition: 0.3s ease;
    pointer-events: none;
}

/* Focus / Active Animation */
.lzContact_891_inputWrap input:focus,
.lzContact_891_inputWrap textarea:focus {
    border-bottom: 1px solid #fff;
}

.lzContact_891_inputWrap input:focus + label,
.lzContact_891_inputWrap textarea:focus + label,
.lzContact_891_inputWrap input:not(:placeholder-shown) + label,
.lzContact_891_inputWrap textarea:not(:placeholder-shown) + label {
    top: -8px;
    font-size: 12px;
    color: #ffffff;
}

/* Underline animation */
.lzContact_891_inputWrap input:focus,
.lzContact_891_inputWrap textarea:focus {
    box-shadow: 0 1px 0 0 #ffffff;
}


/* RESPONSIVE */

@media (max-width: 900px) {
    .lzContact_891_container {
        flex-direction: column;
    }

    .lzContact_891_row {
        flex-direction: column;
    }
}


/*contact section css end by rishabh*/


.lgZentHero_wrap {
    background: #000;
    color: #fff;
    padding: 120px 0 120px 5px; /* only 5px left */
    position: relative;
    overflow: hidden;
}

.lgZentHero_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lgZentHero_left {
    width: 50%;
}

.lgZentHero_left h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
}

.typeText {
    color: #1da1ff;
}

.lgZentHero_left p {
    margin-top: 20px;
    opacity: 0.8;
}

.lgZentHero_btn {
    margin-top: 30px;
    padding: 14px 30px;
    border-radius: 40px;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.lgZentHero_btn:hover {
    background: #fff;
    color: #000;
}

.lgZentHero_right {
    width: 45%;
    position: relative;
}

#semiCircleCanvas {
    width: 100%;
    height: 500px;
}

/* Cards */

.lgZentHero_cards {
    margin-top: 80px;
    display: flex;
    gap: 30px;
}

.heroCard {
    flex: 1;
    padding: 40px;
    border-radius: 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.4s ease;
}

.heroCard:hover {
    transform: scale(1.07);
    background: rgba(255,255,255,0.08);
}

.lgZentHero_right {
    width: 50%;
    height: 500px;
    position: relative;
    overflow: hidden;
}

#semiCircleCanvas {
    position: absolute;
    top: 0;
    right: -80px; /* push outside */
    width: 110%;
    height: 100%;
    display: block;
}


/*BULB Glow CSS by Rishabh Start*/
.lz-howworks {
    font-family: Inter, sans-serif;
}

.lz-howworks {
    background: #000;
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.lz-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 1200px;   /* slightly tighter */
    margin: 0 auto;
    padding: 0 60px;     /* equal left & right breathing */
    box-sizing: border-box;
}

/* SIDES */
.lz-side {
    width: 40%;
    color: #999;
    transition: 0.4s ease;
}

.lz-left h3 {
    color: #2e84ff;
    font-size: 28px;
}

.lz-right h3 {
    color: #f2b233;
    font-size: 28px;
}

.lz-item {
    margin: 30px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 20px;
}

.lz-item span {
    font-weight: bold;
    margin-right: 10px;
}

.lz-left .lz-item span {
    color: #2e84ff;
}

.lz-right .lz-item span {
    color: #f2b233;
}

/* ================= BULB ================= */

.lz-bulb-wrapper {
    width: 300px;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Bulb Image */
.lz-bulb {
    width: 170px;
    position: relative;
    z-index: 3;
    transition: 0.4s ease;
}

/* Base Glow */
.lz-glow {
    width: 200px;
    height: 200px;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0;
    transition: 0.4s ease;
}

/* ================= BLUE SIDE ================= */

.blue-active .lz-glow {
    opacity: 1;
    background: radial-gradient(
        circle at 35% 50%,
        rgba(0, 120, 255, 0.95) 0%,
        rgba(0, 120, 255, 0.6) 25%,
        rgba(0, 120, 255, 0.3) 45%,
        transparent 70%
    );
}

/* Slight bulb tint */
.blue-active .lz-bulb {
    filter: drop-shadow(0 0 20px rgba(0, 120, 255, 0.8))
            drop-shadow(0 0 40px rgba(0, 120, 255, 0.5));
}



/* ================= YELLOW SIDE ================= */

.yellow-active .lz-glow {
    opacity: 1;
    background: radial-gradient(
        circle at 65% 50%,
        rgba(255, 190, 0, 1) 0%,
        rgba(255, 170, 0, 0.7) 25%,
        rgba(255, 140, 0, 0.4) 45%,
        transparent 70%
    );
}

/* Warm electric glow */
.yellow-active .lz-bulb {
    filter: drop-shadow(0 0 25px rgba(255, 190, 0, 0.9))
            drop-shadow(0 0 60px rgba(255, 140, 0, 0.6));
}



/* ================= SUBTLE BULB BREATHING ================= */

@keyframes bulbPulse {
    0% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.05); }
    100% { transform: translate(-50%, -50%) scale(1); }
}

.blue-active .lz-glow,
.yellow-active .lz-glow {
    animation: bulbPulse 2.5s infinite ease-in-out;
}

/* ================= BACKGROUND SPLIT LIGHT ================= */

.lz-howworks {
    position: relative;
    overflow: hidden;
}

.lz-bg {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    opacity: 0;
    transition: 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

.lz-bg-left {
    left: 0;
    background: radial-gradient(circle at 70% 50%,
        rgba(0,120,255,0.6),
        transparent 60%);
}

.lz-bg-right {
    right: 0;
    background: radial-gradient(circle at 30% 50%,
        rgba(255,190,0,0.6),
        transparent 60%);
}

/* Activate left */
.blue-active .lz-bg-left {
    opacity: 1;
}

.blue-active .lz-right {
    opacity: 0.3;
}

/* Activate right */
.yellow-active .lz-bg-right {
    opacity: 1;
}

.yellow-active .lz-left {
    opacity: 0.3;
}

.lz-bulb-core {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0;
    transition: 0.4s ease;
}

/* BLUE */
.blue-active .lz-bulb-core {
    background: #0078ff;
    opacity: 1;
}

/* YELLOW */
.yellow-active .lz-bulb-core {
    background: #ffb400;
    opacity: 1;
}

@media (max-width: 992px) {
    .lz-wrapper {
        padding: 0 30px;
    }

    .lz-side {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .lz-wrapper {
        flex-direction: column;
        padding: 0 20px;
    }

    .lz-side {
        width: 100%;
        text-align: center;
    }

    .lz-bulb-wrapper {
        margin: 40px 0;
    }
}
/*BULB Glow CSS by Rishabh End*/

/*Beyond Just Development Section CSS by Rishabh Start*/
/* ================= INTELLIGENCE SECTION ================= */

.lz-intelligence {
    background: #000;
    padding: 120px 0;
    font-family: inherit;
}
.lz-intelligence {
    position: relative;
    overflow: hidden;
}
.lz-int-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;   /* 👈 THIS centers vertically */
    gap: 60px;
    position: relative;
    min-height: 600px;     /* 👈 ensures good vertical space */
    z-index: 2;
}

.lz-int-left {
    width: 40%;
}

.lz-int-left h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 25px;
}

.lz-int-left p {
    color: #999;
    line-height: 1.7;
    font-size: 16px;
}

.lz-int-right {
    width: 50%;
    position: relative;
}

.lz-timeline {
    position: relative;
    padding-left: 40px;
}

.lz-timeline::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 0;
    width: 2px;
    height: 100%;
    background: rgba(255,255,255,0.15);
}

.lz-timeline-item {
    position: relative;
    margin-bottom: 60px;
}

.lz-circle {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    position: absolute;
    left: -25px;
    top: 8px;
}

.lz-circle.blue { background: #2e84ff; }
.lz-circle.yellow { background: #f2b233; }
.lz-circle.purple { background: #a259ff; }
.lz-circle.gray { background: #777; }

.lz-timeline-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.lz-timeline-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lz-timeline-item li {
    margin-bottom: 8px;
    color: #aaa;
    font-size: 15px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .lz-int-wrapper {
        flex-direction: column;
        padding: 0 30px;
    }

    .lz-int-left,
    .lz-int-right {
        width: 100%;
    }
}

/* ===== BACKGROUND GLOW EFFECT ===== */

.lz-intelligence::before,
.lz-intelligence::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    z-index: 0;
}

.lz-intelligence::before {
    top: 20%;
    left: -150px;
    background: radial-gradient(circle, rgba(46,132,255,0.7), transparent 60%);
}

.lz-intelligence::after {
    bottom: 20%;
    right: -150px;
    background: radial-gradient(circle, rgba(242,178,51,0.7), transparent 60%);
}

@keyframes floatGlow {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.lz-intelligence::before,
.lz-intelligence::after {
    animation: floatGlow 8s ease-in-out infinite;
}
/*Beyond Just Development Section CSS by Rishabh End*/

/*New Logo Section CSS By Rishabh Start*/
/* HERO */
.tlx-hero-clean{
  background:#0b0e13;
  height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.tlx-wrap-clean{
  width:100%;
  max-width:1400px;
  position:relative;
}

.tlx-logo-area-clean{
  position:relative;
  width:100%;
  height:650px;
}

.tlx-svg-clean{
  width:100%;
  height:100%;
  cursor:pointer;
}

.tlx-content-clean{
  position:absolute;
  top:47%;
  left:50%;
  transform:translate(-50%,-50%);
  text-align:center;
  max-width:900px;
  width:100%;
  pointer-events:none;
}

.tlx-content-clean h1{
  font-family:Inter, sans-serif;
  font-size:42px;
  color:#e6e6e6;
}

.tlx-btn-clean{
  margin-top:20px;
  background:#f1f1f1;
  color:#111;
  padding:10px 26px;
  border-radius:40px;
  border:none;
  font-size:13px;
  cursor:pointer;
  pointer-events:auto;
}


/* OVERLAY */
.form-overlay{
  position:fixed;
  inset:0;
  background:#0b0e13;
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
}

.form-container{
  width:100%;
  max-width:600px;
  position:relative;
  text-align:center;
}

.close-btn{
  position:absolute;
  top:-40px;
  right:0;
  font-size:22px;
  cursor:pointer;
  color:#aaa;
}

.form-bg-logo{
  position:absolute;
  font-size:450px;
  color:#11151e;
  opacity:0.25;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  pointer-events:none;
}

.step{
  display:none;
}

.step.active{
  display:block;
}

.step h2{
  margin-bottom:30px;
  color:#e6e6e6;
}

input, textarea, select{
  width:100%;
  padding:14px;
  border-radius:8px;
  border:1px solid #2a2f3a;
  background:#11151e;
  color:white;
  margin-bottom:20px;
}

textarea{ height:120px; }

.phone-wrapper{
  display:flex;
  gap:10px;
  margin-bottom:20px;
}

.country-select{
  width:45%;
  background:#11151e;
  border:1px solid #2a2f3a;
  color:white;
  border-radius:8px;
  padding:14px;
  font-size:14px;
  outline:none;
}

.phone-wrapper input{
  width:55%;
  background:#11151e;
  border:1px solid #2a2f3a;
  color:white;
  border-radius:8px;
  padding:14px;
  font-size:14px;
  outline:none;
}

.phone-input{
  flex:1;
  display:flex;
  align-items:center;
  background:#11151e;
  border:1px solid #2a2f3a;
  border-radius:8px;
  padding:0 12px;
}

.phone-input span{ margin-right:6px; }

.phone-input input{
  border:none;
  background:transparent;
  padding:14px 0;
}

.budget-options{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:15px 30px;
  text-align:left;
}

.budget-options label{
  cursor:pointer;
}

.button-row{
  display:flex;
  justify-content:center;
  gap:15px;
}

.btn{
  padding:10px 25px;
  border-radius:25px;
  cursor:pointer;
}

.btn.primary{
  background:#f1f1f1;
  color:#111;
  border:none;
}

.btn.back{
  background:transparent;
  border:1px solid #444;
  color:#aaa;
}

.progress-wrap{
  margin-top:10px;
}

.progress-text{
  font-size:13px;
  opacity:0.6;
}

.progress-bar{
  height:6px;
  background:#1c212c;
  border-radius:10px;
  overflow:hidden;
}

.progress-fill{
  height:100%;
  width:0%;
  background:#f1f1f1;
  transition:width 0.3s ease;
}
/*Form section css by Rishabh End*/






/*New Logo Section CSS By Rishabh Start*/
