* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background:
    radial-gradient(circle at top left,#0f172a,#050505 40%),
    radial-gradient(circle at bottom right,#332e00,#050505 50%);

    color:white;
    font-family:'Inter',sans-serif;

    overflow-x:hidden;

    cursor:none;
}

.navbar{

    position:fixed;
    top:20px;
    left:50%;

    transform:translateX(-50%);

    width:90%;
    max-width:1400px;

    height:80px;

    border:1px solid rgba(255,255,255,.08);

    background:rgba(255,255,255,.03);

    backdrop-filter:blur(20px);

    border-radius:20px;

    z-index:999;

    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 40px;
}

.logo {

    font-size: 28px;

    font-weight: bold;

    letter-spacing: 2px;
}

.nav-links {

    display: flex;

    gap: 40px;

    list-style: none;
    z-index:1000;
}

.nav-links li {

    cursor: pointer;

    position: relative;
}

.mega-menu{
    position:absolute;
    top:-30px;
    left:-270px;

    width:400px;
    height:430px;
    padding: 50px 10px 30px 10px ;

    background:rgba(255,255,255,.03);

    backdrop-filter:blur(20px);
    border:1px solid #222;
    border-radius:0px 20px 20px 20px;

    display:flex;

    opacity:0;
    visibility:hidden;
    pointer-events:none;

    overflow:hidden;
    z-index:998;
}

.services-parent span{
    color:white !important;
    display:inline-block;
    position:relative;
    z-index:9999;
}

.left-panel{
    width:100%;
    transition:.5s;
}

.right-panel{
    width:0%;
    overflow:hidden;
    padding:0;
    display:block;
}



.service-item{

    position:relative;
    overflow:hidden;

    padding:20px;
    margin:20px;
    background:#1a1a1a;
    cursor:pointer;
    border-radius:20px;
    font-size: 18px;
        font-weight: 600;
}

.service-item::before{

    content:"";

    position:absolute;

    left:-100%;
    top:0;

    width:100%;
    height:100%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.08),
        transparent
    );

    transition:.6s;
}

.service-item:hover::before{

    left:100%;
}

.sub-item {

    padding: 20px;

    margin-bottom: 10px;

    background: #1a1a1a;

    cursor: pointer;

    border-radius:20px;
}

.sub-item:hover {

    background: #222222;

    transition: .5s ease;
}


.cards-overlay{
    position:fixed;
    inset:0;

    background:rgba(0,0,0,.8);
    backdrop-filter:blur(20px);

    display:flex;
    justify-content:center;
    align-items:center;

    opacity:0;
    visibility:hidden;

    z-index:9999;
}

.cards-container{
    width:80%;
    max-width:1200px;

    display:grid;
    grid-template-columns:repeat(2,1fr);

    gap:20px;
}

.service-card{

    height:180px;

    border-radius:20px;

    background:#141414;

    border:1px solid #2a2a2a;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:24px;
    font-weight:600;

    cursor:pointer;

    
}

.service-card:hover{

    transform:translateY(-10px);

    background:#1f1f1f;

    transition:.4s;
}

.cursor{
    width:40px;
    height:40px;

    border:1px solid rgba(255,255,255,.4);

    border-radius:50%;

    position:fixed;
    top:0;
    left:0;

    pointer-events:none;

    z-index:999999;

    backdrop-filter:blur(5px);

    transform:translate(-50%,-50%);
}

.cursor-dot{
    width:8px;
    height:8px;

    background:white;

    border-radius:50%;

    position:fixed;
    top:0;
    left:0;

    pointer-events:none;

    z-index:999999;

    transform:translate(-50%,-50%);
}




.hero{

    width:100%;
    height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    position:relative;
    z-index:99;
    background:transparent;
}

.hero-content{

    max-width:900px;
}

.hero h1{

    font-size:5rem;
    line-height:1;
}

.hero p{

    margin-top:20px;

    font-size:1.2rem;

    color:#a5a5a5;
}

.hero button{

    margin-top:30px;

    width:180px;
    height:60px;

    border:none;
    border-radius:50px;

    background:white;
    color:black;

    font-weight:700;

    cursor:pointer;
}

.three-canvas{

    position:fixed;
    inset:0;

    z-index:9;

    background:transparent;

}