/* ============================================
   TFG STAFFING - COMPLETE REDESIGN
   Premium Government Contractor Theme
   ============================================

   DESIGN SYSTEM:
   - Navy:       #0a1628
   - Navy Light: #1a2d4a
   - Gold:       #c5a44a
   - Gold Light: #d4b86a
   - White:      #ffffff
   - Light Gray: #f8fafc
   - Text Muted: #64748b
   - Success:    #10b981
   - Danger:     #ef4444

   ============================================ */

/* ============================================
   1. CSS VARIABLES & FONTS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --navy: #0a1628;
    --navy-light: #1a2d4a;
    --navy-dark: #060d18;
    --gold: #c5a44a;
    --gold-light: #d4b86a;
    --gold-dark: #a8893d;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --success: #10b981;
    --danger: #ef4444;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* ============================================
   2. BASE TYPOGRAPHY
   ============================================ */
* {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    color: #0a1628 !important;
    line-height: 1.6 !important;
    background-color: #ffffff !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 700 !important;
    color: #0a1628 !important;
    line-height: 1.3 !important;
}

p {
    color: #64748b !important;
    line-height: 1.7 !important;
}

a {
    color: #0a1628 !important;
    transition: all 0.2s ease !important;
}

a:hover {
    color: #c5a44a !important;
    text-decoration: none !important;
}

/* ============================================
   3. HEADER
   ============================================ */
.header-area,
#sticky-header,
.main-menu-area {
    background: #ffffff !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
}

.header-transparent {
    background: transparent !important;
}

#sticky-header.sticky {
    background: #ffffff !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
}

/* Logo */
.logo img {
    max-height: 50px !important;
}

.logo-black {
    color: #0a1628 !important;
    font-weight: 700 !important;
    font-size: 1.5rem !important;
}

/* Nav Links */
.main-menu nav ul li a,
.main-menu ul li a,
#mobile-menu ul li a {
    color: #0a1628 !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    padding: 10px 18px !important;
    transition: all 0.2s ease !important;
}

.main-menu nav ul li a:hover,
.main-menu ul li a:hover,
#mobile-menu ul li a:hover {
    color: #c5a44a !important;
}

.main-menu nav ul li.active > a,
.main-menu ul li.active > a,
#mobile-menu ul li.active > a {
    color: #c5a44a !important;
}

/* Header Buttons */
.header-btn .h-btn,
.hedder-button .h-btn,
a.h-btn {
    background: #0a1628 !important;
    color: #ffffff !important;
    padding: 12px 28px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    border: 2px solid #0a1628 !important;
    transition: all 0.2s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.header-btn .h-btn:hover,
.hedder-button .h-btn:hover,
a.h-btn:hover {
    background: #1a2d4a !important;
    border-color: #1a2d4a !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(10, 22, 40, 0.3) !important;
}

.header-btn .h-btn.h-btn-green,
.hedder-button .h-btn.h-btn-green,
a.h-btn.h-btn-green {
    background: #c5a44a !important;
    color: #0a1628 !important;
    border: 2px solid #c5a44a !important;
}

.header-btn .h-btn.h-btn-green:hover,
.hedder-button .h-btn.h-btn-green:hover,
a.h-btn.h-btn-green:hover {
    background: #d4b86a !important;
    border-color: #d4b86a !important;
    color: #0a1628 !important;
}

/* Header button icons */
.h-btn i {
    font-size: 0.9rem !important;
}

/* ============================================
   4. HERO SECTION
   ============================================ */
.hero-area,
.hero-slider,
.single-slider {
    background: linear-gradient(135deg, #0a1628 0%, #1a2d4a 50%, #0a1628 100%) !important;
}

.single-slider.slider-height {
    min-height: 700px !important;
}

/* Hero shapes */
.hero-shape .circle {
    background: #c5a44a !important;
    opacity: 0.1 !important;
}

.hero-shape .circle-yellow {
    background: #c5a44a !important;
    opacity: 0.08 !important;
}

.hero-shape .shape-plus {
    color: #c5a44a !important;
    opacity: 0.15 !important;
}

/* SDVOSB Badge */
.sdvosb-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    background: rgba(197, 164, 74, 0.1) !important;
    border: 2px solid #c5a44a !important;
    border-radius: 50px !important;
    padding: 10px 20px !important;
    margin-bottom: 24px !important;
}

.sdvosb-badge i {
    color: #c5a44a !important;
    font-size: 1.1rem !important;
}

.sdvosb-badge span {
    color: #c5a44a !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.3px !important;
}

/* Hero Headline */
.hero-slider-caption h2 {
    color: #ffffff !important;
    font-size: 4rem !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    margin-bottom: 20px !important;
}

.hero-slider-caption h2 span {
    color: #c5a44a !important;
}

/* Hero Subtitle */
.hero-subtitle {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 1.15rem !important;
    font-weight: 500 !important;
    margin-bottom: 35px !important;
    letter-spacing: 0.5px !important;
}

/* ============================================
   HERO SEARCH FORM - COMPLETE RESET
   ============================================ */

.job-hero-form {
    max-width: 600px !important;
    margin: 0 !important;
    padding: 0 !important;
    background: none !important;
}

.job-hero-form form {
    display: flex !important;
    align-items: center !important;
    background: #ffffff !important;
    border-radius: 60px !important;
    padding: 6px !important;
    padding-left: 20px !important;
    gap: 0 !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2) !important;
}

.job-hero-form form select {
    border: none !important;
    background: transparent !important;
    padding: 12px 8px !important;
    font-size: 15px !important;
    color: #333 !important;
    outline: none !important;
    cursor: pointer !important;
    min-width: 130px !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

.job-hero-form form .job-input {
    border-left: 1px solid #e0e0e0 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
}

.job-hero-form form .job-input input {
    border: none !important;
    background: transparent !important;
    padding: 12px 16px !important;
    font-size: 15px !important;
    outline: none !important;
    width: 120px !important;
}

.job-hero-form form button {
    background: #ffffff !important;
    color: #0a1628 !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 12px 24px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-left: auto !important;
}

.job-hero-form form button:hover {
    background: #f0f0f0 !important;
}

.job-hero-form form button i {
    font-size: 14px !important;
}

/* Hero Profile */
.hero-profile h3 {
    color: #ffffff !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    opacity: 0.9 !important;
}

/* ============================================
   5. SECTION TITLES
   ============================================ */
.section-title h2 {
    color: #0a1628 !important;
    font-size: 2.25rem !important;
    font-weight: 800 !important;
    margin-bottom: 16px !important;
}

.section-title p {
    color: #64748b !important;
    font-size: 1rem !important;
    max-width: 600px !important;
}

/* ============================================
   6. CATEGORIES SECTION
   ============================================ */
.categories-area {
    background: #f8fafc !important;
}

.categories-wrapper {
    background: #ffffff !important;
    border-radius: 16px !important;
    padding: 30px !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid #e2e8f0 !important;
    transition: all 0.3s ease !important;
}

.categories-wrapper:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1) !important;
    border-color: #c5a44a !important;
}

/* Category Icon */
.categories-icon {
    width: 70px !important;
    height: 70px !important;
    background: linear-gradient(135deg, #c5a44a 0%, #d4b86a 100%) !important;
    border-radius: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-right: 20px !important;
}

.categories-icon i {
    color: #0a1628 !important;
    font-size: 1.75rem !important;
}

/* Category Text */
.categories-text h4 {
    color: #0a1628 !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    margin-bottom: 5px !important;
}

.categories-text span {
    color: #64748b !important;
    font-size: 0.9rem !important;
}

/* Category Arrow Button */
.cat-button a {
    width: 45px !important;
    height: 45px !important;
    background: #f8fafc !important;
    border-radius: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #0a1628 !important;
    transition: all 0.2s ease !important;
}

.cat-button a:hover {
    background: #c5a44a !important;
    color: #0a1628 !important;
    transform: translateX(5px) !important;
}

/* ============================================
   7. JOB CARDS
   ============================================ */
.job-area {
    background: #ffffff !important;
}

.job-wrapper {
    background: #ffffff !important;
    border-radius: 16px !important;
    padding: 30px !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid #e2e8f0 !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

.job-wrapper:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1) !important;
}

/* Job Tags */
.job-tag {
    display: flex !important;
    gap: 10px !important;
    margin-bottom: 20px !important;
}

.job-tag span {
    padding: 6px 14px !important;
    border-radius: 50px !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

/* CONTRACT badge - Navy */
.job-tag .tag-normal {
    background: #0a1628 !important;
    color: #ffffff !important;
}

/* URGENT badge - Red */
.job-tag .tag-urgent {
    background: #ef4444 !important;
    color: #ffffff !important;
}

/* Job Company Info */
.job-instructor-profile {
    display: flex !important;
    align-items: center !important;
    margin-bottom: 20px !important;
}

.job-instructor-img {
    width: 50px !important;
    height: 50px !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    margin-right: 15px !important;
    background: #f8fafc !important;
}

.job-instructor-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}

.job-instructor-title h4 {
    color: #0a1628 !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    margin-bottom: 4px !important;
}

.job-instructor-title h4 a {
    color: #0a1628 !important;
}

.job-instructor-title h4 a:hover {
    color: #c5a44a !important;
}

.job-instructor-title span {
    color: #64748b !important;
    font-size: 0.85rem !important;
}

.job-instructor-title span i {
    color: #c5a44a !important;
    margin-right: 5px !important;
}

/* Job Content */
.job-content h4 {
    margin-bottom: 10px !important;
}

.job-content h4 a {
    color: #0a1628 !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
}

.job-content h4 a:hover {
    color: #c5a44a !important;
}

.job-content p {
    color: #64748b !important;
    font-size: 0.9rem !important;
    margin-bottom: 15px !important;
}

/* Job Salary & Details */
.job-salary {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding-top: 15px !important;
    border-top: 1px solid #e2e8f0 !important;
}

.job-salary span {
    color: #10b981 !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
}

.job-salary span i {
    margin-right: 5px !important;
}

.job-salary a {
    color: #c5a44a !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
}

.job-salary a:hover {
    color: #0a1628 !important;
}

.job-salary a i {
    transition: transform 0.2s ease !important;
}

.job-salary a:hover i {
    transform: translateX(3px) !important;
}

/* Background icon in job card */
.job-wrapper .banck-icon {
    position: absolute !important;
    right: -20px !important;
    bottom: -20px !important;
    opacity: 0.03 !important;
}

.job-wrapper .banck-icon i {
    font-size: 150px !important;
    color: #0a1628 !important;
}

/* ============================================
   8. BUTTONS - GLOBAL STYLES
   ============================================ */
.b-btn,
button.b-btn,
a.b-btn {
    background: #0a1628 !important;
    color: #ffffff !important;
    padding: 14px 32px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    border: 2px solid #0a1628 !important;
    transition: all 0.2s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.b-btn:hover,
button.b-btn:hover,
a.b-btn:hover {
    background: #1a2d4a !important;
    border-color: #1a2d4a !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(10, 22, 40, 0.3) !important;
}

/* Gold Button */
.b-btn-green,
.b-btn.b-btn-green,
button.b-btn-green,
a.b-btn-green {
    background: #c5a44a !important;
    color: #0a1628 !important;
    border-color: #c5a44a !important;
}

.b-btn-green:hover,
.b-btn.b-btn-green:hover,
button.b-btn-green:hover,
a.b-btn-green:hover {
    background: #d4b86a !important;
    border-color: #d4b86a !important;
    color: #0a1628 !important;
}

/* Outline Button */
.b-btn-grey,
.b-btn.b-btn-grey,
a.b-btn-grey {
    background: transparent !important;
    color: #0a1628 !important;
    border: 2px solid #0a1628 !important;
}

.b-btn-grey:hover,
.b-btn.b-btn-grey:hover,
a.b-btn-grey:hover {
    background: #0a1628 !important;
    color: #ffffff !important;
}

/* White Button */
.b-btn-white,
.b-btn.b-btn-white {
    background: #ffffff !important;
    color: #0a1628 !important;
    border-color: #ffffff !important;
}

.b-btn-white:hover,
.b-btn.b-btn-white:hover {
    background: #c5a44a !important;
    border-color: #c5a44a !important;
    color: #0a1628 !important;
}

/* ============================================
   9. TESTIMONIALS
   ============================================ */
.testimonial-area {
    background: #f8fafc !important;
}

.testimonial-wrapper {
    background: #ffffff !important;
    border-radius: 16px !important;
    padding: 40px !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
}

.test-icon i {
    color: #c5a44a !important;
    font-size: 2rem !important;
}

.test-text {
    color: #64748b !important;
    font-size: 1rem !important;
    line-height: 1.8 !important;
}

.client-say-content h4 {
    color: #0a1628 !important;
    font-weight: 700 !important;
}

.client-say-content span {
    color: #c5a44a !important;
}

/* ============================================
   10. SERVICES / HOW TO GET STARTED
   ============================================ */
.services__area {
    background: #ffffff !important;
}

.services__item {
    background: #f8fafc !important;
    border-radius: 16px !important;
    padding: 40px 30px !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    border: 1px solid transparent !important;
}

.services__item:hover {
    background: #ffffff !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1) !important;
    border-color: #c5a44a !important;
}

.services__icon {
    margin-bottom: 25px !important;
}

.services__icon img {
    width: 80px !important;
    height: 80px !important;
}

.services__content h2 {
    color: #0a1628 !important;
    font-size: 1.35rem !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
}

.services__content p {
    color: #64748b !important;
    font-size: 0.95rem !important;
    margin-bottom: 25px !important;
}

/* ============================================
   11. CTA SECTION
   ============================================ */
.cta-area {
    background: linear-gradient(135deg, #0a1628 0%, #1a2d4a 100%) !important;
}

.cta-text h2 {
    color: #ffffff !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
}

.cta-text h2 b {
    color: #c5a44a !important;
}

.cta-btn .b-btn {
    background: #c5a44a !important;
    color: #0a1628 !important;
    border-color: #c5a44a !important;
}

.cta-btn .b-btn:hover {
    background: #ffffff !important;
    color: #0a1628 !important;
    border-color: #ffffff !important;
}

/* ============================================
   12. BLOG SECTION
   ============================================ */
.blog__area-2 {
    background: #ffffff !important;
}

.blog__item-2 {
    background: #ffffff !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid #e2e8f0 !important;
    transition: all 0.3s ease !important;
}

.blog__item-2:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1) !important;
}

.blog__thumb img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
}

.blog__content-2 {
    padding: 25px !important;
}

.blog__date {
    background: #c5a44a !important;
    color: #0a1628 !important;
    border-radius: 12px !important;
    padding: 10px !important;
    text-align: center !important;
}

.blog__date h4,
.blog__date span {
    color: #0a1628 !important;
}

.blog__meta span {
    color: #64748b !important;
    font-size: 0.85rem !important;
}

.blog__meta span a {
    color: #64748b !important;
}

.blog__meta span a:hover {
    color: #c5a44a !important;
}

.blog__content-2 h4 a {
    color: #0a1628 !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
}

.blog__content-2 h4 a:hover {
    color: #c5a44a !important;
}

/* ============================================
   13. BRAND/PARTNERS
   ============================================ */
.brand__area {
    background: #f8fafc !important;
}

.brand__item img {
    filter: grayscale(100%) !important;
    opacity: 0.5 !important;
    transition: all 0.3s ease !important;
}

.brand__item:hover img {
    filter: grayscale(0%) !important;
    opacity: 1 !important;
}

/* ============================================
   14. FOOTER
   ============================================ */
footer,
.footer__area {
    background: #0a1628 !important;
}

.footer__top {
    background: #0a1628 !important;
}

.footer__bg {
    opacity: 0.05 !important;
}

/* Footer Widget Title */
.footer__widget-title h3 {
    color: #ffffff !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    margin-bottom: 25px !important;
    position: relative !important;
    padding-bottom: 15px !important;
}

.footer__widget-title h3::after {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 40px !important;
    height: 3px !important;
    background: #c5a44a !important;
    border-radius: 2px !important;
}

/* Footer Text */
.footer__widget-content p {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.95rem !important;
    line-height: 1.8 !important;
}

/* Footer Links */
.footer__link ul li {
    margin-bottom: 12px !important;
}

.footer__link ul li a {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.95rem !important;
    transition: all 0.2s ease !important;
}

.footer__link ul li a:hover {
    color: #c5a44a !important;
    padding-left: 5px !important;
}

/* Footer Stats */
.footer__info-item {
    display: flex !important;
    align-items: center !important;
}

.footer__info-item .icon {
    margin-right: 15px !important;
}

.footer__info-item .icon i {
    color: #c5a44a !important;
    font-size: 2rem !important;
}

.footer__info-item .text h4 {
    color: #ffffff !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 0 !important;
}

.footer__info-item .text span {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.85rem !important;
}

/* Footer Subscribe */
.footer__subscribe p {
    color: rgba(255, 255, 255, 0.7) !important;
    margin-bottom: 20px !important;
}

.footer__subscribe-form input {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 12px !important;
    padding: 14px 18px !important;
    color: #ffffff !important;
    width: 100% !important;
    margin-bottom: 15px !important;
}

.footer__subscribe-form input::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

.footer__subscribe-form .b-btn {
    width: 100% !important;
    justify-content: center !important;
}

/* Footer Copyright */
.footer__copyright {
    background: #060d18 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.footer__copyright-text p {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.9rem !important;
}

.footer__copyright-text p a {
    color: #c5a44a !important;
}

/* Footer Social */
.footer__social ul {
    display: flex !important;
    gap: 10px !important;
}

.footer__social ul li a {
    width: 42px !important;
    height: 42px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s ease !important;
}

.footer__social ul li a i {
    color: #ffffff !important;
    font-size: 1rem !important;
}

.footer__social ul li a:hover {
    background: #c5a44a !important;
}

.footer__social ul li a:hover i {
    color: #0a1628 !important;
}

/* Hide duplicate icons */
.footer__social ul li a i:last-child,
.theme-social ul li a i:last-child {
    display: none !important;
}

/* ============================================
   15. REGISTRATION MODAL
   ============================================ */
.register__modal-area .modal-content {
    border-radius: 20px !important;
    border: none !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25) !important;
    overflow: hidden !important;
    max-height: 80vh !important;
}

.register__modal-area .modal-body {
    padding: 0 !important;
    overflow-y: auto !important;
    max-height: calc(80vh - 20px) !important;
}

.register__modal {
    padding: 30px !important;
}

/* Modal Tabs */
.register__nav {
    margin-bottom: 20px !important;
}

.register__nav ul {
    display: flex !important;
    gap: 0 !important;
    border-bottom: none !important;
}

.register__nav .nav-item {
    flex: 1 !important;
}

/* Inactive Tab - Gold */
.register__nav .nav-link,
.register__nav .nav-pills .nav-link,
.register__nav ul li a {
    background: #c5a44a !important;
    color: #0a1628 !important;
    padding: 12px 20px !important;
    border-radius: 10px 10px 0 0 !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    transition: all 0.2s ease !important;
    border: none !important;
}

.register__nav .nav-link:hover:not(.active) {
    background: #d4b86a !important;
}

/* Active Tab - Navy */
.register__nav .nav-link.active,
.register__nav .nav-pills .nav-link.active,
.register__nav ul li a.active {
    background: #0a1628 !important;
    color: #ffffff !important;
}

.register__nav .nav-link i {
    font-size: 1rem !important;
}

/* Form Inputs */
.register__input {
    position: relative !important;
    margin-bottom: 12px !important;
}

.register__input input {
    width: 100% !important;
    background: #f8fafc !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 10px !important;
    padding: 12px 16px 12px 44px !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    color: #0a1628 !important;
    transition: all 0.2s ease !important;
}

.register__input input:focus {
    outline: none !important;
    border-color: #c5a44a !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(197, 164, 74, 0.1) !important;
}

.register__input input::placeholder {
    color: #94a3b8 !important;
}

/* Form Icons - Navy */
.register__input i {
    position: absolute !important;
    left: 14px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: #0a1628 !important;
    font-size: 0.9rem !important;
    opacity: 0.6 !important;
}

.register__input:focus-within i {
    opacity: 1 !important;
    color: #0a1628 !important;
}

/* Email Notification */
.register__mail {
    margin: 14px 0 !important;
}

.register__mail p {
    color: #64748b !important;
    font-size: 0.85rem !important;
    margin-bottom: 10px !important;
}

.register__mail span {
    color: #0a1628 !important;
    font-weight: 500 !important;
    margin-right: 20px !important;
}

.register__mail input[type="radio"] {
    accent-color: #c5a44a !important;
}

/* Create Account Button - Gold Pill */
.register__btn {
    margin-bottom: 20px !important;
}

.register__btn .b-btn,
.register__btn button {
    background: #c5a44a !important;
    color: #0a1628 !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 14px 28px !important;
    font-weight: 700 !important;
    width: 100% !important;
    justify-content: center !important;
    transition: all 0.2s ease !important;
}

.register__btn .b-btn:hover,
.register__btn button:hover {
    background: #d4b86a !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 16px rgba(197, 164, 74, 0.3) !important;
}

/* OR Divider */
.register__or {
    text-align: center !important;
    margin-top: 18px !important;
}

.register__or-title {
    position: relative !important;
    margin-bottom: 15px !important;
}

.register__or-title::before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: 50% !important;
    height: 1px !important;
    background: #e2e8f0 !important;
}

.register__or-title h3 {
    display: inline-block !important;
    background: #ffffff !important;
    padding: 0 15px !important;
    position: relative !important;
    color: #94a3b8 !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

/* Social Login Buttons */
.register__option ul,
.register__option.theme-social ul {
    display: flex !important;
    justify-content: center !important;
    gap: 15px !important;
    padding: 0 !important;
    margin: 0 !important;
}

.register__option ul li,
.register__option.theme-social ul li {
    list-style: none !important;
}

.register__option ul li a,
.register__option.theme-social ul li a {
    width: 54px !important;
    height: 54px !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s ease !important;
}

/* Google Button - Navy */
.register__option ul li a.gp,
.register__option.theme-social ul li a.gp {
    background: #0a1628 !important;
}

.register__option ul li a.gp:hover,
.register__option.theme-social ul li a.gp:hover {
    background: #1a2d4a !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 12px rgba(10, 22, 40, 0.3) !important;
}

/* Facebook Button - Blue */
.register__option ul li a.fb,
.register__option.theme-social ul li a.fb {
    background: #1877f2 !important;
}

.register__option ul li a.fb:hover,
.register__option.theme-social ul li a.fb:hover {
    background: #1664d9 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 12px rgba(24, 119, 242, 0.3) !important;
}

/* Social Icons */
.register__option ul li a i,
.register__option.theme-social ul li a i {
    color: #ffffff !important;
    font-size: 1.25rem !important;
}

.register__option ul li a i:last-child,
.register__option.theme-social ul li a i:last-child {
    display: none !important;
}

/* ============================================
   16. UPLOAD RESUME MODAL
   ============================================ */
#exampleModal .modal-content {
    border-radius: 16px !important;
    border: none !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25) !important;
}

#exampleModal .modal-header {
    border-bottom: 1px solid #e2e8f0 !important;
    padding: 20px 25px !important;
}

#exampleModal .modal-title {
    color: #0a1628 !important;
    font-weight: 700 !important;
}

#exampleModal .modal-body {
    padding: 25px !important;
}

#exampleModal .form-control-file {
    background: #f8fafc !important;
    border: 2px dashed #e2e8f0 !important;
    border-radius: 12px !important;
    padding: 30px !important;
    width: 100% !important;
}

#exampleModal .modal-footer {
    border-top: 1px solid #e2e8f0 !important;
    padding: 15px 25px !important;
}

#exampleModal .btn {
    border-radius: 50px !important;
    padding: 10px 24px !important;
    font-weight: 600 !important;
}

#exampleModal .btn-secondary {
    background: #0a1628 !important;
    border-color: #0a1628 !important;
    color: #ffffff !important;
}

#exampleModal .btn-primary {
    background: #c5a44a !important;
    border-color: #c5a44a !important;
    color: #0a1628 !important;
}

#exampleModal .btn-primary:hover {
    background: #d4b86a !important;
    border-color: #d4b86a !important;
}

/* ============================================
   17. COUNTER/FACTS SECTION
   ============================================ */
.counter-area {
    background: linear-gradient(135deg, #0a1628 0%, #1a2d4a 100%) !important;
}

.single-fact i {
    color: #c5a44a !important;
    font-size: 2.5rem !important;
    margin-bottom: 15px !important;
}

.single-fact .fact-text h2 {
    color: #ffffff !important;
    font-size: 2.5rem !important;
    font-weight: 800 !important;
}

.single-fact .fact-text span {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* ============================================
   18. SIDEBAR (Mobile Menu)
   ============================================ */
.sidebar__area {
    background: #0a1628 !important;
}

.sidebar__close-btn span {
    color: #ffffff !important;
}

.sidebar__content .h-btn {
    background: #c5a44a !important;
    color: #0a1628 !important;
    border-color: #c5a44a !important;
}

.sidebar__content .h-btn.h-btn-2 {
    background: transparent !important;
    border: 2px solid #ffffff !important;
    color: #ffffff !important;
}

.mobile-menu ul li a {
    color: #ffffff !important;
}

.mobile-menu ul li a:hover {
    color: #c5a44a !important;
}

/* ============================================
   19. NICE SELECT DROPDOWN
   ============================================ */
.nice-select {
    border-radius: 12px !important;
    border: none !important;
    font-weight: 500 !important;
}

.nice-select .list {
    border-radius: 12px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
    border: none !important;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
    background: #c5a44a !important;
    color: #0a1628 !important;
}

/* ============================================
   20. PRELOADER
   ============================================ */
#preloader {
    background: #0a1628 !important;
}

.preloader span {
    background: #c5a44a !important;
}

/* ============================================
   21. SCROLL TO TOP
   ============================================ */
#scrollUp {
    background: #0a1628 !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 12px rgba(10, 22, 40, 0.3) !important;
}

#scrollUp:hover {
    background: #c5a44a !important;
}

/* ============================================
   22. ALERTS
   ============================================ */
.alert {
    border-radius: 12px !important;
    border: none !important;
}

.alert-danger {
    background: #fef2f2 !important;
    color: #991b1b !important;
}

.alert-success {
    background: #f0fdf4 !important;
    color: #166534 !important;
}

/* ============================================
   23. RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 1199px) {
    .hero-slider-caption h2 {
        font-size: 3.5rem !important;
    }
}

@media (max-width: 991px) {
    .hero-slider-caption h2 {
        font-size: 2.75rem !important;
    }

    .hero-subtitle {
        font-size: 1rem !important;
    }

    .section-title h2 {
        font-size: 1.75rem !important;
    }

    .job-hero-form {
        max-width: 100% !important;
    }

    .job-hero-form form {
        flex-direction: column !important;
        border-radius: 20px !important;
        padding: 16px !important;
        gap: 12px !important;
    }

    .job-hero-form form select {
        width: 100% !important;
        background: #f8fafc !important;
        border-radius: 12px !important;
        padding: 14px 16px !important;
    }

    .job-hero-form form .job-input {
        width: 100% !important;
        border-left: none !important;
    }

    .job-hero-form form .job-input input {
        width: 100% !important;
        background: #f8fafc !important;
        border-radius: 12px !important;
        padding: 14px 16px !important;
    }

    .job-hero-form form button {
        width: 100% !important;
        margin-left: 0 !important;
        justify-content: center !important;
    }
}

@media (max-width: 767px) {
    .hero-slider-caption h2 {
        font-size: 2rem !important;
    }

    .hero-subtitle {
        font-size: 0.9rem !important;
        margin-bottom: 25px !important;
    }

    .sdvosb-badge {
        padding: 8px 16px !important;
    }

    .sdvosb-badge span {
        font-size: 0.75rem !important;
    }

    .register__modal {
        padding: 25px !important;
    }

    .register__nav .nav-link {
        padding: 12px 16px !important;
        font-size: 0.85rem !important;
    }
}
