:root {
    --primary-color: #0056b3;
    --secondary-color: #4a90e2;
    --accent-color: #5bc0de;
    --background-color: #f8f9fa;
    --text-color: #333;
    --white: #ffffff;
    --light-grey: #e9ecef;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    justify-content: center;
    align-items: center;
    scroll-behavior: smooth;
}

.apply_form label[for="userResume"]::after {
    content: "*";
    color: red;
}


/* Preloader style */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #ffffff;
    border-color: var(--accent-color) transparent var(--accent-color) transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Scroll animation */
.scroll-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.scroll-animate.show {
    opacity: 1;
    transform: translateY(0);
}

/* Header styles */
header {
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    max-width: 1200px;
    height: 70px;
    margin: 0 auto;
}

.logo {
    height: auto;
    width: 200px;
}

.nav-links {
    display: flex;
    list-style-type: none;
}

.nav-links li {
    margin-left: 1rem;
}

.nav-links li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: bold;
}

.nav-links li a.active {
    color: var(--primary-color);
}

.nav-links li a:hover {
    color: var(--primary-color);
}

/* Mobile menu styles */
.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger-icon {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    position: relative;
    transition: background-color 0.3s;
}

.hamburger-icon::before,
.hamburger-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s;
}

.hamburger-icon::before {
    top: -8px;
}

.hamburger-icon::after {
    bottom: -8px;
}

/* Hamburger icon animation */
.mobile-menu-button.active .hamburger-icon {
    background-color: transparent;
}

.mobile-menu-button.active .hamburger-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-button.active .hamburger-icon::after {
    bottom: 0;
    transform: rotate(-45deg);
}
.table-container{
    width: 100%;
    overflow-x: auto;
}
.apply_submissions{
    text-align: center;
    width: 100%;
}

.apply_submissions, .apply_submissions th, .apply_submissions td, .apply_submissions tr{
    border: 1px solid #d9d9d9;
    border-collapse: collapse;
    
}
.apply_submissions th, .apply_submissions td{
    padding: 10px;
    text-align: left;
}
.apply_submissions th, .apply_submissions td{
    font-size: 14px;
}

.apply_submissions tbody tr:nth-child(odd){
    background-color: #f9f9f9;
}
.apply_submissions a {
    background-color: #3b84d929;
    padding: 4px 11px;
    border-radius: 4px;
    color: #3c85d9;
    text-decoration: none;
    font-size: 14px;
}
.password_section {
    width: 100%;
    max-width: 400px;
    margin: 110px auto 50px !important;
    /* display: block; */
    height: calc(100vh - 522px);
    background-color: transparent !important;
    padding: 0px !important;
    display: flex
;
    align-items: center;
    justify-content: center;
}
.password_section .password_protected {
    padding: 40px 20px;
    background-color: #fff;
    width: 100%;
}
.password_section form#password_form  input[type="submit"] {
    padding: 10px 20px;
    background-color: #0056b3;
    color: #fff;
    border: 0;
        cursor: pointer;
        border-radius: 0;
}
form#password_form {
    display: flex;
    justify-content: center;
}
form#password_form input[type="password"] {
    width: 100%;
    padding: 0 10px;
    border-radius: 0;
    border-right: 0 !important;
    border: 1px solid;
}
@media (max-width: 768px) {
    
    .mobile-menu-button {
        display: block;
    }
 
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        margin: 0;
        text-align: center;
    }

    .nav-links li a {
        display: block;
        padding: 1rem;
    }
}


/* Main content styles */
main {
    margin-top: 60px;
}
/* Hero section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 80vh;
    background-image: linear-gradient(to top,rgba(0,0,0,0.6)50%,rgba(0,0,0,0.6)50%), url(../images/hero.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-content {
    max-width: 850px;
    text-align: center;
    padding: 8rem 2rem;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--background-color);
}

.hero p {
    font-size: 1rem;
    color: var(--background-color);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn-primary {
    background-image: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background-image: linear-gradient(to right, var(--secondary-color), var(--primary-color));
}

.btn-secondary {
    background-image: linear-gradient(to right, var(--light-grey), var(--white));
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background-image: linear-gradient(to right, var(--white), var(--light-grey));
}

.hero-image {
    max-width: 100%;
    height: auto;
}

/* Features section */
.features {
    padding: 4rem 0;
    background-color: var(--background-color);
}

.features-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 3rem;
}

.features-content {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.features-list {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-icon {
    width: 68px;
    height: 68px;
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
}

.feature-title {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    background-color: var(--background-color);
}

.feature-description {
    font-size: 1rem;
    color: var(--text-color);
}

.features-image {
    flex: 1;
}

.features-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    -webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
}

.features-image:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .password_section {
    height: auto;
}
    .features-content {
        flex-direction: column;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .features-image {
        order: -1;
        margin-bottom: 2rem;
    }
}

.cta {
    background-image: linear-gradient(to top,rgba(0,0,0,0.6)50%,rgba(0,0,0,0.6)50%), url(../images/cta.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: var(--white);
    text-align: center;
    padding: 4rem 2rem;
}

/* About page styles */
.about-hero {
    background-image: linear-gradient(to top,rgba(0,0,0,0.7)50%,rgba(0,0,0,0.7)50%), url(../images/about-hero.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 40vh;
    padding: 8rem 2rem;
    align-items: center;
    text-align: center;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* About Content Styles */
.about-content {
    padding: 4rem 0;
    background-color: #fff;
}

.about-nav {
    margin-bottom: 2rem;
}

.about-nav ul {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
    border-bottom: 2px solid #e0e0e0;
}

.about-nav li {
    margin-right: 1rem;
}

.about-nav a {
    display: inline-block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: var(--text-color);
    font-weight: bold;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.about-nav a.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}


.about-nav a:hover {
    color: var(--primary-color);
}

.about-grid {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.about-text {
    flex: 1;
}

.about-text h1 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    -webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
}

.about-image:hover img {
    -webkit-transform: scale(1.1);
	transform: scale(1.1);
}
@media (max-width: 1024px) {
.apply_submissions th:nth-child(5) {
        min-width: 140px;
    }
}
@media (max-width: 768px) {
    .about-grid {
        flex-direction: column;
    }

    .about-image {
        order: -1;
        margin-bottom: 1rem;
    }

    .about-nav ul {
        flex-wrap: wrap;
    }

    .about-nav li {
        margin-bottom: 0.5rem;
    }
}

.olcards,
.olcards * {
    
    justify-content: center;
    align-items: center;
}

.olcards {
    list-style: none;
    counter-reset: cardCount;
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    --cardsGap: 1rem;
    gap: var(--cardsGap);
    padding-bottom: var(--cardsGap);
}
.olcards li {
    counter-increment: cardCount;
    display: flex;
    color: white;
    --labelOffset: 1rem;
    --arrowClipSize: 1.5rem;
    margin-top: var(--labelOffset);
}

.olcards li::before {
    content: counter(cardCount, decimal-leading-zero);
    background: white;
    color: var(--cardColor);
    font-size: 2em;
    font-weight: 700;
    transform: translateY(calc(-1 * var(--labelOffset)));
    margin-right: calc(-1 * var(--labelOffset));
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-inline: 0.5em;
}

.olcards li .content {
    background-image: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --inlinePadding: 1em;
    --boxPadding: 0.5em;
    display: grid;
    padding: var(--boxPadding) calc(var(--inlinePadding) + var(--arrowClipSize))
    var(--boxPadding) calc(var(--inlinePadding) + var(--labelOffset));
    grid-template-areas:
    "icon title"
    "icon text";
    gap: 0.25em 1em;
    clip-path: polygon(
    0 0,
    calc(100% - var(--arrowClipSize)) 0,
    100% 50%,
    calc(100% - var(--arrowClipSize)) 100%,
    calc(100% - var(--arrowClipSize)) calc(100% + var(--cardsGap)),
    0 calc(100% + var(--cardsGap))
    );
    position: relative;
}
.olcards li .content::before {
    content: "";
    position: absolute;
    width: var(--labelOffset);
    height: var(--labelOffset);
    background: var(--cardColor);
    left: 0;
    bottom: 0;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    filter: brightness(0.75);
}
.olcards li .content::after {
    content: "";
    position: absolute;
    height: var(--cardsGap);
    width: var(--cardsGap);
    background: linear-gradient(to right, rgba(0, 0, 0, 0.25), transparent 50%);
    left: 0;
    top: 100%;
}
.olcards li .icon {
    grid-area: icon;
    align-self: center;
    font-size: 2em;
}
.olcards li .title {
    text-align: center;
}
.olcards li .content .title {
    grid-area: title;
    font-size: 1.25em;
    font-weight: 700;
}
.olcards li .content .text {
    grid-area: text;
}


/* Contact Section Styles */
.contact {
    padding: 4rem 0;
    background-color: #fff;
}

.contact h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-form {
    background-color: transparent;
    padding: 2rem;
    color: #fff;
    border-radius: 8px;
    gap: 2rem;
}

.contact img {
    flex: 1;
    width: 300px;
    height: auto;
}

.contact-grid {
    display: flex;
    gap: 2rem;
}

.contact-form {
    flex: 1;
    padding: 2rem;
    color: #fff;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

@media (max-width: 768px) {
    .about-grid {
        flex-direction: column;
    }

    .about-image {
        order: -1;
        margin-bottom: 1rem;
    }

    .about-nav ul {
        flex-wrap: wrap;
    }

    .about-nav li {
        margin-bottom: 0.5rem;
    }

    .contact-grid {
        flex-direction: column;
    }

    .contact-info,
    .contact-form {
        width: 100%;
    }
}
.contact-info h3,
.contact-form h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-info p,
.contact-form p {
    margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--white);
    border: 2px solid var(--secondary-color);
    border-radius: 4px;
}

.contact-form textarea {
    height: 150px;
}

/* FAQ page styles */
.faq-hero {
    background-image: linear-gradient(to top,rgba(0,0,0,0.7)50%,rgba(0,0,0,0.7)50%), url(../images/about-hero.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 40vh;
    padding: 8rem 2rem;
    align-items: center;
    text-align: center;
}

.faq-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.faq-subtitle {
    text-align: center;
    color: #6B7280;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.faq-title {
    text-align: center;
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.faq-description {
    text-align: center;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.faq-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-left-column {
    flex: 1;
}

.faq-left-column h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.faq-left-column p {
    color: #6B7280;
    margin-bottom: 1.5rem;
}

.contact-button {
    background-color: var(--primary-color);
    color: white;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-button:hover {
    background-color: var(--accent-color);
}

.faq-right-column {
    flex: 2;
}

.faq-item {
    border: 1px solid #E5E7EB;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem;
    background-color: white;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #F3F4F6;
}

.question-icon {
    background-color: #E5E7EB;
    color: #6B7280;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
}

.arrow-icon {
    margin-left: auto;
    transition: transform 0.3s;
}

.faq-question.active .arrow-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 1rem;
    background-color: #F9FAFB;
    color: #6B7280;
}

.faq-answer.active {
    display: block;
}

@media (min-width: 768px) {
    .faq-content {
        flex-direction: row;
    }

    .faq-title {
        font-size: 3rem;
    }
}

/* Popup styles */
.popup {
    display: none;
    position: fixed;
    top: 0;
}

/* Team section */
.team-section {
    padding: 4rem 2rem;
    background-color: #f3f4f6;
}

.team-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
}

.team-member-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.team-member h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: #6b7280;
}

/* Reviews section */
.reviews-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.reviews-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.reviews-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.review-item {
    display: none;
    padding: 2rem;
    text-align: center;
}

.review-item.active {
    display: block;
}

.review-text {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.review-author {
    font-weight: bold;
    color: var(--accent-color);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.prev-review,
.next-review {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    cursor: pointer;
    border-radius: 0.25rem;
    font-size: 1.25rem;
}

.prev-review:hover,
.next-review:hover {
    background-color: var(--accent-color);
}

/* Responsive styles */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .team-member-image {
        width: 150px;
        height: 150px;
    }
}

/* Footer styles */
footer {
    background-image: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--white);
    color: var(--white);
    padding: 2rem 1rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 2;
    margin-bottom: 1rem;
    min-width: 200px;
}

.footer-logo {
    width: 200px;
    height: auto;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style-type: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 0.5rem;
    border: none;
    border-radius: 4px 0 0 4px;
}

.newsletter-form button {
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    color: var(--light-text-color);
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.scroll-to-top svg {
    width: 20px;
    height: 20px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.animation-delay-200 {
    animation-delay: 0.2s;
}

.animation-delay-400 {
    animation-delay: 0.4s;
}



/*** Apply Form CSS start Here **/

.apply_form {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 10px;
}

.apply_form h2{
    font-size:50px;
    color:rgb(0, 0, 0);
    font-weight:normal;
    padding-bottom:25px;
}
.apply_form .form-group{
    margin-bottom: 14px;
}
.apply_form label{
   display: block;
   font-size: 18px;
   color: #000000;
}
.apply_form input{
   display: block;
   width: 100%;
   font-size: 16px;
   font-weight: normal;
   line-height: 22px;
   color: #33475b;
    border-width: 0 0 2px 0;
    border-color: #4a90e2;
    background-color: transparent;
    padding: 5px 15px;
}
.apply_form input:focus-visible {
    outline: 0 !important;
}
.apply_form  .hs-form-required{
    color: red;
}
.apply_form .error{
    font-size: 14px;
    color: #f2545b;
}
.apply_form .submit-btn{
    text-align: end;
    margin-top: 40px;
}

.apply_form .submit-btn button{
   
    cursor: pointer; 
}

.form-group-capcha {
    padding-top: 20px;
}
.apply_form .data_smt_msg {
    background-image: linear-gradient(45deg, #1b8b11, #68eb5c61);
    padding: 5px 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.apply_form .data_smt_msg p{
    margin:0;
    font-size: 18px;
        color: white;
}
.apply_form select, .apply_form .choose-file {
    width: 100%;
    outline: 0;
    border-bottom: 2px solid  #4a90e2 !important;
    border: none;
    background-color: transparent;
    font-size: 16px;
    font-weight: normal;
    line-height: 22px;
    color: #33475b;
    padding: 5px 15px;
}
.apply_form .file-input-group input[type=file] {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
.apply_form .files-row{
    display: flex;
    gap: 40px;
    margin-top: 20px;
}
.apply_form .files-row .form-group{
    width: 48%;
}
.apply_form .flex{
    display: flex;
}

.apply_form  .flex button {
    width: 20%;
    border-radius: 4px 4px 0 0;
}


/*** Apply Form CSS End Here **/

/* Responsive styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width:  100%;
        background-color: var(--white);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        margin: 0;
        text-align: center;
    }

    .nav-links li a {
        display: block;
        padding: 1rem;
    }

    .mobile-menu-button {
        display: block;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
    }
    
    .apply_form h2{
    font-size:24px;
    }
    
    .apply_form .data_smt_msg p {
     font-size: 14px;
   }
   .apply_form .files-row {
    flex-wrap: wrap;
    gap: 10px;
}
 .apply_form .files-row .form-group{
    width: 100%;
}
.apply_form  .flex button {
    width: 62%;
}
}

