:root {
    --primary: #25b87d;
    --primary-light: #6366F1;
    --secondary: #00a389;
    --bg: #f9f9f9;
    --text: #757575;
    --heading: #1a1a1a;
    --white: #fff;
    --black: #1a1a1a;
    --footer: #065649;
}

body {
    color: var(--text);
    background-color: var(--bg);
    font-family: "Jost", sans-serif;
}
h1,h2,h3,h4,h5,h6{
    color: var(--heading);
    font-family: "Work Sans", sans-serif;
}
h2{
    font-size: 40px;
    line-height: 1.3em;
}
p{
    font-size: 17px;
}

/* Gradient Navbar */
.navbar-custom {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}
/* Gradient Buttons */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-size: 17px;
    padding: 12px 30px;
    border: none;
    transition: opacity 0.3s;
}
.btn-primary-custom:hover {
    opacity: 0.88;
    color: #fff;
}

/* Page Header */
.page-header{
    background: #f9f9f9;
    padding: 20px 0px;
}

/* Cards */
.job-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(79,70,229,0.10);
    transition: transform 0.2s, box-shadow 0.2s;
}
.job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(79,70,229,0.18);
}
.job-profile{
    width:48px;
    height:48px;
    background:linear-gradient(135deg,var(--primary),var(--secondary))
}
.job-profile-detail{
    width:64px;
    height:64px;
}
.job-card .job-btn{
    padding: 8px 15px;
}

/* Sidebar Dashboard */
.sidebar {
    background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
    min-height: 100vh;
    color: white;
}
.sidebar a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    display: block;
    padding: 12px 20px;
    border-radius: 8px;
    transition: background 0.2s;
}
.sidebar a:hover, .sidebar a.active {
    background: rgba(255,255,255,0.18);
    color: #fff;
}

/* Badge Statuses */
.badge-pending   { background: #FFA500; }
.badge-reviewed  { background: #3B82F6; }
.badge-shortlisted { background: #10B981; }
.badge-rejected  { background: #EF4444; }
.badge-hired     { background: #6366F1; }

/* Auth Card */
.auth-card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(79,70,229,0.13);
    padding: 36px;
}

/* Header Section */
.navbar-custom .logo{
    width: 80px;
}
.navbar-custom.navbar-expand-lg .navbar-nav .nav-link{
    font-size: 18px;
    color: var(--white);
    margin: 0px 8px;
}
.navbar-custom .btn-header{
    color: var(--primary);
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 18px;
}

/* Hero Section */
/* Gradient Hero */
.hero-section {
    /* background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); */
    color: white;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url(../uploads/hero-img-03-v1.jpg) center / cover no-repeat fixed;
    padding: 220px 0;
}
.hero-section .hero-title{
    color: var(--white);
}
.hero-title span{
    color: var(--primary);
}
.hero-subtitle{
    font-size: 20px;
}
.hero-section .hero-btn{
    color: var(--black);
}

/* About Section */
.about-section{
    padding: 120px 0px;
    background: #f9f9f9;
}
.about-section .about-content{
    padding: 50px;
}
.about-section .about-content h2{
    font-weight: 700;
}
.about-section .about-content h2 span{
    color: #25b87d;
}
.about-section .about-content p{
    font-size: 18px;
}
.about-section .about-content ul{
    list-style-type: none;
    padding: 0;
}
.about-section .about-content ul li{
    color: var(--heading);
    font-size: 24px;
    line-height: 44px;
}
.about-section .about-content ul li::before{
    content: "\f00c";
    color: var(--primary);
    font-size: 22px;
    font-family: "FontAwesome";
    margin-right: 10px;
}
.about-section .about-content .about-btn{
    margin-top: 20px;
}

/* Latest Jobs Section */
.latest-jobs-section{
    padding: 120px 0px;
    background: var(--white);
}
.latest-jobs-section h2 span{
    color: var(--primary);
}
.latest-jobs-section{

}
.latest-jobs-section .job-card .job-info{
   font-size: 15px;
}
.latest-jobs-section .job-card p{
    margin-top: 15px;
}
.latest-jobs-section .btn-primary-custom{
    margin-top: 40px;
}

footer {
    background: var(--footer);
    color: white;
}
footer .footer-social-box{
    display: flex;
    justify-content: right;
}
footer .footer-social-box ul{
    list-style-type: none;
    padding: 0;
    margin: 0;
}
footer .footer-social-box ul li{
    display: inline-block;
    padding: 0px 10px;
}