/* Universal Styles */
html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #343a40;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3 {
    color: #212529;
}

/* --- Color Variables (Logo-based Professional Palette) --- */
:root {
    --primary-color: #0d4f8c;        /* Deep Professional Blue */
    --primary-dark: #0a3d6f;         /* Darker Blue */
    --primary-light: #1a6bb3;        /* Lighter Blue */
    --accent-color: #fa314a;        /* Vibrant Red/Coral Accent */
    --accent-dark: #d6283a;          /* Darker Accent */
    --accent-light: #ff5a6f;         /* Lighter Accent */
    --success-color: #28a745;        /* Green for success states */
    --text-dark: #212529;            /* Dark text */
    --text-medium: #495057;          /* Medium text */
    --text-light: #6c757d;           /* Light text */
    --bg-light: #f8f9fa;             /* Light background */
    --border-color: #dee2e6;        /* Border color */
}

/* --- Header & Navigation --- */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(13, 79, 140, 0.06);
    padding: 10px 24px; /* reduced vertical padding to slim header */
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    text-decoration: none;
    display: inline-block;
}

.logo-img {
    height: 64px; /* balanced header logo height */
    width: auto;
    max-width: 280px; /* prevent overly wide logos */
    object-fit: contain;
    transition: transform 0.15s ease, filter 0.15s ease;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
}

.logo-img:hover { transform: translateY(-2px); }

@media (min-width: 1400px) {
    .logo-img { height: 72px; max-width: 320px; }
}

@media (max-width: 900px) {
    .logo-img { height: 54px; max-width: 220px; }
}

@media (max-width: 480px) {
    .logo-img { height: 44px; max-width: 140px; }
}

/* Testimonials styles */
.testimonials-hero { text-align: center; margin: 30px 0 18px; }
.testimonials-hero h1 { font-size: 2rem; color: var(--primary-dark); margin-bottom:6px; }
.testimonials-hero .lead { color: var(--text-medium); margin-bottom: 18px; }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 8px 28px rgba(20,30,60,0.06);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.testimonial-card .avatar { width:56px; height:56px; border-radius:50%; overflow:hidden; }
.testimonial-card .avatar img { width:100%; height:100%; object-fit:cover; display:block; }
.testimonial-card blockquote { margin:0; font-style:normal; color:var(--text-dark); line-height:1.5; }
.testimonial-meta { margin-top:auto; }
.testimonial-meta strong { display:block; }
.testimonial-meta .muted { font-size:0.9rem; color:var(--text-medium); }

@media (max-width: 1000px) {
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .testimonials-grid { grid-template-columns: 1fr; }
}

/* Carousel styles for testimonials */
.testimonials-carousel { position: relative; max-width: 1100px; margin: 0 auto 40px; overflow: hidden; }
.testimonial-track { display: flex; transition: transform 0.5s ease; will-change: transform; }
.testimonial-slide { min-width: 100%; box-sizing: border-box; padding: 12px; }

.testimonial-prev, .testimonial-next {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
    background: rgba(17,24,39,0.75); color: #fff; border: none; width:44px; height:44px; border-radius:50%;
    display:flex; align-items:center; justify-content:center; cursor:pointer; font-size:20px;
}
.testimonial-prev { left: 12px; }
.testimonial-next { right: 12px; }
.testimonial-prev:hover, .testimonial-next:hover { background: var(--primary-color); }

.testimonial-dots { display:flex; gap:8px; justify-content:center; margin-top:12px; }
.testimonial-dots .dot { width:10px; height:10px; border-radius:50%; background: rgba(0,0,0,0.2); border:none; cursor:pointer; }
.testimonial-dots .dot.active { background: var(--primary-color); }

/* When JS isn't available, fall back to grid view */
@media (min-width: 1001px) {
    .testimonials-grid { display: none; }
}

@media (max-width: 1000px) {
    .testimonials-grid { display: none; }
}

@media (max-width: 640px) {
    .testimonial-prev, .testimonial-next { width:36px; height:36px; font-size:16px; }
}

.logo .blue {
    color: var(--primary-color);
}

.logo .green {
    color: var(--accent-color);
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 30px;
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: #343a40;
    font-weight: 500;
    padding: 10px 0;
    transition: color 0.3s;
}

nav ul li a:hover,
nav ul li a.active,
nav ul li a.sub-active {
    color: var(--primary-color);
    position: relative;
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px 2px 0 0;
}

/* Dropdown Menu Styles */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(13, 79, 140, 0.15);
    list-style: none;
    padding: 10px 0;
    min-width: 180px;
    z-index: 1000;
    border-top: 3px solid var(--primary-color);
    border-radius: 0 0 8px 8px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content li {
    margin: 0;
}

.dropdown-content li a {
    padding: 10px 20px;
    display: block;
    white-space: nowrap;
    transition: background-color 0.2s, color 0.2s;
}

.dropdown-content li a:hover {
    background-color: rgba(13, 79, 140, 0.05);
    color: var(--primary-color);
}

.arrow {
    font-size: 0.7em;
    margin-left: 5px;
}

/* Captcha styles for contact form */
.captcha-row { display:flex; gap:12px; align-items:center; }
.captcha-question {
    display:inline-block;
    min-width:140px;
    text-align:center;
    font-weight:700;
    letter-spacing:3px;
    padding:10px 14px;
    border-radius:8px;
    background: linear-gradient(90deg, rgba(13,79,140,0.08), rgba(250,49,74,0.04));
    color: var(--primary-dark);
    box-shadow: 0 6px 18px rgba(13,79,140,0.06);
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 1.05rem;
}
.captcha-input { flex:1; padding:10px 12px; border-radius:8px; border:1px solid var(--border-color); }
.captcha-refresh { background: transparent; border: 1px dashed var(--primary-light); color: var(--primary-dark); padding:8px 10px; border-radius:8px; cursor:pointer; }
.captcha-refresh:hover { background: rgba(13,79,140,0.04); }


/* --- Main Content Layout --- */
main {
    padding: 20px 0;
}

.page-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Call-to-Action Button */
.cta-button, .apply-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(13, 79, 140, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.cta-button:hover, .apply-button:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(13, 79, 140, 0.4);
}


/* --- CAROUSEL STYLES --- */

.carousel-container {
    width: 100%;
    overflow: hidden; 
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out; 
}

.carousel-slide {
    flex: 0 0 100%; 
    height: 400px; 
    padding: 40px 50px; 
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

/* Style for slides without an image (content centered) */
.content-center {
    flex-direction: column;
    text-align: center;
    justify-content: center;
}
.content-center h1 {
    font-size: 3rem; 
}


/* Style for slides with an image (content split) */
.content-split {
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
}

.slide-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.content-split .slide-text h1, 
.content-split .slide-text p {
    text-align: left;
    margin-left: 0;
}

.slide-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.slide-image {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.carousel-slide h1 {
    font-size: 2.5rem; 
    margin-bottom: 15px;
    color: white; 
}


.carousel-slide p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 0 30px 0; 
    color: #e9ecef;
}

/* Slide Specific Backgrounds matching your brand colors */
.slide-blue {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.slide-green {
    background: linear-gradient(135deg, var(--success-color), #1e7e34);
}

.slide-grey {
    background: linear-gradient(135deg, #495057, #343a40);
}

/* Accent color slide */
.slide-orange { 
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
}

/* Navigation Dots */
/* --- HERO SLIDESHOW STYLES --- */
.hero-slideshow {
    width: 100vw;
    height: 600px;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    margin-left: calc(-50vw + 50%);
    left: 0;
    right: 0;
    background-color: #0d4f8c;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    background-color: #0d4f8c;
}

.slide {
    display: none !important;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-attachment: fixed;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-color: #0d4f8c;
}

.slide.active {
    display: block !important;
    opacity: 1;
    z-index: 10;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    max-width: 900px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 20;
    animation: slideIn 0.8s ease-in-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.slide-title {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.slide-text {
    font-size: 1.2rem;
    margin: 0 0 30px 0;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.slide-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    min-width: 150px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    box-shadow: 0 4px 12px rgba(13, 79, 140, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(13, 79, 140, 0.5);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.btn-large {
    padding: 14px 35px;
    font-size: 1rem;
    min-width: 160px;
}

/* Slide Indicators */
.slide-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 30;
}

.indicator {
    height: 12px;
    width: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.indicator.active {
    background-color: #ffffff;
    transform: scale(1.2);
}

.indicator:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Slideshow Navigation Arrows */
.slideshow-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 25;
    pointer-events: none;
}

.slide-nav-btn {
    pointer-events: all;
    background: rgba(255, 255, 255, 0.3);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-nav-btn:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.slide-nav-btn:active {
    background: rgba(255, 255, 255, 0.8);
}

/* --- Features Section --- */
.features {
    padding: 50px 20px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.feature-grid {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    flex-basis: 30%;
    padding: 20px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.feature-item h3 {
    color: var(--primary-color);
}

 

/* --- Contact Page Styles --- */
.contact-form-container {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: var(--primary-color);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    box-sizing: border-box;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(13, 79, 140, 0.1);
}

.contact-info p {
    font-size: 1.1em;
}

/* Contact page styles */
.contact-page .contact-card {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 32px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(20,30,60,0.08);
    padding: 28px;
    align-items: start;
}

.contact-page .contact-info { padding: 8px 12px; }
.contact-page .contact-info h2 { margin-top: 0; color: var(--primary-dark); }
.contact-page .contact-info .lead { color: var(--text-medium); margin-bottom:16px; }
.info-item { display:flex; gap:12px; margin:14px 0; align-items:flex-start; }
.info-item i { color: var(--primary-color); font-size:20px; min-width:28px; }
.info-item a { color: var(--primary-color); text-decoration: none; }

.contact-form-wrapper { padding: 8px 12px; }
.contact-form .form-row { display:flex; gap:16px; margin-bottom:14px; }
.contact-form .form-row .form-group { flex:1; display:flex; flex-direction:column; }
.contact-form .form-row .form-group.full { flex-basis:100%; }
.contact-form label { font-weight:600; margin-bottom:6px; color:var(--text-dark); }
.contact-form .form-control { padding:12px 14px; border:1px solid var(--border-color); border-radius:8px; font-size:0.98rem; transition:box-shadow .15s, border-color .15s; background:#fff; }
.contact-form .form-control:focus { outline:none; border-color:var(--primary-color); box-shadow:0 6px 18px rgba(13,79,140,0.08); }
.contact-form .form-control::placeholder { color:#9aa4ae; }
.contact-form .invalid-feedback { color:#e74c3c; font-size:0.9rem; margin-top:6px; display:none; }
.contact-form .form-control.invalid + .invalid-feedback { display:block; }

.contact-form .form-actions { display:flex; gap:12px; align-items:center; margin-top:8px; }
.form-status { color: var(--text-medium); font-size:0.95rem; }

@media (max-width: 900px) {
    .contact-page .contact-card { grid-template-columns: 1fr; }
    .contact-form .form-row { flex-direction:column; }
}

/* Form Controls Styling */
.form-control {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    box-sizing: border-box;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(13, 79, 140, 0.1);
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    box-shadow: 0 4px 12px rgba(13, 79, 140, 0.3);
    position: relative;
    z-index: 12;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(13, 79, 140, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    box-shadow: none;
    position: relative;
    z-index: 12;
}

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

.btn-success {
    background: linear-gradient(135deg, var(--success-color), #1e7e34);
    color: white;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.btn-success:hover {
    background: linear-gradient(135deg, #1e7e34, #155724);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(40, 167, 69, 0.4);
}

/* --- Mission Page Styles --- */
.mission-vision-container {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.mission-statement, .vision-statement {
    flex: 1;
    padding: 30px;
    border-radius: 8px;
}

.mission-statement {
    background: linear-gradient(135deg, rgba(13, 79, 140, 0.05), rgba(13, 79, 140, 0.1)); 
    border-left: 5px solid var(--primary-color);
}

.vision-statement {
    background: linear-gradient(135deg, rgba(250, 49, 74, 0.05), rgba(250, 49, 74, 0.1)); 
    border-left: 5px solid var(--accent-color);
}

/* --- Footer --- */
footer {
    background-color: #343a40;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

/* --- Media Queries (Responsiveness) --- */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
        padding: 15px 20px;
    }
    nav ul {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        margin-top: 10px;
    }
    nav ul li {
        margin: 5px 0;
    }
    .dropdown-content {
        position: static;
        width: 100%;
        border-top: none;
    }
    
    .carousel-slide {
        height: auto; 
        min-height: 300px;
        flex-direction: column;
        padding: 30px 20px;
    }
    
    .content-split {
        flex-direction: column; /* Stack content vertically on mobile */
    }

    .slide-text, .slide-image-wrapper {
        align-items: center;
        text-align: center;
        width: 100%;
    }
    .content-split .slide-text h1, 
    .content-split .slide-text p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .slide-image {
        max-height: 200px; /* Limit image size on mobile */
        margin-top: 10px;
    }
    
    .content-center h1 {
        font-size: 2rem;
    }
    
    .feature-grid, .mission-vision-container {
        flex-direction: column;
    }
    .job-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .apply-button {
        margin-top: 15px;
    }
}
/* Jobs banner */
.jobs-banner { width: 100%; margin: 18px 0 28px 0; border-radius: 10px; overflow: hidden; box-shadow: 0 8px 20px rgba(20,30,60,0.06); }
.jobs-banner-img { display:block; width:100%; height:260px; object-fit:cover; object-position:center; }

@media (max-width: 900px) {
    .jobs-banner-img { height:180px; }
}

@media (max-width: 480px) {
    .jobs-banner-img { height:140px; }
}

/* Jobs hero variant: flexible background used on jobs listing page */
.page-hero.jobs-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 320px;
    display: flex;
    align-items: center;
    color: #ffffff;
    position: relative;
}
.page-hero.jobs-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13,79,140,0.55), rgba(13,79,140,0.45));
    z-index: 1;
}
.page-hero.jobs-hero .container { position: relative; z-index: 2; }
.page-hero.jobs-hero .page-subtitle, .page-hero.jobs-hero h1 { color: #fff; text-shadow: 0 4px 18px rgba(0,0,0,0.45); }

@media (max-width: 900px) {
    .page-hero.jobs-hero { min-height: 220px; }
}

@media (max-width: 480px) {
    .page-hero.jobs-hero { min-height: 160px; padding: 20px 0; }
    .page-hero.jobs-hero h1 { font-size: 1.6rem; }
}
/* --- NEW FOOTER STYLES (Matching Image 69aa05, but with Gray Background) --- */

.site-footer {
    background-color: #495057; /* Medium Dark Gray */
    color: #ffffff;
    padding: 40px 0 20px 0;
    font-size: 0.95rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 30px;
}

.footer-column {
    flex: 1;
    min-width: 180px;
    margin: 15px 10px;
}

.footer-column h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 5px;
}

/* Logo Column Styling */
.logo-column {
    max-width: 250px;
}
.footer-logo img {
    height: 50px; 
    margin-bottom: 5px;
}
.trusted-text {
    font-size: 0.8rem;

}

/* --- Cookie Consent Banner --- */
.cookie-consent-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(33,37,41,0.95);
    color: #fff;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 1100;
    max-width: 920px;
    width: calc(100% - 40px);
}

.cookie-consent-banner.hidden { display: none; }

.cookie-consent-inner { display:flex; align-items:center; gap:16px; justify-content:space-between; flex-wrap:wrap; }
.cookie-consent-inner p { margin:0; font-size:0.95rem; color: #f1f3f5; }
.cookie-consent-inner a { color: var(--primary-light); text-decoration:underline; }
.cookie-actions { display:flex; gap:10px; }
.cookie-actions .btn { min-width: 110px; }

@media (max-width: 600px) {
    .cookie-consent-inner { flex-direction:column; align-items:stretch; }
    .cookie-actions { justify-content:flex-end; width:100%; }
}
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.4;
    text-transform: uppercase;
}

/* Links and Contacts */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #f0f0f0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-light);
}

/* Contact Details */
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 10px;
}
.contact-item i {
    color: var(--primary-light);
    font-size: 1.1rem;
    margin-top: 2px;
}
.address-item i {
    font-size: 1.2rem;
}

/* Bottom Copyright Bar */
.footer-bottom-bar {
    text-align: center;
    padding: 20px 0 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}
 

/* --- Scroll-to-Top Arrow Styles --- */

#scrollUpArrow {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 1000;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(13, 79, 140, 0.4);
    transition: all 0.3s ease;
}

#scrollUpArrow:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(13, 79, 140, 0.5);
}

/* Responsive adjustments for footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-column {
        min-width: 90%;
        margin: 15px 0;
    }
    .footer-column h3 {
        text-align: center;
    }
    .contact-item, .footer-links {
        justify-content: center;
        text-align: left; /* Keep text aligned left for lists */
    }
    .address-item {
        text-align: center;
        justify-content: center;
    }
    .address-item span {
        text-align: left; /* Keep address text aligned left */
    }
}
.container2 {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      align-items: flex-start;
    }

    .left {
      flex: 1 1 400px;
    }

    .left h4 {
      font-size: 14px;
      color: var(--accent-color);
      text-transform: uppercase;
      margin-bottom: 8px;
      font-weight: 700;
      letter-spacing: 1px;
    }

    .left h2 {
      font-size: 26px;
      margin: 0 0 16px;
      font-weight: 700;
      color: #222;
    }

    .left p {
      font-size: 15px;
      color: #555;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .left .btn {
      display: inline-block;
      background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
      color: #fff;
      padding: 12px 24px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 600;
      font-size: 14px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(250, 49, 74, 0.3);
    }

    .left .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(250, 49, 74, 0.4);
    }

    .right {
      flex: 1 1 400px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
    }

    .stat-box {
      background-color: #fff;
      border: 1px solid #f0dada;
      border-radius: 8px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    }

    .stat-box img {
      width: 36px;
      height: 36px;
      margin-bottom: 10px;
    }

    .stat-number {
      font-size: 22px;
      font-weight: bold;
      color: var(--primary-color);
    }

    .stat-label {
      font-size: 13px;
      color: #666;
      margin-top: 4px;
    }

    @media (max-width: 700px) {
      .container {
        flex-direction: column;
      }
    }

.container3 {
      max-width:1200px;
      margin: 0 auto;
      padding: 40px 20px;
    }

    .header {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      align-items: flex-start;
      justify-content: space-between;
      margin-bottom: 40px;
    }

    .headline {
      flex: 1 1 300px;
    }

    .headline h1 {
      font-size: 28px;
      margin: 0 0 12px;
      font-weight: 700;
      color: #222;
    }

    .headline p {
      font-size: 16px;
      color: #555;
      line-height: 1.5;
    }

    .services {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
    }

    .service-box {
      background: linear-gradient(135deg, #ffffff, rgba(13, 79, 140, 0.02));
      border: 2px solid rgba(13, 79, 140, 0.1);
      border-radius: 12px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 4px 12px rgba(13, 79, 140, 0.08);
      transition: all 0.3s ease;
    }

    .service-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(13, 79, 140, 0.15);
      border-color: var(--primary-color);
    }

    .service-box img {
      width: 40px;
      height: 40px;
      margin-bottom: 12px;
    }

    .service-title {
      font-size: 15px;
      font-weight: 600;
      color: var(--primary-color);
      margin-top: 10px;
    }

    @media (max-width: 600px) {
      .header {
        flex-direction: column;
      }
    
	}
	
	 /* New styles for the newsletter section */
        .newsletter-container {
            background-color: #f0f0f0;
            padding: 2rem;
            border-radius: 0.75rem;
            margin-top: 2rem;
            text-align: center;
        }
        .newsletter-title {
            color: #2c3e50;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        .newsletter-text {
            color: #7f8c8d;
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }
        .newsletter-button {
            background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
            color: #ffffff;
            padding: 0.75rem 2rem;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 12px rgba(250, 49, 74, 0.3);
        }
        .newsletter-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(250, 49, 74, 0.4);
        }
.job-card {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 20px;
      margin-bottom: 20px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    }

    .job-title {
      font-size: 18px;
      font-weight: bold;
      color: var(--primary-color);
      margin-bottom: 10px;
    }

    .job-details {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      font-size: 14px;
      color: #555;
    }

    .detail {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .detail i {
      color: var(--primary-color);
    }

    .posted-date {
      margin-top: 12px;
      font-size: 13px;
      color: #777;
    }

    @media (max-width: 600px) {
      .job-details {
        flex-direction: column;
      }
    }

/* ============================================
   MODERN HOMEPAGE STYLES
   ============================================ */

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 20px;
    margin-top: 0;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 16px 35px;
    font-size: 1.1rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    box-shadow: none;
}

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

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.stat-item .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 5px;
}

.hero-image {
    text-align: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

.view-all-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.view-all-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.view-all-link:hover i {
    transform: translateX(5px);
}

/* How It Works Section */
.how-it-works {
    padding: 80px 20px;
    background: #f8f9fa;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(13, 79, 140, 0.15);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.step-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Featured Jobs Section */
.featured-jobs {
    padding: 80px 20px;
    background: white;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.job-card-modern {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.job-card-modern:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(13, 79, 140, 0.12);
    transform: translateY(-5px);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 15px;
}

.job-title-modern {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
}

.job-badge {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.job-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    flex: 1;
}

.job-location,
.job-department {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.job-location i,
.job-department i {
    color: var(--primary-color);
    width: 18px;
}

.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.btn-apply {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

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

.job-posted {
    font-size: 0.85rem;
    color: var(--text-light);
}

.no-jobs {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-medium);
}

.no-jobs i {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Services Section */
.services-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(13, 79, 140, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(13, 79, 140, 0.1), rgba(13, 79, 140, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 20px;
    background: white;
}

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

.why-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.why-text .lead {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 20px;
    font-weight: 500;
}

.why-text p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 25px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.features-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.features-list i {
    color: var(--success-color);
    font-size: 1.2rem;
}

.why-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.stat-box-modern {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(13, 79, 140, 0.2);
    transition: all 0.3s ease;
}

.stat-box-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(13, 79, 140, 0.3);
}

.stat-box-modern .stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.stat-box-modern .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

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

/* Testimonials Section */
.testimonials-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.testimonial-content {
    margin-bottom: 25px;
}

.quote-icon {
    color: var(--primary-color);
    font-size: 2rem;
    opacity: 0.3;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.author-info h4 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.author-role {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-outline {
    border-color: white;
    color: white;
}

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

/* Newsletter Section */
.newsletter-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.newsletter-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.newsletter-content > p {
    color: var(--text-medium);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.newsletter-form {
    margin-top: 30px;
}

.form-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.form-group input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(13, 79, 140, 0.1);
}

.newsletter-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .why-content {
        grid-template-columns: 1fr;
    }
    
    .why-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

    @media (max-width: 768px) {
        .hero-section {
            padding: 60px 20px;
        }
        
        .hero-title {
            font-size: 2rem;
        }
        
        .hero-subtitle {
            font-size: 1.1rem;
        }
        
        .hero-stats {
            flex-direction: column;
            gap: 20px;
            text-align: center;
        }
        
        .section-title {
            font-size: 2rem;
        }
        
        .jobs-grid {
            grid-template-columns: 1fr;
        }
        
        .steps-grid,
        .services-grid {
            grid-template-columns: 1fr;
        }
        
        .form-group {
            flex-direction: column;
        }
        
        .form-group button {
            width: 100%;
        }
    }

/* ============================================
   HERO SLIDESHOW STYLES
   ============================================ */

.hero-slideshow {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    visibility: hidden;
    background-color: transparent;
}

.slide.active {
    opacity: 1 !important;
    z-index: 2;
    visibility: visible !important;
}

/* Ensure background images are always visible */
.slide[style*="background-image"] {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* Make sure inactive slides don't show */
.slide:not(.active) {
    opacity: 0 !important;
    visibility: hidden !important;
}


.slide-content {
    position: relative;
    max-width: 1200px;
    width: 100%;
    padding: 0 40px;
    text-align: center;
    color: white;
    z-index: 100;
    pointer-events: auto;
    display: block;
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 0.8s ease;
    color: #ffffff !important;
    position: relative;
    z-index: 101;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.slide-text {
    font-size: 1.3rem;
    margin-bottom: 35px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.9), 0 0 15px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s ease;
    color: #ffffff !important;
    position: relative;
    z-index: 101;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.slide-buttons {
    display: flex !important;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease;
    position: relative;
    z-index: 101;
    visibility: visible !important;
    opacity: 1 !important;
}

.slideshow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
    pointer-events: none;
}

.slide-nav-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    pointer-events: all;
    backdrop-filter: blur(5px);
}

.slide-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
    transform: scale(1.1);
}

.slide-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: white;
    width: 30px;
    border-radius: 6px;
    border-color: white;
}

.hero-stats-overlay {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 40px;
    z-index: 15;
    background: rgba(0, 0, 0, 0.4);
    padding: 20px 40px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    pointer-events: none;
}

.stat-item-overlay {
    text-align: center;
    color: white;
}

.stat-number-overlay {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

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

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

@media (max-width: 768px) {
    .hero-slideshow {
        height: 500px;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-text {
        font-size: 1rem;
    }
    
    .hero-stats-overlay {
        flex-direction: column;
        gap: 15px;
        padding: 15px 25px;
        bottom: 100px;
    }
    
    .slide-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ============================================
   PAGE STYLES (About, Mission, Services, etc.)
   ============================================ */

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 80px 20px 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* About Page */
.about-content {
    padding: 60px 20px;
}

.about-intro {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-text .lead {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 20px;
    font-weight: 500;
}

.about-text p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-image {
    text-align: center;
}

.about-img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-values {
    margin-bottom: 80px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: white;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(13, 79, 140, 0.15);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.stat-item-large {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    color: white;
    box-shadow: 0 6px 20px rgba(13, 79, 140, 0.2);
}

.stat-number-large {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.stat-label-large {
    font-size: 1rem;
    opacity: 0.95;
}

.features-list-about {
    display: grid;
    gap: 25px;
    margin-top: 30px;
}

.feature-item-about {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-item-about i {
    color: var(--success-color);
    font-size: 1.5rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.feature-item-about h4 {
    margin: 0 0 8px 0;
    color: var(--text-dark);
    font-size: 1.2rem;
}

.feature-item-about p {
    margin: 0;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Mission & Vision Page */
.mission-vision-content {
    padding: 60px 20px;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.mission-card,
.vision-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.mission-icon,
.vision-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.vision-icon {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
}

.mission-card h2,
.vision-card h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.mission-text,
.vision-text {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 500;
}

.mission-list,
.vision-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.mission-list li,
.vision-list li {
    padding: 12px 0;
    color: var(--text-medium);
    line-height: 1.7;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.mission-list i,
.vision-list i {
    color: var(--success-color);
    margin-top: 5px;
    flex-shrink: 0;
}

.values-section {
    margin-top: 60px;
}

.values-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
}

.value-icon-small {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(13, 79, 140, 0.1), rgba(13, 79, 140, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.value-item p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Services Page */
.services-page-content {
    padding: 60px 20px;
}

.services-intro {
    text-align: center;
    margin-bottom: 60px;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.service-category {
    margin-bottom: 80px;
}

.category-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--text-dark);
    text-align: center;
}

.services-grid-page {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card-page {
    background: white;
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card-page:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(13, 79, 140, 0.15);
    border-color: var(--primary-color);
}

.service-icon-page {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(13, 79, 140, 0.1), rgba(13, 79, 140, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.service-card-page h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card-page > p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li:before {
    content: '✓';
    color: var(--success-color);
    font-weight: bold;
}

.cta-section-services {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    color: white;
    margin-top: 60px;
}

.cta-section-services h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.cta-section-services p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Clients Page */
.clients-content {
    padding: 60px 20px;
}

.clients-intro {
    text-align: center;
    margin-bottom: 60px;
}

.clients-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.client-stat-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(13, 79, 140, 0.2);
    transition: all 0.3s ease;
}

.client-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(13, 79, 140, 0.3);
}

.stat-icon-client {
    font-size: 2.5rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.stat-number-client {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

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

.industries-section {
    margin-bottom: 80px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.industry-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.industry-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(13, 79, 140, 0.15);
}

.industry-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.industry-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.industry-card p {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin: 0;
}

.testimonials-clients {
    margin-bottom: 60px;
}

.client-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.client-testimonial {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-stars {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.testimonial-quote {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: var(--text-dark);
    font-size: 1.05rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.partnership-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    color: white;
}

.partnership-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.partnership-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Job Listing Page */
.jobs-listing-content {
    padding: 60px 20px;
}

.jobs-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.jobs-count h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.jobs-count p {
    color: var(--text-medium);
}

.jobs-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--border-color);
    background: white;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-medium);
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
}

.jobs-list-modern {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.job-listing-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    display: block;
}

.job-listing-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(13, 79, 140, 0.12);
    transform: translateY(-3px);
}

.job-card-header {
    margin-bottom: 20px;
}

.job-title-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    flex-wrap: wrap;
}

.job-listing-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
}

.job-meta-info {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.job-department-badge,
.job-type-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.job-department-badge {
    background: rgba(13, 79, 140, 0.1);
    color: var(--primary-color);
}

.job-type-badge {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    color: white;
}

.job-card-body {
    margin-bottom: 20px;
}

.job-details-list {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.job-detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-medium);
}

.job-detail-item i {
    color: var(--primary-color);
    width: 18px;
}

.job-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-view-job {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-view-job:hover {
    color: var(--primary-dark);
    gap: 12px;
}

.btn-apply-now {
    background: var(--primary-color);
    color: white;
    padding: 10px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.no-jobs-found {
    text-align: center;
    padding: 80px 20px;
}

.no-jobs-icon {
    font-size: 5rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

.no-jobs-found h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.no-jobs-found p {
    color: var(--text-medium);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive for pages */
@media (max-width: 968px) {
    .about-intro {
        grid-template-columns: 1fr;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .jobs-header {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats-overlay {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-item-overlay {
        min-width: 100px;
    }
}

/* ============================================
   FULL SCREEN LAYOUT
   ============================================ */

.main-content-wrapper {
    width: 100%;
    /* removed forced full-viewport min-height — let content determine height
       prevents large empty whitespace on short pages */
    min-height: auto;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ============================================
   IMPROVED SLIDESHOW - MORE VISIBLE IMAGES
   ============================================ */

.hero-slideshow .slide {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative;
}

.hero-slideshow .slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4));
    z-index: 1;
    pointer-events: none;
}

.hero-slideshow .slide.active::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.35));
}

.slide-content {
    position: relative;
    z-index: 2;
}

/* ============================================
   FOOTER STYLES
   ============================================ */

.site-footer-modern {
    /* make footer background full-bleed and align with hero */
    background: #1a1a1a;
    color: #ffffff;
    margin-top: auto;
    width: 100vw;
    /* align full-bleed element with centered content by offsetting viewport margins */
    margin-left: calc(-50vw + 50%);
    left: 0;
    box-sizing: border-box;
}

.footer-main {
    padding: 60px 0 40px;
    box-sizing: border-box;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 5px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo-section {
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 84px; /* larger footer logo for visibility */
    width: auto;
    margin-bottom: 18px;
    display: block;
    object-fit: contain;
}

/* Footer professional layout tweaks */
.site-footer-modern {
    background: linear-gradient(180deg, #0f1720 0%, #111827 100%);
    color: #e6eef8;
}

.footer-main {
    padding: 56px 0 36px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 320px 1fr 1fr 1fr 260px;
    gap: 20px;
    max-width: 1200px; /* keep aligned with footer-bottom */
    margin: 0 auto;
    padding: 0 20px;
}

.footer-column { gap:12px; }

.footer-description { color: #b9c6d6; }

.footer-description {
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.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: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

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

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

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item-footer {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-item-footer i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-item-footer strong {
    display: block;
    color: white;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.contact-item-footer p {
    color: #b0b0b0;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    background: #0f0f0f;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    box-sizing: border-box;
}

.footer-bottom-content {
    max-width: 1200px; /* match footer-grid */
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    box-sizing: border-box;
}

.footer-bottom-content p {
    margin: 0;
    color: #b0b0b0;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

/* ============================================
   PAGINATION STYLES
   ============================================ */

.pagination-wrapper {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.pagination-info {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.pagination {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination-btn {
    padding: 10px 16px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pagination-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(13, 79, 140, 0.05);
}

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

.pagination-dots {
    padding: 10px 8px;
    color: var(--text-light);
}

/* ============================================
   APPLICATION FORM STYLES
   ============================================ */

.apply-content {
    padding: 60px 20px;
}

.apply-wrapper {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.job-info-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.job-info-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #e9ecef;
}

.job-info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.job-info-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 25px;
}

.info-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.info-row i {
    color: var(--primary-color);
    width: 20px;
    flex-shrink: 0;
    margin-top: 3px;
}

.btn-view-details {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-view-details:hover {
    gap: 12px;
    color: var(--primary-dark);
}

.application-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-header {
    margin-bottom: 35px;
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.form-header p {
    color: var(--text-medium);
    font-size: 1rem;
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section-title {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 600;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group-full {
    flex: 1;
}

.form-group-half {
    flex: 1;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.required {
    color: var(--accent-color);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(13, 79, 140, 0.1);
}

.form-control textarea {
    resize: vertical;
    min-height: 120px;
}

.form-hint {
    display: block;
    margin-top: 6px;
    color: var(--text-light);
    font-size: 0.85rem;
}

.file-upload-wrapper {
    position: relative;
}

.file-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.file-upload-label:hover {
    border-color: var(--primary-color);
    background: rgba(13, 79, 140, 0.05);
}

.file-upload-label i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.file-upload-text {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.file-upload-hint {
    font-size: 0.85rem;
    color: var(--text-light);
}

.file-name-display {
    margin-top: 12px;
    padding: 10px 15px;
    background: #e7f3ff;
    border-radius: 6px;
    color: var(--primary-color);
    font-size: 0.9rem;
    display: none;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.btn-submit {
    flex: 1;
    max-width: 300px;
}

.btn-outline-secondary {
    background: white;
    border: 2px solid #e9ecef;
    color: var(--text-dark);
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-secondary:hover {
    border-color: var(--text-medium);
    background: #f8f9fa;
}

/* ============================================
   PARTNERS PAGE STYLES
   ============================================ */

.partners-content {
    padding: 60px 20px;
}

.partners-intro {
    text-align: center;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.partners-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.partner-stat-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(13, 79, 140, 0.2);
    transition: all 0.3s ease;
}

.partner-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(13, 79, 140, 0.3);
}

.stat-icon-partner {
    font-size: 2.5rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.stat-number-partner {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

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

.partnership-types {
    margin-bottom: 80px;
}

.partnership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.partnership-card {
    background: white;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.partnership-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(13, 79, 140, 0.15);
}

.partnership-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(13, 79, 140, 0.1), rgba(13, 79, 140, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.partnership-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.partnership-card p {
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

.benefits-section {
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.benefit-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.benefit-item i {
    color: var(--success-color);
    font-size: 1.5rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.benefit-item h4 {
    margin: 0 0 8px 0;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.benefit-item p {
    margin: 0;
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 0.95rem;
}

.become-partner-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    color: white;
}

.become-partner-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.become-partner-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Responsive for new components */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 30px;
    }
    
    .apply-wrapper {
        grid-template-columns: 1fr;
    }
    
    .job-info-sidebar {
        position: static;
    }
}

@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .form-group-half {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-slideshow {
        height: 500px;
    }
    
    .partners-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partnership-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}