/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.6;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 50px;
}

.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin-left: 1.5rem;
}

.nav-link {
    font-size: 1rem;
    color: #333;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #007BFF;
}

.login_text {
    font-size: 1rem;
    color: #007BFF;
    font-weight: bold;
}

.login_text a {
    color: #007BFF;
    transition: color 0.3s ease;
}

.login_text a:hover {
    color: #0056b3;
}

/* Banner Section */
.banner_section {
    background: url('../images/banner-bg.png') no-repeat center center/cover;
    color: #fff;
    padding: 6rem 0;
    text-align: center;
}

.best_taital {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.box_main {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.email_bt {
    padding: 0.75rem;
    width: 300px;
    border: none;
    border-radius: 20px;
    font-size: 1rem;
}

.subscribe_bt {
    padding: 0.75rem 1.5rem;
    background-color: #007BFF;
    border: none;
    border-radius: 0 5px 5px 0;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.subscribe_bt:hover {
    background-color: #0056b3;
}

.there_text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.bt_main {
    display: flex;
    justify-content: center;
}

.discover_bt {
    padding: 0.75rem 1.5rem;
    background-color: #28a745;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.discover_bt:hover {
    background-color: #218838;
}

/* Marketing Section */
/* Marketing Section */
/* Marketing Section */
/* Marketing Section */
.marketing_section {
    padding: 4rem 0;
}

.marketing_section .row {
    display: flex;
    align-items: stretch; /* Ensure columns stretch to the same height */
}

.marketing_section .col-md-6 {
    display: flex;
    align-items: stretch; /* Ensure child elements stretch to the same height */
}

/* Text Box */
.job_section, .job_section_2 {
    flex: 1; /* Allow text box to grow and fill the column */
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Space out content evenly */
    height: 400px; /* Fixed height for all text boxes */
    overflow: hidden; /* Hide overflow text */
}

/* Image Box */
.image_1 {
    flex: 1; /* Allow image box to grow and fill the column */
    display: flex;
    align-items: stretch;
    height: 400px; /* Fixed height for all image boxes */
    overflow: hidden; /* Hide overflow */
    border-radius: 10px; /* Rounded corners for the image box */
}

.image_1 img {
    width: 100%; /* Ensure image fills the container width */
    height: 100%; /* Ensure image fills the container height */
    /* Maintain aspect ratio while covering the box */
    border-radius: 10px; /* Rounded corners for the image */
}

/* Text Styles */
.job_section h1, .job_section_2 h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.job_section p, .job_section_2 p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    overflow: hidden; /* Hide overflow text */
    text-overflow: ellipsis; /* Add ellipsis for overflow text */
    display: -webkit-box;
    -webkit-line-clamp: 5; /* Limit text to 5 lines */
    -webkit-box-orient: vertical;
}

/* Apply Button */
.apply_bt {
    padding: 0.75rem 1.5rem;
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
}

.apply_bt:hover {
    background-color: #0056b3;
}
/* Footer Section */
.footer_section {
    background-color: #333;
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.subscribr_text {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.lorem_text {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.box_main_2 {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.email_bt_2 {
    padding: 0.75rem;
    width: 300px;
    border: none;
    border-radius: 20px;
    font-size: 1rem;
    text-align: center;
}

.subscribe_bt_2 {
    padding: 0.75rem 1.5rem;
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.subscribe_bt_2:hover {
    background-color: #0056b3;
}

.social_media_section {
    margin-top: 2rem;
}

.follow_us {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.social_links {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
}

.social_links li {
    margin: 0 1rem;
}

.social_links a {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social_links a:hover {
    color: #007BFF;
}

/* Copyright Section */
.copyright_section {
    background-color: #222;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

.copyright_text, .cookies_text {
    font-size: 0.875rem;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-nav {
        flex-direction: column;
        width: 100%;
    }

    .nav-item {
        margin: 0.5rem 0;
    }

    .banner_section {
        padding: 4rem 1rem;
    }

    .best_taital {
        font-size: 2rem;
    }

    .email_bt, .email_bt_2 {
        width: 100%;
    }

    .marketing_section .row {
        flex-direction: column;
    }

    .job_section, .job_section_2 {
        margin-bottom: 2rem;
    }
}