@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Open Sans", Arial, sans-serif;
}

.main-container {
    width: 100%;
}

header {
    display: flex;
    justify-content: center;
    background-color: #F6F6F6;
    padding: 0px 0;
}

.main-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 10px 0px;
}

.Employes-tabs {
    display: flex;
    gap: 24px;
    font-size: 16px;
    line-height: 20px;
    font-family: "Open Sans", Arial, sans-serif;
    margin-bottom: 0px;
    color: #1A1818;
    font-weight: normal;
}

.Employes-tab {
    background: none;
    border: none;
    padding: 0;
    font-size: 16px;
    line-height: 20px;
    font-family: "Open Sans", Arial, sans-serif;
    cursor: pointer;
    position: relative;
    font-weight: 400;
      color: #1A1818 !important;
}

.Employes-tab.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 100%;
    height: 2px;
    background: #005DE2;
}

.Employes-tab button{
  color: #1A1818 !important;
}

.headerleft,
.headerright {
    display: flex;
    gap: 20px;
}

.search-wrapper {
    position: relative;
    display: inline-block;
}

.search-wrapper input {
    padding: 8px 36px 8px 12px;
    border-radius: 0px;
    border: none;
    border-bottom: 2px solid #999;
    width: 500px;
    font-size: 16px;
    background-color: #F6F6F6;
    font-family: "Open Sans", Arial, sans-serif;
}

.search-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5px;
    /* background-color: #ffffff; */
    flex-wrap: wrap;

}

.dropdown {
    position: relative;
    display: inline-block;
    top: 0px;
}

.dropdown>a {
    text-decoration: none;
    color: #333;
    padding: 10px 20px;
    /* background: #ffffff; */
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.arrow-icon {
    width: 15px;
    height: 10px;
    transition: transform 0.3s ease;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 160px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 10;
}

.dropdown-content a {
    padding: 10px 15px;
    display: block;
    text-decoration: none;
    color: #333;
}

.dropdown-content a:hover {
    background-color: #f5f5f5;
}

.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover>a::after,
.dropdown:focus-within>a::after {
    transform: rotate(180deg);
    /* Upward arrow */
}

.menu-toggle {
    font-size: 24px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.menu-toggle.fade-out {
    opacity: 0;
}

.nav-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.nav-links a,
.headerleft a,
.headerright a {
    text-decoration: none;
    color: #000;
    font-weight: 400;
    font-size: 16px;
    font-family: "Open Sans", Arial, sans-serif;
    text-align: center;
    padding: 10px;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover,

.headerright a:hover {
    color: #681CD6;
    border-bottom: 2px solid #681CD6;
    /* border-radius: 15px; */

}


.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    font-family: "Open Sans", Arial, sans-serif;

}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 40px 5% 0px;
    gap: 30px;
    background-color: #E5EEFC;
}

.hero-content {
    max-width: 775px;
}

.font26 {
    font-size: 50px;
    line-height: 60px;
    font-weight: 600;
    margin-bottom: 25px;
    font-family: "Open Sans", Arial, sans-serif;
}

.font20 {
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: normal;
    font-family: "Open Sans", Arial, sans-serif;
}

.buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.buttons button {
    padding: 18px 18px;
    font-size: 16px;
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: bold;
    background-color: #005DE2;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 280px;
}

.buttons button:hover {
    background-color: #0045b5;
    transform: scale(1.05);
}

.buttons1 {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.buttons1 button {
    padding: 18px 18px;
    font-size: 16px;
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: bold;
    background-color: #005DE2;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 380px;
}

.buttons1 button:hover {
    background-color: #0045b5;
    transform: scale(1.05);
}

.buttons1 a {
    color: #ffffff;
    text-decoration: none;
}

.buttons2 {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding: 0px 0px 50px 0px;
}

.buttons2 button {
    padding: 18px 18px;
    font-size: 16px;
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: bold;
    background-color: #ffffff;
    color: #043B8E;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 380px;
}

.buttons2 button:hover {
    background-color: #ffffff;
    transform: scale(1.05);
}

.buttons2 a {
    color: #043B8E;
    text-decoration: none;
}

.buttons3 {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.buttons3 button {
    padding: 18px 18px;
    font-size: 16px;
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: bold;
    background-color: #005DE2;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 300px;
}

.buttons3 button:hover {
    background-color: #0045b5;
    transform: scale(1.05);
}

.buttons3 a {
    color: #ffffff;
    text-decoration: none;
}

.buttons4 {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.buttons4 button {
    padding: 18px 18px;
    font-size: 16px;
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: bold;
    background-color: #005DE2;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 480px;
}

.buttons4 button:hover {
    background-color: #0045b5;
    transform: scale(1.05);
}

.buttons4 a {
    color: #ffffff;
    text-decoration: none;
}

.buttons5 {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.buttons5 button {
    padding: 16px 18px;
    font-size: 16px;
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: bold;
    background-color: #005DE2;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 200px;
}

.buttons5 button:hover {
    background-color: #0045b5;
    transform: scale(1.05);
}

.buttons5 a {
    color: #ffffff;
    text-decoration: none;
}

.buttons6 {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding: 30px 0px 0px 0px;
}

.buttons6 button {
    padding: 0px 18px;
    font-size: 16px;
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: bold;
    background-color: #005DE2;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 380px;
}

.buttons6 button:hover {
    background-color: #0045b5;
    transform: scale(1.05);
}

.buttons6 a {
    color: #ffffff;
    text-decoration: none;
}

.button-border {
    background-color: transparent !important;
    color: #902AF1 !important;
    border: 1px solid #902AF1 !important;
    padding: 6px 18px !important;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.button-border:hover {
    color: #681CD6 !important;
    border: 1px solid #681CD6 !important;
}


.ct2 {
    background-color: #902AF1 !important;
    color: #ffffff !important;
    padding: 6px 18px !important;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.ct2:hover {
    background-color: #681CD6 !important;
}


.button-border1 {
    background-color: transparent !important;
    color: #000000 !important;
    border: 2px solid #005DE2 !important;
    transition: all 0.3s ease;
}

.button-border1:hover {
    background-color: #005DE2;
    color: white;
    transform: scale(1.05);
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.learner-pathways {
    padding: 40px 10%;
}

.learner-pathways h2 {
    font-size: 28px;
    font-family: "Open Sans", Arial, sans-serif;
    margin-bottom: 15px;
}

.learner-pathways ul {
    list-style: disc;
    padding-left: 20px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: zoomIn 0.4s ease;
}

.modal-content input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
}

.modal-content button {
    padding: 10px 20px;
    background: #005DE2;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-family: "Open Sans", Arial, sans-serif;
    cursor: pointer;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



@keyframes zoomIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* company logo section css start */
.logosection {
    padding: 50px 5%;
    margin: 0;
}

.logo-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.companylogos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    flex: 1;
    justify-items: center;
}

.companylogos img {
    width: 240px;
    max-width: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.companylogos img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


.companylogos-content {
    flex: 1;
    margin-top: -68px;
}

.companylogos-content-inside h2 {
    font-size: 46px;
    line-height: 50px;
    font-weight: 300;
    margin-bottom: 30px;
    color: #1A1818;
    font-family: "Open Sans", Arial, sans-serif;
}

.companylogos-content-inside p {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 30px;
    color: #1A1818;
    font-family: "Open Sans", Arial, sans-serif;
}

.impact-btn {
    background: #0056d2;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    justify-content: center;
    align-items: center;
}


/* Button styling */
.Employes-button {
    background-color: #005DE2;
    color: #fff;
    padding: 15px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

.Employes-button:hover {
    box-shadow: 0 8px 20px rgba(0, 93, 226, 0.3), 0 4px 12px rgba(0, 93, 226, 0.2);
    transform: translateY(-2px) scale(1.01);
    transition: all 0.3s ease;
}


.hero-section {
    display: flex;
    background: #f7f7f7;
    text-align: left;
    padding: 60px 5%;
    gap: 30px;
}

.left-hero-section {
    width: 100%;
    max-width: 700px;
}

.right-hero-section {
    width: 100%;
    max-width: 500px;
}

.hero-section h1 {
    font-size: 45px;
    line-height: 50px;
    font-weight: 300;
    margin-bottom: 15px;
    color: #1A1818;
    font-family: "Open Sans", Arial, sans-serif;
}

.hero-section p {
    font-size: 18px;
    line-height: 22px;
    color: #1A1818;
    font-weight: normal;
    font-family: "Open Sans", Arial, sans-serif;
}

.hero-section .cta-btn {
    background: #0056d2;
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    margin: 20px 0;
}

.hero-section img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}

.future-section {
    padding: 60px 5%;
}

.future-section h2 {
    color: #1A1818;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 300;
    font-size: 45px;
}

.feature2sone {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.feature2 {
    flex: 1 1 200px;
    max-width: 250px;
    text-align: center;
}

.feature2 img {
    width: 100%;
    max-width: 250px;
    margin-bottom: 10px;
}

.feature2 h4 {
    font-size: 24px;
    line-height: 28px;
    font-weight: normal;
    color: #1A1818;
}

.testimonial {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
}

.info-box-img {
    flex: 1 1 100%;
    min-width: auto;
}

.info-box-img img {
    width: 100%;
    max-width: 1150px;
    height: 100%;
    object-fit: cover;
}

.info-box {
    flex: 1 1 60%;
    background-color: #003399;
    color: #fff;
    padding: 50px 6% 0px 5%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: auto;
}

.info-box h3 {
    font-size: 45px;
    line-height: 50px;
    font-weight: 300;
    margin-bottom: 20px;
    font-family: "Open Sans", Arial, sans-serif;
}

.info-box p {
    font-size: 16px;
    line-height: 22px;
    font-weight: normal;
    margin-bottom: 30px;
    font-family: "Open Sans", Arial, sans-serif;
}

.cta-btn {
    display: inline-block;
    background-color: #fff;
    color: #003399;
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    margin-bottom: 40px;
    transition: background 0.3s;
}

.cta-btn:hover {
    background-color: #e0e0e0;
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.feature {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 200px;
    width: 100%;
}

.feature-icon img {
    width: 88px;
}

.feature-title {
    font-weight: bold;
    font-size: 16px;
    font-family: "Open Sans", Arial, sans-serif;
}

.feature-desc {
    font-size: 14px;
    color: #e0e0e0;
    font-family: "Open Sans", Arial, sans-serif;
}

@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

.partner-section {
    padding: 60px 20px;
    background: #fafafa;
    font-family: "Open Sans", Arial, sans-serif;
}

.partner-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin: auto;
    padding: 0px 5%;
}

.partner-left {
    flex: 1;
    max-width: 690px;
}

.partner-left h2 {
    font-size: 45px;
    line-height: 50px;
    font-weight: normal;
    margin-bottom: 16px;
    font-weight: 300;
    margin-top: 0px;
    font-family: "Open Sans", Arial, sans-serif;
}

.partner-left p {
    font-size: 16px;
    line-height: 22px;
    font-weight: normal;
    color: #000000;
    margin-bottom: 20px;
    font-family: "Open Sans", Arial, sans-serif;
}

.partner-left h4 {
    font-size: 24px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: "Open Sans", Arial, sans-serif;
}

.benefits {
    list-style: none;
    padding-left: 0;
    font-size: 16px;
    line-height: 20px;
    font-weight: normal;
    color: #000000;
    font-family: "Open Sans", Arial, sans-serif;
}

.partner-form {
    flex: 1;
    max-width: 700px;
}

.partner-form form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.form-row input,
.form-row select {
    flex: 1;
    padding: 18px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    background: #F6F6F6;
    font-family: "Open Sans", Arial, sans-serif;
    width: 100%;
    color: #000000 !important;

}

.custom-select1 {
    position: relative;
    width: 342px;
    background: #F6F6F6;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.custom-select1 select {
    width: 100%;
    padding: 18px 50px 18px 16px;
    font-size: 14px;
    border: none;
    background: transparent;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    color: #000000;
    font-family: inherit;
    font-weight: 400;
}

.custom-select1:focus-within {
    outline: 2px solid #0066ff;
}

.custom-select1 .line1 {
    position: absolute;
    right: 36px;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background-color: #ccc;
}

.custom-select1 .arrow1 {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 16px;
    color: #333;
    font-family: "Open Sans", Arial, sans-serif;
}

.submit-btn {
    background: #0066ff;
    color: #fff;
    border: none;
    padding: 18px 20px;
    font-size: 18px;
    line-height: 26px;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 300px;
    font-family: "Open Sans", Arial, sans-serif;
}

.submit-btn:hover {
    background: #004ecc;
}

.disclaimer {
    font-size: 16px;
    color: #000000;
    margin: 0;
    font-family: "Open Sans", Arial, sans-serif;
    padding: 15px 0px;

}




.testimonial-section {
    padding: 40px 20px 10px 20px;
    background-color: #fff;
    text-align: center;
    font-family: "Open Sans", Arial, sans-serif;
}

.testimonial-header {
    width: 100%;
    max-width: 100%;
}

.testimonial-header h3 {
    font-size: 30px;
    line-height: 34px;
    font-weight: 600;
    color: #1A1818;
    margin: 0px 0px 5px 0px;
    font-family: "Open Sans", Arial, sans-serif;
}

.testimonial-header h2 {
    font-size: 45px;
    line-height: 50px;
    font-weight: 300 !important;
    margin: 0px 0px 15px;
    font-family: "Open Sans", Arial, sans-serif;

}

.testimonial-header p {
    color: #1A1818;
    font-size: 16px;
    line-height: 20px;
    font-weight: normal;
    max-width: 100%;
    margin: 0 auto 40px;
    font-family: "Open Sans", Arial, sans-serif;
}

.testimonial-grid {
    display: flex;
    justify-content: center;
    gap: 100px;
    flex-wrap: wrap;
}

.testimonial-card {
    background: #ffffff;
    /* border-radius: 16px; */
    overflow: hidden;
    max-width: 300px;
    text-align: left;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card,
.img1 {
    width: 100%;
    height: auto;
    display: block;
}

.testimonial-content-div {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin: 0 auto;
}



.testimonial-content,
a {
    font-size: 18px;
    line-height: 24px;
    font-weight: bold;
    font-family: "Open Sans", Arial, sans-serif;
    color: #005DE2;
    padding: 0px 0px 0px 0px;
    text-align: right;
}

.testimonial-text {
    padding: 20px;
    color: #fff;
    position: relative;
}

.testimonial-text p {
    font-size: 14px;
    margin-bottom: 10px;
    font-style: italic;
    font-family: "Open Sans", Arial, sans-serif;
}

.testimonial-text strong {
    font-size: 13px;
    display: block;
    font-family: "Open Sans", Arial, sans-serif;
}

.blue-bg {
    background-color: #002f87;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

.talent-search-section {
    text-align: center;
    padding: 40px 20px 60px 20px;
    font-family: "Open Sans", Arial, sans-serif;
}

.join-banner {
    margin-bottom: 20px;
}

.join-button {
    background-color: #0066ff;
    color: #fff;
    padding: 16px 30px;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    line-height: 26px;
    font-family: "Open Sans", Arial, sans-serif;
}

.join-button:hover {
    background-color: #0052cc;
}

.talent-title {
    margin-bottom: 30px;
    font-size: 30px;
    line-height: 34px;
    font-weight: 500;
    font-family: "Open Sans", Arial, sans-serif;
    padding: 50px 0px 10px 0px;
}

.talent-form {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-end;
    margin-top: 20px;

}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    font-size: 16px;
    margin-bottom: 6px;
    color: #333;
    font-family: "Open Sans", Arial, sans-serif;
}

.custom-select {
    position: relative;
    width: 240px;
    background: #fafafa;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.custom-select select {
    width: 100%;
    padding: 18px 50px 18px 16px;
    font-size: 14px;
    border: none;
    background: transparent;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    color: #000000;
    font-family: inherit;
    font-weight: 400;
}

.custom-select:focus-within {
    outline: 2px solid #0066ff;
}

.custom-select .line {
    position: absolute;
    right: 36px;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background-color: #ccc;
}

.custom-select .arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 16px;
    color: #000000;
    font-family: "Open Sans", Arial, sans-serif;
}

.search-btn {
    background: #0066ff;
    color: #fff;
    border: none;
    padding: 14px 20px;
    font-weight: bold;
    font-size: 18px;
    line-height: 26px;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    width: 100%;
    max-width: 200px;
    font-family: "Open Sans", Arial, sans-serif;
}

.search-btn:hover {
    background: #004ecc;
}



/*	  footer section*/

.site-footer {
    background: #000;
    color: #fff;
    font-family: "Open Sans", Arial, sans-serif;
    padding: 40px 20px 20px;
}

.footer-container {
    margin: auto;
    padding: 20px 5%;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-column {
    flex: 1;
    min-width: 150px;
}

.footer-column h4 {
    font-size: 16px;
    line-height: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 0px;
    font-family: "Open Sans", Arial, sans-serif;

}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    line-height: 20px;
    font-weight: normal;
    font-family: "Open Sans", Arial, sans-serif;

}

.footer-column ul li a:hover {
    color: #7b2cff;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-end;
}

.social-icons a {
    background: #7b2cff;
    color: #fff;
    width: 40px;
    height: 40px;
    max-height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    transform: scale(1);
    font-family: "Open Sans", Arial, sans-serif;
    padding: 10px !important;
}

.social-icons a:hover {
    background: #5a1be4;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* 
hr {
  margin: 30px 0;
  border: none;
  border-top: 1px solid #37245f;
} */

.gradient-line {
    height: 1px;
    width: 100%;
    background: linear-gradient(to right, #7b2cff, #002fff, #063B90);
    border-radius: 2px;
    margin: 20px 0px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-family: "Open Sans", Arial, sans-serif;

}

.footer-bottom p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    line-height: 20px;
    font-weight: normal;
    color: #ffffff;
    flex-wrap: wrap;
    font-family: "Open Sans", Arial, sans-serif;

}

.footer-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-links a {
    font-size: 16px;
    line-height: normal;
    font-weight: normal;
    color: #ffffff;
    text-decoration: none;
    padding: 0px;
}

.footer-links a:hover {
    color: #7b2cff;

}

/* Mobile: click using focus-within */
.dropdown:focus-within .dropdown-content {
    display: block;
}

/* Optional: prevent page scroll if dropdown open on mobile */
.dropdown>a:focus {
    outline: none;
}

/* Extra css for back to top and preloader */

#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none;
    font-size: 22px;
    font-weight: 700;
    background-color: #7b2cff;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

#backToTop:hover {
    background-color: #4a00e0;
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}


#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.spinner {
    position: relative;
    width: 80px;
    height: 80px;
}

.spinner img {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Rotating ring */
.rotating-border {
    width: 80px;
    height: 80px;
    border: 4px solid #ccc;
    border-top: 4px solid #005DE2;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Rotation animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}


/* Responsive */
@media (max-width: 1629px) {
    .form-row {
        display: flex;
        gap: 16px;
        flex-wrap: nowrap;
    }
}


@media (max-width: 1599px) {

    .testimonial {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row;
    }

    .info-box-img {
        flex: 1 1 100%;
        min-width: auto;
    }

    .info-box-img img {
        width: 100%;
        max-width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .info-box {
        flex: 1 1 100%;
        background-color: #003399;
        color: #fff;
        padding: 50px 6% 50px 5%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        height: auto;
        max-width: 100%;
    }

    .feature-list {
        grid-template-columns: 1 2fr !important;
        gap: 25px;
    }

    .form-row {
        display: flex;
        gap: 16px;
        flex-wrap: nowrap;
    }
}

@media (max-width: 1542px) {
    .companylogos-content {
        flex: 1;
        margin-top: 0px;
    }

    .companylogos img {
        width: 100%;
        max-width: 250px;
    }

    .companylogos {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature2 img {
        width: 100%;
        max-width: 200px;
        margin-bottom: 10px;
    }

    .testimonial-inner {
        text-align: right;
        display: flex;
        justify-content: flex-end;
        width: 78%;
    }

}

@media (max-width: 1396px) {
    .hero-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        padding: 40px 5% 0px;
        gap: 30px;
        background-color: #E5EEFC;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
    }

    .hero-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .custom-select1 {
        position: relative;
        width: 280px;
        background: #F6F6F6;
        border: 1px solid #d9d9d9;
        border-radius: 10px;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    }

    .testimonial-inner {
        text-align: right;
        display: flex;
        justify-content: flex-end;
        width: 84%;
    }


}

@media (max-width: 1200px) {
    .custom-select1 {
        position: relative;
        width: 245px;
        background: #F6F6F6;
        border: 1px solid #d9d9d9;
        border-radius: 10px;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    }

    .testimonial-inner {
        text-align: right;
        display: flex;
        justify-content: flex-end;
        width: 95%;
    }

}

@media (max-width: 1100px) {
    .form-row {
        flex-direction: column;
        flex-wrap: wrap;
    }

    .custom-select1 {
        position: relative;
        width: 400px;
        background: #F6F6F6;
        border: 1px solid #d9d9d9;
        border-radius: 10px;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    }
}



/* Tablet: 1024px and below */
@media (max-width: 1024px) {
    .testimonial {
        flex-direction: column;
    }

    .info-box {
        padding: 30px 6%;
    }

    .feature-list {
        grid-template-columns: 1 3fr;
        gap: 25px;
    }

    .info-box h3 {
        font-size: 32px;
        line-height: 40px;
    }

    .info-box p {
        font-size: 15px;
        line-height: 22px;
    }

    .cta-btn {
        padding: 12px 18px;
        font-size: 15px;
    }

    .feature-icon img {
        width: 70px;
    }

    .feature-title {
        font-size: 15px;
    }

    .feature-desc {
        font-size: 13px;
    }

    .form-row {
        flex-direction: column;
    }

}

@media (max-width: 900px) {
    .testimonial-grid {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-card {
        max-width: 90%;
    }

    .custom-select1 {
        position: relative;
        width: 694px;
        background: #F6F6F6;
        border: 1px solid #d9d9d9;
        border-radius: 10px;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    }

    .form-row {
        flex-direction: column;
    }

    .partner-content {
        flex-direction: column;
    }
}

@media (max-width: 820px) {
    .mobhide {
        display: none;
    }

    header {
        padding: 15px 0;
    }

    .main-header {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 16px;
    }

    .headerleft,
    .headerright {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        gap: 10px;
        flex-wrap: wrap;
    }

    .headerleft a {
        flex: 1;
        text-align: left;
    }

    .Employes-tabs,
    .headerright a {
        flex: 1;
        text-align: center;
    }

    .Employes-tabs {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20%;
    }

    .search-wrapper {
        width: 100%;
    }

    .search-wrapper input {
        width: 100%;
        box-sizing: border-box;
    }

    .nav-bar {
        /* flex-direction: column; */
        align-items: flex-start;
        padding: 15px 0;
    }

    .menu-toggle {
        display: block;
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }

    .dropdown-content {
        width: 100%;
    }

    .dropdown {
        position: relative;
        display: inline-block;
        top: 0px;
    }

    .arrow-icon {
        width: 20px;
        height: auto;
        padding-left: 6px;
        transition: transform 0.3s ease;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
        gap: 15px;
    }

    .nav-links a {
        padding: 5px 0 15px 0px;
        width: 100%;
        border-bottom: 1px solid #eee;
        display: block;
    }

    .nav-links.show {
        display: flex;
    }

    .hero-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap !important;
        padding: 40px 5% 0px;
        gap: 30px;
        background-color: #E5EEFC;
    }


    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content,
    .hero-image {
        max-width: 100%;
    }

    .headermiddle input {
        width: 100% !important;
        max-width: 100%;
    }

    .buttons {
        justify-content: center;
    }

    /* company logo section css */
    .Employe-company-logo {
        flex-direction: column;
        text-align: center;
    }

    .clientimage {
        grid-template-columns: repeat(3, 1fr);
        justify-items: center;
    }

    .Companylogo-right {
        padding-top: 20px;
    }

    .hero-section h1 {
        font-size: 24px;
    }

    .hero-section {
        display: flex;
        background: #f7f7f7;
        text-align: left;
        padding: 60px 5%;
        gap: 30px;
        flex-wrap: wrap;

    }

    .feature2sone {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .feature2 img {
        width: 100%;
        max-width: 150px;
        margin-bottom: 10px;
    }

    .custom-select1 {
        position: relative;
        width: 100%;
        background: #F6F6F6;
        border: 1px solid #d9d9d9;
        border-radius: 10px;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    }

    /* All font size for mobile */
    .font26 {
        font-size: 30px;
        line-height: 38px;
        font-weight: normal;
        margin-bottom: 25px;
        font-family: "Open Sans", Arial, sans-serif;
    }

    .companylogos-content-inside h2 {
        font-size: 26px !important;
        line-height: 32px !important;
        margin-bottom: 10px !important;
    }

    .companylogos-content-inside p {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 20px;
        font-family: "Open Sans", Arial, sans-serif;
    }

    .future-section h2 {
        color: #1A1818;
        text-align: center;
        margin-bottom: 40px;
        font-weight: normal;
        font-size: 26px;
        line-height: 32px;
    }

    .feature2 h4 {
        font-size: 16px;
        line-height: 24px;
        font-weight: normal;
    }


    .future-section {
        padding: 25px 5%;
    }

    .info-box h3 {
        font-size: 26px;
        line-height: 32px;
        margin-bottom: 10px;
    }

    .info-box p,
    .feature-title,
    .feature-desc {
        font-size: 16px !important;
        line-height: 24px !important;
        margin-bottom: 10px !important;
    }

    .partner-left h2 {
        font-size: 26px;
        line-height: 32px;
        margin-bottom: 16px;
        font-weight: 500;
        margin-top: 0px;
        font-family: "Open Sans", Arial, sans-serif;
    }

    .partner-section {
        padding: 25px 20px;
        background: #fafafa;
        font-family: 'Arial', sans-serif;
    }

    .partner-left h4 {
        font-size: 20px;
        line-height: 24px;
        font-weight: 600;
        margin-bottom: 10px;
        font-family: "Open Sans", Arial, sans-serif;
    }

    .benefits {
        list-style: none;
        padding-left: 0;
        font-size: 16px;
        line-height: 26px;
        font-weight: normal;
        color: #333;
        font-family: "Open Sans", Arial, sans-serif;
    }

    .partner-content {
        gap: 20px;
    }

    .testimonial-section {
        padding: 25px 20px;
        background-color: #fff;
        text-align: center;
        font-family: "Open Sans", Arial, sans-serif;
    }

    .testimonial-header h2 {
        font-size: 26px;
        line-height: 32px;
        font-weight: normal !important;
        margin: 0px 0px 15px;
        font-family: "Open Sans", Arial, sans-serif;
    }

    .testimonial-header p {
        line-height: 22px !important;
    }

    .testimonial-grid {
        gap: 30px;
    }

    .talent-search-section {
        text-align: center;
        padding: 0px 20px 30px 20px;
        font-family: 'Arial', sans-serif;
    }

    .talent-title {
        margin-bottom: 30px;
        font-size: 28px;
        line-height: 34px;
        font-weight: 500;
        font-family: "Open Sans", Arial, sans-serif;
        padding: 10px 0px 0px 0px;
    }
}

@media (max-width: 768px) {

    .talent-form {
        flex-direction: column;
        align-items: center;
    }

    .custom-select {
        width: 100% !important;
        max-width: 100%;
    }

    .partner-content {
        flex-direction: column;
    }

    .form-group {
        display: flex;
        flex-direction: column;
        text-align: left;
        width: 100%;
    }

    .form-row {
        flex-direction: column;
    }

    .footer-columns {
        /* flex-direction: column; */
        align-items: flex-start;
    }

    .social-icons {
        justify-content: flex-start;
        margin-top: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .logo-bar,
    .testimonial1 {
        flex-direction: column;
        align-items: center;
    }

    .companylogos {
        grid-template-columns: repeat(3, 1fr);
    }

    .companylogos-content-inside h2 {
        font-size: 28px;
    }

    .companylogos img {
        width: 100%;
        max-width: 200px;
    }

    .hero-section h1 {
        font-size: 26px;
        line-height: 34px;
    }

    .hero-section {
        display: flex;
        background: #f7f7f7;
        text-align: left;
        padding: 25px 0;
        gap: 30px;
        flex-wrap: wrap;

    }

    .hero-section p {
        font-size: 16px;
        line-height: 24px;
        color: #1A1818;
        font-weight: normal;
        font-family: "Open Sans", Arial, sans-serif;
    }

    .right-hero-section img {
        width: 100%;
        max-width: 280px;
        height: auto;
        margin: 20px 0;
    }

    .feature2sone {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .feature2 img {
        width: 100%;
        max-width: 150px;
        margin-bottom: 10px;
    }

    .info-box {
        padding: 20px;
    }

    .disclaimer {
        font-size: 16px;
        color: #000000;
        margin: 0;
        font-family: "Open Sans", Arial, sans-serif;
        padding: 5px 0px;

    }
}

/* Mobile: 600px and below */
@media (max-width: 600px) {
    .info-box {
        padding: 24px 5%;
    }

    .info-box h3 {
        font-size: 24px;
        line-height: 30px;
    }

    .info-box p {
        font-size: 14px;
        line-height: 20px;
    }

    .cta-btn {
        font-size: 14px;
        padding: 10px 16px;
    }

    .feature-icon img {
        width: 60px;
    }

    .pt0 {
        padding-top: 0px !important;
    }
}

@media (max-width: 497px) {

    .Employes-tabs {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10%;
    }

    .buttons1 button {
        padding: 14px 14px;
        font-size: 16px;
        font-family: "Open Sans", Arial, sans-serif;
        font-weight: bold;
        background-color: #005DE2;
        color: white;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.3s ease;
        width: 100%;
    }

    .buttons2 button {
        padding: 14px 10px;
        margin-top: 15px;
    }

    .buttons3 button {
        padding: 14px 14px;
        font-size: 16px;
        font-family: "Open Sans", Arial, sans-serif;
        font-weight: bold;
        background-color: #005DE2;
        color: white;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.3s ease;
        width: 100%;
    }

    .buttons4 button {
        padding: 14px 10px;
    }

    .buttons5 button {
        padding: 14px 14px;
    }

    .buttons6 button {
        padding: 0px 14px;
        font-size: 16px;
        font-family: "Open Sans", Arial, sans-serif;
        font-weight: bold;
        background-color: #005DE2;
        color: white;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.3s ease;
        width: 100%;
    }

    .custom-select1 {
        position: relative;
        width: 100%;
        background: #F6F6F6;
        border: 1px solid #d9d9d9;
        border-radius: 10px;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    }

    .footer-columns {
        flex-direction: column;
        align-items: center !important;
        text-align: center;
        gap: 20px;
    }

    .footer-column ul li a {
        padding: 0px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .footer-column a{
        text-align: center !important;
    }

    /* Extra css for back to top and preloader */

    #backToTop {
        position: fixed;
        bottom: 30px;
        right: 20px;
        display: none;
        font-size: 22px;
        font-weight: 700;
        background-color: #7b2cff;
        color: #fff;
        border: none;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        cursor: pointer;
        z-index: 1000;
        transition: all 0.3s ease;
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    }

    #backToTop:hover {
        background-color: #4a00e0;
        transform: scale(1.1);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

}

@media (max-width: 442px) {

    .headerleft {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 100%;
        gap: 0px;
        flex-wrap: nowrap !important;
    }

    .headerleft a {
        flex: 1;
        text-align: center;
        width: 20px !important;
        max-width: 20px !important;
    }

    .Employes-tabs {
        display: flex;
        justify-content: end;
        flex-wrap: nowrap !important;
        gap: 10%;
    }

    .logo img {
        width: 200px;
    }

    .Employes-tab {
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
        position: relative;
        font-weight: 400;
        padding: 10px 0px 10px 0px;
    }

    .Employes-tab.active::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0px;
        width: 100%;
        height: 2px;
        background: #005DE2;
        z-index: 999999;
    }
}


@media (max-width: 410px) {
    .companylogos {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* Very small mobile: 400px and below */
@media (max-width: 400px) {
    .info-box h3 {
        font-size: 20px;
        line-height: 26px;
    }

    .info-box p,
    .feature-title,
    .feature-desc {
        font-size: 13px;
    }

    .cta-btn {
        font-size: 13px;
        padding: 8px 14px;
    }

    .feature-icon img {
        width: 50px;
    }



    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}