body{
    margin:0;
    font-family:'Segoe UI',sans-serif;
    background:#0b1f3a;
    color:white;
}

/* HEADER */
header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 40px;
    background:#06152c;
    position:sticky;
    top:0;
    z-index:1000;
}

/* LOGO */
.logo-box{
    display:flex;
    align-items:center;
    gap:8px;
}

.logo-img{
    width:45px;
    height:45px;
    object-fit:contain;
}

.logo-text{
    font-size:26px;
    font-weight:700;
    color:#00ffc3;
    text-shadow:0 0 10px #00ffc3;
}

/* NAV */
nav a{
    color:white;
    margin:0 12px;
    text-decoration:none;
    font-size:14px;
    transition:0.3s;
}

nav a:hover{
    color:#00ffc3;
}

/* HERO */
.hero{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:80px 60px;
    background:url('../images/bg.jpg') no-repeat center;
    background-size:cover;
    position:relative;
}

.hero::before{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.65);
    top:0;
    left:0;
}

.hero::after{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:radial-gradient(circle,#00ffc3,transparent);
    top:20%;
    left:10%;
    filter:blur(80px);
}

.hero-text{
    position:relative;
    z-index:1;
}

.hero-text h1{
    font-size:48px;
    color:#00ffc3;
    text-shadow:0 0 15px rgba(0,255,200,0.5);
    animation:slideUp 1s ease;
}

.hero-text p{
    margin-top:10px;
    font-size:16px;
}

/* BUTTON */
.btn{
    padding:12px 25px;
    margin:10px 5px;
    background:linear-gradient(45deg,#00c3ff,#00ffc3);
    border:none;
    border-radius:6px;
    color:white;
    cursor:pointer;
    transition:0.3s;
}

.btn:hover{
    transform:scale(1.1);
    box-shadow:0 0 15px #00ffc3;
}

/* HERO IMAGE */
.hero-img img{
    width:320px;
    animation:float 3s ease-in-out infinite;
}

@keyframes float{
    0%{transform:translateY(0);}
    50%{transform:translateY(-20px);}
    100%{transform:translateY(0);}
}

/* SECTION */
.section{
    padding:60px 20px;
    text-align:center;
}

.section h2{
    font-size:28px;
    letter-spacing:1px;
    margin-bottom:15px;
}

/* CARDS */
.cards{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
}

.card{
    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(10px);
    padding:20px;
    margin:15px;
    border-radius:15px;
    width:260px;
    transition:0.4s;
    box-shadow:0 0 20px rgba(0,0,0,0.3);
}

.card:hover{
    transform:translateY(-10px) scale(1.05);
    box-shadow:0 0 30px rgba(0,255,200,0.6);
}

/* PRODUCT */
.product-img{
    width:180px;
    margin-bottom:10px;
    filter:drop-shadow(0 0 10px rgba(0,255,200,0.3));
}

/* TEXT */
.big-text{
    max-width:800px;
    margin:10px auto;
    line-height:1.8;
    color:#ccc;
    font-size:16px;
}

/* HIGHLIGHT SECTION */
.highlight{
    background:rgba(255,255,255,0.02);
    border-top:1px solid rgba(255,255,255,0.05);
    border-bottom:1px solid rgba(255,255,255,0.05);
}

/* ABOUT */
.about-box h2{
    color:#00ffc3;
}

/* MISSION */
.mission-grid{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:20px;
    flex-wrap:wrap;
}

.mission-card{
    width:300px;
    padding:20px;
    background:rgba(255,255,255,0.05);
    border-radius:15px;
    backdrop-filter:blur(10px);
    box-shadow:0 0 20px rgba(0,0,0,0.3);
    transition:0.3s;
}

.mission-card:hover{
    transform:translateY(-10px);
    box-shadow:0 0 30px rgba(0,255,200,0.4);
}

.mission-card h3{
    color:#00ffc3;
}

.mission-card p{
    color:#ccc;
    font-size:14px;
    line-height:1.6;
}

/* FOOTER */
footer{
    background:#06152c;
    padding:20px;
    text-align:center;
    font-size:14px;
}

/* MOBILE */
@media(max-width:768px){

header{
    flex-direction:column;
}

.hero{
    flex-direction:column;
    text-align:center;
    padding:40px 20px;
}

.hero-img img{
    width:220px;
    margin-top:20px;
}

.hero-text h1{
    font-size:28px;
}

.cards{
    flex-direction:column;
    align-items:center;
}

.card{
    width:90%;
}

}

/* 🔥 FORM DESIGN */
.form-container{
    width:100%;
    max-width:350px;
    margin:80px auto;
    padding:30px;
    background:rgba(255,255,255,0.05);
    border-radius:15px;
    backdrop-filter:blur(10px);
    box-shadow:0 0 20px rgba(0,0,0,0.4);
    text-align:center;
}

/* INPUT */
/* 🔥 FULL SCREEN AUTH PAGE (NEW PRO DESIGN) */

.auth-page{
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background: linear-gradient(135deg,#06152c,#0a2a52);
    padding:20px;
}

/* BOX DESIGN */
.auth-box{
    width:100%;
    max-width:380px;
    background: rgba(255,255,255,0.05);
    padding:30px;
    border-radius:20px;
    backdrop-filter: blur(12px);
    box-shadow:0 0 40px rgba(0,0,0,0.5);
    text-align:center;
    animation:fadeIn 0.6s ease;
}

/* ANIMATION */
@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* TITLE */
.auth-box h2{
    color:#00ffc3;
    margin-bottom:10px;
}

/* INPUT */
/* 🔥 REGISTER FULL DESIGN FIX */

.auth-page{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background: linear-gradient(135deg,#06152c,#0a2a52) !important;
}

.auth-box{
    width:90%;
    max-width:400px;
    background: rgba(255,255,255,0.08);
    padding:30px;
    border-radius:15px;
    backdrop-filter: blur(10px);
    box-shadow:0 0 30px rgba(0,0,0,0.5);
    text-align:center;
}

.auth-box h2{
    color:#00ffc3;
    margin-bottom:10px;
}

.auth-box p{
    color:#ccc;
    font-size:14px;
    margin-bottom:15px;
}

.auth-box form{
    display:flex;
    flex-direction:column;
}

.auth-box input{
    width:100%;
    padding:12px;
    margin:8px 0;
    border:none;
    border-radius:6px;
    outline:none;
}

.auth-box .btn{
    width:100%;
    margin-top:10px;
}

.auth-footer{
    margin-top:15px;
    font-size:14px;
}

.auth-footer a{
    color:#00ffc3;
}

/* MOBILE */
@media(max-width:768px){
    .auth-box{
        width:95%;
        padding:25px;
    }
}