/* ==========================================
   GOTEKRA GLOBAL STYLES
   Mobile First
========================================== */

/* ---------- RESET ---------- */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:Arial, Helvetica, sans-serif;

    background:#f5f7fb;

    color:#072554;

    line-height:1.5;
}

/* ---------- LINKS ---------- */

a{
    text-decoration:none;
    color:inherit;
}

/* ---------- IMAGES ---------- */

img{
    max-width:100%;
    display:block;
}

/* ---------- BUTTON ---------- */

button{

    border:none;

    cursor:pointer;

    transition:.3s;

    font-family:inherit;
}

/* ---------- INPUTS ---------- */

input,
select,
textarea{

    width:100%;

    padding:14px;

    border:1px solid #dfe5ec;

    border-radius:12px;

    outline:none;

    font-size:15px;

    background:#fff;
}

input:focus,
select:focus,
textarea:focus{

    border-color:#57C11D;
}

/* ---------- PAGE ---------- */

.page{

    max-width:1400px;

    margin:auto;

    padding:16px;
}

/* ---------- SECTION ---------- */

.section{

    margin:24px 0;
}

/* ---------- HEADINGS ---------- */

h1{

    font-size:28px;

    margin-bottom:8px;
}

h2{

    font-size:22px;

    margin-bottom:8px;
}

h3{

    font-size:18px;

    margin-bottom:8px;
}

p{

    color:#666;
}

/* ---------- CARD ---------- */

.card{

    background:#fff;

    border-radius:18px;

    padding:16px;

    box-shadow:0 4px 12px rgba(0,0,0,.06);

    margin-bottom:16px;
}

/* ---------- BUTTONS ---------- */

.btn{

    display:inline-block;

    padding:14px 20px;

    border-radius:12px;

    font-weight:bold;

    text-align:center;
}

.btn-primary{

    background:#57C11D;

    color:white;
}

.btn-primary:hover{

    background:#4eaf1a;
}

.btn-secondary{

    background:#072554;

    color:white;
}

.btn-secondary:hover{

    background:#0d3473;
}

/* ---------- BADGE ---------- */

.badge{

    display:inline-block;

    padding:6px 12px;

    border-radius:50px;

    font-size:12px;

    font-weight:bold;

    background:#e8f8df;

    color:#57C11D;
}

/* ---------- GRID ---------- */

.grid{

    display:grid;

    gap:16px;
}

/* ---------- FLEX ---------- */

.flex{

    display:flex;

    align-items:center;
}

.space-between{

    justify-content:space-between;
}

/* ---------- NAVBAR ---------- */

.navbar{

    background:#072554;

    color:white;

    padding:14px 16px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    position:sticky;

    top:0;

    z-index:100;
}

.navbar img{

    height:42px;
}

/* ---------- BOTTOM NAV ---------- */

.bottom-nav{

    position:fixed;

    left:0;

    right:0;

    bottom:0;

    background:#fff;

    display:flex;

    justify-content:space-around;

    align-items:center;

    padding:10px 0;

    box-shadow:0 -3px 12px rgba(0,0,0,.08);
}

.bottom-nav a{

    font-size:13px;

    color:#072554;

    text-align:center;
}

/* ---------- STATUS ---------- */

.success{

    color:#57C11D;
}

.warning{

    color:#ff9800;
}

.danger{

    color:#f44336;
}

/* ---------- TABLET ---------- */

@media(min-width:768px){

.page{

    padding:24px;
}

.grid{

    grid-template-columns:repeat(2,1fr);
}

}

/* ---------- DESKTOP ---------- */

@media(min-width:1100px){

.grid{

    grid-template-columns:repeat(3,1fr);
}

}