
/* ////////banner/////////////////// */
body {
    background-color: #ededed;
}
.banner {
    width: 100%;
    height: 400px;
    background-image: url('images/About-back-img.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.breadcrumb {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 15px 25px;
    border-radius: 30px;
    z-index: 1;
    margin-top: 80px;
}

.breadcrumb a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    display: flex;
    align-items: center;
}

.breadcrumb a:hover {
    color: #000;
}

.breadcrumb-separator {
    margin: 0 10px;
    color: #333;
    font-size: 18px;
}

.breadcrumb-current {
    color: #333;
    font-size: 18px;
    font-weight: bold;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .banner {
        height: 400px;
    }
    
    .breadcrumb {
        padding: 12px 20px;
    }
    
    .breadcrumb a,
    .breadcrumb-separator,
    .breadcrumb-current {
        font-size: 16px;
    }
}
        


        /* /////////Career With Us/////// */
.career-section{
            width: 100%;
            height: auto;
            padding: 40px;
        }

        .career-section h2{
            text-align: center;
            font-size: 30px;
            color: #333;
            margin-bottom: 30px; /* Increased margin for better separation */
            font-weight: 600;
            text-transform: uppercase;
        }

        .career-container{
            width: 330px;
            height: auto; /* Changed to auto to accommodate content */
            background-color: #fff;
            border-radius: 7px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            padding:30px 25px;
            transition: all .3s ease;
        }

        .career-container:hover{
            transform: scale(1.02);
        }

        .career-container h3{
            font-size: 24px;
            color: #555;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .career-details{
            display: flex;
            justify-content: start;
            align-items: start;
            padding: 0 6px;
            margin-top: 10px;
        }

        .career-details-bold{
            font-weight: 600;
            color: #000;
            margin-right: 20px;
        }
        .career-details p{
            font-size: 15px;
            margin-left: 5px;
        }

        .career-button{
            display: flex;
            justify-content: end;
            align-items: start;
            margin-top: 30px;
        }

        .career-button a{
            text-decoration: none;
            color: #fff;
            background-color: #ffbb00;
            padding: 10px 20px;
            border-radius: 5px;
            font-size: 15px;
            transition: background-color 0.3s ease;
            margin-left: 10px;
            font-weight: 600;
        }

        .career-button a:hover {
            background-color: #e6a800;
        }


        /* New CSS for Overlays */
        .overlay {
            display: none; /* Hidden by default */
            position: fixed; /* Stay in place */
            z-index: 1000; /* Sit on top */
            left: 0;
            top: 0;
            width: 100%; /* Full width */
            height: 100%; /* Full height */
            overflow: auto; /* Enable scroll if needed */
            background-color: rgba(0,0,0,0.6); /* Black w/ opacity */
            justify-content: center;
            align-items: center;
        }

        .overlay-content {
            background-color: #fefefe;
            margin: auto; /* Will be overridden by flex centering, but good fallback */
            padding: 30px 40px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            position: relative;
            width: 90%;
            max-width: 700px; /* Max width for details popup */
            animation: fadeIn 0.3s ease-out;
        }

        .form-overlay-content {
            max-width: 700px; /* Max width for form popup */
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .close-button {
            color: #aaa;
            font-size: 28px;
            font-weight: bold;
            position: absolute;
            top: 15px;
            right: 25px;
            cursor: pointer;
        }

        .close-button:hover,
        .close-button:focus {
            color: #000;
            text-decoration: none;
        }

        .overlay-heading {
            font-size: 26px;
            color: #333;
            margin-bottom: 25px;
            font-weight: 600;
            text-align: center;
            text-transform: uppercase;
        }

        .overlay-text {
            font-size: 16px;
            color: #555;
            margin-bottom: 10px;
            line-height: 1.6;
            margin-left: 6px; /* Align with details in main card */
        }

        .overlay-bold {
            font-weight: 600;
            color: #000;
            margin-right: 10px;
            display: inline-block; /* To ensure margin-right works consistently */
            min-width: 120px; /* To align details nicely */
        }

        .description-heading {
            font-weight: 700;
            color: #333;
            margin-top: 25px;
            font-size: 18px;
            margin-left: 6px;
        }

        .job-description-heading {
            font-weight: 600;
            color: #333;
            margin-top: 15px;
            font-size: 16px;
            margin-left: 6px;
        }

        .job-description-list {
            list-style-type: disc;
            padding-left: 40px; /* Adjusted padding for bullet points */
            margin-top: 10px;
        }

        .job-description-list li {
            font-size: 15px;
            color: #666;
            margin-bottom: 8px;
            line-height: 1.5;
        }

        .overlay-button-container {
            display: flex;
            justify-content: flex-end;
            margin-top: 30px;
        }

        .overlay-apply-button {
            text-decoration: none;
            color: #fff;
            background-color: #ffbb00;
            padding: 10px 25px;
            border-radius: 5px;
            font-size: 16px;
            transition: background-color 0.3s ease;
            font-weight: 600;
        }

        .overlay-apply-button:hover {
            background-color: #e6a800;
        }

        /* Form Styles */
        .form-heading {
            margin-bottom: 30px;
        }

        .apply-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .form-row {
            display: flex;
            gap: 20px;
            width: 100%;
        }

        .form-input {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 15px;
            color: #333;
            outline: none;
            transition: border-color 0.3s ease;
        }

        .form-input::placeholder {
            color: #999;
        }

        .form-input:focus {
            border-color: #ffbb00;
        }

        .file-upload-row {
            flex-direction: column;
            align-items: center;
            border: 2px dashed #ccc;
            padding: 30px;
            border-radius: 8px;
            text-align: center;
            cursor: pointer;
            transition: border-color 0.3s ease;
            
        }

        .file-upload-row:hover {
            border-color: #ffbb00;
        }

        .file-upload-label {
            font-size: 16px;
            color: #666;
            cursor: pointer;
        }

        .hidden-file-input {
            display: none;
        }

        .captcha-row {
            align-items: center;
        }

        /* Styles for the dynamic captcha text */
        .captcha-display {
            border: 1px solid #ddd;
            border-radius: 5px;
            padding: 8px 15px; /* Adjust padding to make it look like an image area */
            background-color: #f9f9f9;
            font-family: 'Courier New', Courier, monospace; /* Monospace font for captcha */
            font-size: 24px;
            font-weight: bold;
            color: #333;
            letter-spacing: 3px;
            min-width: 150px; /* Ensure a consistent width */
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
            user-select: none; /* Prevent text selection */
        }

        .captcha-input {
            flex: 1; /* Allow input to take remaining space */
        }

        .reload-captcha-row {
            justify-content: flex-start;
            margin-top: -10px; /* Adjust spacing */
        }

        .reload-captcha {
            color: #007bff;
            text-decoration: none;
            font-size: 14px;
        }

        .reload-captcha:hover {
            text-decoration: underline;
        }

        .submit-button {
            background-color: #ffbb00;
            color: #fff;
            padding: 12px 30px;
            border: none;
            border-radius: 5px;
            font-size: 17px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s ease;
            align-self: center; /* Center the button */
            width: fit-content;
            margin-top: 15px;
        }

        .submit-button:hover {
            background-color: #e6a800;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .form-row {
                flex-direction: column;
                gap: 15px;
            }
            .overlay-content {
                max-width: 90%; /* Allow more width on smaller screens */
            }
        }

        @media (max-width: 480px) {
            .overlay-content {
                padding: 20px 25px;
            }
            .overlay-heading {
                font-size: 22px;
            }
            .overlay-text {
                font-size: 14px;
            }
            .form-input {
                padding: 10px;
            }
            .file-upload-row {
                padding: 20px;
            }
            .captcha-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            .captcha-display { /* Adjust captcha display on small screens */
                width: 100%;
                min-width: unset;
                font-size: 20px;
            }
            .submit-button {
                width: 100%;
                padding: 12px 0;
            }
        }