/*==================================================
 AUCHI POLYTECHNIC
 Graduate Document Services Portal
 Version: 1.0
===================================================*/


/*========================
 GOOGLE FONT
=========================*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@500;600;700&display=swap');


/*========================
 ROOT
=========================*/

:root{

    --primary:#003366;
    --secondary:#C89B3C;

    --white:#ffffff;

    --body:#f5f7fa;

    --border:#dde3ea;

    --text:#4d5965;

    --heading:#132238;

    --shadow:0 10px 30px rgba(0,0,0,.05);

    --transition:.30s;

}


/*========================
 RESET
=========================*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}


html{

    scroll-behavior:smooth;

}


body{

    font-family:'Inter',sans-serif;

    background:var(--body);

    color:var(--text);

    line-height:1.7;

}


img{

    max-width:100%;

}


a{

    text-decoration:none;

}


ul{

    list-style:none;

    margin:0;

    padding:0;

}


section{

    padding:40px 0;

}


/*========================
 MASTHEAD
=========================*/

.masthead{

    background:#fff;

    padding:10px 0 10px;

    border-bottom:1px solid var(--border);

}


.logo{

    width:95px;

    margin-top:20px;

}

.grad{
    width: 150px;
    box-shadow: 2px 2px 2px #fff;
}


.masthead h1{

    font-family:'Poppins',sans-serif;

    color:var(--primary);

    font-size:2.4rem;

    font-weight:700;

    margin-bottom:8px;

    letter-spacing:1px;

}


.masthead h2{

    font-size:1.25rem;

    color:var(--heading);

    font-weight:600;

    margin-bottom:15px;

}


.masthead p{

    max-width:650px;

    margin:auto;

    color:#66727d;

}


/*========================
 NAVIGATION
=========================*/

.portal-nav{

    background:#fff;

    border-bottom:1px solid var(--border);

}


.portal-nav .container{

    padding:5px 0;

}


.portal-nav ul{

    display:flex;

    gap:35px;

}


.portal-nav ul li a{

    color:var(--heading);

    font-weight:600;

    transition:var(--transition);

}


.portal-nav ul li a:hover{

    color:var(--primary);

}


.portal-nav ul li a.active{

    color:var(--primary);

}


.btn-login{

    background:var(--primary);

    color:#fff;

    padding:11px 22px;

    border-radius:8px;

    font-weight:600;

    display:inline-block;

    transition:.30s;

}


.btn-login:hover{

    background:#00254c;

    color:#fff;

}


/* =====================================
 HERO SERVICE GATEWAY
===================================== */


.hero-gateway{

position:relative;
min-height:650px;

display:flex;
align-items:center;

background:

linear-gradient(
90deg,
rgba(0,51,102,.88),
rgba(0,51,102,.55)
),

url("../images/registry-building.jpg");

background-size:cover;
background-position:center;

overflow:hidden;

color:white;

}



.hero-gateway .container{

position:relative;
z-index:2;

}



.hero-badge{

display:inline-flex;

align-items:center;

gap:8px;

background:rgba(255,255,255,.15);

padding:10px 18px;

border-radius:30px;

font-size:14px;

font-weight:600;

letter-spacing:.5px;

margin-bottom:25px;

}



.hero-gateway h1{

font-family:'Poppins',sans-serif;

font-size:45px;

line-height:1.15;

font-weight:700;

}



.hero-gateway h1 span{

color:#ffc107;

}



.hero-gateway p{

font-size:18px;

line-height:1.8;

max-width:650px;

opacity:.9;

margin:25px 0;

}



.hero-buttons{

display:flex;

gap:15px;

flex-wrap:wrap;

}



.hero-buttons .btn{

padding:14px 28px;

border-radius:8px;

font-weight:600;

}



.hero-stats{

display:flex;

gap:40px;

margin-top:50px;

}



.hero-stats div{

display:flex;

flex-direction:column;

}



.hero-stats strong{

font-size:30px;

font-family:'Poppins';

}



.hero-stats span{

font-size:14px;

opacity:.8;

}



/* RIGHT CARD */


.hero-service-card{

display:flex;

justify-content:center;

}



.floating-card{

background:white;

color:#333;

padding:35px;

border-radius:20px;

box-shadow:

0 25px 60px rgba(0,0,0,.25);

max-width:380px;

}



.icon-box{

width:70px;

height:70px;

border-radius:15px;

display:flex;

align-items:center;

justify-content:center;

background:#003366;

color:white;

font-size:32px;

margin-bottom:20px;

}



.floating-card h4{

font-family:'Poppins';

font-weight:700;

}



.service-list{

margin-top:25px;

}



.service-list div{

padding:12px 0;

border-bottom:1px solid #eee;

}



.service-list i{

color:#198754;

margin-right:10px;

}



/* MOBILE */

@media(max-width:992px){


.hero-gateway{

padding:80px 0;

}


.hero-gateway h1{

font-size:38px;

}


.hero-stats{

gap:20px;

}


.floating-card{

margin-top:50px;

}

}

}
/*==================================================
    IMPORTANT NOTICE
==================================================*/

.notice-section{
    padding:30px 0 70px;
}

.notice-card{
    background:#ffffff;
    border:1px solid #ffe08a;
    border-left:6px solid var(--secondary);
    border-radius:14px;
    padding:30px;
    box-shadow:var(--shadow);
}

.notice-title{
    display:flex;
    align-items:center;
    gap:12px;
    font-family:'Poppins',sans-serif;
    color:var(--heading);
    font-size:1.25rem;
    font-weight:600;
    margin-bottom:20px;
}

.notice-title i{
    color:var(--secondary);
    font-size:1.4rem;
}

.notice-card ul{
    margin-left:20px;
    list-style:disc;
}

.notice-card li{
    margin-bottom:12px;
    color:var(--text);
}


/*==================================================
    APPLICATION GUIDE
==================================================*/

.guide-section{
    background:#ffffff;
}

.section-title{
    text-align:center;
    margin-bottom:45px;
}

.section-title h3{
    font-family:'Poppins',sans-serif;
    color:var(--heading);
    font-size:2rem;
    margin-bottom:10px;
}

.section-title p{
    color:var(--text);
}

.guide-box{
    background:#fff;
    border:1px solid var(--border);
    border-radius:14px;
    padding:35px 25px;
    text-align:center;
    transition:var(--transition);
    height:100%;
}

.guide-box:hover{
    border-color:var(--primary);
    box-shadow:var(--shadow);
}

.guide-number{
    width:60px;
    height:60px;
    margin:0 auto 20px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.3rem;
    font-weight:700;
}

.guide-box h5{
    font-family:'Poppins',sans-serif;
    color:var(--heading);
    margin-bottom:12px;
}

.guide-box p{
    margin:0;
}


/*==================================================
    SUPPORT
==================================================*/

.support-section{
    background:#f8fafc;
}

.support-section h3{
    font-family:'Poppins',sans-serif;
    color:var(--heading);
    margin-bottom:20px;
}

.support-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:14px;
    padding:30px;
    box-shadow:var(--shadow);
}

.support-card div{
    display:flex;
    align-items:flex-start;
    gap:15px;
    margin-bottom:20px;
    color:var(--text);
}

.support-card div:last-child{
    margin-bottom:0;
}

.support-card i{
    color:var(--primary);
    font-size:1.2rem;
    margin-top:3px;
}


/*==================================================
    FOOTER
==================================================*/

.portal-footer{
    background:var(--primary);
    color:#d8e3ef;
    padding:70px 0 25px;
}

.portal-footer h5{
    color:#fff;
    font-family:'Poppins',sans-serif;
    margin-bottom:18px;
}

.portal-footer p{
    margin-bottom:10px;
}

.portal-footer ul{
    padding:0;
}

.portal-footer li{
    margin-bottom:10px;
}

.portal-footer a{
    color:#d8e3ef;
    transition:var(--transition);
}

.portal-footer a:hover{
    color:#ffffff;
}

.portal-footer hr{
    border-color:rgba(255,255,255,.15);
    margin:35px 0 20px;
}


/*==================================================
    SCROLL BUTTON
==================================================*/

.scroll-top{
    position:fixed;
    right:25px;
    bottom:25px;
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    cursor:pointer;
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    visibility:hidden;
    transition:var(--transition);
    box-shadow:var(--shadow);
    z-index:999;
}

.scroll-top.show{
    opacity:1;
    visibility:visible;
}

.scroll-top:hover{
    background:#00264d;
}


/*==================================================
    RESPONSIVE
==================================================*/

@media(max-width:991px){

.portal-nav .container{
    text-align:center;
}

.portal-nav ul{
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;
    margin-bottom:20px;
}

.btn-login{
    display:inline-block;
}

.service-panel{
    flex-direction:column;
    text-align:center;
}

.service-icon{
    margin:0 auto;
}

.support-card{
    margin-top:30px;
}

}


@media(max-width:768px){

.masthead{
    padding:40px 0 30px;
}

.logo{
    width:75px;
}

.masthead h1{
    font-size:1.8rem;
}

.masthead h2{
    font-size:1.05rem;
}

.gateway h3{
    font-size:1.7rem;
}

.section-title h3{
    font-size:1.6rem;
}

.service-panel{
    padding:25px;
}

.guide-box{
    padding:25px;
}

.notice-card{
    padding:22px;
}

.portal-footer{
    text-align:center;
}

}


@media(max-width:576px){

.portal-nav ul{
    flex-direction:column;
    gap:12px;
}

.btn-login{
    width:100%;
}

.gateway-label{
    font-size:.75rem;
}

.gateway h3{
    font-size:1.5rem;
}

.service-icon{
    width:65px;
    height:65px;
    font-size:26px;
}

.scroll-top{
    width:45px;
    height:45px;
    right:15px;
    bottom:15px;
}

}


/*==================================================
    PRINT
==================================================*/

@media print{

.portal-nav,
.portal-footer,
.scroll-top,
.btn-login{
    display:none !important;
}

body{
    background:#fff;
}

section{
    padding:20px 0;
}

}


/*==================================================
    END OF FILE
==================================================*/