/*=====================================================
360Electronix
Main Style Sheet
=====================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;

    background:#050816;

    color:#ffffff;

    overflow-x:hidden;

}

/*====================================
COLORS
====================================*/

:root{

    --primary:#0057FF;

    --secondary:#00D9FF;

    --accent:#FFC107;

    --dark:#050816;

    --surface:#0D1529;

    --card:#111C34;

    --white:#FFFFFF;

    --gray:#B8C0D9;

}

/*====================================
SCROLLBAR
====================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#091221;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

/*====================================
HEADER
====================================*/

header{

    position:fixed;

    width:100%;

    top:0;

    left:0;

    z-index:1000;

    backdrop-filter:blur(20px);

    background:rgba(5,8,22,.75);

    border-bottom:1px solid rgba(255,255,255,.08);

}

.navbar{

    max-width:1400px;

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 40px;

}

.logo img{

    height:60px;

}

.navbar ul{

    display:flex;

    list-style:none;

    gap:35px;

}

.navbar a{

    color:white;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.navbar a:hover{

    color:var(--secondary);

}

.quote-button a{

    padding:12px 28px;

    background:linear-gradient(90deg,var(--primary),var(--secondary));

    border-radius:30px;

    color:white;

    text-decoration:none;

    font-weight:700;

}

/*====================================
HERO
====================================*/

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:130px 8%;

}

.hero-content{

    width:55%;

    position:relative;

    z-index:10;

}

.badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:rgba(0,217,255,.12);

    border:1px solid rgba(0,217,255,.4);

    color:#00D9FF;

    padding:12px 20px;

    border-radius:30px;

    margin-bottom:30px;

}

.hero h1{

    font-size:72px;

    line-height:1.1;

    margin-bottom:25px;

}

.hero h1 span{

    color:var(--secondary);

    text-shadow:0 0 20px rgba(0,217,255,.6);

}

.hero p{

    color:var(--gray);

    font-size:20px;

    line-height:1.8;

    max-width:700px;

}

/*====================================
BUTTONS
====================================*/

.hero-buttons{

    display:flex;

    gap:20px;

    margin-top:45px;

}

.btn-primary{

    padding:16px 34px;

    border-radius:35px;

    text-decoration:none;

    color:white;

    background:linear-gradient(90deg,#0057FF,#00D9FF);

    font-weight:700;

    transition:.3s;

}

.btn-primary:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 40px rgba(0,217,255,.35);

}

.btn-secondary{

    padding:16px 34px;

    border-radius:35px;

    text-decoration:none;

    color:white;

    border:2px solid #00D9FF;

}

.btn-secondary:hover{

    background:#00D9FF;

    color:#000;

}

/*====================================
STATS
====================================*/

.hero-stats{

    display:flex;

    gap:45px;

    margin-top:70px;

}

.stat h2{

    font-size:42px;

    color:#00D9FF;

}

.stat p{

    font-size:15px;

    color:#B8C0D9;

}

/*====================================
LOGO SIDE
====================================*/

.hero-image{

    width:40%;

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

}

.hero-image img{

    width:650px;

    max-width:100%;

    height:auto;

    animation:float 5s ease-in-out infinite;

    filter:drop-shadow(0 0 60px rgba(0,217,255,.5));

}

.circle{

    position:absolute;

    border-radius:50%;

    border:1px solid rgba(0,217,255,.2);

}

.one{

    width:500px;

    height:500px;

}

.two{

    width:400px;

    height:400px;

}

.three{

    width:300px;

    height:300px;

}

/*====================================
BACKGROUND
====================================*/

.hero-background{

    position:absolute;

    inset:0;

    overflow:hidden;

}

.grid{

    position:absolute;

    inset:0;

    background-image:
    linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px);

    background-size:50px 50px;

}

.gradient{

    position:absolute;

    width:700px;

    height:700px;

    background:radial-gradient(#0057FF33,transparent);

    top:-150px;

    right:-100px;

}

/*====================================
SCROLL
====================================*/

.scroll-indicator{

    position:absolute;

    bottom:40px;

    left:50%;

    transform:translateX(-50%);

}

.scroll-indicator span{

    width:26px;

    height:46px;

    border:2px solid white;

    display:block;

    border-radius:30px;

}

/*====================================
ANIMATION
====================================*/

@keyframes float{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-18px);

}

100%{

transform:translateY(0px);

}

}
/*====================================================
ABOUT SECTION
====================================================*/

.about{

    padding:120px 8%;

    background:#08111f;

}

.section-title{

    text-align:center;

    max-width:850px;

    margin:auto;

    margin-bottom:70px;

}

.section-title span{

    color:#00D9FF;

    font-weight:700;

    letter-spacing:3px;

}

.section-title h2{

    font-size:46px;

    margin:20px 0;

}

.section-title p{

    color:#B8C0D9;

    font-size:18px;

}

.about-container{

    display:grid;

    grid-template-columns:1.2fr 1fr;

    gap:60px;

    align-items:center;

}

.about-left h3{

    font-size:34px;

    margin-bottom:20px;

}

.about-left p{

    color:#B8C0D9;

    margin-bottom:20px;

    line-height:1.8;

}

.company-info{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin-top:40px;

}

.company-info div{

    background:#111C34;

    padding:25px;

    border-radius:15px;

    border:1px solid rgba(255,255,255,.08);

}

.company-info h4{

    color:#00D9FF;

    margin-bottom:10px;

}

.about-right{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.glass-card{

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(18px);

    padding:30px;

    border-radius:20px;

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

}

.glass-card:hover{

    transform:translateY(-8px);

    border-color:#00D9FF;

    box-shadow:0 20px 40px rgba(0,217,255,.15);

}

.glass-card i{

    font-size:34px;

    color:#00D9FF;

    margin-bottom:20px;

}

.why-us{

    margin-top:100px;

}

.why-us h2{

    text-align:center;

    font-size:40px;

    margin-bottom:50px;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:25px;

}

.why-card{

    background:#111C34;

    padding:35px;

    border-radius:18px;

    text-align:center;

    transition:.35s;

}

.why-card:hover{

    transform:translateY(-10px);

    border:1px solid #00D9FF;

    box-shadow:0 20px 50px rgba(0,217,255,.18);

}

.why-card i{

    font-size:42px;

    color:#00D9FF;

    margin-bottom:20px;

}

.why-card h3{

    margin-bottom:15px;

}

.why-card p{

    color:#B8C0D9;

}
/*====================================================
PORTFOLIO
====================================================*/

.portfolio{

    padding:120px 8%;

    background:#050816;

}

.portfolio-filter{

    display:flex;

    justify-content:center;

    gap:15px;

    flex-wrap:wrap;

    margin-bottom:50px;

}

.portfolio-filter button{

    padding:12px 25px;

    background:#111C34;

    border:none;

    color:white;

    border-radius:30px;

    cursor:pointer;

    transition:.3s;

}

.portfolio-filter button:hover,

.portfolio-filter .active{

    background:#00D9FF;

    color:#000;

}

.portfolio-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(330px,1fr));

    gap:30px;

}

.project-card{

    background:#111C34;

    border-radius:20px;

    overflow:hidden;

    transition:.35s;

    border:1px solid rgba(255,255,255,.08);

}

.project-card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 45px rgba(0,217,255,.2);

}

.project-card img{

    width:100%;

    height:250px;

    object-fit:cover;

    transition:.5s;

}

.project-card:hover img{

    transform:scale(1.05);

}

.project-info{

    padding:25px;

}

.project-info h3{

    margin-bottom:15px;

    font-size:24px;

}

.project-info p{

    color:#B8C0D9;

    margin-bottom:20px;

    line-height:1.7;

}

.tech-tags{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

}

.tech-tags span{

    background:#0057FF;

    padding:8px 15px;

    border-radius:20px;

    font-size:13px;

}
/*====================================================
TECHNOLOGY SECTION
====================================================*/

.technology{

    padding:120px 8%;

    background:#08111f;

}

.tech-container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

}

.tech-card{

    background:#111C34;

    padding:35px;

    border-radius:20px;

    transition:.35s;

    border:1px solid rgba(255,255,255,.08);

    position:relative;

    overflow:hidden;

}

.tech-card:hover{

    transform:translateY(-12px);

    border-color:#00D9FF;

    box-shadow:0 20px 50px rgba(0,217,255,.20);

}

.tech-card::before{

    content:"";

    position:absolute;

    left:-100%;

    top:0;

    width:100%;

    height:100%;

    background:linear-gradient(90deg,
    transparent,
    rgba(0,217,255,.10),
    transparent);

    transition:.8s;

}

.tech-card:hover::before{

    left:100%;

}

.tech-icon{

    width:75px;

    height:75px;

    background:linear-gradient(135deg,#0057FF,#00D9FF);

    border-radius:20px;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:25px;

}

.tech-icon i{

    font-size:34px;

    color:white;

}

.tech-card h3{

    font-size:26px;

    margin-bottom:20px;

}

.tech-card ul{

    list-style:none;

}

.tech-card li{

    color:#B8C0D9;

    padding:8px 0;

    border-bottom:1px solid rgba(255,255,255,.05);

}

.tech-card li:last-child{

    border-bottom:none;

}

.tech-card li::before{

    content:"✓";

    color:#00D9FF;

    margin-right:10px;

    font-weight:bold;

}
/*====================================================
SERVICES SECTION
====================================================*/

.services{

    padding:120px 8%;

    background:#050816;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

}

.service-card{

    background:#111C34;

    border-radius:20px;

    padding:35px;

    text-align:left;

    transition:.35s;

    border:1px solid rgba(255,255,255,.08);

    position:relative;

    overflow:hidden;

}

.service-card:hover{

    transform:translateY(-12px);

    border-color:#00D9FF;

    box-shadow:0 20px 50px rgba(0,217,255,.18);

}

.service-card::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:100%;

    height:4px;

    background:linear-gradient(90deg,#0057FF,#00D9FF);

    transform:scaleX(0);

    transition:.35s;

}

.service-card:hover::after{

    transform:scaleX(1);

}

.service-card i{

    font-size:42px;

    color:#00D9FF;

    margin-bottom:20px;

}

.service-card h3{

    font-size:24px;

    margin-bottom:15px;

}

.service-card p{

    color:#B8C0D9;

    line-height:1.7;

}
/*====================================================
PROCESS
====================================================*/

.process{

    padding:120px 8%;

    background:#08111f;

}

.timeline{

    position:relative;

    max-width:1100px;

    margin:auto;

}

.timeline::before{

    content:"";

    position:absolute;

    left:40px;

    top:0;

    width:4px;

    height:100%;

    background:linear-gradient(#0057FF,#00D9FF);

}

.timeline-item{

    display:flex;

    gap:30px;

    margin-bottom:50px;

    position:relative;

}

.timeline-icon{

    width:80px;

    height:80px;

    min-width:80px;

    background:linear-gradient(135deg,#0057FF,#00D9FF);

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    font-size:30px;

    z-index:2;

}

.timeline-content{

    flex:1;

    background:#111C34;

    padding:30px;

    border-radius:18px;

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

}

.timeline-content:hover{

    transform:translateX(8px);

    border-color:#00D9FF;

    box-shadow:0 20px 50px rgba(0,217,255,.20);

}

.timeline-content h3{

    margin-bottom:15px;

    font-size:24px;

}

.timeline-content p{

    color:#B8C0D9;

    line-height:1.8;

}
/*====================================================
CONTACT
====================================================*/

.contact{

    padding:120px 8%;

    background:#050816;

}

.contact-wrapper{

    display:grid;

    grid-template-columns:420px 1fr;

    gap:50px;

    margin-top:60px;

}

.contact-info{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.contact-card{

    background:#111C34;

    padding:25px;

    border-radius:18px;

    transition:.35s;

    border:1px solid rgba(255,255,255,.08);

}

.contact-card:hover{

    border-color:#00D9FF;

    transform:translateY(-5px);

}

.contact-card i{

    font-size:30px;

    color:#00D9FF;

    margin-bottom:15px;

}

.contact-card a{

    color:#00D9FF;

    text-decoration:none;

}

.contact-form{

    background:#111C34;

    padding:40px;

    border-radius:20px;

}

.contact-form input,

.contact-form textarea{

    width:100%;

    padding:16px;

    margin-bottom:20px;

    background:#08111f;

    border:1px solid rgba(255,255,255,.08);

    color:white;

    border-radius:10px;

    font-size:16px;

}

.contact-form input:focus,

.contact-form textarea:focus{

    outline:none;

    border-color:#00D9FF;

}

.contact-form button{

    width:100%;

    padding:18px;

    border:none;

    background:linear-gradient(90deg,#0057FF,#00D9FF);

    color:white;

    font-size:18px;

    border-radius:10px;

    cursor:pointer;

    transition:.35s;

}

.contact-form button:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 40px rgba(0,217,255,.25);

}

.map-container{

    margin-top:60px;

    border-radius:20px;

    overflow:hidden;

}

.map-container iframe{

    width:100%;

    height:450px;

    border:0;

}
/*=========================================
LOADER
=========================================*/

#loader{

position:fixed;

inset:0;

background:#050816;

display:flex;

justify-content:center;

align-items:center;

z-index:99999;

transition:.7s;

}

#loader h1{

font-size:48px;

color:#00D9FF;

letter-spacing:3px;

}

/* Sticky */

.sticky{

background:#061225 !important;

box-shadow:0 8px 30px rgba(0,0,0,.45);

}

/* Back To Top */

#top{

position:fixed;

right:30px;

bottom:30px;

width:55px;

height:55px;

display:none;

justify-content:center;

align-items:center;

background:#00D9FF;

border-radius:50%;

cursor:pointer;

color:#000;

z-index:999;

}

/* Active Menu */

.navbar a.active{

color:#00D9FF;

}

/* Scroll Animation */

.service-card,
.project-card,
.tech-card,
.timeline-item,
.glass-card,
.contact-card{
    opacity: 0;
    transform: translateY(60px);
    transition: .7s;
}

.show{
    opacity: 1;
    transform: translateY(0);
}

.show{

opacity:1;

transform:translateY(0);

}
/*=========================================
CURSOR GLOW
=========================================*/

#cursor-glow{

position:fixed;

width:250px;

height:250px;

border-radius:50%;

pointer-events:none;

background:radial-gradient(circle,
rgba(0,217,255,.18),
transparent 70%);

transform:translate(-50%,-50%);

z-index:0;

transition:transform .08s linear;

}

/*=========================================
PCB TRACE ANIMATION
=========================================*/

.pcb-lines{

position:absolute;

inset:0;

background-image:

linear-gradient(90deg,
transparent 96%,
rgba(0,217,255,.12) 97%),

linear-gradient(
transparent 96%,
rgba(0,217,255,.12) 97%);

background-size:120px 120px;

animation:pcbMove 18s linear infinite;

opacity:.35;

}

@keyframes pcbMove{

0%{

background-position:0 0;

}

100%{

background-position:120px 120px;

}

}

/*=========================================
NEON GLOW
=========================================*/

.hero h1{

text-shadow:

0 0 20px rgba(0,217,255,.4),

0 0 40px rgba(0,217,255,.2);

}

/*=========================================
FLOATING NODES
=========================================*/

.circuit-node{

position:absolute;

width:12px;

height:12px;

border-radius:50%;

background:#00D9FF;

box-shadow:0 0 18px #00D9FF;

animation:pulse 2.5s infinite;

}

.node1{top:20%;left:18%;}
.node2{top:35%;right:22%;}
.node3{bottom:30%;left:30%;}
.node4{bottom:18%;right:18%;}
.node5{top:55%;left:60%;}

@keyframes pulse{

0%,100%{

transform:scale(1);

}

50%{

transform:scale(1.8);

}

}

/*=========================================
MOBILE MENU
=========================================*/

.menu-toggle{

display:none;

font-size:30px;

cursor:pointer;

color:white;

}
/*=========================================
LIGHTBOX
=========================================*/

#lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.9);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:99999;
}

#lightbox.active{
    display:flex;
}

#lightbox img{
    max-width:90%;
    max-height:90%;
    border-radius:12px;
}

#close-lightbox{
    position:absolute;
    top:20px;
    right:35px;
    font-size:45px;
    color:#fff;
    cursor:pointer;
}
/*=================================
FOOTER QUICK LINKS
=================================*/

.footer-links{

    list-style:none;

    padding:0;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:14px 30px;

}

.footer-links li{

    margin:0;

}

.footer-links a{

    display:flex;

    align-items:center;

    gap:10px;

    color:#cfcfcf;

    text-decoration:none;

    transition:.35s;

    font-size:15px;

}

.footer-links a i{

    color:#00d9ff;

    width:18px;

    text-align:center;

}

.footer-links a:hover{

    color:#00d9ff;

    transform:translateX(8px);

}
/* Footer spacing */

.footer-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 40px;
}

.footer-container h3{
    margin-bottom:20px;
}

.footer-container p{
    margin-bottom:15px;
    line-height:1.8;
}