/* styles.css */

/* Global Styles */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
    background-color: #f0f2f5;
}

/* Navbar */
.navbar {
    background-color: #153a85;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    color: #fff;
    font-weight: bold;
}

.navbar-nav .nav-link {
    color: #fff;
    margin: 0 10px;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #dfe2e6;
}

/* Hero Section */
.hero {
    background: url('https://source.unsplash.com/random/1600x900?office') no-repeat center center/cover;
    color: #fff;
    padding: 100px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.hero .form-inline {
    max-width: 800px;
    margin: 0 auto;
}

.hero .form-control {
    border: none;
    padding: 12px 15px;
    border-radius: 25px;
    margin-right: 10px;
    width: 250px;
}

.hero .btn-primary {
    border-radius: 25px;
    padding: 10px 20px;
}

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

.services h2 {
    font-size: 2.5rem;
    color: #343a40;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.services .service-item {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.services .service-item:hover {
    transform: translateY(-5px);
}

.services .service-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.services .service-item h4 {
    font-size: 1.5rem;
    color: #153a85;
    margin-bottom: 10px;
}

.services .service-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.services-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-top: 30px;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border-color: #bee5eb;
    margin-top: 30px;
    padding: 15px;
    border-radius: 8px;
}

.alert-info i {
    font-size: 1.2rem;
    vertical-align: middle;
    margin-right: 10px;
}

.services .text-center {
    margin-bottom: 30px;
}

.services i {
    color: #153a85;
    margin-bottom: 15px;
}

.services h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.services p {
    font-size: 1rem;
    color: #666;
}

/* Job Listings */
.job-listings {
    padding: 50px 0;
}

.job-listings h2 {
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #333;
}

.job-card {
    background: #fff;
    border: none;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.job-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #153a85;
}

.job-card p {
    font-size: 1rem;
    color: #555;
}

.job-card button {
    margin-top: 15px;
}

/* Testimonials Section */
.testimonials {
    background-color: #f9f9f9;
    padding: 50px 0;
}

.testimonials h2 {
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #333;
}

.testimonial-card {
    background: #fff;
    border: none;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-card p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
}

.testimonial-card strong {
    font-size: 1rem;
    color: #153a85;
}

/* Custom CSS for Contact Us Section */
.contact-info {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.contact-info:hover {
    transform: translateY(-5px);
}

.contact-info h5 {
    margin-top: 0;
    font-size: 1.5rem;
    color: #333;
}

.contact-info address {
    margin-bottom: 20px;
}

.contact-info address strong {
    font-weight: bold;
    color: #333;
}

.contact-info address a {
    color: #153a85;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #666;
}

#map {
    height: 370px;
    border-radius: 10px;
    overflow: hidden;
}

#map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

#map:hover img {
    transform: scale(1.1);
}

/* Footer */
footer {
    background-color: #f1f1f1;
    color: #333;
    padding: 20px 0;
}

footer .social-icons {
    margin-bottom: 15px;
}

footer .social-icons a {
    color: #333;
    margin: 0 10px;
    font-size: 1.2rem;
    transition: color 0.3s;
}

footer .social-icons a:hover {
    color: #153a85;
}

footer p {
    margin: 0;
}

/* Global Styles */
:root {
    --primary-color: #f46530;
    /* Primary color */
    --secondary-color: #343a40;
    /* Dark color for contrast */
    --light-color: #f8f9fa;
    /* Light background color */
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: var(--light-color);
    color: var(--secondary-color);
}

/* Navbar */
.navbar {
    background-color: var(--light-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar-brand,
.navbar-nav .nav-link {
    color: var(--secondary-color);
}

.navbar-toggler-icon {
    background-color: var(--secondary-color);
}

/* Hero Section */
.hero {
    background-color: var(--light-color);
    padding: 50px 0;
}

/* About Us Section */
.about {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.about-img {
    text-align: center;
    margin-bottom: 30px;
}

.about-img img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.about-img img:hover {
    transform: scale(1.05);
}

.about-content {
    padding-left: 30px;
}

.about-content h2 {
    font-size: 2.5rem;
    color: #343a40;
    margin-bottom: 20px;
    text-align: left;
}

.about-content p {
    font-size: 1.1rem;
    /* line-height: 1.8; */
    color: #666;
    margin-bottom: 15px;
    text-align: left;
}

.about-content h3 {
    font-size: 1.8rem;
    color: #153a85;
    margin-top: 30px;
    margin-bottom: 10px;
    text-align: left;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* Services Section */
.services {
    background-color: var(--light-color);
    padding: 50px 0;
}

/* Submit Your CV Section */
.submit-cv {
    background-color: var(--light-color);
    padding: 50px 0;
}

/* Contact Us Section */
.contact {
    background-color: var(--light-color);
    padding: 50px 0;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 20px 0;
}

.social-icons a {
    color: #fff;
}

/* Form Styles */
.form-control {
    border-color: var(--primary-color);
}

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

.btn-primary:hover {
    background-color: #d9534f;
    /* Darken slightly on hover */
    border-color: #d9534f;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .navbar {
        background-color: var(--light-color);
    }
}

/* Banner Section */
.banner {
    position: relative;
    overflow: hidden;
}

.banner .carousel-item {
    height: 100vh;
    /* Adjust height as needed */
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    /* opacity: 0.7; */
    /* Adjust opacity as desired */
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    z-index: 10;
}

.carousel-caption h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.carousel-caption p {
    font-size: 1.5rem;
    margin-bottom: 0;
}

/* Custom Styles for Submit Your CV Section */

/* Input Group Icon Color and Border */
.input-group-text {
    background-color: var(--primary-color);
    color: #fff;
    border: 1px solid var(--primary-color);
    /* Add border */
    border-radius: 0.25rem;
    /* Optional: Add border radius */
}

/* File Input Box */
.custom-file-input {
    display: none;
    /* Hide the default file input */
}

.custom-file-label {
    cursor: pointer;
    border: 1px solid var(--primary-color);
    /* Border around the label */
    padding: 8px 12px;
    border-radius: 0.25rem;
}

.custom-file-label::after {
    content: "Browse";
    /* Text after the file name */
}

.custom-file-label:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Form Submit Button */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #d9534f;
    border-color: #d9534f;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .submit-cv .container {
        padding: 0 15px;
    }
}

.navbar-nav .nav-link {
    color: #fff;
    margin: 0 10px;
    transition: color 0.3s, transform 0.3s;
}

.navbar-nav .nav-link.active {
    color: #dfe2e6;
    /* Active link color */
}

.navbar-nav .nav-link:hover {
    color: #dfe2e6;
    /* Hover color */
    transform: translateY(-3px);
    /* Example of a slight upward movement */
}