/* =========================================
   GOOGLE FONTS
========================================= */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* =========================================
   ROOT VARIABLES
========================================= */
:root{
    --bg-color:#050816;
    --bg-secondary:#0b1023;
    --glass-bg:rgba(255,255,255,0.05);
    --glass-border:rgba(255,255,255,0.12);

    --primary:#00d9ff;
    --secondary:#7b61ff;
    --accent:#00ffb2;

    --text-primary:#ffffff;
    --text-secondary:#9ba4b5;

    --shadow:0 8px 32px rgba(0,0,0,0.35);

    --gradient:
    linear-gradient(
        135deg,
        #00d9ff,
        #7b61ff,
        #00ffb2
    );
}

/* =========================================
   GLOBAL RESET
========================================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    background:var(--bg-color);
    color:var(--text-primary);
    font-family:'Inter',sans-serif;
    overflow-x:hidden;
    position:relative;
}

/* =========================================
   CUSTOM SCROLLBAR
========================================= */
::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#080d1d;
}

::-webkit-scrollbar-thumb{
    background:linear-gradient(
        to bottom,
        var(--primary),
        var(--secondary)
    );
    border-radius:20px;
}

/* =========================================
   PARTICLES BACKGROUND
========================================= */
#particles-js{
    position:fixed;
    width:100%;
    height:100%;
    z-index:-1;
    top:0;
    left:0;
}

/* =========================================
   CUSTOM CURSOR
========================================= */
.cursor{
    width:25px;
    height:25px;
    border:2px solid var(--primary);
    border-radius:50%;
    position:fixed;
    transform:translate(-50%,-50%);
    pointer-events:none;
    z-index:9999;
    transition:
        transform .15s ease,
        width .3s ease,
        height .3s ease;
    box-shadow:0 0 25px var(--primary);
}

/* =========================================
   COMMON SECTION
========================================= */
.section{
    padding:120px 8%;
    position:relative;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    color:var(--primary);
    font-size:14px;
    letter-spacing:3px;
    font-weight:600;
}

.section-title h2{
    font-family:'Space Grotesk',sans-serif;
    font-size:52px;
    margin-top:15px;
    line-height:1.2;
}

/* =========================================
   NAVBAR
========================================= */
.navbar{
    width:100%;
    height:90px;
    padding:0 8%;
    position:fixed;
    top:0;
    left:0;
    z-index:999;

    display:flex;
    align-items:center;
    justify-content:space-between;

    backdrop-filter:blur(18px);
    background:rgba(5,8,22,0.55);
    border-bottom:1px solid rgba(255,255,255,0.05);
}

.logo{
    font-family:'Space Grotesk',sans-serif;
    font-size:28px;
    font-weight:700;
    color:white;
}

.logo span{
    color:var(--primary);
}

.nav-links{
    display:flex;
    gap:40px;
}

.nav-links a{
    color:white;
    text-decoration:none;
    position:relative;
    transition:0.3s;
}

.nav-links a::after{
    content:'';
    width:0%;
    height:2px;
    background:var(--gradient);
    position:absolute;
    left:0;
    bottom:-6px;
    transition:0.4s;
}

.nav-links a:hover::after{
    width:100%;
}

.nav-links a:hover{
    color:var(--primary);
}

.nav-btn a{
    padding:14px 28px;
    background:var(--gradient);
    color:white;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:0.4s;
    box-shadow:0 0 25px rgba(0,217,255,.35);
}

.nav-btn a:hover{
    transform:translateY(-3px);
    box-shadow:0 0 35px rgba(0,217,255,.55);
}

.menu-toggle{
    display:none;
    font-size:30px;
    cursor:pointer;
}

/* =========================================
   MOBILE MENU
========================================= */

.menu-toggle {
    display: none;
    font-size: 32px;
    color: white;
    cursor: pointer;
    z-index: 10001;
}

.mobile-menu {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(5,8,22,.98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    padding: 40px 30px;
    gap: 30px;
    transition: 0.4s ease;
    z-index: 10000;
}

    .mobile-menu.active {
        right: 0;
    }

    .mobile-menu a {
        color: white;
        text-decoration: none;
        font-size: 20px;
        font-weight: 500;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

/* MOBILE NAVBAR */
@media(max-width:992px) {

    .nav-links,
    .nav-btn {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}

/* =========================================
   HERO SECTION
========================================= */
.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:140px 8% 80px;
    gap:80px;
}

.hero-left{
    flex:1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 60px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
    color: #00d9ff;
    margin-bottom: 30px;
    width: auto;
    position: relative;
    z-index: 2;
}

.hero h1{
    font-size:88px;
    line-height:1.05;
    font-family:'Space Grotesk',sans-serif;
    margin-bottom:20px;
}

.hero h1 span{
    background:var(--gradient);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero h3{
    font-size:28px;
    color:var(--primary);
    margin-bottom:20px;
    min-height:40px;
}

.hero p{
    color:var(--text-secondary);
    line-height:1.8;
    font-size:18px;
    max-width:650px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-top:40px;
}

.primary-btn,
.secondary-btn{
    padding:18px 34px;
    border-radius:60px;
    text-decoration:none;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:10px;
    transition:0.4s;
}

.primary-btn{
    background:var(--gradient);
    color:white;
    box-shadow:0 0 25px rgba(0,217,255,.4);
}

.primary-btn:hover{
    transform:translateY(-5px) scale(1.03);
}

.secondary-btn{
    border:1px solid rgba(255,255,255,.15);
    color:white;
    backdrop-filter:blur(10px);
}

.secondary-btn:hover{
    border-color:var(--primary);
    background:rgba(255,255,255,.05);
}

.hero-stats{
    display:flex;
    gap:30px;
    margin-top:60px;
}

.stat-box{
    padding:25px 30px;
    border-radius:20px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
}

.stat-box h2{
    color:var(--primary);
    font-size:32px;
}

.stat-box span{
    color:var(--text-secondary);
}

/* =========================================
   HERO RIGHT
========================================= */
.hero-right{
    flex:1;
    display:flex;
    justify-content:center;
}

.glass-card{
    width:500px;
    height:500px;

    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);

    border-radius:40px;
    backdrop-filter:blur(30px);

    position:relative;
    overflow:hidden;

    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow:var(--shadow);
}

.circle{
    position:absolute;
    border-radius:50%;
    filter:blur(50px);
}

.circle1{
    width:220px;
    height:220px;
    background:var(--primary);
    top:-40px;
    left:-40px;
    opacity:.4;
}

.circle2{
    width:220px;
    height:220px;
    background:var(--secondary);
    bottom:-40px;
    right:-40px;
    opacity:.4;
}

.hero-visual{
    width:240px;
    height:240px;
    border-radius:50%;
    background:var(--gradient);
    animation:float 5s infinite ease-in-out;
    position:relative;
}

.glow{
    position:absolute;
    inset:0;
    border-radius:50%;
    background:inherit;
    filter:blur(70px);
}

.tech-icons{
    position:absolute;
    inset:0;
}

.tech-icons i{
    position:absolute;
    font-size:42px;
    color:white;
    animation:floatIcons 6s infinite ease-in-out;
}

.tech-icons i:nth-child(1){
    top:15%;
    left:20%;
}

.tech-icons i:nth-child(2){
    top:20%;
    right:18%;
}

.tech-icons i:nth-child(3){
    bottom:18%;
    left:22%;
}

.tech-icons i:nth-child(4){
    bottom:18%;
    right:22%;
}

/* =========================================
   ABOUT SECTION
========================================= */
.about-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-card{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    padding:50px;
    border-radius:30px;
    backdrop-filter:blur(20px);
}

.about-card h3{
    font-size:36px;
    margin-bottom:20px;
    font-family:'Space Grotesk',sans-serif;
}

.about-card p{
    color:var(--text-secondary);
    line-height:1.9;
    margin-bottom:20px;
}

.timeline{
    position:relative;
    padding-left:40px;
}

.timeline::before{
    content:'';
    position:absolute;
    left:8px;
    top:0;
    width:2px;
    height:100%;
    background:rgba(255,255,255,.1);
}

.timeline-item{
    display:flex;
    gap:20px;
    margin-bottom:40px;
    position:relative;
}

.dot{
    width:18px;
    height:18px;
    background:var(--primary);
    border-radius:50%;
    position:absolute;
    left:-40px;
    top:6px;
    box-shadow:0 0 20px var(--primary);
}

.timeline-item h4{
    font-size:24px;
    margin-bottom:8px;
}

.timeline-item p{
    color:var(--text-secondary);
}

/* =========================================
   SERVICES
========================================= */
.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    border-radius:30px;
    padding:45px;
    transition:.4s;
    position:relative;
    overflow:hidden;
    backdrop-filter:blur(20px);
}

.service-card::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(0,217,255,.12),
        rgba(123,97,255,.12)
    );
    opacity:0;
    transition:.4s;
}

.service-card:hover::before{
    opacity:1;
}

.service-card:hover{
    transform:translateY(-12px);
    border-color:rgba(0,217,255,.35);
}

.service-card i{
    font-size:54px;
    margin-bottom:25px;
    color:var(--primary);
}

.service-card h3{
    font-size:28px;
    margin-bottom:15px;
}

.service-card p{
    color:var(--text-secondary);
    line-height:1.8;
}

/* =========================================
   PORTFOLIO
========================================= */
.portfolio-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.portfolio-card{
    position:relative;
    overflow:hidden;
    border-radius:30px;
    height:450px;
}

.portfolio-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.portfolio-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(5,8,22,.95),
        rgba(5,8,22,.2)
    );

    display:flex;
    flex-direction:column;
    justify-content:flex-end;

    padding:40px;
}

.portfolio-overlay h3{
    font-size:32px;
    margin-bottom:10px;
}

.portfolio-overlay p{
    color:#d6d6d6;
}

.portfolio-card:hover img{
    transform:scale(1.1);
}

/* =========================================
   CONTACT SECTION
========================================= */
.contact-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
}

.contact-left h3{
    font-size:42px;
    margin-bottom:20px;
    font-family:'Space Grotesk',sans-serif;
}

.contact-left p{
    color:var(--text-secondary);
    line-height:1.9;
    margin-bottom:20px;
}

.contact-info{
    margin-top:40px;
}

.contact-info p{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
    font-size:18px;
}

.contact-info i{
    color:var(--primary);
    font-size:22px;
}

form{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    padding:50px;
    border-radius:30px;
    backdrop-filter:blur(20px);
}

.input-box{
    position:relative;
    margin-bottom:35px;
}

.input-box input,
.input-box textarea{
    width:100%;
    background:transparent;
    border:none;
    border-bottom:1px solid rgba(255,255,255,.15);
    padding:15px 0;
    color:white;
    outline:none;
    font-size:16px;
}

.input-box textarea{
    resize:none;
    height:120px;
}

.input-box label{
    position:absolute;
    left:0;
    top:15px;
    color:var(--text-secondary);
    transition:.3s;
    pointer-events:none;
}

.input-box input:focus ~ label,
.input-box input:valid ~ label,
.input-box textarea:focus ~ label,
.input-box textarea:valid ~ label{
    top:-12px;
    font-size:13px;
    color:var(--primary);
}

form button{
    width:100%;
    padding:18px;
    border:none;
    border-radius:60px;
    background:var(--gradient);
    color:white;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:.4s;
}

form button:hover{
    transform:translateY(-4px);
}

/* =========================================
   FOOTER
========================================= */
.footer{
    padding:60px 8%;
    text-align:center;
    border-top:1px solid rgba(255,255,255,.08);
}

.footer-logo{
    font-size:34px;
    font-family:'Space Grotesk',sans-serif;
    margin-bottom:20px;
}

.footer p{
    color:var(--text-secondary);
    margin-bottom:30px;
}

.social-icons{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-bottom:25px;
}

.social-icons a{
    width:55px;
    height:55px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:white;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    transition:.4s;
}

.social-icons a:hover{
    background:var(--gradient);
    transform:translateY(-5px);
}

.footer span{
    color:#7f8696;
}

/* =========================================
   ANIMATIONS
========================================= */
@keyframes float{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-20px);
    }
    100%{
        transform:translateY(0px);
    }
}

@keyframes floatIcons{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-12px);
    }
    100%{
        transform:translateY(0px);
    }
}

/* =========================================
   RESPONSIVE DESIGN
========================================= */
@media(max-width:1200px){

    .hero{
        flex-direction:column;
        text-align:center;
    }

    .hero p{
        margin:auto;
    }

    .hero-buttons,
    .hero-stats{
        justify-content:center;
    }

    .about-container,
    .contact-container{
        grid-template-columns:1fr;
    }

    .services-grid,
    .portfolio-container{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:992px){

    .nav-links,
    .nav-btn{
        display:none;
    }

    .menu-toggle{
        display:block;
    }

    .hero h1{
        font-size:68px;
    }

    .section-title h2{
        font-size:42px;
    }

    .glass-card{
        width:100%;
        height:420px;
    }

}

@media(max-width:768px){

    .services-grid,
    .portfolio-container{
        grid-template-columns:1fr;
    }

    .hero{
        padding-top:160px;
    }

    .hero h1{
        font-size:52px;
    }

    .hero h3{
        font-size:22px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .hero-stats{
        flex-direction:column;
    }

    .section{
        padding:100px 6%;
    }

    .section-title h2{
        font-size:34px;
    }

    .about-card,
    form{
        padding:35px;
    }

}

@media(max-width:500px){

    .hero h1{
        font-size:42px;
    }

    .glass-card{
        height:320px;
    }

    .hero-visual{
        width:160px;
        height:160px;
    }

    .contact-left h3{
        font-size:34px;
    }

}

/* =========================================
   PAGE HERO
========================================= */
.page-hero {
    min-height: 70vh;
    padding: 180px 8% 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-hero-content {
    max-width: 900px;
    text-align: left;
}

    .page-hero-content h1 {
        font-size: 72px;
        line-height: 1.1;
        font-family: 'Space Grotesk',sans-serif;
        margin-bottom: 25px;
    }

        .page-hero-content h1 span {
            background: linear-gradient( 135deg, #00d9ff, #7b61ff, #00ffb2 );
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

    .page-hero-content p {
        font-size: 20px;
        line-height: 1.8;
        color: #9ba4b5;
        max-width: 850px;
    }

/* =========================================
   ABOUT COMPANY
========================================= */
.about-company-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
}

    .about-image-card img {
        width: 100%;
        display: block;
        border-radius: 30px;
    }

.image-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient( 135deg, rgba(0,217,255,.18), rgba(123,97,255,.18) );
}

.section-mini-title {
    color: #00d9ff;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 600;
}

.about-company-right h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-family: 'Space Grotesk',sans-serif;
}

.about-company-right p {
    color: #9ba4b5;
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-features {
    margin-top: 35px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-box {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    padding: 18px 22px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
}

    .feature-box i {
        color: #00d9ff;
        font-size: 20px;
    }

/* =========================================
   MISSION SECTION
========================================= */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.mission-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    padding: 45px;
    border-radius: 30px;
    text-align: center;
    transition: .4s;
    backdrop-filter: blur(20px);
}

    .mission-card:hover {
        transform: translateY(-10px);
    }

.mission-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    background: linear-gradient( 135deg, #00d9ff, #7b61ff );
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

    .mission-icon i {
        font-size: 38px;
        color: white;
    }

.mission-card h3 {
    font-size: 30px;
    margin-bottom: 15px;
}

.mission-card p {
    color: #9ba4b5;
    line-height: 1.8;
}

/* =========================================
   TECH STACK
========================================= */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.tech-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    transition: .4s;
}

    .tech-card:hover {
        transform: translateY(-8px);
        border-color: #00d9ff;
    }

    .tech-card i {
        font-size: 48px;
        color: #00d9ff;
        margin-bottom: 20px;
    }

    .tech-card h4 {
        font-size: 22px;
    }

/* =========================================
   TIMELINE
========================================= */
.journey-timeline {
    position: relative;
    max-width: 1000px;
    margin: auto;
}

    .journey-timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        width: 2px;
        height: 100%;
        background: rgba(255,255,255,.1);
    }

.journey-item {
    width: 50%;
    padding: 30px;
    position: relative;
}

    .journey-item:nth-child(odd) {
        left: 0;
        text-align: right;
    }

    .journey-item:nth-child(even) {
        left: 50%;
    }

.journey-year {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 40px;
    background: linear-gradient( 135deg, #00d9ff, #7b61ff );
    margin-bottom: 20px;
    font-weight: 600;
}

.journey-content {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    padding: 35px;
    border-radius: 24px;
}

    .journey-content h3 {
        margin-bottom: 15px;
        font-size: 28px;
    }

    .journey-content p {
        color: #9ba4b5;
        line-height: 1.8;
    }

/* =========================================
   COUNTERS
========================================= */
.counter-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.counter-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    padding: 45px;
    border-radius: 24px;
    text-align: center;
}

    .counter-card h2 {
        font-size: 56px;
        color: #00d9ff;
        margin-bottom: 10px;
    }

    .counter-card p {
        color: #9ba4b5;
    }

/* =========================================
   CTA SECTION
========================================= */
.cta-box {
    padding: 80px;
    border-radius: 40px;
    text-align: center;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(20px);
}

    .cta-box h2 {
        font-size: 54px;
        margin-bottom: 20px;
        font-family: 'Space Grotesk',sans-serif;
    }

    .cta-box p {
        color: #9ba4b5;
        max-width: 800px;
        margin: auto;
        line-height: 1.8;
        margin-bottom: 40px;
    }

/* =========================================
   RESPONSIVE
========================================= */
@media(max-width:992px) {

    .about-company-grid,
    .mission-grid,
    .tech-grid,
    .counter-grid {
        grid-template-columns: 1fr;
    }

    .journey-item,
    .journey-item:nth-child(even),
    .journey-item:nth-child(odd) {
        width: 100%;
        left: 0;
        text-align: left;
    }

    .journey-timeline::before {
        left: 20px;
    }

    .page-hero-content h1 {
        font-size: 52px;
    }

    .about-company-right h2,
    .cta-box h2 {
        font-size: 40px;
    }
}

/* FIX PARTICLES BACKGROUND */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -10;
    background: #050816;
}

/* ENSURE BODY IS ABOVE PARTICLES */
body {
    position: relative;
    z-index: 1;
    overflow-x: hidden;
}

/* FIX CURSOR */
.cursor {
    position: fixed;
    width: 25px;
    height: 25px;
    border: 2px solid #00d9ff;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%,-50%);
    z-index: 999999;
    transition: width .2s ease, height .2s ease, border .2s ease, transform .08s ease;
}

/* PAGE HERO FIX */
.page-hero {
    position: relative;
    z-index: 2;
}


/* =========================================
   EXTRA MOBILE RESPONSIVE FIXES
========================================= */

html,
body {
    overflow-x: hidden;
    width: 100%;
}

/* IMAGES */
img {
    max-width: 100%;
    height: auto;
}

/* CONTAINERS */
.container,
.section,
.page-hero {
    width: 100%;
    overflow: hidden;
}

/* MOBILE NAVBAR */
@media(max-width:768px) {

    .navbar {
        padding: 0 5%;
        height: 80px;
    }

    .logo {
        font-size: 22px;
    }

    .mobile-menu {
        width: 100%;
    }
}

/* HERO MOBILE */
@media(max-width:768px) {

    .hero,
    .page-hero {
        padding-top: 140px;
        padding-left: 5%;
        padding-right: 5%;
        text-align: center;
    }

    .hero-left,
    .page-hero-content {
        width: 100%;
    }

        .hero h1,
        .page-hero-content h1 {
            font-size: 42px;
            line-height: 1.2;
        }

        .hero p,
        .page-hero-content p {
            font-size: 16px;
            line-height: 1.8;
        }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
    }
}

/* ABOUT SECTION MOBILE */
@media(max-width:768px) {

    .about-company-grid {
        grid-template-columns: 1fr;
    }

    .about-company-right h2 {
        font-size: 34px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

/* SERVICES MOBILE */
@media(max-width:768px) {

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 35px;
    }
}

/* TECH STACK MOBILE */
@media(max-width:768px) {

    .tech-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .tech-card {
        padding: 30px 20px;
    }
}

/* TIMELINE MOBILE */
@media(max-width:768px) {

    .journey-timeline::before {
        left: 15px;
    }

    .journey-item {
        width: 100%;
        left: 0 !important;
        padding-left: 50px;
        text-align: left !important;
    }

    .journey-content {
        padding: 25px;
    }
}

/* COUNTER MOBILE */
@media(max-width:768px) {

    .counter-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* CONTACT MOBILE */
@media(max-width:768px) {

    .contact-container {
        grid-template-columns: 1fr;
    }

    form {
        padding: 30px;
    }
}

/* SMALL MOBILE DEVICES */
@media(max-width:500px) {

    .hero h1,
    .page-hero-content h1 {
        font-size: 34px;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .counter-grid,
    .tech-grid {
        grid-template-columns: 1fr;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        justify-content: center;
    }

    .glass-card {
        height: 300px;
    }
}

/* =========================================
   REMOVE HORIZONTAL SCROLL
========================================= */

html,
body {
    width: 100%;
    overflow-x: hidden;
    background: #050816;
}

/* FIX PARTICLES CANVAS */
#particles-js {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

/* PREVENT ANY ELEMENT OVERFLOW */
* {
    max-width: 100%;
}

/* REMOVE EXTRA RIGHT SPACE */
body {
    margin: 0;
    padding: 0;
}

/* FIX BLUR OVERFLOW */
.circle,
.glow,
.image-glow {
    overflow: hidden;
}


section {
    position: relative;
    overflow: hidden;
}


/* =========================================
   SERVICES PAGE
========================================= */

.services-hero {
    min-height: 70vh;
}

/* SERVICES GRID */
.services-page-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    margin-top: 70px;
}

/* MODERN SERVICE CARD */
.modern-service-card {
    position: relative;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 30px;
    padding: 40px 35px;
    overflow: hidden;
    transition: .5s ease;
    backdrop-filter: blur(20px);
    z-index: 1;
}

/* GLOW */
.service-bg-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient( 135deg, rgba(0,217,255,.12), rgba(123,97,255,.12) );
    opacity: 0;
    transition: .5s;
    z-index: -1;
}

/* HOVER */
.modern-service-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(0,217,255,.4);
    box-shadow: 0 0 30px rgba(0,217,255,.12);
}

    .modern-service-card:hover .service-bg-glow {
        opacity: 1;
    }

/* ICON */
.service-icon {
    width: 90px;
    height: 90px;
    border-radius: 24px;
    background: linear-gradient( 135deg, #00d9ff, #7b61ff );
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 0 30px rgba(0,217,255,.25);
}

    .service-icon i {
        font-size: 42px;
        color: white;
    }

/* TITLE */
.modern-service-card h3 {
    font-size: 30px;
    margin-bottom: 18px;
    font-family: 'Space Grotesk',sans-serif;
}

/* DESCRIPTION */
.modern-service-card p {
    color: #9ba4b5;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* LIST */
.modern-service-card ul {
    list-style: none;
    padding: 0;
}

    .modern-service-card ul li {
        position: relative;
        padding-left: 28px;
        margin-bottom: 14px;
        color: white;
    }

        /* BULLET */
        .modern-service-card ul li::before {
            content: '';
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #00d9ff;
            position: absolute;
            left: 0;
            top: 8px;
            box-shadow: 0 0 12px #00d9ff;
        }

/* =========================================
   PROCESS SECTION
========================================= */

.process-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    margin-top: 60px;
}

.process-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 28px;
    padding: 40px;
    text-align: center;
    transition: .4s;
}

    .process-card:hover {
        transform: translateY(-10px);
    }

.process-number {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    background: linear-gradient( 135deg, #00d9ff, #7b61ff );
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.process-card h3 {
    font-size: 26px;
    margin-bottom: 18px;
}

.process-card p {
    color: #9ba4b5;
    line-height: 1.8;
}

/* =========================================
   FLOATING TECH
========================================= */

.floating-tech-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    margin-top: 70px;
}

.floating-tech {
    height: 120px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    font-size: 22px;
    font-weight: 600;
    transition: .4s;
    backdrop-filter: blur(15px);
}

    .floating-tech:hover {
        transform: translateY(-10px) scale(1.03);
        border-color: #00d9ff;
    }

    .floating-tech i {
        font-size: 42px;
        color: #00d9ff;
    }

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1400px) {

    .services-page-grid {
        grid-template-columns: repeat(3,1fr);
    }
}

@media(max-width:1100px) {

    .services-page-grid,
    .process-grid,
    .floating-tech-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:768px) {

    .services-page-grid,
    .process-grid,
    .floating-tech-grid {
        grid-template-columns: 1fr;
    }

    .modern-service-card {
        padding: 35px 30px;
    }

        .modern-service-card h3 {
            font-size: 26px;
        }

    .process-card {
        padding: 35px;
    }
}

/* =========================================
   CLEAN MODERN NAVBAR
========================================= */

.navbar {
    width: 100%;
    height: 85px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 7%;
    background: rgba(5,8,22,0.65);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,.05);
}

/* LOGO */
.logo {
    font-size: 26px;
    font-weight: 700;
    font-family: 'Space Grotesk',sans-serif;
    color: white;
    letter-spacing: .5px;
}

    .logo span {
        color: #00d9ff;
    }

/* NAV LINKS */
.nav-links {
    display: flex;
    align-items: center;
    gap: 50px;
}

    .nav-links a {
        color: white;
        text-decoration: none;
        font-size: 18px;
        font-weight: 500;
        transition: .3s ease;
        position: relative;
    }

        /* SIMPLE HOVER */
        .nav-links a:hover {
            color: #00d9ff;
        }

        /* REMOVE OLD LINE EFFECT */
        .nav-links a::after {
            display: none;
        }

/* BUTTON */
.nav-btn a {
    padding: 14px 32px;
    border-radius: 50px;
    background: #00d9ff;
    color: #050816;
    text-decoration: none;
    font-weight: 600;
    transition: .3s ease;
}

    /* BUTTON HOVER */
    .nav-btn a:hover {
        background: white;
        transform: translateY(-2px);
    }

/* MOBILE MENU */
.menu-toggle {
    display: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media(max-width:992px) {

    .nav-links,
    .nav-btn {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}

@media(max-width:768px) {

    .navbar {
        padding: 0 5%;
        height: 80px;
    }

    .logo {
        font-size: 22px;
    }
}

/* =========================================
   RESPONSIVE NAVBAR
========================================= */

@media(max-width:1200px) {

    .navbar {
        padding: 0 5%;
    }

    .nav-links {
        gap: 30px;
    }
}

@media(max-width:992px) {

    .nav-links,
    .nav-btn {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .logo {
        font-size: 24px;
    }
}

@media(max-width:500px) {

    .navbar {
        height: 80px;
        padding: 0 5%;
    }

    .logo {
        font-size: 20px;
    }
}

/* =========================================
   REMOVE TOP GLOW LINE ISSUE
========================================= */

.page-hero,
.hero,
.services-hero {
    overflow: hidden;
    position: relative;
}

/* FIX RANDOM GLOW OVERFLOW */
.hero-badge,
.service-bg-glow,
.glow,
.circle,
.image-glow {
    max-width: 100%;
}

/* REMOVE HORIZONTAL OVERFLOW */
body,
html {
    overflow-x: hidden;
}

/* FIX PARTICLES CANVAS */
canvas {
    max-width: 100%;
}

/* =========================================
   PORTFOLIO HERO
========================================= */

.portfolio-hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 180px 7% 100px;
}

.portfolio-hero-content {
    text-align: center;
    max-width: 900px;
    z-index: 2;
}

    .portfolio-hero-content h1 {
        font-size: 90px;
        line-height: 1.1;
        margin-bottom: 30px;
        font-family: 'Space Grotesk',sans-serif;
    }

        .portfolio-hero-content h1 span {
            background: linear-gradient( 135deg, #00d9ff, #7b61ff, #00ffb2 );
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

    .portfolio-hero-content p {
        font-size: 20px;
        line-height: 1.9;
        color: #9ba4b5;
    }

/* FLOATING SHAPES */

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .18;
}

.shape1 {
    width: 350px;
    height: 350px;
    background: #00d9ff;
    top: -100px;
    left: -100px;
    animation: float1 8s infinite alternate;
}

.shape2 {
    width: 350px;
    height: 350px;
    background: #7b61ff;
    bottom: -100px;
    right: -100px;
    animation: float2 8s infinite alternate;
}

@keyframes float1 {

    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(40px);
    }
}

@keyframes float2 {

    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-40px);
    }
}

/* =========================================
   FEATURED PROJECT
========================================= */

.featured-project-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.featured-tag {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    color: #00d9ff;
    margin-bottom: 30px;
}

.featured-left h2 {
    font-size: 58px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.featured-left p {
    color: #9ba4b5;
    line-height: 1.9;
    margin-bottom: 35px;
}

.featured-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

    .featured-tech span {
        padding: 12px 22px;
        border-radius: 50px;
        background: rgba(255,255,255,.04);
        border: 1px solid rgba(255,255,255,.08);
        color: white;
    }

.featured-image-card {
    position: relative;
    border-radius: 35px;
    overflow: hidden;
    height: 550px;
    border: 1px solid rgba(255,255,255,.08);
}

    .featured-image-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .6s;
    }

    .featured-image-card:hover img {
        transform: scale(1.08);
    }

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(5,8,22,.7), transparent );
}

/* =========================================
   PORTFOLIO GRID
========================================= */

.portfolio-modern-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 70px;
}

.portfolio-modern-card {
    position: relative;
    border-radius: 35px;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
    transition: .5s ease;
}

    .portfolio-modern-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .7s ease;
    }

    .portfolio-modern-card:hover img {
        transform: scale(1.1);
    }

    .portfolio-modern-card:hover {
        transform: translateY(-10px);
    }

.large-card {
    grid-column: span 2;
    height: 500px;
}

.wide-card {
    grid-column: span 2;
}

.portfolio-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    padding: 40px;
    background: linear-gradient( to top, rgba(5,8,22,.9), transparent );
}

.portfolio-category {
    display: inline-block;
    width: max-content;
    padding: 10px 18px;
    border-radius: 40px;
    background: rgba(0,217,255,.15);
    color: #00d9ff;
    margin-bottom: 20px;
    font-size: 14px;
}

.portfolio-card-overlay h3 {
    font-size: 34px;
    margin-bottom: 12px;
}

.portfolio-card-overlay p {
    color: #c7d0dd;
    line-height: 1.8;
}

/* =========================================
   SHOWCASE SECTION
========================================= */

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    margin-top: 70px;
}

.showcase-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    padding: 45px 35px;
    border-radius: 30px;
    text-align: center;
    transition: .4s;
    backdrop-filter: blur(15px);
}

    .showcase-card:hover {
        transform: translateY(-10px) scale(1.02);
        border-color: #00d9ff;
    }

    .showcase-card i {
        font-size: 55px;
        color: #00d9ff;
        margin-bottom: 25px;
    }

    .showcase-card h3 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .showcase-card p {
        color: #9ba4b5;
        line-height: 1.8;
    }

/* =========================================
   PORTFOLIO STATS
========================================= */

.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.stats-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    padding: 50px 35px;
    border-radius: 30px;
    text-align: center;
    transition: .4s;
}

    .stats-card:hover {
        transform: translateY(-8px);
    }

    .stats-card h2 {
        font-size: 60px;
        color: #00d9ff;
        margin-bottom: 10px;
    }

    .stats-card p {
        color: #9ba4b5;
    }

/* =========================================
   CTA
========================================= */

.portfolio-cta-box {
    padding: 90px;
    border-radius: 40px;
    text-align: center;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

    .portfolio-cta-box::before {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        background: #00d9ff;
        border-radius: 50%;
        filter: blur(120px);
        opacity: .12;
        top: -150px;
        right: -100px;
    }

    .portfolio-cta-box h2 {
        font-size: 64px;
        line-height: 1.2;
        margin-bottom: 25px;
        position: relative;
        z-index: 2;
    }

    .portfolio-cta-box p {
        max-width: 800px;
        margin: auto;
        color: #9ba4b5;
        line-height: 1.9;
        margin-bottom: 40px;
        position: relative;
        z-index: 2;
    }

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px) {

    .portfolio-modern-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .showcase-grid,
    .stats-wrapper {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:992px) {

    .featured-project-container {
        grid-template-columns: 1fr;
    }

    .portfolio-hero-content h1 {
        font-size: 70px;
    }
}

@media(max-width:768px) {

    .portfolio-modern-grid,
    .showcase-grid,
    .stats-wrapper {
        grid-template-columns: 1fr;
    }

    .large-card,
    .wide-card {
        grid-column: span 1;
    }

    .portfolio-hero {
        padding: 150px 5% 80px;
    }

    .portfolio-hero-content h1 {
        font-size: 48px;
    }

    .featured-left h2,
    .portfolio-cta-box h2 {
        font-size: 40px;
    }

    .portfolio-card-overlay h3 {
        font-size: 28px;
    }

    .portfolio-cta-box {
        padding: 60px 30px;
    }
}


/* =========================================
   ULTRA PREMIUM PORTFOLIO HERO
========================================= */

.ultra-portfolio-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 180px 7% 120px;
}

.ultra-portfolio-content {
    position: relative;
    z-index: 5;
    max-width: 950px;
    text-align: center;
}

.hero-mini-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 60px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    color: #00d9ff;
    margin-bottom: 35px;
    backdrop-filter: blur(12px);
}

    .hero-mini-badge i {
        font-size: 20px;
    }

.ultra-portfolio-content h1 {
    font-size: 110px;
    line-height: 1.05;
    margin-bottom: 35px;
    font-family: 'Space Grotesk',sans-serif;
    font-weight: 700;
}

    .ultra-portfolio-content h1 span {
        background: linear-gradient( 135deg, #00d9ff, #7b61ff, #00ffb2 );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.ultra-portfolio-content p {
    font-size: 22px;
    line-height: 1.9;
    color: #9ba4b5;
    max-width: 850px;
    margin: auto;
    margin-bottom: 45px;
}

/* HERO BUTTONS */

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.primary-btn,
.secondary-btn {
    padding: 18px 38px;
    border-radius: 60px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: .4s ease;
    font-weight: 600;
}

.primary-btn {
    background: linear-gradient( 135deg, #00d9ff, #7b61ff );
    color: white;
    box-shadow: 0 0 40px rgba(0,217,255,.25);
}

    .primary-btn:hover {
        transform: translateY(-5px) scale(1.03);
    }

.secondary-btn {
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.04);
    color: white;
    backdrop-filter: blur(12px);
}

    .secondary-btn:hover {
        border-color: #00d9ff;
    }

/* =========================================
   HERO ORBS
========================================= */

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .16;
}

.orb1 {
    width: 500px;
    height: 500px;
    background: #00d9ff;
    top: -150px;
    left: -150px;
    animation: orbFloat1 10s infinite alternate;
}

.orb2 {
    width: 500px;
    height: 500px;
    background: #7b61ff;
    bottom: -150px;
    right: -150px;
    animation: orbFloat2 10s infinite alternate;
}

@keyframes orbFloat1 {

    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(60px);
    }
}

@keyframes orbFloat2 {

    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-60px);
    }
}

/* =========================================
   FLOATING UI CARDS
========================================= */

.floating-ui-card {
    position: absolute;
    width: 220px;
    padding: 24px;
    border-radius: 28px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    gap: 18px;
    z-index: 4;
}

    .floating-ui-card i {
        width: 70px;
        height: 70px;
        border-radius: 20px;
        background: linear-gradient( 135deg, #00d9ff, #7b61ff );
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        color: white;
    }

    .floating-ui-card h4 {
        font-size: 32px;
        margin-bottom: 5px;
    }

    .floating-ui-card span {
        color: #9ba4b5;
    }

.card1 {
    left: 7%;
    top: 60%;
    animation: floatCard 5s infinite alternate;
}

.card2 {
    right: 7%;
    top: 30%;
    animation: floatCard 5s infinite alternate;
}

@keyframes floatCard {

    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-20px);
    }
}

/* =========================================
   CINEMATIC PROJECT
========================================= */

.cinematic-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.featured-label {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 40px;
    background: rgba(0,217,255,.12);
    color: #00d9ff;
    margin-bottom: 30px;
}

.cinematic-left h2 {
    font-size: 70px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.cinematic-left p {
    color: #9ba4b5;
    line-height: 1.9;
    margin-bottom: 35px;
}

.project-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

    .project-tech-stack span {
        padding: 12px 22px;
        border-radius: 50px;
        background: rgba(255,255,255,.04);
        border: 1px solid rgba(255,255,255,.08);
    }

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #00d9ff;
    font-weight: 600;
}

.cinematic-image-wrapper {
    position: relative;
    height: 650px;
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
}

    .cinematic-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .7s ease;
    }

    .cinematic-image-wrapper:hover img {
        transform: scale(1.08);
    }

.project-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(5,8,22,.75), transparent );
}

/* =========================================
   IMMERSIVE PROJECT GRID
========================================= */

.immersive-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 80px;
}

.immersive-card {
    position: relative;
    height: 380px;
    overflow: hidden;
    border-radius: 35px;
    cursor: pointer;
    transition: .5s ease;
}

    .immersive-card:hover {
        transform: translateY(-10px) scale(1.02);
    }

    .immersive-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .7s ease;
    }

    .immersive-card:hover img {
        transform: scale(1.1);
    }

.large-card {
    grid-column: span 2;
    height: 520px;
}

.wide-card {
    grid-column: span 2;
}

.immersive-overlay {
    position: absolute;
    inset: 0;
    padding: 40px;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    background: linear-gradient( to top, rgba(5,8,22,.92), transparent );
}

.immersive-category {
    width: max-content;
    padding: 10px 20px;
    border-radius: 40px;
    background: rgba(0,217,255,.15);
    color: #00d9ff;
    margin-bottom: 20px;
    font-size: 14px;
}

.immersive-overlay h3 {
    font-size: 38px;
    margin-bottom: 15px;
}

.immersive-overlay p {
    color: #c7d0dd;
    line-height: 1.8;
}

/* =========================================
   TECH WALL
========================================= */

.tech-pill-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 80px;
}

.tech-pill {
    padding: 18px 34px;
    border-radius: 60px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
    transition: .4s ease;
    cursor: pointer;
}

    .tech-pill:hover {
        transform: translateY(-6px) scale(1.04);
        border-color: #00d9ff;
        color: #00d9ff;
    }

/* =========================================
   INDUSTRY MARQUEE
========================================= */

.industry-marquee {
    overflow: hidden;
    position: relative;
    margin-top: 70px;
}

.marquee-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: marqueeMove 20s linear infinite;
}

    .marquee-track span {
        padding: 18px 34px;
        border-radius: 60px;
        background: rgba(255,255,255,.04);
        border: 1px solid rgba(255,255,255,.08);
        font-size: 20px;
    }

@keyframes marqueeMove {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* =========================================
   ULTRA STATS
========================================= */

.ultra-stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.ultra-stat-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    padding: 55px 35px;
    border-radius: 35px;
    text-align: center;
    transition: .4s ease;
    backdrop-filter: blur(18px);
}

    .ultra-stat-card:hover {
        transform: translateY(-10px);
        border-color: #00d9ff;
    }

    .ultra-stat-card h2 {
        font-size: 70px;
        margin-bottom: 15px;
        color: #00d9ff;
    }

    .ultra-stat-card p {
        color: #9ba4b5;
    }

/* =========================================
   ULTRA CTA
========================================= */

.ultra-cta-box {
    padding: 100px;
    border-radius: 45px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(20px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .ultra-cta-box::before {
        content: '';
        position: absolute;
        width: 450px;
        height: 450px;
        background: #00d9ff;
        border-radius: 50%;
        filter: blur(150px);
        opacity: .12;
        top: -180px;
        right: -120px;
    }

    .ultra-cta-box h2 {
        font-size: 72px;
        line-height: 1.1;
        margin-bottom: 30px;
        position: relative;
        z-index: 2;
    }

    .ultra-cta-box p {
        max-width: 850px;
        margin: auto;
        color: #9ba4b5;
        line-height: 1.9;
        margin-bottom: 45px;
        position: relative;
        z-index: 2;
    }

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1400px) {

    .ultra-portfolio-content h1 {
        font-size: 90px;
    }
}

@media(max-width:1200px) {

    .immersive-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .ultra-stats-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:992px) {

    .cinematic-container {
        grid-template-columns: 1fr;
    }

    .floating-ui-card {
        display: none;
    }

    .ultra-portfolio-content h1 {
        font-size: 70px;
    }
}

@media(max-width:768px) {

    .immersive-grid,
    .ultra-stats-grid {
        grid-template-columns: 1fr;
    }

    .large-card,
    .wide-card {
        grid-column: span 1;
    }

    .ultra-portfolio-hero {
        padding: 160px 5% 100px;
    }

    .ultra-portfolio-content h1 {
        font-size: 52px;
    }

    .ultra-portfolio-content p {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .cinematic-left h2,
    .ultra-cta-box h2 {
        font-size: 42px;
    }

    .ultra-cta-box {
        padding: 70px 30px;
    }

    .immersive-overlay h3 {
        font-size: 28px;
    }

    .cinematic-image-wrapper {
        height: 450px;
    }
}


/* =========================================
   LIVE SHOWCASE
========================================= */

.live-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    margin-top: 70px;
}

.live-showcase-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    padding: 45px 35px;
    border-radius: 30px;
    transition: .4s ease;
    backdrop-filter: blur(18px);
    position: relative;
    overflow: hidden;
}

    .live-showcase-card:hover {
        transform: translateY(-10px) scale(1.02);
        border-color: #00d9ff;
    }

.live-icon {
    width: 85px;
    height: 85px;
    border-radius: 24px;
    background: linear-gradient( 135deg, #00d9ff, #7b61ff );
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

    .live-icon i {
        font-size: 38px;
        color: white;
    }

.live-showcase-card h3 {
    font-size: 30px;
    margin-bottom: 18px;
}

.live-showcase-card p {
    color: #9ba4b5;
    line-height: 1.9;
}

/* MOBILE */

@media(max-width:1100px) {

    .live-showcase-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:768px) {

    .live-showcase-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================
   WEBSITE SCROLL SHOWCASE
========================================= */

.website-scroll-section {
    overflow: hidden;
}

.website-scroll-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.website-scroll-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: websiteScroll 35s linear infinite;
}

/* CARD */

.website-scroll-card {
    position: relative;
    min-width: 420px;
    height: 280px;
    border-radius: 32px;
    overflow: hidden;
    cursor: pointer;
    transition: .5s ease;
    border: 1px solid rgba(255,255,255,.08);
    background: #0b1120;
}

    .website-scroll-card:hover {
        transform: translateY(-10px) scale(1.02);
    }

    .website-scroll-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .7s ease;
    }

    .website-scroll-card:hover img {
        transform: scale(1.08);
    }

/* OVERLAY */

.website-scroll-overlay {
    position: absolute;
    inset: 0;
    padding: 30px;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    background: linear-gradient( to top, rgba(5,8,22,.92), transparent );
}

    .website-scroll-overlay h3 {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .website-scroll-overlay span {
        color: #00d9ff;
    }

/* ANIMATION */

@keyframes websiteScroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* HOVER PAUSE */

.website-scroll-wrapper:hover .website-scroll-track {
    animation-play-state: paused;
}

/* RESPONSIVE */

@media(max-width:768px) {

    .website-scroll-card {
        min-width: 300px;
        height: 220px;
    }

    .website-scroll-overlay h3 {
        font-size: 22px;
    }
}


/* =========================================
   INTERACTIVE SHOWCASE
========================================= */

.showcase-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
    margin-bottom: 70px;
}

/* FILTER BUTTON */

.filter-btn {
    padding: 16px 30px;
    border: none;
    outline: none;
    border-radius: 60px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    color: white;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: .4s ease;
    backdrop-filter: blur(12px);
}

    .filter-btn:hover,
    .filter-btn.active {
        background: linear-gradient( 135deg, #00d9ff, #7b61ff );
        transform: translateY(-4px);
        box-shadow: 0 0 25px rgba(0,217,255,.25);
    }

/* SHOWCASE GRID */

.showcase-grid-premium {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 35px;
}

/* CARD */

.premium-showcase-card {
    position: relative;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 35px;
    padding: 30px;
    overflow: hidden;
    transition: .5s ease;
    backdrop-filter: blur(20px);
}

    .premium-showcase-card:hover {
        transform: translateY(-12px) scale(1.02);
        border-color: #00d9ff;
        box-shadow: 0 0 40px rgba(0,217,255,.15);
    }

/* DEVICE FRAMES */

.device-frame {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    margin-bottom: 30px;
    background: #0b1120;
}

    .device-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: .7s ease;
    }

.premium-showcase-card:hover img {
    transform: scale(1.08);
}

/* MOBILE FRAME */

.mobile-frame {
    height: 520px;
    border: 10px solid #111827;
    border-radius: 40px;
}

/* LAPTOP FRAME */

.laptop-frame {
    height: 280px;
    border: 8px solid #111827;
}

/* CONTENT */

.premium-showcase-content {
    position: relative;
    z-index: 2;
}

.project-type {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 40px;
    background: rgba(0,217,255,.12);
    color: #00d9ff;
    margin-bottom: 20px;
    font-size: 14px;
}

.premium-showcase-content h3 {
    font-size: 34px;
    line-height: 1.3;
    margin-bottom: 18px;
}

.premium-showcase-content p {
    color: #9ba4b5;
    line-height: 1.9;
    margin-bottom: 28px;
}

/* TAGS */

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

    .project-tags span {
        padding: 10px 16px;
        border-radius: 40px;
        background: rgba(255,255,255,.05);
        border: 1px solid rgba(255,255,255,.08);
        font-size: 14px;
    }

/* HOVER GLOW */

.premium-showcase-card::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: #00d9ff;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0;
    transition: .5s ease;
    top: -100px;
    right: -100px;
}

.premium-showcase-card:hover::before {
    opacity: .15;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px) {

    .showcase-grid-premium {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:768px) {

    .showcase-grid-premium {
        grid-template-columns: 1fr;
    }

    .mobile-frame {
        height: 420px;
    }

    .laptop-frame {
        height: 240px;
    }

    .premium-showcase-content h3 {
        font-size: 28px;
    }

    .showcase-filters {
        gap: 12px;
    }

    .filter-btn {
        padding: 14px 24px;
        font-size: 14px;
    }
}


/* =========================================
   CONTACT HERO
========================================= */

.contact-hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 180px 7% 100px;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 950px;
    text-align: center;
}

    .contact-hero-content h1 {
        font-size: 100px;
        line-height: 1.05;
        margin-bottom: 35px;
        font-family: 'Space Grotesk',sans-serif;
    }

        .contact-hero-content h1 span {
            background: linear-gradient( 135deg, #00d9ff, #7b61ff, #00ffb2 );
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

    .contact-hero-content p {
        font-size: 22px;
        line-height: 1.9;
        color: #9ba4b5;
        max-width: 850px;
        margin: auto;
    }

/* =========================================
   CONTACT ORBS
========================================= */

.contact-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .15;
}

.orb-left {
    width: 450px;
    height: 450px;
    background: #00d9ff;
    left: -150px;
    top: -120px;
}

.orb-right {
    width: 450px;
    height: 450px;
    background: #7b61ff;
    right: -150px;
    bottom: -120px;
}

/* =========================================
   CONTACT GRID
========================================= */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: start;
}

/* =========================================
   LEFT PANEL
========================================= */

.contact-info-panel {
    position: relative;
    padding: 60px 50px;
    border-radius: 40px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.contact-card-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: #00d9ff;
    border-radius: 50%;
    filter: blur(140px);
    opacity: .12;
    top: -100px;
    right: -100px;
}

.contact-small-title {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    background: rgba(0,217,255,.12);
    color: #00d9ff;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.contact-info-panel h2 {
    font-size: 62px;
    line-height: 1.1;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.contact-info-panel p {
    color: #9ba4b5;
    line-height: 1.9;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

/* INFO LIST */

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 22px;
}

.contact-icon {
    width: 75px;
    height: 75px;
    min-width: 75px;
    border-radius: 22px;
    background: linear-gradient( 135deg, #00d9ff, #7b61ff );
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(0,217,255,.2);
}

    .contact-icon i {
        font-size: 32px;
        color: white;
    }

.contact-info-item span {
    display: block;
    color: #00d9ff;
    margin-bottom: 10px;
}

.contact-info-item h4 {
    font-size: 20px;
    line-height: 1.7;
    color: white;
    font-weight: 500;
}

/* SOCIALS */

.contact-socials {
    display: flex;
    gap: 18px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

    .contact-socials a {
        width: 60px;
        height: 60px;
        border-radius: 18px;
        background: rgba(255,255,255,.05);
        border: 1px solid rgba(255,255,255,.08);
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: .4s ease;
    }

        .contact-socials a:hover {
            transform: translateY(-6px) scale(1.05);
            border-color: #00d9ff;
        }

        .contact-socials a i {
            font-size: 24px;
            color: white;
        }

/* =========================================
   FORM WRAPPER
========================================= */

.modern-form-wrapper {
    position: relative;
}

.glass-form {
    padding: 60px 50px;
    border-radius: 40px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(20px);
}

/* FORM TOP */

.form-top span {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    background: rgba(123,97,255,.15);
    color: #b89cff;
    margin-bottom: 25px;
}

.form-top h2 {
    font-size: 54px;
    margin-bottom: 45px;
}

/* FORM GRID */

.premium-form-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}

/* FORM GROUP */

.form-group {
    display: flex;
    flex-direction: column;
}

.full-width {
    grid-column: span 2;
}

.form-group label {
    margin-bottom: 14px;
    color: white;
    font-weight: 500;
}

/* INPUTS */

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 22px;
    border: none;
    outline: none;
    border-radius: 18px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    color: white;
    font-size: 16px;
    transition: .4s ease;
}

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: #00d9ff;
        box-shadow: 0 0 25px rgba(0,217,255,.15);
    }

.form-group textarea {
    resize: none;
}

/* PLACEHOLDER */

::placeholder {
    color: #7d8797;
}

/* BUTTON */

.premium-submit-btn {
    margin-top: 40px;
    width: 100%;
    padding: 20px 30px;
    border: none;
    outline: none;
    border-radius: 20px;
    background: linear-gradient( 135deg, #00d9ff, #7b61ff );
    color: white;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: .4s ease;
    box-shadow: 0 0 35px rgba(0,217,255,.2);
}

    .premium-submit-btn:hover {
        transform: translateY(-5px) scale(1.02);
    }

/* =========================================
   MAP SECTION
========================================= */

.modern-map {
    margin-top: 70px;
    border-radius: 35px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
    height: 500px;
}

    .modern-map iframe {
        width: 100%;
        height: 100%;
        border: none;
        filter: grayscale(1) contrast(1.1) brightness(.8);
    }

/* =========================================
   CTA SECTION
========================================= */

.contact-cta-box {
    padding: 90px;
    border-radius: 40px;
    text-align: center;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

    .contact-cta-box::before {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        background: #00d9ff;
        border-radius: 50%;
        filter: blur(150px);
        opacity: .12;
        top: -150px;
        right: -120px;
    }

    .contact-cta-box h2 {
        font-size: 70px;
        line-height: 1.1;
        margin-bottom: 25px;
        position: relative;
        z-index: 2;
    }

    .contact-cta-box p {
        max-width: 850px;
        margin: auto;
        line-height: 1.9;
        color: #9ba4b5;
        margin-bottom: 40px;
        position: relative;
        z-index: 2;
    }

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px) {

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:992px) {

    .contact-hero-content h1 {
        font-size: 70px;
    }
}

@media(max-width:768px) {

    .contact-hero {
        padding: 160px 5% 90px;
    }

    .contact-hero-content h1 {
        font-size: 50px;
    }

    .contact-hero-content p {
        font-size: 18px;
    }

    .premium-form-grid {
        grid-template-columns: 1fr;
    }

    .full-width {
        grid-column: span 1;
    }

    .contact-info-panel,
    .glass-form {
        padding: 40px 28px;
    }

        .contact-info-panel h2,
        .form-top h2,
        .contact-cta-box h2 {
            font-size: 40px;
        }

    .contact-cta-box {
        padding: 70px 30px;
    }

    .modern-map {
        height: 350px;
    }
}

/* =========================================
   CAREER HERO
========================================= */

.career-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 180px 7% 120px;
}

.career-hero-content {
    position: relative;
    z-index: 2;
    max-width: 950px;
    text-align: center;
}

    .career-hero-content h1 {
        font-size: 110px;
        line-height: 1.05;
        margin-bottom: 35px;
        font-family: 'Space Grotesk',sans-serif;
    }

        .career-hero-content h1 span {
            background: linear-gradient( 135deg, #00d9ff, #7b61ff, #00ffb2 );
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

    .career-hero-content p {
        font-size: 22px;
        line-height: 1.9;
        color: #9ba4b5;
        max-width: 850px;
        margin: auto;
        margin-bottom: 45px;
    }

/* =========================================
   HERO ORBS
========================================= */

.career-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: .15;
}

.orb-left {
    width: 450px;
    height: 450px;
    background: #00d9ff;
    left: -150px;
    top: -100px;
}

.orb-right {
    width: 450px;
    height: 450px;
    background: #7b61ff;
    right: -150px;
    bottom: -100px;
}

/* =========================================
   WHY JOIN US
========================================= */

.why-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    margin-top: 70px;
}

.why-card {
    position: relative;
    padding: 45px 35px;
    border-radius: 35px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(20px);
    transition: .5s ease;
    overflow: hidden;
}

    .why-card:hover {
        transform: translateY(-10px) scale(1.02);
        border-color: #00d9ff;
        box-shadow: 0 0 35px rgba(0,217,255,.12);
    }

    .why-card::before {
        content: '';
        position: absolute;
        width: 220px;
        height: 220px;
        background: #00d9ff;
        border-radius: 50%;
        filter: blur(120px);
        opacity: 0;
        transition: .5s ease;
        top: -80px;
        right: -80px;
    }

    .why-card:hover::before {
        opacity: .12;
    }

/* ICON */

.why-icon {
    width: 90px;
    height: 90px;
    border-radius: 28px;
    background: linear-gradient( 135deg, #00d9ff, #7b61ff );
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

    .why-icon i {
        font-size: 42px;
        color: white;
    }

.why-card h3 {
    font-size: 30px;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.why-card p {
    color: #9ba4b5;
    line-height: 1.9;
    position: relative;
    z-index: 2;
}

/* =========================================
   JOB OPENINGS
========================================= */

.job-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 70px;
}

.job-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 40px;
    border-radius: 35px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(20px);
    transition: .4s ease;
}

    .job-card:hover {
        transform: translateY(-8px);
        border-color: #00d9ff;
    }

.job-left {
    flex: 1;
}

.job-badge {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(0,217,255,.12);
    color: #00d9ff;
    margin-bottom: 20px;
    font-size: 14px;
}

.job-left h3 {
    font-size: 34px;
    margin-bottom: 15px;
}

.job-left p {
    color: #9ba4b5;
    line-height: 1.9;
}

.job-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

    .job-right span {
        color: #00d9ff;
        font-size: 18px;
    }

    .job-right a {
        padding: 16px 28px;
        border-radius: 50px;
        background: linear-gradient( 135deg, #00d9ff, #7b61ff );
        color: white;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: .4s ease;
    }

        .job-right a:hover {
            transform: translateY(-4px);
        }

/* =========================================
   CAREER FORM
========================================= */

.career-form-wrapper {
    position: relative;
    padding: 70px 60px;
    border-radius: 40px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.career-form-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    background: #00d9ff;
    border-radius: 50%;
    filter: blur(150px);
    opacity: .12;
    top: -100px;
    right: -100px;
}

.left-align {
    text-align: left;
}

.career-form-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
    margin-top: 50px;
}

/* =========================================
   CTA
========================================= */

.career-cta-box {
    padding: 100px;
    border-radius: 45px;
    text-align: center;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

    .career-cta-box::before {
        content: '';
        position: absolute;
        width: 450px;
        height: 450px;
        background: #7b61ff;
        border-radius: 50%;
        filter: blur(150px);
        opacity: .12;
        top: -150px;
        right: -120px;
    }

    .career-cta-box h2 {
        font-size: 72px;
        line-height: 1.1;
        margin-bottom: 25px;
        position: relative;
        z-index: 2;
    }

    .career-cta-box p {
        max-width: 850px;
        margin: auto;
        color: #9ba4b5;
        line-height: 1.9;
        margin-bottom: 40px;
        position: relative;
        z-index: 2;
    }

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px) {

    .why-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:992px) {

    .career-hero-content h1 {
        font-size: 72px;
    }

    .job-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .job-right {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

@media(max-width:768px) {

    .career-hero {
        padding: 160px 5% 100px;
    }

    .career-hero-content h1 {
        font-size: 52px;
    }

    .career-hero-content p {
        font-size: 18px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .career-form-grid {
        grid-template-columns: 1fr;
    }

    .career-form-wrapper {
        padding: 45px 28px;
    }

    .career-cta-box {
        padding: 70px 30px;
    }

        .career-cta-box h2 {
            font-size: 42px;
        }

    .job-left h3 {
        font-size: 28px;
    }
}

/* =========================================
   NAVBAR Z-INDEX FIX
========================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
}

/* MENU TOGGLE */

.menu-toggle {
    position: relative;
    z-index: 100000;
    pointer-events: auto;
}

/* MOBILE MENU */

.mobile-menu {
    z-index: 99998;
}

/* HERO SECTION */

.hero,
.career-hero,
.contact-hero,
.portfolio-hero,
.services-hero {
    position: relative;
    z-index: 1;
}

    .hero-overlay,
    .hero::before,
    .hero::after {
        pointer-events: none;
    }


.menu-toggle i {
    pointer-events: none;
}


/* =========================================
   FINAL MOBILE MENU FIX
========================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
}

.menu-toggle {
    position: relative;
    z-index: 100000;
    cursor: pointer;
    pointer-events: auto;
}

    .menu-toggle i {
        pointer-events: none;
    }

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 99998;
    transform: translateX(100%);
}

    .mobile-menu.active {
        transform: translateX(0);
    }

/* PARTICLES FIX */

#particles-js {
    pointer-events: none;
}

/* OVERLAY FIX */

.hero::before,
.hero::after,
.hero-overlay {
    pointer-events: none;
}