/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    font-family: 'Poppins', sans-serif;
    background-color: #0d0d0d;
    color: #fff;
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    display: block;
}


/* UTILS */

.container {
    width: 100%;
    overflow-x: hidden;
}

h2 {
    font-size: 2.5rem;
    color: #f1f1f1;
    margin-bottom: 1rem;
}


/* HEADER */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: linear-gradient(to right, #111, #1c1c1c);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #00c3ff;
    letter-spacing: 1px;
}

.menu {
    display: flex;
    gap: 30px;
}

.list {
    list-style: none;
}

.link {
    color: #ccc;
    text-decoration: none;
    font-size: 16px;
    position: relative;
    transition: 0.3s;
}

.link::after {
    content: '';
    width: 0;
    height: 2px;
    background: #00c3ff;
    position: absolute;
    bottom: -5px;
    left: 0;
    transition: 0.3s;
}

.link:hover::after {
    width: 100%;
}

.link:hover {
    color: #00c3ff;
}


/* HERO */

.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 1s ease-in-out;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-text {
    z-index: 2;
    color: #fff;
    max-width: 700px;
    padding: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ddd;
}

.btn {
    background: linear-gradient(to right, #00c3ff, #0066ff);
    color: #fff;
    padding: 12px 28px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 195, 255, 0.3);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 195, 255, 0.5);
}

.btn.small {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 30px;
}


/* PRODUCTS */

.products {
    background: #111;
    padding: 80px 40px;
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 195, 255, 0.2);
}

.product-card img {
    border-radius: 8px;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 1.1rem;
    margin: 10px 0 5px;
}

.product-card p {
    font-weight: 600;
    color: #00c3ff;
    margin-bottom: 10px;
}


/* PROMO */

.promo {
    background: radial-gradient(circle at center, #ff4b2b, #ff416c);
    color: white;
    padding: 80px 30px;
    text-align: center;
}

.promo h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.promo p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}


/* TESTIMONIALS */

.testimonials {
    background: #111;
    padding: 80px 40px;
    text-align: center;
}

.testimonial-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.testimonial {
    background: #1f1f1f;
    padding: 20px;
    width: 280px;
    border-radius: 10px;
    font-style: italic;
    color: #ccc;
    border-left: 4px solid #00c3ff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.testimonial h4 {
    margin-top: 15px;
    font-style: normal;
    color: #00c3ff;
}


/* CONTACT */


/* CONTACT NOW */

.contact {
    background: #0d0d0d;
    padding: 80px 30px;
    text-align: center;
}

.contact p {
    margin-bottom: 20px;
    color: #ccc;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.contact input,
.contact textarea {
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #333;
    background: #1a1a1a;
    color: white;
    font-size: 16px;
    resize: none;
    outline: none;
}

.contact button {
    padding: 12px;
    background: linear-gradient(to right, #00c3ff, #0066ff);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact button:hover {
    background: #008ed6;
}


/* FOOTER */

footer {
    background: #000;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: gray;
}


/* RESPONSIVE */

@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 20px;
    }

    .logo {
        margin-bottom: 10px;
    }

    .menu {
        flex-direction: column;
        width: 100%;
        gap: 15px;
        background: #1a1a1a;
        padding: 10px 0;
        border-radius: 8px;
    }

    .link {
        display: block;
        width: 100%;
        padding: 8px 20px;
        text-align: left;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .contact form {
        flex-direction: column;
        align-items: center;
    }

    .contact input {
        width: 100%;
        max-width: 300px;
    }
}



/* REMOVE UP/DOWN ARROWS FROM NUMBER INPUTS */


/* Chrome, Safari, Edge, Opera */

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


/* Firefox */

input[type=number] {
    -moz-appearance: textfield;
}