/* ===========================
   RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
    scroll-behavior:smooth;
}

/* ===========================
   BODY
=========================== */

body{
    color:#fff;

    background:linear-gradient(
        135deg,
        #0462a5 0%,
        #0f2027 35%,
        #203a43 70%,
        #84ceee 100%
    );

    min-height:100vh;
    width:100%;
    overflow-x:hidden;
}



/* ===========================
   HEADER
=========================== */

.header{

    position:fixed;
    top:0;
    left:0;

    width:100%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:18px 8%;

    background:rgba(0,0,0,.35);

    backdrop-filter:blur(12px);

    z-index:1000;

}

/* ===========================
   LOGO
=========================== */

.logo{

    font-size:28px;

    font-weight:700;

    color:#fff;

    text-decoration:none;

}

/* ===========================
   NAVBAR
=========================== */

.navbar{

    display:flex;

    align-items:center;

    gap:24px;

    flex-wrap:wrap;

}

.navbar a{

    color:#fff;

    text-decoration:none;

    font-size:18px;

    font-weight:600;

    display:inline-block;

    transition:
        color .3s ease,
        transform .3s ease,
        text-shadow .3s ease;

}

.navbar a:hover{

    color:#00eaff;

    transform:scale(1.15);

    text-shadow:
        0 0 10px #00eaff,
        0 0 20px #00eaff,
        0 0 35px #00eaff;

}

.navbar a.active{

    color:#00eaff;

}

/* ===========================
   HOME
=========================== */

.hero,
.home{

    min-height:100vh;

    display:flex;

    align-items:center;

    padding:120px 8% 60px;

}

.hero-text,
.home-content{

    max-width:650px;

}



/* ===========================
   TEXT
=========================== */

.hero h1,
.home-content h1{

    font-size:50px;

    margin:10px 0;

}

.hero h2,
.home-content h3{

    color:#05f8e4;

    margin-bottom:px;

}

.hero p,
.home-content p{

    line-height:1.8;

    font-size:18px;

}

.glow-title{

    animation: fadeGlow 2.2s infinite;

}

@keyframes fadeGlow{

    0%{
        opacity:1;
        text-shadow:0 0 40px #000000;
    }

    50%{
        opacity: 0.1;;
        text-shadow:none;
    }

    100%{
        opacity:1;
        text-shadow:0 0 90px #f3feff;
    }

}

/* ===========================
   BUTTON
=========================== */

.btn,
.btn-box{

    display:inline-block;

    margin-top:25px;

    padding:13px 30px;

    background:#00eaff;

    color:#081b29;

    text-decoration:none;

    border-radius:40px;

    font-weight:700;

    transition:.3s;

    box-shadow:
        0 0 15px #00eaff,
        0 0 30px #00eaff;

}

.btn:hover,
.btn-box:hover{

    transform:translateY(-3px);

    box-shadow:
        0 0 20px #00eaff,
        0 0 45px #00eaff,
        0 0 70px #00eaff;

}


/* ===========================
   MEMBERS
=========================== */

.members{

    padding:80px 8%;
    align-items: center;

}

.title{

    text-align:left;

    font-size:42px;

    margin-bottom:40px;

    color:#fff;

}

/* ===========================
   CARDS
=========================== */

.cards{

    display:grid;


    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

}

.card{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.15);

    border-radius:20px;

    padding:25px;

    text-align:center;

    transition:.35s ease;

}

.card:hover{

    transform:translateY(-10px);

    box-shadow:
        0 0 20px rgba(0,234,255,.3),
        0 0 40px rgba(0,234,255,.2);

}

/* ===========================
   PROFILE IMAGE
=========================== */

.card img,
.profile-img{

    width:170px;

    height:170px;

    object-fit:cover;

    display:block;

    margin:0 auto 20px;

    border-radius:50%;

    border:4px solid #00eaff;

    box-shadow:
        0 0 20px #00eaff,
        0 0 45px #00eaff;

    transition:.4s ease;

}

.card:hover img,
.profile-img:hover{

    transform:scale(1.08);

    box-shadow:
        0 0 25px #00eaff,
        0 0 60px #00eaff;

}

/* ===========================
   CARD TEXT
=========================== */

.card h2{

    margin-bottom:12px;

    font-size:28px;

}

.card p{

    color:#ddd;

    line-height:1.7;

}

/* ===========================
   CARD BUTTON
=========================== */

.card a{

    display:inline-block;

    margin-top:20px;

    padding:10px 24px;

    background:#00eaff;

    color:#081b29;

    text-decoration:none;

    font-weight:700;

    border-radius:30px;

    transition:.3s;

}

.card a:hover{

    transform:scale(1.08);

    box-shadow:
        0 0 20px #00eaff;

}

/* ===========================
   SOCIAL ICONS
=========================== */

.home-sci{

    display:flex;

    gap:14px;

    margin:30px 0;

}

.home-sci a{

    width:45px;

    height:45px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    border:2px solid #00eaff;

    color:#00eaff;

    text-decoration:none;

    font-size:22px;

    transition:.3s ease;

}

.home-sci a:hover{

    background:#00eaff;

    color:#081b29;

    transform:translateY(-5px);

    box-shadow:
        0 0 20px #00eaff;

}

/* ===========================
   FOOTER
=========================== */

footer{

    text-align:center;

    padding:30px;

    margin-top:60px;

    background:rgba(0,0,0,.35);

    backdrop-filter:blur(8px);

}



/* ===========================
   MOBILE
=========================== */

@media (max-width:768px){

    .header{
        flex-direction:column;
        justify-content:center;
        gap:15px;
        padding:15px 5%;
    }

    .logo{
        font-size:24px;
        text-align:center;
    }

    .navbar{
        justify-content:center;
        gap:15px;
    }

    .navbar a{
        font-size:15px;
    }

    .hero,
    .home{
        min-height:10vh;
        padding:150px 20px 50px;
        justify-content:center;
        text-align:center;
    }

    .hero-text,
    .home-content{
        max-width:100%;
    }

    .hero h1,
    .home-content h1{
        font-size:38px;
    }

    .hero h2,
    .home-content h3{
        font-size:24px;
    }

    .hero p,
    .home-content p{
        font-size:16px;
        line-height:1.8;
    }

    .profile-img,
    .card img{
        width:130px;
        height:130px;
    }

    .home-sci{
        justify-content:center;
        flex-wrap:wrap;
    }

    .members{
        padding:60px 20px;
    }

    .title{
        font-size:32px;
    }

    .cards{
        grid-template-columns:1fr;
    }

    .btn,
    .btn-box{
        width:100%;
        text-align:center;
    }

}

/* ===========================
   SCROLLBAR
=========================== */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#081b29;
}

::-webkit-scrollbar-thumb{
    background:#00eaff;
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:#6ef6ff;
}

/* ===========================
   SELECTION
=========================== */

::selection{
    background:#00eaff;
    color:#081b29;
}

/* ===========================
   ANIMATIONS
=========================== */

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

.home-content,
.hero-text,
.card{

    animation:fadeUp .8s ease;

}

/* ===========================
   HERO LOGO
=========================== */

.hero-logo{

    width:120px;

    height:120px;

    display:block;

    margin:4auto 1px;

    border-radius:90%;

    object-fit:cover;

    border:4px solid #00eaff;

    box-shadow:
        0 0 20px #00eaff,
        0 0 45px #00eaff;

    transition:.4s ease;
    

}

.hero-logo:hover{

    transform:scale(1.08) rotate(5deg);

    box-shadow:
        0 0 30px #00eaff,
        0 0 60px #00eaff;

}

@media (max-width:768px){

  .hero-logo{

    width:90px;

    height:90px;

    display:block;

    margin:0 auto 30px;

    border-radius:50%;

}
@keyframes fadeGlow{

    0%{
        opacity:1;
        text-shadow:0 0 40px #00eaff;
    }

    50%{
        opacity: 0.1;;
        text-shadow:none;
    }

    100%{
        opacity:1;
        text-shadow:0 0 90px #00eaff;
    }

}

}