:root {
    --primary-color: #0077B5;
    --secondary-color: #00A0DC;
    --background-color: #f0f2f5;
    --navbar-color: #e1e9ee;
    --text-color: #333;
    --contact-bg-color: #dce6f1;
}

body {
    font-family: Arial, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
}

.navbar {
    background-color: var(--navbar-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero {
    background: url('https://media.giphy.com/media/3oKIPEqDGUULpEU0aQ/giphy.gif') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 100px 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.job-search, .testimonials {
    padding: 50px 0;
}

.contact {
    padding: 50px 0;
    background-color: var(--contact-bg-color);
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 10px;
}

#jobCarousel .carousel-control-prev,
#jobCarousel .carousel-control-next {
    background-color: rgba(0, 0, 0, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

#jobCarousel .carousel-control-prev {
    left: -20px;
}

#jobCarousel .carousel-control-next {
    right: -20px;
}

.card {
    width: 80%; /* Adjust this value as needed */
    margin: auto; /* Center the card */
}

@media (max-width: 767px) {
    .contact .container {
        padding: 0 15px;
    }

    #contactForm {
        margin-top: 2rem;
    }
}

.contact input, .contact textarea {
    width: 100%;
    margin-bottom: 1rem;
}

.contact textarea {
    resize: vertical;
}