/* =========================================
   THE PERSONA MIND
   GLOBAL STYLESHEET
========================================= */





/* =========================================
   GOOGLE FONT
========================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');





/* =========================================
   RESET
========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}





/* =========================================
   ROOT VARIABLES
========================================= */

:root{

    --primary-color:#182848;
    --secondary-color:#4b6cb7;
    --accent-color:#6b8cff;

    --white:#ffffff;
    --black:#111111;

    --text-color:#555555;
    --light-text:#777777;

    --background:#f5f7fb;

    --success:#16a34a;
    --warning:#d97706;
    --danger:#dc2626;

    --border:#e5e7eb;

    --shadow:
    0 5px 20px rgba(0,0,0,0.08);

}





/* =========================================
   BODY
========================================= */

body{
    font-family:'Poppins',sans-serif;
    background:var(--background);
    color:var(--text-color);
    line-height:1.7;
}





/* =========================================
   LINKS
========================================= */

a{
    text-decoration:none;
    transition:0.3s;
}





/* =========================================
   IMAGES
========================================= */

img{
    max-width:100%;
    display:block;
}





/* =========================================
   CONTAINER
========================================= */

.container{
    width:100%;
    max-width:1400px;
    margin:auto;
    padding:0 20px;
}





/* =========================================
   SECTION SPACING
========================================= */

section{
    padding:80px 0;
}





/* =========================================
   BUTTONS
========================================= */

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    border:none;
    cursor:pointer;

    border-radius:12px;

    padding:15px 28px;

    font-size:15px;
    font-weight:600;

    transition:0.3s;
}

.btn:hover{
    transform:translateY(-3px);
}





/* PRIMARY BUTTON */

.btn-primary{
    background:
    linear-gradient(to right,
    var(--secondary-color),
    var(--primary-color));

    color:var(--white);
}





/* SECONDARY BUTTON */

.btn-secondary{
    background:var(--white);
    color:var(--primary-color);

    border:1px solid var(--border);
}





/* SUCCESS BUTTON */

.btn-success{
    background:var(--success);
    color:var(--white);
}





/* DANGER BUTTON */

.btn-danger{
    background:var(--danger);
    color:var(--white);
}





/* WARNING BUTTON */

.btn-warning{
    background:var(--warning);
    color:var(--white);
}





/* =========================================
   HEADINGS
========================================= */

h1,
h2,
h3,
h4,
h5,
h6{
    color:var(--primary-color);
    line-height:1.3;
}





/* =========================================
   SECTION TITLE
========================================= */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    margin-bottom:15px;
}

.section-title p{
    color:var(--light-text);
    max-width:700px;
    margin:auto;
}





/* =========================================
   CARD
========================================= */

.card{
    background:var(--white);
    border-radius:25px;
    box-shadow:var(--shadow);
}





/* =========================================
   FORM ELEMENTS
========================================= */

input,
select,
textarea{
    width:100%;

    border:1px solid var(--border);

    border-radius:12px;

    padding:15px 18px;

    font-size:15px;

    font-family:'Poppins',sans-serif;

    outline:none;

    transition:0.3s;

    background:var(--white);
}

input:focus,
select:focus,
textarea:focus{
    border-color:var(--secondary-color);
}





/* =========================================
   TEXTAREA
========================================= */

textarea{
    min-height:140px;
    resize:vertical;
}





/* =========================================
   FORM GROUP
========================================= */

.form-group{
    margin-bottom:25px;
}

.form-group label{
    display:block;
    margin-bottom:10px;

    font-weight:500;

    color:var(--primary-color);
}





/* =========================================
   ALERTS
========================================= */

.alert{
    padding:18px 20px;
    border-radius:12px;
    margin-bottom:25px;
}

.alert-success{
    background:#dcfce7;
    color:#166534;
}

.alert-danger{
    background:#fee2e2;
    color:#991b1b;
}

.alert-warning{
    background:#fef3c7;
    color:#92400e;
}





/* =========================================
   TAGS
========================================= */

.tags{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.tag{
    background:#edf3ff;
    color:var(--primary-color);

    padding:10px 16px;

    border-radius:50px;

    font-size:14px;
    font-weight:500;
}





/* =========================================
   PROFILE CARDS
========================================= */

.profile-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
}

.profile-card{
    background:var(--white);

    border-radius:25px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:0.3s;
}

.profile-card:hover{
    transform:translateY(-8px);
}





/* =========================================
   PROFILE IMAGE
========================================= */

.profile-image{
    width:100%;
    height:280px;
    overflow:hidden;
}

.profile-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}





/* =========================================
   PROFILE CONTENT
========================================= */

.profile-content{
    padding:25px;
}

.profile-content h3{
    font-size:22px;
    margin-bottom:10px;
}

.profile-content p{
    color:var(--light-text);
    margin-bottom:12px;
}





/* =========================================
   PROFILE BADGES
========================================= */

.profile-badge{
    display:inline-block;

    background:#edf3ff;

    color:var(--primary-color);

    padding:8px 14px;

    border-radius:50px;

    font-size:13px;
    font-weight:600;

    margin-bottom:15px;
}





/* =========================================
   WHATSAPP BUTTON
========================================= */

.whatsapp-btn{
    width:100%;

    background:#25d366;
    color:var(--white);

    border:none;

    border-radius:12px;

    padding:14px;

    font-weight:600;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
}





/* =========================================
   PAGINATION
========================================= */

.pagination{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;

    margin-top:50px;

    flex-wrap:wrap;
}

.pagination a{
    width:45px;
    height:45px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:12px;

    background:var(--white);

    color:var(--primary-color);

    font-weight:600;

    box-shadow:var(--shadow);
}

.pagination a.active{
    background:var(--primary-color);
    color:var(--white);
}





/* =========================================
   TABLE
========================================= */

.table-responsive{
    overflow-x:auto;
}

table{
    width:100%;
    border-collapse:collapse;
}

table thead{
    background:#f5f7fb;
}

table th{
    padding:18px;
    text-align:left;
    color:var(--primary-color);
}

table td{
    padding:18px;
    border-bottom:1px solid #eee;
}





/* =========================================
   STATUS BADGES
========================================= */

.status{
    display:inline-block;

    padding:8px 14px;

    border-radius:50px;

    font-size:13px;
    font-weight:600;
}

.status-approved{
    background:#dcfce7;
    color:#166534;
}

.status-pending{
    background:#fef3c7;
    color:#92400e;
}

.status-rejected{
    background:#fee2e2;
    color:#991b1b;
}





/* =========================================
   PAGE LOADER
========================================= */

#pageLoader{
    position:fixed;
    top:0;
    left:0;

    width:100%;
    height:100%;

    background:var(--white);

    z-index:99999;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:0.5s;
}

.loader-spinner{
    width:60px;
    height:60px;

    border:5px solid #eee;
    border-top:5px solid var(--secondary-color);

    border-radius:50%;

    animation:spin 1s linear infinite;
}

@keyframes spin{

    100%{
        transform:rotate(360deg);
    }

}





/* =========================================
   MOBILE MENU
========================================= */

.mobile-menu-btn{
    display:none;

    width:50px;
    height:50px;

    border:none;

    border-radius:12px;

    background:var(--primary-color);

    color:var(--white);

    font-size:20px;
}





/* =========================================
   SCROLLBAR
========================================= */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#eee;
}

::-webkit-scrollbar-thumb{
    background:var(--secondary-color);
    border-radius:10px;
}





/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1400px){

    .profile-grid{
        grid-template-columns:repeat(4,1fr);
    }

}

@media(max-width:1200px){

    .profile-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

@media(max-width:992px){

    .profile-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .section-title h2{
        font-size:34px;
    }

}

@media(max-width:768px){

    section{
        padding:60px 0;
    }

    .section-title{
        margin-bottom:40px;
    }

    .section-title h2{
        font-size:30px;
    }

}

@media(max-width:600px){

    .profile-grid{
        grid-template-columns:1fr;
    }

    .container{
        padding:0 15px;
    }

    .btn{
        width:100%;
    }

    .profile-content{
        padding:20px;
    }

}

@media(max-width:480px){

    .section-title h2{
        font-size:26px;
    }

}



/* =========================================
   HEADER MOBILE MENU FIX
========================================= */

.main-header{
    position:sticky;
    top:0;
    z-index:99999;
}

.nav-menu{
    z-index:99999;
}

@media(max-width:900px){

    .mobile-menu-btn{
        display:flex !important;
        align-items:center;
        justify-content:center;
    }

    .nav-menu{

        position:absolute !important;

        top:80px !important;
        left:0 !important;

        width:100% !important;

        background:#ffffff !important;

        flex-direction:column !important;

        align-items:flex-start !important;

        padding:20px !important;

        display:none;

        box-shadow:
        0 10px 30px rgba(0,0,0,.12);

        z-index:999999 !important;
    }

    .nav-menu.active{
        display:flex !important;
    }

    .nav-menu a{
        width:100%;
        padding:12px 0;
    }

}