* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== Global-Styling ===== */
:root {
    --primary-color: black;
    --secondary-color: white;
    --accent-color: #1A3347;
    --gradient-one: linear-gradient(to right, #FFFF6D, #8FDAFA);
    --gradient-two: linear-gradient(to right, #FEFF6D, #8FDAFA);
    --gradient-Third: linear-gradient(90deg, #F8DC52 3%, #31B1DD 75%);
    --primary-font: "Mona Sans";
    --Secondary-font: "Gantari";
    --third-font: "Cantarell";
    --fourth-font: "Roboto Flex";
}

.container {
    max-width: 90%;
    margin: auto;
}

p {
    margin: 0;
}

/* -------- Header -------- */
.header {
    background: linear-gradient(90deg, #d8ef7c, #8cc7d9);
    padding: 27px 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px;
}

.contact-btn {
    text-decoration: none;
    background: var(--accent-color);
    color: #fff;
    border: none;
    padding: 20px;
    border-radius: 6px;
    font-size: 30px;
    font-family: var(--primary-font);
    font-weight: 600;
    cursor: pointer;
}

/* ======== Hero-Section ========= */
.hero {
    position: relative;
    height: 980px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}

.hero-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 55%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.left {
    max-width: 960px;
}

.left h1 {
    font-size: 72px;
    font-family: var(--primary-font);
    line-height: 1.3;
    color: var(--accent-color);
    margin-bottom: 20px;
    font-weight: 800;
}

.left h1 span {
    background: var(--gradient-Third);
    -webkit-background-clip: text;
    color: transparent;
}

.form-box {
    display: flex;
    flex-direction: column;
    width: 700px;
    margin-top: 38px;
    padding: 40px 30px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.15);
}

.form-box label {
    font-size: 24px;
    margin-top: 37px;
    margin-bottom: 06px;
    font-family: var(--Secondary-font);
    color: var(--accent-color);
}

.form-box input {
    padding: 22px;
    border-radius: 6px;
    border: 1px solid #C8CDD3;
    font-family: var(--Secondary-font);
    font-size: 20px;
    outline: none;
    box-shadow:
        0px 0px 0px 2px rgba(59, 189, 228, 0.15),
        0px 6px 30px rgba(26, 51, 71, 0.12);
}

.form-box button {
    background: var(--accent-color);
    color: #fff;
    border: none;
    padding: 20px;
    border-radius: 6px;
    font-size: 24px;
    margin-top: 37px;
    font-family: var(--primary-font);
    font-weight: 600;
    cursor: pointer;
}

/* ===== INFO SECTION ===== */
.info-section {
    background: var(--accent-color);
    padding: 60px 0;
}

.info-image img {
    border-radius: 18px;
    width: 100%;
    box-shadow: 0px 12px 40px rgba(0, 0, 0, 0.3);
}

.info-content {
    padding-left: 20px;
}

.info-content h2 {
    font-size: 45px;
    line-height: 1.3;
    color: #fff;
    font-family: var(--primary-font);
    font-weight: 600;
    margin-bottom: 45px;
}

.info-content h2 span {
    background: var(--gradient-Third);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.info-cards {
    margin-bottom: 35px;
}

.info-card {
    background: rgba(135, 212, 245, 0.25);
    padding: 30px 20px;
    border-radius: 5px;
    margin-bottom: 40px;
    text-align: center;
    height: 100%;
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.2);
}

.info-card img {
    width: 45px;
    margin-bottom: 15px;
}

.info-card p {
    color: #fff;
    font-size: 24px;
    font-family: var(--fourth-font);
    line-height: 1.5;
    font-weight: 600;
}

.about-btn {
    display: flex;
    align-items: end;
    justify-content: end;
}

.info-btn {
    display: inline-block;
    background: #46B3D6;
    color: #fff;
    padding: 18px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-family: var(--primary-font);
    font-size: 30px;
    max-width: 470px;
    font-weight: 600;
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.25);
}

/* ===== PROCESS SECTION ===== */
.process-section {
    background: #FFFFFF;
    padding: 60px 0 60px;
}

.process-header h2 {
    font-size: 45px;
    font-family: var(--primary-font);
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.process-header h2 span {
    background: var(--gradient-Third);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.process-header p {
    font-size: 24px;
    color: var(--primary-color);
    margin: auto;
    font-family: var(--Secondary-font);
}

.process-card {
    background: rgba(135, 212, 245, 0.07);
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0px 4px 24px rgba(26, 51, 71, 0.16);
    height: 92%;
    margin-top: 30px;
}

.card-img {
    border-radius: 10px;
    width: 100%;
    height: 323px;
    padding-right: 7px;
    object-fit: cover;
}

.step {
    display: block;
    font-size: 64px;
    font-weight: 700;
    color: #34B7EA;
    margin-bottom: 5px;
    font-family: var(--primary-font);
}

.process-card h4 {
    font-size: 30px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 8px;
    font-family: var(--primary-font);
}

.process-card p {
    font-size: 24px;
    color: black;
    font-family: var(--third-font);
    line-height: 1.5;
    padding-top: 07px;
}

.process-btn {
    display: inline-block;
    margin-top: 70px;
    background: #1A3347;
    color: #fff;
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 30px;
    font-family: var(--primary-font);
    font-weight: 600;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

.process-border {
    margin-top: 50px;
    height: 2px;
    width: 100%;
    background: #bfe3ec;
}

/* ========= Team-Section ========= */
.team-section
{
    padding: 60px 0;
}
.team-heading {
    font-size: 45px;
    font-weight: 600;
    font-family: var(--primary-font);
    margin-bottom: 40px;
}
.team-heading span {
    background: linear-gradient(90deg,
            #F8DC52 1%,
            #31B1DD 85%);
    ;
    -webkit-background-clip: text;
    color: transparent;
}
.team-box
{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 30px;
}
.team-cards
{
    flex-direction: row-reverse;
}
.team-name
{
    justify-content: space-between;
}
.team-img img 
{
        height: 458px;
    width: 291px;
    object-fit: cover;
    border-radius: 14px;
}
.team-detail
{
    padding: 20px;
    background-color: #E4F9FF;
    border-radius: 14px;
}
.team-position h3
{
    font-size: 30px;
    font-family: var(--Secondary-font);
    color: var(--accent-color);
    font-weight: 600;
}
.team-position p
{
    font-size: 18px;
    margin-top: -4px;
    margin-bottom: 15px;
    font-family: var(--Secondary-font);
    color: var(--accent-color);
    font-weight: 600;
}
.team-detail p{
    margin-bottom: 30px;
    font-size: 23px;
    color: #3E3E3E;
    font-family: var(--Secondary-font);
}
.team-rate h4
{
    font-size: 39px;
    font-family: var(--Secondary-font);
    color: var(--accent-color);
}
.team-rate p
{
    font-size: 24px;
    font-family: var(--Secondary-font);
    color: var(--accent-color);
    margin-left: 10px;
}

/* ========= Form-Section ========== */
.career-section {
    padding: 30px 0 50px 0;
}

.apply-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Header */
.apply-header {
    background: var(--accent-color);
    color: #fff;
    padding: 16px 20px 12px;
}

.apply-header h2 {
    margin: 0;
    font-size: 45px;
    font-weight: 600;
    font-family: var(--primary-font);
    line-height: 1.1;
}

.apply-header p {
    margin: 4px 0 0;
    color: #C6D2DB;
    font-size: 22px;
    font-family: var(--Secondary-font);
    font-weight: 400;
}

.apply-body {
    padding: 36px 20px 28px;
}

.form-label {
    color: #3E3E3E;
    font-size: 24px;
    font-family: var(--Secondary-font);
    font-weight: 600;
    margin-bottom: 8px;
}

.form-control {
    height: 50px;
    border: 1px solid #D9D9D9;
    border-radius: 8px;
    padding: 0 15px;
    font-size: 24px;
    font-family: var(--Secondary-font);
    color: #444;
}

.form-control::placeholder {
    color: #A7A7A7;
}

textarea.form-control {
    height: 78px;
    resize: none;
    padding-top: 14px;
}

.upload-box {
    border: 2px dashed #D9D9D9;
    border-radius: 8px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
    transition: 0.3s;
    background: #F9FAFB;
}

.upload-box:hover {
    border-color: #25B8F4;
}


.upload-box .upload-text {
    color: #25B8F4;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
}

.upload-box span {
    color: #A5A5A5;
    font-size: 16px;
}

input[type=file] {
    display: none;
}

.submit-btn {
    width: 100%;
    border: none;
    padding: 20px 0;
    border-radius: 3px;
    background: var(--accent-color);
    color: #fff;
    font-size: 30px;
    font-family: var(--primary-font);
    font-weight: 700;
    transition: 0.3s;
}

.submit-btn:hover {
    background: var(--accent-color);
}
.privacy-text {
    text-align: center;
    margin-top: 20px;
    font-family: sans-serif;
    font-size: 11px;
    color: #6B7280;
}

.privacy-text a {
    color: #8C8C8C;
}
.image-card
{
    height: 100%;
}
.image-card img {
    width: 100%;
    height: 880px;
    object-fit: cover;
    border-radius: 13px !important;
    display: flex;
}
/* ========== Client-Section ======= */
.client-section
{
    padding: 80px 0;
    background: linear-gradient(90deg, #F0F8FF 0%, #E8F6FC 100%);;
}
.client-box
{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.client-boxes
{
    margin-top: 50px;
}
.client-boxe
{
  flex-direction: row-reverse;
}
.client-detail
{
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
}
.stars
{
    color: rgb(255, 191, 0);
    font-size: 18px;
    margin-bottom: 39px;
}
.client-img
{
    height: 100%;
    width: 100%;
}
.client-img img 
{
    height: 100%;
    width: auto;
}
.client-detail h3
{
    font-size: 30px;
    font-family: var(--Secondary-font);
    font-weight: 600;
    color: var(--accent-color);
}
.client-detail p
{
    font-size: 23px;
    font-family: var(--Secondary-font);
    color: black;
}
/* ========== Leader-Section ======= */
.leader-section {
    padding: 60px 70px;
    background: #fff;
}

.leader-heading {
    font-size: 45px;
    font-weight: 700;
    font-family: var(--primary-font);
    color: var(--accent-color);
    margin-bottom: 40px;
}

.leader-heading span {
    background: linear-gradient(90deg, #7ED6C5, #3DB2D4);
    -webkit-background-clip: text;
    color: transparent;
}

.leader-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    margin-top: 30px;
    width: 480px;
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.1);
}

.leader-card img {
    width: 480px;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

.overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.overlay h4 {
    color: #F9F95A;
    font-family: var(--primary-font);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.overlay p {
    color: #fff;
    font-size: 16px;
    font-family: var(--Secondary-font);
    margin: 5px 0 0;
}

/* ====== Footer ===== */
.footer {
    background: linear-gradient(90deg, #d8ef7c, #8cc7d9);
    padding: 60px 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
}

.footer-text {
    font-size: 16px;
    color: #1A3347;
    max-width: 380px;
    font-family: "manrope";
    margin-bottom: 23px;
}

.copyright {
    font-size: 17px;
    font-family: var(--Secondary-font);
    color: #1A3347;
    margin-top: 70px;
}

.footer h5 {
    font-size: 28px;
    font-family: var(--Secondary-font);
    font-weight: 700;
    color: #1A3347;
    margin-bottom: 15px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    text-decoration: none;
    color: #1A3347;
    font-size: 21px;
    font-family: var(--Secondary-font);
    transition: 0.3s;
    font-weight: 400;
}

.footer ul li a:hover {
    opacity: 0.7;
}