.kicad-title{
    text-align:center;
    margin-top:200px;
}


.kicad-title h1{
    font-size:80px;
    font-family:'Roboto', sans-serif;
}

.kicad-title p{
    color:#777;
    margin-top:10px;
}


.kicad-container{
    width:85%;
    margin:80px auto;
    display:flex;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;
}


.kicad-card{
    width:250px;
    padding:30px;


    background:#F7F6E4;
    border-radius:12px;
    text-align:center;


    box-shadow:0 15px 40px -20px rgba(0,0,0,0.25);
    transition:0.3s;
}


.kicad-card i{
    font-size:40px;
    color:#f9ad4a;
    margin-bottom:20px;
}


.kicad-card h2{
    margin-bottom:10px;
}


.kicad-card p{
    color:#777;
}


.kicad-card a{
    display:inline-block;
    margin-top:15px;
    padding:10px 20px;
    background:#f9ad4a;
    color:white;
    border-radius:8px;
}

.kicad-card:hover{
    transform:translateY(-10px);
}


.kicad-card1{
    width:250px;
    padding:30px;


    background:#F7F6E4;
    border-radius:12px;
    text-align:center;


    box-shadow:0 15px 40px -20px rgba(0,0,0,0.25);
    transition:0.3s;
}


.kicad-card1 i{
    font-size:40px;
    color:#f9ad4a;
    margin-bottom:20px;
}


.kicad-card1 h2{
    margin-bottom:10px;
    margin-top:15px;
}


.kicad-card1 p{
    color:#777;
    margin-top:25px;
}


.kicad-card1 a{
    display:inline-block;
    margin-top:15px;
    padding:10px 20px;
    background:#f9ad4a;
    color:white;
    border-radius:8px;
}

.kicad-card1:hover{
    transform:translateY(-10px);
}




.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 15%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, #0A1F44, #071530);
    z-index: 1000;
    border-bottom: 2px solid rgba(0,0,0,1);
}


.links{
    display: flex;
}


.links li {
    margin: 20px;
}
.links li a{
    color: white;
    position: relative;
}
.links li a:after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    background-color: #f9ad4a; 
    height: 4px;
    width: 0%;
    border-radius: 4px;
    transition: 0.5s;
}
.links li a:hover:after{
    width: 100%;
}


.menu.scrolled{
    background-color: #000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}


.kicad-viewer{
    width:85%;
    margin:80px auto;
    text-align:center;
    backdrop-filter: blur(10px);
}


.kicad-viewer h2{
    margin-bottom:30px;
    font-size:40px;
}


#viewer{
    height:600px;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 15px 40px -20px rgba(0,0,0,0.4);
}


