@font-face {
    font-family: "AspireSC";
    src: url("../fonts/AspireSC-Regular.ttf") format("truetype");
}

-- CSS Document

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


/* Logo */



.logo{
        display:flex;
       justify-content: center; /* Horizontal */
    align-items: center;     /* Vertical */
        gap:10px;
      
}

.logo p{
    font-family: "AspireSC";
    font-size: 25px;
    letter-spacing: 0px;
    font-weight: 10;
    

}

.logo img{
    width:50px;
    height:50px;
}

body{
    font-family:Segoe UI,sans-serif;
    background:#0f1117;
    color:#fff;
    line-height:1.6;
}

a{
    text-decoration:none;
    color:white;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* Navbar */

.navbar{
    position:sticky;
    top:0;
    backdrop-filter:blur(18px);
    background:rgba(15,17,23,.8);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.navbar .container{
    height:80px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

nav{
    display:flex;
    gap:30px;
    align-items:center;
}

.dropdown{
    position:relative;
}

.dropdown-menu{

    position:absolute;
    top:100%;
    left:0;

    min-width:220px;

    background:#181b23;

    border:1px solid rgba(255,255,255,.08);

    border-radius:14px;

    padding:10px 0;

    display:flex;
    flex-direction:column;

    opacity:0;
    visibility:hidden;

    transform:translateY(15px);

    transition:.25s ease;

    box-shadow:0 15px 40px rgba(0,0,0,.35);

}

.dropdown-menu a{

    padding:12px 20px;

    color:white;

}

.dropdown-menu a:hover{

       background:#1f2937;
}

.dropdown:hover .dropdown-menu{

    opacity:1;
    visibility:visible;

    transform:translateY(8px);

}


.btn{
    background:#3b82f6;
    padding:12px 24px;
    border-radius:12px;
}

.btn:hover{
    background:#2563eb;
}

.btn-outline{
    border:1px solid #3b82f6;
    padding:12px 24px;
    border-radius:12px;
}

/* Hero */

.hero{
    padding:120px 0;
    text-align:center;
}

.badge{
    display:inline-block;
    background:#1f2937;
    padding:8px 18px;
    border-radius:999px;
    margin-bottom:20px;
}

.hero h1{
    font-size:64px;
    line-height:1.1;
}

.hero p{
    max-width:700px;
    margin:30px auto;
    color:#b7b7b7;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
}

/* Products */

.products{
    padding:80px 0;
}

.products h2{
    text-align:center;
    margin-bottom:40px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.card{
    background:#181b23;
    border-radius:20px;
    padding:30px;
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
    border:1px solid #3b82f6;
}

footer{
    margin-top:100px;
    padding:40px;
    text-align:center;
    color:#888;
    border-top:1px solid rgba(255,255,255,.08);
}