/* Add your global styles here */

body {
    margin: 0;
    font-family: Arial, sans-serif;
}


/* Add custom styles for navigation links */
.nav-link {
    color: #333;
    font-weight: bold;
    transition: color 0.2s ease-in-out;
}

.nav-link:hover {
    color: #007BFF;
}

/* Mobile menu toggle */
#mobile-menu-button {
    cursor: pointer;
}

/* Customize header background and text color */
header {
    background-color: #F8F8F8;
    color: #333;
}

/* Customize navigation links in the header */
header .nav-link {
    color: #555;
    transition: color 0.2s ease-in-out;
}

header .nav-link:hover {
    color: #007BFF;
}

/* Customize hero section */
.hero-section {
    background-color: #EAF2FF;
    color: #333;
}

/* Customize services section */
.services-section {
    background-color: #F4F9FF;
    color: #333;
}

/* Customize clients section */
.clients-section {
    background-color: #F8F8F8;
    color: #333;
}

/* Customize about section */
.about-section {
    background-color: #EAF2FF;
    color: #333;
}

/* Customize career section */
.career-section {
    background-color: #F4F9FF;
    color: #333;
}

/* Customize culture section */
.culture-section {
    background-color: #F8F8F8;
    color: #333;
}

/* Customize contact section */
.contact-section {
    background-color: #EAF2FF;
    color: #333;
}

/* Customize footer */
footer {
    background-color: #333;
    color: #fff;
}


/* Customize services dropdown layout */

#servicesDropdown {
    flex-direction: row;
    left: 0; /* Adjust this value to align with the main menu */
    top: 2.75rem; /* Adjust this value as needed */
}

/* Rest of your CSS styles */

/* Customize "Job Details" button */
.job-details-button {
    border: none;
    cursor: pointer;
}
.job-details-button:hover {
    filter: brightness(110%);
}

.job-details-button {
    border: none;
    cursor: pointer;
}
.job-details-button:hover {
    filter: brightness(110%);
}

.hero {
    background-image: url('./images/rec.jpeg.jpg');
    background-size: cover;
    background-position: center;
    color: burlywood;
    padding: 100px 0;
    position: relative; /* Add this line */
}

/* Add a semi-transparent overlay */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust the opacity as needed */
    z-index: -1;
}

.highlight {
    background-color: #f5ffab; /* Add your desired light color */
    font-weight: bold;
    color: #333; /* Adjust the color for highlighted text */
}

/* Rest of your existing CSS */
@media (max-width: 768px) {
    .hero {
        text-align: center;
    }
}

.hero h1 span {
    font-size: 6rem; /* Increase the font size as needed */
    font-weight: bold;
    color: #fff; /* Bright text color */
}

/* Base button styles */
.button-bg {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

/* Apply motion effect */
@keyframes moveButtons {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px); /* Adjust the distance and direction of movement */
    }
}

.moving-button {
    animation: moveButtons 3s infinite;
}
/* Style for light blue button */
.bg-light-blue {
    background-color: #d1e9ff; /* Adjust the color as needed */
}

.bg-light-blue:hover {
    background-color: #b1d0ff; /* Adjust the color as needed */
}

/* Style for light green button */
.bg-light-green {
    background-color: #c5e8c1; /* Adjust the color as needed */
}

.bg-light-green:hover {
    background-color: #a1d89f; /* Adjust the color as needed */
}

/* Text color for buttons */
.text-white {
    color: #fff;
}

/* Flipping text animation */
@keyframes flipText {
    0%, 100% {
        opacity: 1;
        transform: translateY(0);
    }
    25%, 75% {
        opacity: 10;
        transform: translateY(-20px);
    }
}


/* Rest of your styles */


/* Style the container for continuous scrolling */
.services-container {
    display: flex;
    overflow: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

/* Style each service item */
.service {
    flex: 0 0 auto;
    width: calc(50%); /* Show two services side by side on desktop */
    scroll-snap-align: start;
    transition: transform 0.5s ease-in-out;
}

/* On mobile, show one service at a time */
@media (max-width: 768px) {
    .service {
        width: 100%;
    }
}
/* Rest of your existing CSS code */

.arrow-buttons {
    display: flex;
}

.arrow-button {
    background: none;
    border: none;
    font-size: 1.5rem;
    padding: 10px;
    cursor: pointer;
    transition: opacity 0.3s;
    font-weight: bold;
    color: #333; /* Change color to your preference */
}

.arrow-button:hover {
    opacity: 0.7;
}

.left {
    margin-right: 10px;
}

.right {
    margin-left: 10px;
}


/* Add this CSS to control image size */
.image-container {
    max-width: 100%;
    max-height: 400px; /* Adjust the max-height value as needed */
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: auto;
}
