@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto.ttf') format('ttf');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto.ttf') format('ttf');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-Bold.ttf') format('ttf');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-Regular.ttf') format('ttf');
    font-weight: 400;
    font-display: swap;
}

:root {
    --primary-color: #007bff;
    --secondary-color: #343a40;
    --light-gray: #f8f9fa;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
}

* {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.7;
    color: #555;
    overflow-x: hidden;
}

h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--secondary-color);
}

.site-header .header-top {
    background: #fff;
    border-bottom: 1px solid #eee;
}

.site-header .navbar-brand h1 {
    color: var(--primary-color);
    margin: 0;
    font-weight: 700;
}

.site-header .navbar-brand .tagline {
    font-size: 0.9rem;
    color: #777;
    margin: 0;
}

#main-nav {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-nav .nav-link {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 0.8rem 1rem;
    transition: color 0.3s;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.hero-section {
    position: relative;
    height: 90vh;
    min-height: 500px;
    background-color: #333;
    overflow: hidden;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.page-header {
    height: 40vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

#stats .stat-card {
    background: #fff;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#stats .stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-card {
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.process-wrapper {
    position: relative;
    padding: 20px 0;
}

.process-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: #e9ecef;
    transform: translateX(-50%);
}

.process-step {
    position: relative;
    margin-bottom: 50px;
    width: 50%;
    padding: 10px 40px;
}

.process-step:nth-child(odd) {
    left: 0;
    text-align: right;
}

.process-step:nth-child(even) {
    left: 50%;
    text-align: left;
}

.process-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    background: var(--primary-color);
    border-radius: 50%;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
}

.process-step:nth-child(odd) .process-icon {
    right: -25px;
}

.process-step:nth-child(even) .process-icon {
    left: -25px;
}

.process-content {
    padding: 20px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .process-wrapper::before {
        left: 25px;
    }

    .process-step {
        width: 100%;
        left: 0 !important;
        padding-left: 80px;
        text-align: left !important;
    }

    .process-icon {
        left: 0 !important;
        right: auto !important;
    }
}

.sector-item {
    padding: 20px;
    background: var(--light-gray);
    border-radius: 8px;
    transition: all 0.3s;
}

.sector-item:hover {
    background: var(--primary-color);
    color: #fff;
}

.sector-item i {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.testimonials-slider {
    padding-bottom: 50px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.testimonial-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 4px solid var(--primary-color);
}

.testimonial-text {
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
}

.testimonial-author {
    color: var(--primary-color);
    font-weight: 700;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
}

.timeline {
    list-style: none;
    padding: 20px 0;
    position: relative;
}

.timeline:before {
    top: 0;
    bottom: 0;
    position: absolute;
    content: " ";
    width: 3px;
    background-color: #eeeeee;
    left: 50%;
    margin-left: -1.5px;
}

.timeline>li {
    margin-bottom: 20px;
    position: relative;
}

.timeline>li:before,
.timeline>li:after {
    content: " ";
    display: table;
}

.timeline>li:after {
    clear: both;
}

.timeline>li>.timeline-panel {
    width: 46%;
    float: left;
    border: 1px solid #d4d4d4;
    border-radius: 2px;
    padding: 20px;
    position: relative;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
    background-color: #fff;
}

.timeline>li.timeline-inverted>.timeline-panel {
    float: right;
}

.timeline>li>.timeline-badge {
    color: #fff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 1.4em;
    text-align: center;
    position: absolute;
    top: 16px;
    left: 50%;
    margin-left: -25px;
    background-color: #999999;
    z-index: 100;
    border-radius: 50%;
}

.timeline>li.timeline-inverted>.timeline-badge {
    float: right;
}

.timeline-badge.primary {
    background-color: #2e6da4 !important;
}

.timeline-badge.warning {
    background-color: #f0ad4e !important;
}

.timeline-badge.danger {
    background-color: #d9534f !important;
}

.timeline-badge.info {
    background-color: #5bc0de !important;
}

.contact-details i {
    width: 30px;
}

.benefit-card {
    background: var(--light-gray);
    border-radius: 8px;
}

.job-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    transition: all 0.3s;
}

.job-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.site-footer {
    background: var(--secondary-color);
    color: #adb5bd;
}

.footer-top {
    border-bottom: 1px solid #495057;
}

.footer-heading {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.contact-info i {
    margin-right: 15px;
    margin-top: 5px;
    color: var(--primary-color);
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: #495057;
    color: #fff;
    transition: background 0.3s;
}

.social-icons a:hover {
    background: var(--primary-color);
}

.footer-bottom {
    background: #343a40;
}

.footer-bottom p {
    margin: 0;
    color: #6c757d;
}

.footer-bottom a {
    color: #6c757d;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #fff;
}

.about-hero {
    background-image: url('../images/about-hero.webp');
}

.cta-bg {
    background: linear-gradient(45deg, #28a745, #218838);
}

.candidates-hero {
    background-image: url('../images/candidates-hero.webp');
}

.services-hero {
    background-image: url('../images/services-hero.webp');
}

iframe {
    border: 0;
}

.cta-home {
    background: linear-gradient(45deg, #007bff, #0056b3);
}

.hero-title {
    color: var(--light-gray);
}

@media (max-width: 767px) {
    ul.timeline:before {
        left: 40px;
    }

    ul.timeline>li>.timeline-panel {
        width: calc(100% - 90px);
        width: -moz-calc(100% - 90px);
        width: -webkit-calc(100% - 90px);
        float: right;
    }

    ul.timeline>li>.timeline-badge {
        left: 15px;
        margin-left: 0;
        top: 16px;
    }

    ul.timeline>li>.timeline-panel:before {
        right: auto;
        left: -15px;
        border-right-width: 15px;
        border-left-width: 0;
    }

    ul.timeline>li>.timeline-panel:after {
        right: auto;
        left: -14px;
        border-right-width: 14px;
        border-left-width: 0;
    }

    .footer-heading {
        font-size: 1rem;
    }
}