/* HERO */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
}

/* JOB CARD */
.job-card{
    border: none;
    border-top: 2px solid #5B5BEF;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.job-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* NAVBAR */
.navbar {
    border-bottom: 1px solid #f1f1f1;
}

.navbar-brand {
    color: #111827 !important;
}

.navbar-brand:hover {
    color: #4f46e5 !important;
}

.nav-link {
    color: #374151 !important;
    font-weight: 500;
}

.nav-link:hover {
    color: #4f46e5 !important;
}

/* BODY */
body {
    padding-top: 55px;
    font-family: 'Poppins', sans-serif;
    background-color: #f9fafb;
}

/* BUTTON */
.btn {
    border-radius: 10px;
    font-weight: 500;
}

.btn-primary {
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    border: none;
}

.btn-primary:hover {
    opacity: 0.9;
}

/* TYPOGRAPHY */
h2 {
    font-weight: 600;
}

/* CARD ACCENT */
.job-card::before {
    content: "";
    display: block;
    height: 4px;
    border-radius: 16px 16px 0 0;
    background: linear-gradient(90deg, #4f46e5, #6366f1);
}

.section-title {
    margin-top: 40px;
    margin-bottom: 40px;
    font-weight: 600;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #6366f1;
    margin: 10px auto 0;
    border-radius: 10px;
}

.gradient-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.card-header {
    border: none;
    padding: 12px 16px;
    font-weight: 500;
}

.hero-img {
    max-width: 400px;
    width: 100%;
    height: auto;
}

.footer-section{
    background:#001b3a;
    color:white;
    padding:40px 0 15px;
    margin-top:80px;
}

.footer-section h5{
    font-weight:600;
    margin-bottom:20px;
}

.footer-section p,
.footer-section li,
.footer-section a{
    color:rgba(255,255,255,.8);
    text-decoration:none;
    margin-bottom:10px;
}

.footer-section a:hover{
    color:white;
}

.footer-section hr{
    border-color:rgba(255,255,255,.2);
    margin-top:20px;
}

.social-icons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-top:15px;
}

.social-btn{
    width:45px;
    height:45px;
    border-radius:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    text-decoration:none;
    transition:0.3s;
}

.social-btn i{
    font-size:25px;
}

.social-btn.instagram{
    background:#E4405F;
}

.social-btn.linkedin{
    background:#0077B5;
}

.social-btn.youtube{
    background:#FF0000;
}

.social-btn.facebook{
    background:#1877F2;
}

.social-btn:hover{
    transform:translateY(-5px);
    color:white;
}