:root {
    /* Brand Colors */
    --primary: #2DA8E0;
    --primary-dark: #1F5FAF;
    --primary-light: var(--primary);
    --brand-dark: #153E75;
    --brand-bg-alt: #F4F9FD;
    --secondary: #1F5FAF;
    --accent: #E0E6F7;
    --background: #FFFFFF;
    --surface: #FFFFFF;
    --text-main: #4F5E64;
    --text-light: #A0ABB8;
    --border: #E0E6F7;

    /* Bootstrap Variable Overrides */
    --bs-primary: #2DA8E0;
    --bs-primary-rgb: 45, 168, 224;
    --bs-link-color: #2DA8E0;
    --bs-link-hover-color: #1F5FAF;
    --bs-border-color: #E0E6F7;

    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(255, 255, 255, 0.8);
    --glass-shadow: 0 8px 32px 0 rgba(45, 168, 224, 0.05);

    /* Standardized Spacing */
    --spacing-xs: 0.5rem;    /* 8px */
    --spacing-sm: 0.75rem;    /* 12px */
    --spacing-md: 1rem;       /* 16px */
    --spacing-lg: 1.5rem;     /* 24px */
    --spacing-xl: 2rem;       /* 32px */
    --spacing-2xl: 3rem;      /* 48px */
    --spacing-3xl: 4rem;      /* 64px */
    --spacing-4xl: 5rem;      /* 80px */

    /* Standardized Font Sizes */
    --font-xs: 0.75rem;       /* 12px */
    --font-sm: 0.875rem;      /* 14px */
    --font-base: 1rem;        /* 16px */
    --font-lg: 1.125rem;      /* 18px */
    --font-xl: 1.25rem;       /* 20px */
    --font-2xl: 1.5rem;       /* 24px */
    --font-3xl: 1.875rem;     /* 30px */
    --font-4xl: 2.25rem;      /* 36px */
    --font-5xl: 3rem;         /* 48px */

    /* Standardized Border Radius */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 20px;
    --radius-full: 9999px;

    /* Standardized Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--brand-dark);
    line-height: 1.25;
}

.display-1 {
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -2px;
}

.display-2 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.display-3 {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -1px;
}

.display-4 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-primary-dark {
    background-color: var(--primary-dark) !important;
}

.bg-brand-dark {
    background-color: var(--brand-dark) !important;
}

.text-primary-dark {
    color: var(--primary-dark) !important;
}

.text-brand-dark {
    color: var(--brand-dark) !important;
}

.bg-primary-subtle {
    background-color: rgba(45, 168, 224, 0.1) !important;
    color: var(--primary) !important;
}

/* Standardized Button Styles */
.btn-primary,
.btn-standard {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #FFFFFF;
    padding: 12px 28px;
    font-weight: 600;
    font-size: var(--font-base);
    border-radius: var(--radius-md);
    border: none;
    font-family: 'Inter', sans-serif;
}

.btn-primary:hover,
.btn-standard:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #FFFFFF;
}

.btn-primary-lg {
    padding: 14px 32px;
    font-size: var(--font-lg);
    font-weight: 600;
}

.btn-primary-sm {
    padding: 8px 20px;
    font-size: var(--font-sm);
    font-weight: 600;
}

.btn-outline-primary {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 26px;
    font-weight: 600;
    font-size: var(--font-base);
    border-radius: var(--radius-md);
    font-family: 'Inter', sans-serif;
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #FFFFFF;
}

.btn-primary-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    color: white !important;
    transition: all 0.3s ease;
}

.btn-primary-gradient:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    box-shadow: 0 10px 20px rgba(45, 168, 224, 0.2);
    transform: translateY(-2px);
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

/* Glassmorphism Navbar */
.navbar-glass {
    background: #FFFFFF !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: none;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--brand-dark) !important;
}

.nav-link {
    font-weight: 600;
    color: var(--brand-dark) !important;
    position: relative;
    padding: 0.5rem 1rem;
    font-size: 15px;
}

/* Hero Section */
.hero-section {
    padding: 80px 0 50px;
    position: relative;
    background-color: transparent;
}

/* Normalized in global display classes */

/* Hero Section Modern (Matches provided design) */
.hero-section-modern {
    background-color: var(--brand-bg-alt);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
    border: none;
}

.hero-section-modern h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--brand-dark);
    line-height: 1.1;
    margin-bottom: 40px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.02em;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    right: -150px;
    height: 100%;
    width: auto;
    z-index: 0;
}

/* Category Section Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px 0;
}

.category-card-small {
    background: #fff;
    border: 1px solid var(--border);
    padding: 30px 20px;
    text-align: center;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.category-card-small:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.category-card-small .icon-box {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary);
}

.category-card-small h6 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--brand-dark);
}

.category-card-small .count {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
}

/* Resume Banner */
.resume-banner {
    background: linear-gradient(90deg, var(--brand-dark) 0%, #0d2a52 100%);
    padding: 100px 0;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.resume-banner h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff !important;
    margin-bottom: 30px;
}



/* Featured Job Card (Horizontal) */
.job-card-featured {
    padding: 25px;
    background: #fff;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.job-card-featured:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.job-card-featured .company-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-right: 20px;
}

/* Featured Jobs Button */
.btn-featured {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 700;
}

/* How It Works Wavy */
.how-it-works-wavy {
    background-color: var(--brand-dark);
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.184 20c.357-.13.72-.264 1.088-.402l1.768-.661C33.64 15.347 39.647 13 50 13s16.36 2.347 25.96 5.937l1.768.661c.368.138.731.272 1.088.402H100V0H0v20h21.184z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    padding: 100px 0;
    color: #fff;
}

.how-it-works-wavy h2 {
    color: #fff !important;
}

/* Intro Section Text */
.intro-text-section h2 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.badge-intro {
    background: var(--brand-dark);
    color: #fff;
    padding: 25px 35px;
    display: inline-block;
    position: absolute;
    bottom: 40px;
    left: -40px;
    z-index: 5;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.badge-intro .year {
    font-size: 32px;
    font-weight: 800;
    display: block;
}

@media (max-width: 991px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* JobSearch Box Premium */
.search-pill {
    background: #fff;
    border-radius: 100px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
    padding: 10px !important;
    display: flex;
    align-items: center;
    width: 100%;
}

.search-pill .search-item {
    border-right: 1px solid #E0E6F7;
    padding: 0;
    display: flex;
    align-items: center;
    position: relative;
}

.search-pill .search-item.dropdown {
    flex: 0 0 auto;
    min-width: 160px;
}

.search-pill .search-item.flex-grow-1 {
    flex: 1;
}

.search-pill .search-item:last-of-type {
    border-right: none;
}

.search-pill .search-item i {
    position: absolute;
    left: 20px;
    color: var(--primary);
    font-size: 16px;
    z-index: 2;
    pointer-events: none;
}

.dropdown-toggle-custom {
    border: none;
    background: transparent;
    width: 100%;
    height: 65px;
    padding-left: 50px;
    padding-right: 40px;
    text-align: left;
    font-size: 15px;
    font-weight: 500;
    color: var(--brand-dark);
    position: relative;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-toggle-custom::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232DA8E0' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    border: none;
}

.search-pill input {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
    width: 100%;
    height: 65px;
    font-size: 15px;
    color: var(--brand-dark);
    font-weight: 500;
    padding-left: 50px !important;
    padding-right: 15px !important;
}

.dropdown-menu {
    border: 1px solid #E0E6F7 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    min-width: 200px !important;
}

.dropdown-item {
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px !important;
    color: var(--brand-dark) !important;
}

.dropdown-item:hover {
    background-color: var(--primary-dark) !important;
    color: #fff !important;
}

.nav-link:hover {
    color: #1F5FAF !important;
}

.nav-link.active {
    color: #1F5FAF !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    background-color: #1F5FAF;
}

.search-pill .btn-search {
    border-radius: 100px;
    padding: 12px 35px;
    font-weight: 700;
    margin-right: 5px;
    transition: all 0.3s ease;
}

.search-pill .btn-search:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(60, 101, 245, 0.3);
}

/* Card Updates */
.card-job {
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #fff;
    padding: 25px;
    height: 100%;
}

.card-job:hover,
.hover-up:hover {
    border-color: var(--accent);
    transform: translateY(-7px);
    box-shadow: 0 20px 40px rgba(22, 33, 58, 0.08) !important;
}

/* Category Swiper Premium */
.category-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 35px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.category-card:hover {
    border-color: var(--primary);
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(45, 168, 224, 0.12);
}

.category-card .icon-box {
    width: 65px;
    height: 65px;
    background: var(--brand-bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    font-size: 24px;
    color: var(--primary);
    transition: all 0.4s ease;
}

.category-card:hover .icon-box {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
}

.category-card h6 {
    font-size: 15px;
    /* Reduced from 17px */
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.category-card:hover h6 {
    color: var(--primary);
}

.category-card .job-count {
    background: var(--brand-bg-alt);
    color: var(--brand-dark);
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 11px;
    /* Reduced from 12px */
    font-weight: 600;
}

.category-card:hover .job-count {
    background: rgba(45, 168, 224, 0.1);
    color: var(--primary);
}

.swiper-button-next,
.swiper-button-prev {
    background: #fff !important;
    width: 35px !important;
    height: 35px !important;
    top: 45% !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 14px !important;
    /* Smaller arrows */
    font-weight: 800;
}

.swiper-button-next {
    right: 5px !important;
    /* Move inside container to avoid clipping */
}

.swiper-button-prev {
    left: 5px !important;
    /* Move inside container to avoid clipping */
}

.swiper-pagination-bullet-active {
    background: var(--primary) !important;
}

@media (max-width: 768px) {
    .category-card {
        padding: 25px 15px;
    }
}

/* Modern Dark Footer */
.footer-modern {
    background-color: #153E75 !important;
    /* Deep Dark Blue */
    color: #FFFFFF !important;
    padding: 100px 0 40px;
    font-family: 'Inter', sans-serif;
}

.footer-modern h5,
.footer-modern h6 {
    color: #FFFFFF !important;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.footer-modern p {
    color: #FFFFFF !important;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-modern .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-modern .footer-links li {
    margin-bottom: 12px;
}

.footer-modern .footer-links a {
    color: #FFFFFF !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    opacity: 0.9;
}

.footer-modern .footer-links a:hover {
    color: #FFFFFF !important;
    opacity: 1;
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #FFFFFF !important;
}

.newsletter-box {
    position: relative;
    display: flex;
    margin-top: 25px;
}

.newsletter-box input {
    background: var(--brand-bg-alt);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 15px 20px;
    width: 100%;
    font-size: 14px;
    color: var(--brand-dark);
}

.newsletter-box .btn-subscribe {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    transition: all 0.3s ease;
}

.newsletter-box .btn-subscribe:hover {
    background: var(--primary-dark);
}

/* Footer Stats Row */
.footer-stats-row {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 60px;
}

.footer-logo {
    color: #FFFFFF !important;
    font-size: 24px;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-family: 'Poppins', sans-serif;
}

.footer-logo i {
    color: var(--primary);
    margin-right: 12px;
}

.stat-item {
    display: flex;
    align-items: center;
}

.stat-item .count {
    font-size: 24px;
    font-weight: 800;
    color: #FFFFFF !important;
    margin-right: 10px;
    font-family: 'Poppins', sans-serif;
}

.stat-item .label {
    font-size: 14px;
    color: #FFFFFF !important;
    opacity: 0.8;
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: #FFFFFF !important;
}

.footer-bottom .copyright {
    font-size: 14px;
    color: #FFFFFF !important;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: #FFFFFF !important;
    font-size: 16px;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.social-links a:hover {
    color: #FFFFFF !important;
    opacity: 1;
    transform: translateY(-3px);
}

/* Scroll Top Button */
.scroll-top-btn {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(45, 168, 224, 0.3);
}

.scroll-top-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

@media (max-width: 991px) {
    .stat-item {
        margin-bottom: 20px;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
}

/* About Us Page Refinement */
.about-hero {
    height: 450px;
    background: linear-gradient(rgba(21, 62, 117, 0.75), rgba(21, 62, 117, 0.75)), url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: #fff !important;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    font-family: 'Poppins', sans-serif;
}

.section-info {
    padding: 120px 0;
}

.text-pink-sub {
    color: var(--primary) !important;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 25px;
    display: block;
}

.badge-year {
    background: var(--brand-dark);
    color: #fff;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 50px;
    left: -20px;
    z-index: 5;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.badge-year .since {
    font-size: 14px;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 5px;
}

.badge-year .year {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

.how-it-works-dark {
    background-color: var(--brand-dark);
    /* Wavy pattern approximation */
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.184 20c.357-.13.72-.264 1.088-.402l1.768-.661C33.64 15.347 39.647 13 50 13s16.36 2.347 25.96 5.937l1.768.661c.368.138.731.272 1.088.402H100V0H0v20h21.184z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    padding: 120px 0;
    color: #fff;
}

.process-card {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    padding: 60px 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.process-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-15px);
}

.process-card i {
    font-size: 45px;
    margin-bottom: 30px;
    color: #fff;
}

.process-card h5 {
    color: #fff !important;
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.process-card p {
    font-size: 15px;
    opacity: 0.7;
    line-height: 1.8;
}

.testimonial-simple {
    padding: 150px 0;
    text-align: center;
}

.testimonial-simple img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 30px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-simple blockquote {
    font-size: 28px;
    font-weight: 600;
    color: var(--brand-dark);
    max-width: 1000px;
    margin: 0 auto 40px;
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
    font-style: italic;
}

.resume-cta-banner {
    background: linear-gradient(rgba(1, 11, 29, 0.8), rgba(1, 11, 29, 0.8)), url('https://images.unsplash.com/photo-1497215728101-856f4ea42174?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    padding: 150px 0;
    color: #fff;
    text-align: center;
}

.resume-cta-banner h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 40px;
    line-height: 1.2;
}

.news-card {
    background: var(--brand-bg-alt);
    border: 1px solid var(--border);
    margin-bottom: 50px;
}

.news-card .img-box {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.news-card .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card .date-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--primary);
    color: #fff;
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 0;
}

.news-card .content {
    padding: 30px 0;
}

.news-card .cat {
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.news-card h5 {
    font-size: 24px;
    color: var(--brand-dark);
    font-weight: 700;
    margin: 20px 0;
    transition: color 0.3s ease;
}

.news-card h5:hover {
    color: var(--primary);
}

.news-card .meta {
    font-size: 13px;
    color: #A0ABB8;
    display: flex;
    gap: 15px;
}

/* Blog Page Modern Styles */
.blog-post-modern {
    background: #fff;
    margin-bottom: 50px;
    border: none;
    transition: all 0.3s ease;
}

.blog-post-modern .img-box {
    position: relative;
    overflow: hidden;
    margin-bottom: 25px;
}

.blog-post-modern .img-box img {
    width: 100%;
    transition: transform 0.5s ease;
}

.blog-post-modern:hover .img-box img {
    transform: scale(1.05);
}

.blog-post-modern .date-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--primary);
    color: #fff;
    padding: 10px 20px;
    text-align: center;
    font-weight: 700;
}

.blog-post-modern .date-badge span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    line-height: 1;
}

.blog-post-modern .date-badge strong {
    font-size: 20px;
    display: block;
    line-height: 1;
}

.blog-post-modern h2 {
    font-size: 28px;
    color: var(--brand-dark);
    font-weight: 700;
    margin-bottom: 15px;
}

.blog-post-modern h2 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post-modern h2 a:hover {
    color: var(--primary);
}

.blog-post-modern .meta-info {
    font-size: 14px;
    color: #A0ABB8;
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
}

.blog-post-modern .meta-info i {
    color: #A0ABB8;
    margin-right: 5px;
}

/* Sidebar Widgets */
.sidebar-widget {
    margin-bottom: 40px;
    padding: 30px;
    background: #fbfbfb;
}

.sidebar-widget .widget-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.search-widget .input-group {
    background: #fff;
    border: 1px solid #eee;
}

.search-widget input {
    border: none;
    padding: 12px 15px;
}

.search-widget .btn-search {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 10px 20px;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #f1f1f1;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list a {
    color: var(--brand-dark);
    text-decoration: none;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    transition: color 0.3s ease;
}

.category-list a:hover {
    color: var(--primary);
}

.recent-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.recent-post-item .thumb {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.recent-post-item .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-item .info h6 {
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 700;
}

.recent-post-item .info .date {
    font-size: 12px;
    color: #A0ABB8;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-cloud a {
    display: inline-block;
    padding: 8px 15px;
    background: #fff;
    border: 1px solid #eee;
    color: #A0ABB8;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-cloud a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.insta-feed {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.insta-feed img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

/* ============================================
   STANDARDIZED UI COMPONENTS - ALL PAGES
   ============================================ */

/* Standardized Typography */
.page-title {
    font-family: 'Poppins', sans-serif;
    font-size: var(--font-4xl);
    font-weight: 700;
    color: var(--brand-dark);
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

.page-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-lg);
    font-weight: 400;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: var(--font-3xl);
    font-weight: 700;
    color: var(--brand-dark);
    line-height: 1.3;
    margin-bottom: var(--spacing-lg);
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-base);
    font-weight: 400;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-sm);
}

.card-title {
    font-family: 'Poppins', sans-serif;
    font-size: var(--font-xl);
    font-weight: 700;
    color: var(--brand-dark);
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
}

.card-text {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-base);
    font-weight: 400;
    color: var(--text-main);
    line-height: 1.6;
}

/* Standardized Buttons */
.btn-standard {
    background-color: var(--primary) !important;
    border: none !important;
    color: #FFFFFF !important;
    padding: 12px 28px;
    font-weight: 600;
    font-size: var(--font-base);
    border-radius: var(--radius-md);
    font-family: 'Inter', sans-serif;
}

.btn-standard:hover {
    background-color: var(--primary-dark) !important;
    color: #FFFFFF !important;
}

.btn-standard-lg {
    padding: 14px 32px;
    font-size: var(--font-lg);
}

.btn-standard-sm {
    padding: 8px 20px;
    font-size: var(--font-sm);
}

/* Standardized Cards */
.card-standard {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-sm);
}

.card-standard-header {
    padding-bottom: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--border);
}

/* Standardized Spacing Utilities */
.p-section {
    padding: var(--spacing-4xl) 0;
}

.p-section-sm {
    padding: var(--spacing-2xl) 0;
}

.mb-section {
    margin-bottom: var(--spacing-4xl);
}

.mb-section-sm {
    margin-bottom: var(--spacing-2xl);
}

/* Standardized Badges */
.badge-standard {
    display: inline-block;
    padding: 6px 12px;
    font-size: var(--font-xs);
    font-weight: 600;
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
}

.badge-primary {
    background-color: rgba(45, 168, 224, 0.1);
    color: var(--primary);
}

.badge-dark {
    background-color: rgba(21, 62, 117, 0.1);
    color: var(--brand-dark);
}

/* Standardized Form Elements */
.form-control-standard {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    font-size: var(--font-base);
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
}

.form-control-standard:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45, 168, 224, 0.1);
    outline: none;
}

.form-label-standard {
    font-size: var(--font-sm);
    font-weight: 600;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-xs);
    font-family: 'Inter', sans-serif;
}

/* Standardized Container Spacing */
.container-standard {
    padding-left: var(--spacing-lg);
    padding-right: var(--spacing-lg);
}

/* Override all inline button styles to use standard */
button[style*="background-color: #2DA8E0"],
a[style*="background-color: #2DA8E0"],
.btn[style*="background-color: #2DA8E0"] {
    background-color: var(--primary) !important;
    border: none !important;
    color: #FFFFFF !important;
}

button[style*="background-color: #2DA8E0"]:hover,
a[style*="background-color: #2DA8E0"]:hover,
.btn[style*="background-color: #2DA8E0"]:hover {
    background-color: var(--primary-dark) !important;
}

/* ============================================
   MODERN JOB CARDS
   ============================================ */

/* Grid Job Card (Jobs Listing Page) */
.job-card-modern {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.job-card-modern:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
    transform: translateY(-4px);
}

.job-card-header {
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
    margin-bottom: 16px;
}

.company-logo-wrapper {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #F4F9FD;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border);
}

.company-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.company-logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
}

.btn-bookmark {
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 18px;
    padding: 4px 8px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.btn-bookmark:hover {
    color: var(--primary);
}

.btn-bookmark.active {
    color: var(--primary);
}

.badge-featured {
    display: inline-block;
    background: linear-gradient(135deg, #2DA8E0 0%, #1F5FAF 100%);
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.job-card-body {
    flex-grow: 1;
    margin-bottom: 16px;
}

.job-title {
    font-size: var(--font-lg);
    font-weight: 700;
    color: var(--brand-dark);
    line-height: 1.4;
    margin-bottom: 12px;
}

.job-title a:hover {
    color: var(--primary);
}

.job-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.badge-job-type,
.badge-work-mode {
    display: inline-block;
    background-color: rgba(45, 168, 224, 0.1);
    color: var(--primary);
    font-size: var(--font-xs);
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(45, 168, 224, 0.2);
}

.job-description {
    font-size: var(--font-sm);
    color: var(--text-main);
    line-height: 1.6;
    margin: 0;
}

.job-meta {
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.job-card-footer {
    border-top: 1px solid var(--border);
    padding-top: 16px;
    margin-top: auto;
}

.job-time {
    font-size: var(--font-xs);
}

.btn-apply-job {
    display: inline-block;
    background-color: var(--primary);
    color: #FFFFFF;
    font-size: var(--font-sm);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-apply-job:hover {
    background-color: var(--primary-dark);
    color: #FFFFFF;
}

/* Horizontal Job Card (Home Page Featured Jobs) */
.job-card-modern-horizontal {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.job-card-modern-horizontal:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.company-logo-wrapper-large {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #F4F9FD;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border);
    margin-right: 20px;
}

.company-logo-large {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
}

.company-logo-placeholder-large {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 32px;
}

.job-card-content {
    padding-left: 0;
}

.job-title-horizontal {
    font-size: var(--font-xl);
    font-weight: 700;
    color: var(--brand-dark);
    line-height: 1.3;
    margin: 0;
}

.job-title-horizontal a:hover {
    color: var(--primary);
}

.company-name {
    font-size: var(--font-base);
    color: var(--text-main);
    margin: 0;
}