/* PRACTICOM Main Stylesheet */
/* Modern, Clean Design for STI College Ormoc */

:root {
    --primary-color: #00306e;
    --primary-dark: #030926;
    --secondary-color: #fff212;
    --accent-purple: #00306e;
    --danger-color: #dc3545;
    --warning-color: #fff212;
    --success-color: #28a745;
    --dark: #030926;
    --light: #ecf0f1;
    --white: #ffffff;
    --gray: #6c757d;
    --light-gray: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--light-gray);
    color: var(--dark);
    line-height: 1.6;
}

/* Landing Page Styles */
.landing-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

.btn-login {
    background-color: var(--white);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    transition: transform 0.3s;
}

.btn-login:hover {
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 8rem 2rem 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--white);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--white);
    bottom: -50px;
    left: 10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--white);
    top: 50%;
    right: 20%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.hero-search {
    margin-top: 3rem;
}

.search-container {
    display: flex;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 0.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.search-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
}

.search-input::placeholder {
    color: var(--gray);
}

.btn-search {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-search:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.section-title-left {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

/* Category Cards Section - Glassmorphism */
.categories-section {
    padding: 60px 2rem;
    background-color: #f8f9fa;
}

.categories-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #00306e;
    margin-bottom: 3rem;
    font-weight: 700;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.category-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.category-card {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0.25) 0%, 
        rgba(0, 0, 0, 0.45) 50%,
        rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.category-foreground {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    max-width: 75%;
    max-height: 55%;
    object-fit: contain;
    z-index: 10;
    pointer-events: none;
    mix-blend-mode: luminosity; /* Integrate with background/glass */
    opacity: 0.9;
}

.glass-panel {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 35px;
    padding: 40px 35px;
    text-align: center;
    z-index: 5;
    width: 80%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.glass-spacer {
    flex: 1;
}

.glass-button-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.category-name {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.2;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.category-count {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 15px;
    margin-bottom: 25px;
}

.view-btn {
    display: inline-block;
    background: #ffffff;
    color: #00306e;
    border: none;
    border-radius: 60px;
    padding: 10px 45px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.view-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.category-card:hover .glass-panel {
    background: rgba(255, 255, 255, 0.18);
}

.category-card:hover .category-foreground {
    opacity: 1;
}

/* Statistics Section */
.stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

.stats-grid-landing {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card-landing {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.stat-card-landing:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.stat-icon-landing {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-number-landing {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label-landing {
    font-size: 1rem;
    opacity: 0.9;
}

/* Featured Jobs Section */
.featured-jobs-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.job-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.job-logo {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.job-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.job-company {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.job-badges {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.badge-internship {
    background-color: var(--primary-color);
    color: var(--white);
}

.badge-fulltime {
    background-color: var(--success-color);
    color: var(--white);
}

.badge-parttime {
    background-color: var(--warning-color);
    color: var(--dark);
}

.badge-remote {
    background-color: #E3F2FD;
    color: var(--primary-color);
}

.badge-onsite {
    background-color: #FFF3E0;
    color: #E65100;
}

.job-salary {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.btn-apply {
    width: 100%;
    padding: 0.8rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-apply:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* About/CTA Section */
.about-cta-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.about-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 2rem;
}

.about-features {
    list-style: none;
    margin-bottom: 2rem;
}

.about-features li {
    padding: 0.8rem 0;
    font-size: 1rem;
    color: var(--dark);
}

.btn-learn-more {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-learn-more:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.about-image, .cta-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--light-gray), #e0e0e0);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.about-image img {
width: 100%;
    max-width: 900px;   /* controls maximum size */
    height: 500px;      /* same height as placeholder */
    object-fit: cover;  /* prevents stretching */
    border-radius: 10px;
}


.image-placeholder span {
    font-size: 5rem;
}

.image-placeholder p {
    font-size: 1.2rem;
    color: var(--gray);
}

/* Call-to-Action Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--accent-purple), #5A52E8);
    color: var(--white);
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cta-outline {
    padding: 1rem 2rem;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cta-outline:hover {
    background: var(--white);
    color: var(--accent-purple);
}

.btn-cta-filled {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cta-filled:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.cta-image .image-placeholder {
    background: rgba(255,255,255,0.1);
}

/* Newsletter Section */
.newsletter-section {
    padding: 4rem 0;
    background-color: var(--white);
    text-align: center;
}

.newsletter-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.newsletter-description {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.newsletter-input:focus {
    border-color: var(--primary-color);
}

.btn-newsletter {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-newsletter:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Footer */
.main-footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    color: #fff212;
}

.footer-contact {
    margin-bottom: 0.8rem;
    opacity: 0.9;
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* Features Section (kept for compatibility) */
.features {
    padding: 4rem 2rem;
    background-color: var(--white);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Login Page */
.login-container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 2rem;
}

.login-box {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    max-width: 400px;
    width: 100%;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-block {
    width: 100%;
}

.btn-success {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-success:hover {
    background-color: var(--primary-dark);
}

.alert {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* Admin Dashboard */
.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 250px;
    background-color: var(--dark);
    color: var(--white);
    padding: 2rem 0;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
}

.sidebar-header {
    padding: 0 1.5rem;
    margin-bottom: 2rem;
}

.sidebar-header h3 {
    font-size: 1.2rem;
    color: #fff212;
}

.sidebar-menu {
    list-style: none;
}

.sidebar-menu li {
    margin-bottom: 0.5rem;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: var(--white);
    text-decoration: none;
    transition: background-color 0.3s;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
    background-color: var(--primary-color);
}

.sidebar-menu i {
    font-size: 1.2rem;
}

.main-content {
    margin-left: 250px;
    flex: 1;
    background-color: var(--light-gray);
}

.top-bar {
    background-color: var(--white);
    padding: 1rem 2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.content-area {
    padding: 2rem;
}

.page-header {
    margin-bottom: 2rem;
}

.page-header h1 {
    color: var(--primary-color);
    font-size: 2rem;
}

/* Dashboard Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.stat-card h3 {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* Tables */
.card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.card-header {
    padding: 1.5rem;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h2 {
    color: var(--dark);
    font-size: 1.3rem;
}

.card-body {
    padding: 1.5rem;
}

.table-responsive {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table thead {
    background-color: var(--light-gray);
}

table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--dark);
}

table td {
    padding: 1rem;
    border-bottom: 1px solid #ddd;
}

table tbody tr:hover {
    background-color: var(--light-gray);
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-success {
    background-color: var(--success-color);
    color: var(--white);
}

.badge-warning {
    background-color: var(--warning-color);
    color: var(--dark);
}

.badge-danger {
    background-color: var(--danger-color);
    color: var(--white);
}

.badge-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.badge-secondary {
    background-color: var(--gray);
    color: var(--white);
}

/* Buttons */
.btn-sm {
    padding: 0.4rem 1rem;
    font-size: 0.875rem;
}

.btn-danger {
    background-color: var(--danger-color);
    color: var(--white);
}

.btn-warning {
    background-color: var(--warning-color);
    color: var(--dark);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--white);
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .jobs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid-landing {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-cta-content,
    .cta-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sidebar {
        width: 200px;
    }
    
    .main-content {
        margin-left: 200px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .search-container {
        flex-direction: column;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .category-card {
        height: 380px;
    }
    
    .category-name {
        font-size: 24px;
    }
    
    .glass-panel {
        padding: 40px 30px;
    }
    
    .jobs-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid-landing {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .admin-wrapper {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        position: relative;
        height: auto;
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .hero {
        padding: 5rem 1rem 4rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

/* ============================================
   MODERN ENHANCEMENTS FOR ADMIN PANEL
   ============================================ */

/* Enhanced Statistics Cards with Gradients */
.stat-card-enhanced {
    background: linear-gradient(135deg, #00306e 0%, #030926 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.stat-card-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.stat-card-enhanced::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    pointer-events: none;
}

.stat-icon {
    font-size: 3rem;
    opacity: 0.3;
    position: absolute;
    right: 1rem;
    top: 1rem;
}

.stat-card-enhanced .stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin: 0.5rem 0;
    color: #ffffff;
}

.stat-card-enhanced .stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
    color: #ffffff;
}

.stat-card-enhanced .stat-subtext {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 0.5rem;
    color: #ffffff;
}

/* Gradient Card Variations - Using Brand Colors */
.stat-card-gradient-blue {
    background: linear-gradient(135deg, #00306e 0%, #030926 100%);
}

.stat-card-gradient-green {
    background: linear-gradient(135deg, #00306e 0%, #030926 100%);
    position: relative;
}

.stat-card-gradient-green::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 242, 18, 0.2) 0%, rgba(255, 242, 18, 0.1) 100%);
    border-radius: 0 15px 15px 0;
}

.stat-card-gradient-orange {
    background: linear-gradient(135deg, #00306e 0%, #030926 100%);
    position: relative;
}

.stat-card-gradient-orange::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 242, 18, 0.3) 0%, rgba(255, 242, 18, 0.15) 100%);
    border-radius: 0 15px 15px 0;
}

.stat-card-gradient-purple {
    background: linear-gradient(135deg, #00306e 0%, #030926 100%);
    position: relative;
}

.stat-card-gradient-purple::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 242, 18, 0.25) 0%, rgba(255, 242, 18, 0.1) 100%);
    border-radius: 0 15px 15px 0;
}

.stat-card-gradient-teal {
    background: linear-gradient(135deg, #00306e 0%, #030926 100%);
    position: relative;
}

.stat-card-gradient-teal::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 242, 18, 0.2) 0%, rgba(255, 242, 18, 0.1) 100%);
    border-radius: 0 15px 15px 0;
}

.stat-card-gradient-pink {
    background: linear-gradient(135deg, #00306e 0%, #030926 100%);
    position: relative;
}

.stat-card-gradient-pink::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 242, 18, 0.3) 0%, rgba(255, 242, 18, 0.15) 100%);
    border-radius: 0 15px 15px 0;
}

/* Enhanced Progress Bars */
.progress-bar-container {
    background: #e0e0e0;
    height: 12px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #00306e, #fff212);
    border-radius: 10px;
    transition: width 0.5s ease;
    position: relative;
    overflow: hidden;
}

.progress-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.3),
        transparent
    );
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Modern Table Styling */
table.modern-table {
    border-collapse: separate;
    border-spacing: 0 8px;
}

table.modern-table tbody tr {
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

table.modern-table tbody tr:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

table.modern-table td:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

table.modern-table td:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* Enhanced Badges */
.badge-with-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-weight: 600;
}

/* Tooltip Styling */
.tooltip-wrapper {
    position: relative;
    display: inline-block;
}

.tooltip-content {
    visibility: hidden;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px 12px;
    position: absolute;
    z-index: 1000;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 0.85rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip-wrapper:hover .tooltip-content {
    visibility: visible;
    opacity: 1;
}

/* Loading States */
.skeleton-loader {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Activity Timeline */
.activity-timeline {
    position: relative;
    padding-left: 50px;
}

.activity-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    position: relative;
}

.activity-icon {
    position: absolute;
    left: -50px;
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.activity-content {
    flex: 1;
}

.activity-time {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

/* Application Timeline */
.application-timeline {
    display: flex;
    justify-content: space-between;
    padding: 2rem 0;
    position: relative;
}

.application-timeline::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}

.timeline-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.timeline-marker {
    width: 40px;
    height: 40px;
    background: #e0e0e0;
    color: #999;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: bold;
    border: 3px solid white;
}

.timeline-item.completed .timeline-marker {
    background: linear-gradient(135deg, #00306e, #fff212);
    color: #030926;
}

.timeline-content {
    font-size: 0.9rem;
}

.timeline-date {
    color: #6c757d;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* Status Timeline (application flow) */
.status-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
}
.status-timeline .timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    flex: none;
}
.status-timeline .timeline-marker {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    border-radius: 50%;
    background: #e0e0e0;
    margin-top: 0.25rem;
}
.status-timeline .timeline-item.completed .timeline-marker {
    background: #66bb6a;
}
.status-timeline .timeline-item.current .timeline-marker {
    background: #207FEE;
    box-shadow: 0 0 0 4px rgba(32, 127, 238, 0.3);
}
.status-timeline .timeline-item.rejected .timeline-marker {
    background: #f44336;
}
.status-timeline .timeline-connector {
    width: 2px;
    height: 16px;
    background: #e0e0e0;
    margin-left: 11px;
}
.status-timeline .timeline-content h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
}
.status-timeline .timeline-admin,
.status-timeline .timeline-note {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0.25rem 0 0 0;
}
@media (max-width: 768px) {
    .status-timeline .timeline-item {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 0;
    border-radius: 10px;
    width: 90%;
    max-width: 800px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-modal {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    background: none;
}

.close-modal:hover,
.close-modal:focus {
    color: #000;
}

.modal-body {
    padding: 1.5rem;
}

/* Chart Container */
.chart-container {
    position: relative;
    height: 300px;
    margin: 1rem 0;
}

/* Company Logo Styling */
.company-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 3px;
    background: #fff;
    transition: transform 0.2s ease;
}

.company-logo:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.company-logo-placeholder {
    width: 50px;
    height: 50px;
    background: #f0f0f0;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1.5rem;
    margin: 0 auto;
    border: 1px solid #ddd;
}

/* ============================================
   MODERN ANIMATED CONFIRMATION DIALOG
   ============================================ */

.confirm-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.confirm-overlay.show {
    opacity: 1;
}

.confirm-overlay.hide {
    opacity: 0;
}

.confirm-modal {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.7) translateY(-50px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.confirm-modal.show {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.confirm-modal.hide {
    transform: scale(0.8) translateY(20px);
    opacity: 0;
}

.confirm-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    animation: pulse 2s infinite;
    position: relative;
}

.confirm-icon.warning .icon-circle {
    background: linear-gradient(135deg, #ffa726, #fb8c00);
    box-shadow: 0 0 30px rgba(255, 167, 38, 0.5);
}

.confirm-icon.danger .icon-circle {
    background: linear-gradient(135deg, #ef5350, #e53935);
    box-shadow: 0 0 30px rgba(239, 83, 80, 0.5);
    animation: shake 0.5s ease-in-out;
}

.confirm-icon.success .icon-circle {
    background: linear-gradient(135deg, #66bb6a, #43a047);
    box-shadow: 0 0 30px rgba(102, 187, 106, 0.5);
}

.confirm-icon.info .icon-circle {
    background: linear-gradient(135deg, #42a5f5, #1e88e5);
    box-shadow: 0 0 30px rgba(66, 165, 245, 0.5);
}

.confirm-content {
    text-align: center;
    margin-bottom: 2rem;
}

.confirm-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00306e;
    margin-bottom: 0.5rem;
}

.confirm-message {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
}

.confirm-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.btn-confirm-cancel,
.btn-confirm-ok {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-confirm-cancel {
    background: #f5f5f5;
    color: #6c757d;
}

.btn-confirm-cancel:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-confirm-ok {
    color: white;
    min-width: 120px;
}

.btn-confirm-ok.warning {
    background: linear-gradient(135deg, #ffa726, #fb8c00);
}

.btn-confirm-ok.danger {
    background: linear-gradient(135deg, #ef5350, #e53935);
}

.btn-confirm-ok.success {
    background: linear-gradient(135deg, #66bb6a, #43a047);
}

.btn-confirm-ok.info {
    background: linear-gradient(135deg, #42a5f5, #1e88e5);
}

.btn-confirm-ok:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-confirm-ok:active {
    transform: translateY(0);
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */

.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-width: 300px;
    max-width: 400px;
    z-index: 10001;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 4px solid;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast.hide {
    transform: translateX(400px);
    opacity: 0;
}

.toast-success {
    border-left-color: #66bb6a;
    background: linear-gradient(135deg, #e8f5e9, #ffffff);
}

.toast-error {
    border-left-color: #ef5350;
    background: linear-gradient(135deg, #ffebee, #ffffff);
}

.toast-warning {
    border-left-color: #ffa726;
    background: linear-gradient(135deg, #fff3e0, #ffffff);
}

.toast-info {
    border-left-color: #42a5f5;
    background: linear-gradient(135deg, #e3f2fd, #ffffff);
}

.toast-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.toast-message {
    flex: 1;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    text-align: left;
}

.toast-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.toast-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #333;
}

/* ============================================
   SUCCESS ANIMATION OVERLAY
   ============================================ */

.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.success-overlay.show {
    opacity: 1;
}

.success-overlay.hide {
    opacity: 0;
}

.success-content {
    text-align: center;
    color: white;
}

.success-checkmark {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    position: relative;
}

.checkmark {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: block;
    stroke-width: 3;
    stroke: #66bb6a;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #66bb6a;
    animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 3;
    stroke-miterlimit: 10;
    stroke: #66bb6a;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

.success-message {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.5s ease-out 0.5s both;
}

/* ============================================
   KEYFRAME ANIMATIONS
   ============================================ */

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-10px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(10px);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px #66bb6a;
    }
}

/* ============================================
   LOADING SPINNER
   ============================================ */

.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Enhanced Alert Animations */
.alert {
    animation: slideInRight 0.5s ease-out;
    position: relative;
    overflow: hidden;
}

.alert::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.alert-success {
    border-left: 4px solid #28a745;
    animation: slideInRight 0.5s ease-out, pulse 2s infinite;
}

.alert-danger {
    border-left: 4px solid #dc3545;
    animation: slideInRight 0.5s ease-out, shake 0.5s ease-out;
}

/* ============================================
   NEW LANDING PAGE DESIGN STYLES
   ============================================ */

/* Color Palette Variables */
:root {
    --primary-blue: #1100FF;
    --primary-yellow: #F7C32E;
    --dark-navy: #030926;
    --bright-blue: #2163E8;
    --bright-yellow: #FCEE1B;
    --text-dark: #161C2D;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Landing page keyframe animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUpSoft {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.96);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes searchGlow {
    0%, 100% { box-shadow: 0 54px 53px -23px rgba(22, 28, 45, 0.14); }
    50% { box-shadow: 0 54px 53px -23px rgba(22, 28, 45, 0.14), 0 0 0 3px rgba(247, 195, 46, 0.25); }
}

@keyframes floatSoft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes imageReveal {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll-triggered visibility (used by JS) */
.landing-page .animate-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.landing-page .animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .landing-page .animate-on-scroll,
    .landing-page .hero-title,
    .landing-page .hero-description,
    .landing-page .hero-search-box,
    .landing-page .hero-student-img,
    .landing-page .new-header {
        animation: none !important;
        transition-duration: 0.01ms !important;
    }
    .landing-page .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}

/* General Body for Landing Page */
body.landing-page {
    font-family: 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background: #fff;
    color: var(--text-dark);
    line-height: 1.6;
}

.container-new {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header/Navigation */
.new-header {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    animation: slideDown 0.6s var(--ease-out-expo) forwards;
    transition: box-shadow 0.35s ease, background 0.35s ease;
}

.new-header.scrolled {
    box-shadow: 0 4px 24px rgba(22, 28, 45, 0.08);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-section {
    display: flex;
    align-items: center;
    transition: transform 0.3s var(--ease-out-back);
}

.logo-section:hover {
    transform: scale(1.02);
}

.header-logo {
    height: 62px;
    width: auto;
    display: block;
}

.main-nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.25s ease, transform 0.25s ease;
}

.nav-link:hover {
    color: var(--bright-blue);
    transform: translateY(-1px);
}

.header-actions .login-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 8px;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.header-actions .login-link:hover {
    color: var(--bright-blue);
    background: rgba(33, 99, 232, 0.08);
    transform: translateY(-1px);
}

.header-actions .login-link-button {
    background: none;
    border: none;
    font: inherit;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    color: var(--text-dark);
}

body.landing-page.landing-login-modal-open {
    overflow: hidden;
}

.landing-login-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.landing-login-modal.is-open {
    display: flex;
}

.landing-login-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 9, 38, 0.35);
    backdrop-filter: blur(3px);
}

.landing-login-panel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 400px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 24px 56px rgba(3, 9, 38, 0.18);
    padding: 28px 24px 24px;
    border: 1px solid rgba(33, 99, 232, 0.12);
}

.landing-login-title {
    margin: 0 0 6px;
    font: 800 1.35rem/1.2 "Manrope", system-ui, sans-serif;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.landing-login-hint {
    margin: 0 0 18px;
    font: 500 0.9rem/1.4 Inter, system-ui, sans-serif;
    color: rgba(22, 28, 45, 0.65);
}

.landing-login-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.landing-login-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(33, 99, 232, 0.15);
    background: #fafbfd;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.landing-login-option:hover {
    border-color: var(--bright-blue);
    background: #fff;
    box-shadow: 0 4px 16px rgba(33, 99, 232, 0.1);
}

.landing-login-option-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 800 0.9rem/1 "Manrope", system-ui, sans-serif;
    background: rgba(33, 99, 232, 0.12);
    color: #1d4ed8;
}

.material-symbols-outlined {
    font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0,
        'opsz' 24;
}

.landing-login-option-icon .material-symbols-outlined {
    font-size: 24px;
    line-height: 1;
}

.landing-login-option-icon--company {
    background: rgba(247, 195, 46, 0.25);
    color: #92400e;
}

.landing-login-option-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    text-align: left;
}

.landing-login-option-label {
    font: 800 0.95rem/1.25 "Manrope", system-ui, sans-serif;
    color: var(--text-dark);
}

.landing-login-option-sub {
    font: 500 0.8rem/1.3 Inter, system-ui, sans-serif;
    color: #6b7280;
}

.landing-login-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 10px;
    background: #f3f4f6;
    color: #6b7280;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.2s ease, color 0.2s ease;
}

.landing-login-close:hover {
    background: #e5e7eb;
    color: #111827;
}

/* Hero Section */
.hero-new {
    background: linear-gradient(180deg, rgba(247, 195, 46, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(247, 195, 46, 0.08) 0%, transparent 100%);
    pointer-events: none;
}

.hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left {
    z-index: 2;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin: 0 0 20px 0;
    letter-spacing: -2px;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.15s both;
}

.hero-description {
    font-size: 19px;
    color: rgba(22, 28, 45, 0.7);
    line-height: 1.7;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.3s both;
}

.hero-search-box {
    background: #00306e;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 54px 53px -23px rgba(22, 28, 45, 0.14);
    display: flex;
    gap: 15px;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.45s both;
    transition: transform 0.4s var(--ease-out-back), box-shadow 0.4s ease;
}

.hero-search-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 60px 60px -20px rgba(22, 28, 45, 0.2);
}

.hero-search-box:focus-within {
    box-shadow: 0 54px 53px -23px rgba(22, 28, 45, 0.14), 0 0 0 3px rgba(247, 195, 46, 0.35);
    transform: translateY(-2px);
}

.search-inputs {
    display: flex;
    gap: 15px;
    flex: 1;
}

.search-field {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid #e7e9ed;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    background: #fff;
    color: var(--text-dark);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.search-field:focus {
    outline: none;
    border-color: var(--bright-blue);
    box-shadow: 0 0 0 3px rgba(33, 99, 232, 0.15);
}

.search-field::placeholder {
    color: rgba(22, 28, 45, 0.7);
}

.search-btn-new {
    background: #68d585;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 15px 40px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s var(--ease-out-back), box-shadow 0.3s ease;
}

.search-btn-new:hover {
    background: #5bc477;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(104, 213, 133, 0.35);
}

.search-btn-new:active {
    transform: translateY(0);
}

.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-student-img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    animation: imageReveal 1s var(--ease-out-expo) 0.35s both;
}

/* Big Companies Section */
.companies-section {
    padding: 80px 0;
    background: #fff;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title-main {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 20px 0;
    letter-spacing: -1.2px;
}

.section-description {
    font-size: 19px;
    color: rgba(22, 28, 45, 0.7);
    line-height: 1.7;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    align-items: center;
}

.company-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 0.6;
    transition: opacity 0.35s ease, transform 0.35s var(--ease-out-back);
}

.company-badge:hover {
    opacity: 1;
    transform: scale(1.05);
}

.company-initial {
    width: 60px;
    height: 60px;
    background: var(--text-dark);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
}

.company-logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 10px;
    background: #f4f7fa;
    padding: 8px;
    border: 1px solid #e7e9ed;
    transition: transform 0.35s var(--ease-out-back), box-shadow 0.35s ease;
}

.company-badge:hover .company-logo-img {
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(22, 28, 45, 0.12);
}

.company-name-badge {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
}

/* Internships by Course Section */
.courses-section {
    background: var(--dark-navy);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.courses-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><path d="M0,500 Q250,300 500,500 T1000,500" fill="none" stroke="white" stroke-width="2"/></svg>');
    pointer-events: none;
}

.section-header-white {
    text-align: left;
    max-width: 500px;
    margin-bottom: 60px;
}

.section-title-white {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px 0;
    letter-spacing: -1.2px;
}

.section-description-white {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

.courses-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.course-card-new {
    background: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    position: relative;
    cursor: pointer;
    transition: transform 0.35s var(--ease-out-back), box-shadow 0.35s ease, background 0.35s ease;
}

.course-card-new.highlighted {
    background: var(--bright-blue);
}

.course-card-new:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
}

.course-name-new {
    font-size: 21px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 10px 0;
}

.course-card-new.highlighted .course-name-new {
    color: #fff;
}

.course-jobs {
    font-size: 15px;
    color: rgba(22, 28, 45, 0.65);
    margin: 0;
}

.course-card-new.highlighted .course-jobs {
    color: rgba(255, 255, 255, 0.65);
}

.course-arrow {
    position: absolute;
    top: 40px;
    right: 30px;
    color: var(--text-dark);
    opacity: 0.3;
}

.course-card-new.highlighted .course-arrow {
    color: #fff;
}

.view-all-courses {
    text-align: right;
}

.view-all-link {
    color: #68d585;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.35s ease, color 0.25s ease, transform 0.25s ease;
}

.view-all-link:hover {
    gap: 15px;
    color: #7ee098;
    transform: translateX(4px);
}

.view-all-link::after {
    content: '→';
    font-size: 20px;
}

/* Find Internships with 3 Easy Steps Section */
.steps-section {
    padding: 80px 0;
    background: #fff;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.steps-left {
    position: relative;
}

.steps-image {
    width: 100%;
    max-width: 450px;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s ease;
}

.steps-left:hover .steps-image {
    transform: scale(1.02);
    box-shadow: 0 28px 72px rgba(0, 0, 0, 0.14);
}

.notification-badge {
    position: absolute;
    bottom: 80px;
    left: -40px;
    background: var(--bright-blue);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
    box-shadow: 0 62px 64px -10px rgba(1, 23, 48, 0.12);
    max-width: 350px;
    transition: transform 0.35s var(--ease-out-back), box-shadow 0.35s ease;
}

.notification-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 72px 80px -10px rgba(1, 23, 48, 0.18);
}

.notification-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 5px 0;
}

.notification-text {
    font-size: 17px;
    color: #fff;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.steps-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step-item {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateX(8px);
}

.step-number {
    width: 43px;
    height: 43px;
    background: var(--primary-blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 700;
    flex-shrink: 0;
    transition: transform 0.3s var(--ease-out-back), box-shadow 0.3s ease;
}

.step-item:hover .step-number {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(17, 0, 255, 0.35);
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 21px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 10px 0;
}

.step-description {
    font-size: 17px;
    color: rgba(22, 28, 45, 0.7);
    line-height: 1.7;
    margin: 0;
}

/* Featured Internships Section */
.featured-section {
    padding: 80px 0;
    background: #fff;
}

.featured-nav {
    text-align: right;
    margin-bottom: 30px;
}

.nav-arrow {
    width: 44px;
    height: 44px;
    background: #f4f7fa;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    margin-left: 10px;
    transition: background 0.25s ease, transform 0.3s var(--ease-out-back), box-shadow 0.3s ease;
}

.nav-arrow:hover {
    background: #e5e9ed;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(22, 28, 45, 0.1);
}

.nav-arrow:active {
    transform: translateY(0);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.featured-card {
    background: #fff;
    border: 1px solid #e7e9ed;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 34px 33px -23px rgba(22, 28, 45, 0.13);
    transition: transform 0.4s var(--ease-out-back), box-shadow 0.4s ease, border-color 0.3s ease;
}

.featured-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 48px 56px -20px rgba(22, 28, 45, 0.18);
    border-color: rgba(33, 99, 232, 0.15);
}

.job-type {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(104, 213, 133, 0.1);
    color: #68d585;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.job-type.remote {
    background: rgba(71, 59, 240, 0.1);
    color: #473bf0;
}

.job-type.part-time {
    background: rgba(246, 75, 75, 0.1);
    color: #f64b4b;
}

.job-type.job-type-course {
    background: rgba(33, 99, 232, 0.12);
    color: #2163E8;
}

.featured-empty {
    text-align: center;
    color: rgba(22, 28, 45, 0.7);
    font-size: 17px;
    padding: 3rem 1rem;
    grid-column: 1 / -1;
}

.featured-title {
    font-size: 21px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.featured-location {
    font-size: 15px;
    color: rgba(22, 28, 45, 0.7);
    margin: 0 0 20px 0;
}

.featured-company {
    display: flex;
    align-items: center;
    gap: 12px;
}

.company-avatar {
    width: 32px;
    height: 32px;
    background: #e0e0e0;
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s var(--ease-out-back), background 0.3s ease;
}

.featured-card:hover .company-avatar {
    transform: scale(1.1);
}

.company-avatar-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s var(--ease-out-back);
}

.featured-card:hover .company-avatar-img {
    transform: scale(1.1);
}

.company-text {
    font-size: 19px;
    font-weight: 700;
    color: var(--text-dark);
}

/* Newsletter Section */
.newsletter-section-new {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.newsletter-icon {
    margin: 0 auto 30px;
}

.newsletter-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 15px 0;
    letter-spacing: -1.2px;
}

.newsletter-desc {
    font-size: 19px;
    color: rgba(22, 28, 45, 0.7);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 40px;
}

.newsletter-form-new {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto 20px;
}

.newsletter-input-new {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid #e7e9ed;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.newsletter-input-new:focus {
    outline: none;
    border-color: var(--bright-blue);
    box-shadow: 0 0 0 3px rgba(33, 99, 232, 0.12);
}

.newsletter-btn {
    background: #68d585;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 15px 40px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s var(--ease-out-back), box-shadow 0.3s ease;
}

.newsletter-btn:hover {
    background: #5bc477;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(104, 213, 133, 0.35);
}

.newsletter-btn:active {
    transform: translateY(0);
}

.newsletter-privacy {
    font-size: 15px;
    color: rgba(22, 28, 45, 0.7);
    line-height: 1.7;
}

/* Footer */
.footer-new {
    background: var(--text-dark);
    color: #fff;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.footer-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin: 0 0 30px 0;
    max-width: 350px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s;
    text-decoration: none;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    font-size: 17px;
    color: #fff;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--bright-yellow);
    transform: translateX(4px);
}

.section-header .section-title-main,
.section-header .section-description {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-right {
        order: -1;
    }
    
    .companies-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .courses-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-nav {
        gap: 20px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-search-box {
        flex-direction: column;
    }
    
    .search-inputs {
        flex-direction: column;
    }
    
    .companies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .courses-grid-new {
        grid-template-columns: 1fr;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form-new {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ============================================
   2026 LANDING PAGE REVAMP OVERRIDES
   ============================================ */

body.landing-page {
    background: #f9f9fd;
    color: #191c1e;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.hero-title,
.section-title-main,
.section-title-white,
.step-title,
.featured-title,
.footer-brand,
.newsletter-title {
    font-family: 'Manrope', 'Segoe UI', sans-serif;
}

.new-header {
    background: rgba(249, 249, 253, 0.82);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(25, 28, 30, 0.08);
}

.header-actions .login-link {
    background: #003d7c;
    color: #ffffff;
    border-radius: 12px;
    padding: 10px 18px;
}

.header-actions .login-link:hover {
    background: #0054a6;
    color: #ffffff;
}

.hero-new {
    background: #f9f9fd;
    padding-top: 64px;
}

.hero-bg {
    background: radial-gradient(circle at 25% 35%, rgba(0, 84, 166, 0.08), rgba(0, 84, 166, 0) 60%);
}

.hero-title {
    font-size: 62px;
    line-height: 1.08;
    letter-spacing: -0.02em;
    max-width: 12ch;
}

.hero-description {
    max-width: 58ch;
    color: #424751;
}

.hero-search-box {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 20px 48px -24px rgba(25, 28, 30, 0.25);
    padding: 8px;
}

.search-field {
    border: none;
    background: #f3f3f7;
}

.search-btn-new {
    background: #fdc003;
    color: #6c5000;
    border-radius: 10px;
}

.search-btn-new:hover {
    background: #f6bb00;
}

.hero-right {
    border-radius: 24px;
    overflow: hidden;
    background: #f3f3f7;
}

.hero-student-img {
    width: 100%;
    min-height: 420px;
    object-fit: cover;
}

.companies-section {
    padding: 42px 0;
    background: #f3f3f7;
}

.section-header {
    margin-bottom: 32px;
}

.section-title-main {
    font-size: 38px;
    letter-spacing: -0.02em;
}

/* Infinite horizontal company strip */
.companies-marquee {
    overflow: hidden;
    width: 100%;
    margin: 0 -40px;
    padding: 12px 0;
    mask-image: linear-gradient(
        to right,
        transparent,
        #000 6%,
        #000 94%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        #000 6%,
        #000 94%,
        transparent
    );
}

.companies-marquee-track {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 48px;
    width: max-content;
    animation: companies-marquee-scroll 50s linear infinite;
}

.companies-marquee-set {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 48px;
    flex-shrink: 0;
}

.companies-marquee:hover .companies-marquee-track {
    animation-play-state: paused;
}

@keyframes companies-marquee-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .companies-marquee-track {
        animation: none;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        transform: none;
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
    }

    .companies-marquee-set {
        flex-wrap: wrap;
        justify-content: center;
    }

    .companies-marquee-set:last-child {
        display: none;
    }

    .companies-marquee {
        mask-image: none;
        -webkit-mask-image: none;
        margin: 0;
    }
}

.company-badge-marquee {
    flex-direction: row;
    flex-shrink: 0;
    opacity: 0.72;
}

.company-name-badge {
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.courses-section {
    background: #f9f9fd;
    padding-top: 64px;
}

.courses-bg {
    display: none;
}

.section-header-light {
    text-align: left;
}

.section-title-dark,
.section-header-light .section-description-white {
    color: #191c1e;
}

.section-header-light .section-description-white {
    opacity: 1;
}

.courses-grid-new {
    gap: 20px;
}

.course-card-new {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 12px 28px -18px rgba(25, 28, 30, 0.25);
    padding: 28px 24px;
}

.course-name-new {
    font-size: 22px;
}

.course-jobs {
    color: #727783;
}

.course-arrow {
    top: 28px;
    right: 24px;
    color: #003d7c;
    opacity: 0.95;
}

.view-all-link {
    color: #003d7c;
}

.view-all-link:hover {
    color: #0054a6;
}

.steps-section {
    background: linear-gradient(120deg, #003d7c 0%, #0054a6 100%);
}

.steps-section .section-title-main,
.steps-section .section-description,
.step-title,
.step-description {
    color: #ffffff;
}

.steps-section .section-description,
.step-description {
    opacity: 0.84;
}

.steps-grid {
    grid-template-columns: 1fr;
}

.steps-left {
    display: none;
}

.steps-right {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.step-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 20px;
    flex-direction: column;
}

.step-number {
    background: #fdc003;
    color: #6c5000;
}

.featured-section {
    background: #f9f9fd;
    padding-top: 64px;
}

.featured-header-row {
    text-align: left;
    max-width: none;
}

.view-all-featured-link {
    color: #003d7c;
    font-weight: 700;
    text-decoration: none;
}

.featured-list {
    display: grid;
    gap: 14px;
}

.featured-list-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    box-shadow: 0 12px 28px -20px rgba(25, 28, 30, 0.28);
}

.featured-company-block {
    display: flex;
    align-items: center;
    gap: 12px;
}

.featured-company-logo {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #f3f3f7;
    display: grid;
    place-items: center;
}

.company-avatar,
.company-avatar-img {
    width: 34px;
    height: 34px;
}

.featured-meta {
    color: #727783;
    font-size: 14px;
}

.featured-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.job-type.job-type-course {
    margin: 0;
    color: #003d7c;
    background: rgba(0, 61, 124, 0.1);
}

.apply-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #003d7c;
    color: #ffffff;
    border-radius: 10px;
    height: 38px;
    padding: 0 18px;
    font-size: 14px;
    font-weight: 700;
}

.apply-btn:hover {
    background: #0054a6;
}

.newsletter-section-new {
    background: #f9f9fd;
}

.newsletter-section-new .container-new {
    background: linear-gradient(120deg, #003d7c 0%, #0054a6 100%);
    border-radius: 20px;
    padding: 56px 40px;
}

.newsletter-title,
.newsletter-desc,
.newsletter-privacy {
    color: #ffffff;
}

.newsletter-input-new {
    border: none;
}

.newsletter-btn {
    background: #fdc003;
    color: #6c5000;
}

.footer-new {
    background: #f3f3f7;
    color: #191c1e;
    border-top: 1px solid rgba(25, 28, 30, 0.08);
}

.footer-heading {
    color: #727783;
}

.footer-links a,
.footer-desc,
.footer-brand {
    color: #191c1e;
}

.footer-links a:hover {
    color: #003d7c;
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }

    .steps-right {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .featured-list-item,
    .featured-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}
