/* =============================
   GLOBAL PAGE STYLES
============================= */

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: #0a0a0a;
    color: white;
    overflow-x: hidden;
}


/* =============================
   NAVBAR
============================= */

.navbar {
    width: 100%;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    position: sticky;
    top: 0;
    z-index: 999;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #00eaff;
    text-shadow: 0 0 12px #00eaff;
}

.nav-links a {
    margin-left: 25px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #00eaff;
    text-shadow: 0 0 8px #00eaff;
}


/* =============================
   CONTACT FORM CONTAINER
============================= */

.contact-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.contact-form {
    width: 450px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-form label {
    font-size: 15px;
    font-weight: 600;
    margin-top: 10px;
    display: block;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-top: 6px;
    padding: 12px;
    border-radius: 10px;
    border: none;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    color: white;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    box-shadow: 0 0 12px #00eaff;
}


/* =============================
   BUTTON STYLE
============================= */

.btn {
    width: 100%;
    margin-top: 18px;
    padding: 12px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    background: linear-gradient(90deg, #00eaff, #00ff88);
    box-shadow: 0 0 14px rgba(0, 255, 255, 0.6);
    transition: 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px #00eaff;
    filter: brightness(1.1);
}


/* =============================
   SUCCESS TOAST POPUP
============================= */

.toast {
    position: fixed;
    bottom: 20px;
    right: -300px;
    background: #00ff88;
    color: #000;
    padding: 14px 22px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 0 15px rgba(0, 255, 150, 0.7);
    transition: 0.5s ease;
    z-index: 9999;
}

.toast.show {
    right: 20px;
}


/* =============================
   RESPONSIVE DESIGN
============================= */

@media (max-width: 768px) {
    .navbar {
        padding: 12px 18px;
    }
    .nav-links a {
        margin-left: 15px;
    }
    .contact-form {
        width: 90%;
        padding: 22px;
    }
    h2 {
        margin-top: 20px;
    }
}