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

    /* WRAPPER */
    #wrapper {
        width: 100%;
        height: 100vh;
        overflow: hidden;
        background: #0a0a0a;
        font-family: 'Segoe UI', sans-serif;
    }
    #togglePassword {
        cursor: pointer;
    }

    /* SLIDER */
    .slider {
        width: 100%;
        height: 100vh;
        position: relative;
    }
    .slides {
    display: flex;           /* horizontal layout */
    width: 100vw;            /* full viewport width */
    height: 100%;            /* full height of slider */
    overflow: hidden;        /* hide offscreen slides */
}

/* EACH SLIDE FIX */
.slide {
    flex: 0 0 100vw;         /* each slide takes full viewport width */
    height: 100%;            /* full height of slider */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    text-shadow: 0 0 10px #00ffff80;
}

.about-title {
    width: 100%;
    height: 40%;
    display: block;
}
.about-title h3 {
    width: 100%;
    height: 60%;
    display: flex;
    justify-content: flex-start;
    align-items: last baseline;
    font-size: 3.0rem;
    font-weight: 100;
}
.about-title p {
    text-align: justify;
}
.about-content {
    width: 100%;
    height: 60%;
    display: block;
}
.about-content h3 {
    
}
.about-content p {
   text-align: justify;
}
/* Section */
.contact-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px 20px;
}

/* Container */
.contact-container {
    max-width: 1100px;
    width: 100%;
    margin: auto;
    height: 100%;
    overflow-y: auto;
}

/* Header */
.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-header p {
    color: #475569;
    font-size: 1rem;
}

/* Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
}

/* Form Card */
.contact-form {
    background: #ffffff;
    padding: 36px;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Inputs */
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    font-size: 0.95rem;
    background: #ffffff;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* Button */
.contact-form button {
    margin-top: 10px;
    padding: 14px;
    border-radius: 999px;
    border: none;
    background: #2563eb;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.contact-form button:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

/* Info Card */
.contact-info {
    background: #ffffff;
    padding: 36px;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.06);
}

.contact-info h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.contact-info p {
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: #334155;
}

.response-time {
    display: inline-block;
    margin-top: 20px;
    font-size: 0.85rem;
    color: #16a34a;
}



    /* NAVIGATION */
    .navigation {
        height: 180px;
        width: 100%;
        position: absolute;
        z-index: 10;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: rgba(20,20,20,0.5);
        backdrop-filter: blur(10px);
    }

  
    .left {
        width: 50%;
        height: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        background-color: transparent;
        padding-left: 20px;
    }
    .left span {
        width: 80px;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .left span img {
        width: 70px;
        height: auto;
    }

    .right i {
        margin-right: 20px;
        padding: 12px;
        border-radius: 8px;
        background: rgba(255,255,255,0.9);
        cursor: pointer;
    }

    /* MENU BAR */
    .menu_bar {
        display: none;
        position: absolute;
        top: 65px;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.75);
        backdrop-filter: blur(12px);
        justify-content: flex-end;
        z-index: 9;
        transition: all 0.3s ease;
    }

    .menu_bar.open {
        display: flex;
    }

    .menu {
        width: 80%;
        margin: 20px;
        padding: 15px;
        border-radius: 25px;
        background: rgba(255,255,255,0.08);
        backdrop-filter: blur(20px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    }

    .menu ul li {
        padding: 18px;
        font-size: 1.1rem;
        color: #fff;
        border-bottom: 1px solid rgba(255,255,255,0.2);
        cursor: pointer;
        transition: 0.3s;
    }

    .menu ul li:hover {
        background: rgba(255,255,255,0.15);
        color: #00ffff;
    }

    /* HOME SLIDES */
    

    /* PAGE SECTIONS */
    .page-section {
        display: none;
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top,#0f2027,#000);
        z-index: 20;
        animation: slideUp 0.45s ease forwards;
        overflow-y: auto;
    }

    .section-bar {
        height: 65px;
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(255,255,255,0.2);
        color: #fff;
    }

    .close-btn {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        border: none;
        background: rgba(255,255,255,0.15);
        color: #fff;
        font-size: 1.2rem;
        cursor: pointer;
    }

    .section-content {
        padding: 30px 20px;
        color: #fff;
        width: 100%;
        height: 100%;
        display: block;
       
    }
    .slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


    /* ANIMATION */
    @keyframes slideUp {
        from { transform: translateY(100%); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }

    /* RESPONSIVE */
    @media (min-width: 1024px) {
        .menu { width: 25%; }
    }
/* ======================= */
/* FUTURISTIC LOGIN SECTION */
/* ======================= */
.futuristic-login {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 65px); /* full section minus navbar */
    padding: 20px;
    width: 100%;
}

.login-card {
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 40px 30px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 20px 50px rgba(0,255,255,0.3);
    border: 1px solid rgba(0,255,255,0.2);
    text-align: center;
    animation: fadeInCard 0.6s ease forwards;
}

.login-card h2 {
    color: #00ffff;
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-shadow: 0 0 10px #00ffff80;
}

.login-card p {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 30px;
    opacity: 0.8;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border-radius: 15px;
    border: none;
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 1rem;
    outline: none;
    box-shadow: inset 0 0 10px rgba(0,255,255,0.2);
    transition: 0.3s;
}

.input-group input:focus {
    background: rgba(0,255,255,0.1);
    box-shadow: 0 0 15px #00ffff55;
}

.input-group i {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #00ffff;
    font-size: 1.1rem;
    text-shadow: 0 0 8px #00ffff80;
}

.login-card button {
    width: 100%;
    padding: 12px;
    border-radius: 15px;
    border: none;
    background: linear-gradient(135deg, #00ffff, #1d2671);
    color: #000;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(0,255,255,0.3);
    transition: 0.3s;
}

.login-card button:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 25px rgba(0,255,255,0.5);
}

.login-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    font-size: 0.85rem;
    color: #fff;
}

.login-footer a {
    color: #00ffff;
    text-decoration: none;
    transition: 0.3s;
}

.login-footer a:hover {
    text-decoration: underline;
    text-shadow: 0 0 5px #00ffff80;
}

/* Fade-in animation */
@keyframes fadeInCard {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 480px) {
    .login-card {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .input-group input {
        padding-left: 40px;
    }

    .login-card button {
        font-size: 0.9rem;
        padding: 10px;
    }
}
