﻿body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
    margin-left: 33px !important;
    margin-right: 35px !important;
}

/*.about-area {
    position: relative;
    display: block;
    padding: 20px 20px 20px 20px;*/ /* Increase padding for top and sides */
/*border-radius: 30px;
    max-width: 55%;*/ /* Adjust the width (e.g., 80% of the container width) */
/*margin: 20px auto;*/ /* Adds space above and centers the element */
/*background-color: #ffffff;*/ /* Explicit white background */
/*color: #000;*/ /* Ensure text color contrasts against the white background */
/*box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.1);*/ /* Optional for a subtle shadow effect */
/*}*/

.about-area {
    position: relative;
    display: block;
    padding: 20px; /* Consistent padding */
    border-radius: 30px;
    max-width: 55%; /* Default width for larger screens */
    margin: 20px auto;
    background-color: #ffffff;
    color: #000;
    box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) { /* Tablet view */
    .about-area {
        max-width: 80%; /* Increase width to fit smaller screens */
        padding: 15px; /* Reduce padding for smaller screens */
    }

    h4 {
        font-size: 1.2rem; /* Adjust font size */
    }

    h6 {
        font-size: 1rem;
    }

    p, ul {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) { /* Mobile view */
    .about-area {
        max-width: 90%; /* Full width for mobile */
        padding: 10px; /* Reduce padding further */
    }

    h4 {
        font-size: 1rem;
    }

    h6 {
        font-size: 0.9rem;
    }

    p, ul {
        font-size: 0.8rem;
    }
}


@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.job-description {
    max-width: 1000px;
    margin: 0px auto;
    padding: 20px;
    /*background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
    border-radius: 8px;
}

h4 {
    text-align: left;
    font-size: 27px !important;
}

h6 {
    margin-top: 20px;
    font-size: 1.1em;
}

ul {
    /*list-style-type: disc;*/
    padding-left: 20px;
    color: black !important;
}

.content ul li {
    margin-bottom: 10px;
    list-style: disc !important;
    margin-left: 30px !important;
}

p {
    font-size: 1.1em;
    margin: 10px 0;
    margin-left: 10px !important;
}

/*section {
    margin-bottom: 20px;
}*/

    section p, section ul {
        font-size: 15px;
        text-align:justify;
        color: black !important;
    }

    section h6 {
        margin-top: 30px;
        font-size: 19px;
        font-weight: 500;
        color: #333;
    }



@media (max-width: 600px) {
    .job-description {
        padding: 15px;
    }

    h4 {
        font-size: 1.5em;
    }

    h6 {
        font-size: 1.1em;
    }

    ul li {
        font-size: 1em;
    }

    p {
        font-size: 1em;
    }

    section h6 {
        margin-top: 30px;
        font-size: 19px;
        font-weight: 500;
        color: #333;
    }
}

.btn5 {
    display: inline-block;
    padding: .5rem .5rem !important;
    border-radius: .25rem;
    color: #fff;
    background-color: #25a;
    cursor: pointer;
}

.submit-btn {
    position: relative;
    padding: 5px 13px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    background: #2575fc;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

    .submit-btn .btn-text {
        display: inline-block;
        transition: opacity 0.3s ease;
    }

    .submit-btn .spinner {
        display: none;
        width: 20px;
        height: 20px;
        border: 3px solid transparent;
        border-top: 3px solid #fff;
        border-radius: 50%;
        animation: spin 1s linear infinite;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

.heading {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0px;
    animation: fadeIn 1s ease-in-out;
}

.form_container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
}

.form_control input, .form_control select, .textarea_control textarea {
    width: 100%;
    padding: 5px;
    font-size: 1rem;
    border-radius: 5px;
    border: 1px solid #ccc;
    outline: none;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.form_control select {
    width: 100%;
    height: 40px;
    padding: 10px;
    font-size: 1rem;
    border-radius: 5px;
    border: none;
    outline: none;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

    .form_control input:focus, .form_control select:focus, .textarea_control textarea:focus {
        box-shadow: 0px 4px 8px rgba(99, 179, 237, 0.8);
        transform: scale(1.02);
    }

/* Keyframes for gradient animation */
@keyframes gradientBackground {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Modal entrance animation */
@keyframes modalEnter {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(-20deg);
    }

    50% {
        transform: scale(1.05) rotate(5deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* Modal exit animation */
@keyframes modalExit {
    0% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }

    100% {
        opacity: 0;
        transform: scale(0.8) rotate(-10deg);
    }
}

/* Apply animations to modal */
.modal.show .modal-dialog {
    animation: modalEnter 1s ease-out;
}

.modal.fade .modal-dialog {
    animation: modalExit 0.5s ease-in;
}

/* Header Button Animation */
/*.modal-header button.close:hover span {
    animation: shake 0.5s ease infinite;
    transform-origin: center;
}
*/
/*@keyframes shake {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-3px);
    }

    50% {
        transform: translateX(3px);
    }

    75% {
        transform: translateX(-3px);
    }

    100% {
        transform: translateX(0);
    }
}*/

/* Animated submit button */
#btnUniqueSubmit:hover {
    background: linear-gradient(45deg, #ff6a00, #ee0979);
    box-shadow: 0px 5px 15px rgba(255, 100, 0, 0.5);
    transform: scale(1.1);
    animation: pulse 0.8s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0px 5px 15px rgba(255, 100, 0, 0.5);
    }

    50% {
        box-shadow: 0px 10px 25px rgba(255, 100, 0, 0.7);
    }

    100% {
        box-shadow: 0px 5px 15px rgba(255, 100, 0, 0.5);
    }
}

.hidden {
    display: none;
}

.success-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1050;
    text-align: center;
}

.paper {
    background: linear-gradient(45deg, #4caf50, #81c784); /* "Plast color paper" effect */
    color: white;
    padding: 20px 40px;
    border-radius: 8px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    animation: bounceIn 1s ease-out, fadeOut 3s 2s ease-in forwards;
}

/* Bounce In Animation */
@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    70% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
    }
}

/* Fade Out Animation */
@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

.common-heading {
    text-align: center;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 1px;
    position: relative;
}

    .common-heading::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: #ff6f61;
    }


/*--------------------------- form loading -------------------------------*/
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
    display: flex; /* Using Flexbox */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
}

.loader-container {
    position: relative;
    width: 100px;
    height: 100px;
    /*top:50px;
    left:50px;*/
}

.rotating-circle {
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 4px solid transparent;
    animation: spin 5s linear infinite;
    top: -60px;
    left: -60px;
}

    .rotating-circle:nth-child(1) {
        border-top: 4px solid #6aaf08;
        animation-duration: 3s;
    }

    .rotating-circle:nth-child(2) {
        border-bottom: 4px solid black;
        animation-duration: 2s;
    }

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}



.loader-container img {
    position: absolute;
    /*   top: 0;
    left: 30%; */
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    animation: fadeBounce 2s infinite alternate;
}

/* Simple fade and bounce effect */
@keyframes fadeBounce {
    0% {
        opacity: 0.5; /* Start with low opacity */
        transform: translate(-50%, -50%) translateY(-10px); /* Move image up */
    }

    100% {
        opacity: 1; /* Full opacity */
        transform: translate(-50%, -50%) translateY(10px); /* Move image down */
    }
}

