:root {
    --primary-dark: #0a192f;
    --primary-blue: #1e6fbf;
    --secondary-blue: #64ffda;
    --light-bg: #f8f9fa;
    --dark-text: #333333;
    --light-text: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-text);
    overflow-x: hidden;
}

.navbar {
    background-color: var(--primary-dark);
    padding: 15px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    color: white !important;
    font-size: 1.8rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary-blue) !important;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('img/Call_center.jpg') no-repeat center center/cover;
    opacity: 0.2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-primary-custom {
    background-color: var(--secondary-blue);
    color: var(--primary-dark);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 111, 191, 0.4);
}

.btn-primary-custom:hover {
    background-color: white;
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(30, 111, 191, 0.6);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    color: var(--primary-dark);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-blue);
}

.job-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--secondary-blue);
}

.job-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.job-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.job-company {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 600;
}

.job-detail {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.job-detail i {
    margin-right: 10px;
    color: var(--primary-blue);
    width: 20px;
    text-align: center;
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(30, 111, 191, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-box i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.feature-box {
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-box h3 {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.process-card {
    background: white;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 10px 30px rgba(30, 111, 191, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 3px solid #1e6fbf;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(30, 111, 191, 0.12);
}

.process-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(30, 111, 191, 0.05);
    line-height: 1;
}

.process-icon {
    width: 70px;
    height: 70px;
    background: rgba(30, 111, 191, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.process-icon i {
    font-size: 1.8rem;
    color: #1e6fbf;
}

.process-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0a192f;
    margin-bottom: 15px;
    text-align: center;
}

.process-description {
    color: #6c757d;
    text-align: center;
    margin-bottom: 20px;
    min-height: 72px;
}

.process-duration {
    background: rgba(30, 111, 191, 0.05);
    color: #1e6fbf;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.timeline-connector {
    position: relative;
    height: 4px;
    margin: 40px 0;
}

.connector-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(30, 111, 191, 0.2);
    transform: translateY(-50%);
    z-index: 1;
}

.connector-dots {
    position: relative;
    display: flex;
    justify-content: space-between;
    z-index: 2;
}

.connector-dots span {
    width: 12px;
    height: 12px;
    background: #1e6fbf;
    border-radius: 50%;
    display: block;
    position: relative;
    top: -4px;
}

.info-section {
    background-color: var(--light-bg);
}

.info-section .card {
    border: 1px solid #ddd;
    border-left: 4px solid var(--primary-blue);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.info-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.info-section .card-title {
    color: var(--primary-dark);
    font-weight: 700;
}

.info-section img {
    border-radius: 5px;
    margin-top: 15px;
    border: 1px solid #eee;
}

@media (max-width: 992px) {
    .process-card {
        margin-bottom: 30px;
    }

    .process-number {
        font-size: 2rem;
    }

    .process-icon {
        width: 60px;
        height: 60px;
    }
}

.footer {
    background-color: var(--primary-dark);
    color: white;
    padding: 60px 0 20px;
}

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

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-blue);
    padding-left: 5px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: white;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--secondary-blue);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.badge-custom {
    background-color: var(--secondary-blue);
    color: var(--primary-dark);
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 20px;
    margin-right: 10px;
    margin-bottom: 10px;
    display: inline-block;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .job-title {
        font-size: 1.5rem;
    }

    .process-step {
        padding-left: 60px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

.confirmation-icon {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-blue);
    border-radius: 50%;
    animation: bounceIn 1s ease-in-out;
}

.btn-primary-custom {
    background-color: #1e6fbf;
    color: white;
    border: none;
    padding: 8px 20px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #155492;
    transform: translateY(-2px);
}

.btn-outline-secondary {
    transition: all 0.3s ease;
}

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

@keyframes bounceIn {

    0%,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97);
    }

    to {
        opacity: 1;
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}