/* ========================================
   NEXORA - MAIN STYLESHEET
   ======================================== */

/* ---------- BASIC RESET ---------- */
* {
    margin: 0;
    padding: 0; 
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}


body {
    font-family: Arial, sans-serif;
    background: #ff5f7f;
    color: #111827;
}



/* ---------- HEADER ---------- */
  


header {
    height: 75px;
    padding: 0 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;


    background: white;
    border-bottom: 1px solid #e5e7eb;

    position: sticky;
    top: 0;
    z-index: 1000;
}




/* ---------- LOGO ---------- */


header h1{
    font-size: 28px;
    letter-spacing: 2px;
}



/* ---------- NAVIGATION ---------- */



nav  {
    display: flex;
    gap: 30px;
}


nav a  {
    color: #374151;
    text-decoration: none;
    font-weight: 500;

    transition: 0.3s;
}

nav a:hover {
    color: #2563eb;
}


/* ---------- BUTTONS ---------- */


button {
    border :none;
    cursor :pointer;


    padding: 12px 20px;



    border-radius: 8px;
    background: #0d0231;
    color: white;

    font-size: 15px;
    font-weight: 600;



    transition: 0.3s;


}

button:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

/* ---------- HERO SECTION ---------- */


.hero  {
    min-height: 500px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;


    text-align: center;


    padding: 60px 20px;

    background: 
    linear-gradient(
        135deg,
        #111827,
        #1e3a8a
    );

    color: white;
}

.hero h2 {
    font-size: clamp(40px,7vw,72px);
    margin-bottom: 20px;

}


.hero p {
    max-width: 600px;


    font-size: 18px;
    line-height: 1.7;


    color: #dbeafe;


    margin-bottom: 30px;
}


.hero button {
    background: white;
    color: #111827;

}




.hero button:hover {
    background: #e5e7eb;
}


/* ---------- PRODUCTS SECTION ---------- */

.product {
    padding: 80px 6%;
}


.product > h2 {
    text-align: center;

    font-size: 36px;

    margin-bottom: 50px;
}


/* ---------- PRODUCT CONTAINER ---------- */


.product-card {
    background: white;

    padding: 30px;

    border-radius: 16px;

    border: 1px solid #e5e7eb;

    text-align: center;

    transition: 0.3s;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.05);
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.12);
}
.product-card p {
    color: #6b7280;

    line-height: 1.6;
    
    
    margin-bottom: 20px;


}

.product-card strong {
    font-size: 24px;

    color: #111827;

}



/* ---------- FOOTER ---------- */



footer {
    padding: 30px;
    text-align: center;
    background: #111827;
    color: #9ca3af;
}


/* ---------- MOBILE DESIGN ---------- */

@media (max-width: 768px) {

    header {
        padding: 0 20px;
    }

    header h1 {
        font-size: 22px;
    }

    nav {
        display: none;
    }

    .hero {
        min-height: 450px;
    }

    .hero h2 {
        font-size: 42px;
    }

    .hero p {
        font-size: 16px;
    }

    .products {
        padding: 60px 20px;
    }

    .products > h2 {
        font-size: 30px;
    }

    .product-container {
        grid-template-columns: 1fr;
    }

}