
@import url('https://fonts.googleapis.com/css2?family=Baskervville:ital,wght@0,400..700;1,400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Sora:wght@100..800&display=swap');

/* =======================================================
   1. VARIABLES & RESET
======================================================= */
:root {
    --primary: #D41116;
    --secondary: #1D1D1B;
    --white: #ffffff;
    --black: #000000;
    
    /* Typography 
       Note: Using Montserrat as a free alternative to Gotham 
    */
    --font-serif: "Baskervville", serif;
    --font-sans: "Sora", sans-serif;
    --font-text: "Inter", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--black);
    color: var(--white);
    font-family: var(--font-text);
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: 0.1s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* Lenis Recommended CSS */
html.lenis { width: 100%; height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

/* =======================================================
   PROJECT NAVIGATION - STICKY BOTTOM NAVIGATION
======================================================= */
.project-navigation {
    transition: all 0.4s ease;
}

/* Fixed state - sticks to bottom when scrolling */
.project-navigation.fixed {
    position: fixed;
    bottom: 4px;
    left: 0;
    right: 0;
    width: 58%;
    margin: 0px auto;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    /* border-radius: 0; */
    padding: 15px 20px;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

/* Smaller logo in fixed state */
.project-navigation.fixed img {
    width: 70px !important;
    transition: width 0.4s ease;
}

/* Smaller font in fixed state */
.project-navigation.fixed ul li a {
    font-size: 12px !important;
    transition: font-size 0.4s ease;
}

/* Adjust button in fixed state */
.project-navigation.fixed ul li.btn {
    padding: 5px 8px !important;
    font-size: 12px !important;
    top: 0 !important;
}

/* Active menu item state */
.project-navigation ul li a.active {
    color: #DB1F26;
    font-weight: 600;
}

.project-navigation.fixed ul {
    display: flex;
    gap: 12px;
}

/* =======================================================
   2. PRE-LOADER - Enhanced Page Loader
======================================================= */
#preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: url('./img/pattern-loader-bg.png') repeat, var(--secondary);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    pointer-events: all;
    transition: none;
}

/* Prevent scrolling while preloader is active */
body:has(#preloader) {
    overflow: hidden !important;
    height: 100vh;
}

.loader-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    animation: loaderPulse 2s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

#av-logo {
    width: 250px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(219, 31, 38, 0.3));
}

#av-logo path {
    fill: none;
    stroke: var(--primary);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

/* Loading text indicator */
.loader-content::after {
    content: 'Loading...';
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--primary);
    opacity: 0.8;
    animation: loadingDots 1.5s infinite;
}

@keyframes loadingDots {
    0%, 20% { content: 'Loading'; }
    40% { content: 'Loading.'; }
    60% { content: 'Loading..'; }
    80%, 100% { content: 'Loading...'; }
}

/* =======================================================
   3. NAVIGATION
======================================================= */
.main-nav {
    position: fixed;
    top: 0; width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    z-index: 1000;
    background: rgba(0 0 0 / 6%);
    backdrop-filter: blur(4px);
}

.logo img { height: 45px; width: auto; }

.nav-actions { display: flex; align-items: center; gap: 40px; }

.contact-info { display: flex; gap: 25px; }
.c-link {
    display: flex; align-items: center; gap: 8px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
}
.c-link img { width: 18px; }

/* Burger Menu */
.burger-menu {
    width: 24px; cursor: pointer; z-index: 1002;
}
.burger-menu .line {
    width: 100%; height: 2px;
    background-color: var(--primary);
    margin: 6px 0;
    transition: 0.4s;
    transform-origin: center;
}
.burger-menu .line-2 { width: 60%; margin-left: auto; }

/* Burger Active State */
.burger-menu.active .line-1 {
    transform: rotate(45deg) translate(4px, 4px);
    background: #db1f26;
}
.burger-menu.active .line-2 {
        transform: rotate(-45deg) translate(2px, -2px);
    width: 100%;
    background: #db1f26;}

/* Fullscreen Menu */
.menu-overlay {
    position: fixed; 
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    display: flex;
    justify-content: center; align-items: center;
    z-index: 9998;
    opacity: 0; 
    visibility: hidden; /* Hidden default */
    background: var(--secondary) url(./img/pattern-scrore.png) repeat;
    background-size: auto;
}
.menu-links-container { text-align: center; display: flex; flex-direction: column; gap: 20px;list-style-type: none}
.menu-item, .menu-link {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: #fff;
    opacity: 0; transform: translateY(30px);
}
.menu-item:hover, .menu-link:hover { color: var(--primary); }

/* =======================================================
   4. HERO SECTION (Slider with GSAP Animation)
======================================================= */
.hero-section {
    position: relative;
    width: 100%; 
    height: 100vh;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%; height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: all 0.6s ease-in;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    transition: all 0.9s ease-in;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: bottom;
    z-index: 1;
}

.heroSubject {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.heroSubject img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-content {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* Pseudo Elements using SVG */
.hero-symbol-before,
.hero-symbol-after {
    position: absolute;
    width: 500px;
    height: 500px;
    background-image: url('./img/hero-symbol.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    will-change: opacity, transform;
}

.hero-symbol-before {
    left: calc(50% + 100px);
    top: 50%;
    transform: translate(-100%, -50%); /* Not flipped - represents "A" */
}

.hero-symbol-after {
    left: calc(50% - 100px);
    top: 50%;
    transform: translate(0%, -50%) scaleY(-1); /* Flipped vertically - represents "V" */
}

/* Progress Bar */
.hero-progress-bar {
    position: absolute;
    bottom: 60px;
    right: 60px;
    display: flex;
    gap: 20px;
    align-items: flex-end;
    z-index: 10;
}

.progress-item {
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    opacity: 0.6;
}

.progress-item.active {
    opacity: 1;
}

.progress-item:hover {
    opacity: 1;
}

.progress-label {
    letter-spacing: 0.5px;
    color: var(--white);
    margin-bottom: 10px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.4s ease;

    font-family: var(--font-sans);
    font-weight: 600;
    text-transform: none;
    font-size: 14px;
}

.progress-item.active .progress-label {
    opacity: 1;
    transform: translateY(0);
}

.progress-track {
    width: 200px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.progress-item:not(.active) .progress-track {
    width: 60px;
}

.progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: var(--white);
    transition: width 0.1s linear;
}

/* =======================================================
   5. WELCOME SECTION
======================================================= */
.welcome-section {
    background: #fff; color: #000;
    padding: 50px 0;
}
.container { max-width: 1400px; margin: 0 auto; padding: 0 20px;}

.welcome-grid { 
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;}

/**/
.serif-head {
    font-family: var(--font-serif);
    font-size: 42px;
    line-height: 1.1;
    font-weight: 400;
}
.sub-head {
    font-family: var(--font-sans);
    color: var(--primary);
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: block;
    text-transform: uppercase;
    font-size: 12px;
}
.welcome-right p {
    font-size: 14px;
    line-height: 175%;
    color: #444;
    margin-bottom: 15px;
}
.btn-arrow {
    font-family: var(--font-sans);
    font-weight: 600;
    text-transform: none;
    font-size: 14px;
    display: inline-flex; 
    align-items: center; 
    gap: 10px;
    color: var(--primary);
}
.btn-arrow:hover{
    color: #000000;
}

/* =======================================================
   6. USP SECTION (Accordion)
======================================================= */
.usp-section {
    height: 90vh;
    background: #000;
}
.usp-container { display: flex; width: 100%; height: 100%; }

.usp-item {
    position: relative;
    flex: 1; /* Default closed state */
    background-size: cover;
    background-position: center;
    transition: flex 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
    will-change: flex;
}

/* Expanded State */
.usp-item.active { flex: 1.5; }

.usp-overlay-grad {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    transition: opacity 0.6s ease;
}

.usp-item:not(.active) .usp-overlay-grad {
    opacity: 0.7;
}

.usp-content {
    position: absolute;
    bottom: 50px;
    left: 50px;
    z-index: 2;
    width: calc(100% - 100px);
    max-width: 500px;
}

.usp-content h3 {
    /* font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase; */
    padding-bottom: 15px;
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
    font-family: var(--font-serif);
    font-size: 42px;
    line-height: 1.1;
    font-weight: 400;
}

/* Red Underline Animation */
.usp-content h3::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 20px;
    height: 2px;
    background: var(--primary);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.usp-item.active h3::after {
    width: 100%;
}

.usp-details {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    height: 0px;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition: all 0.3s ease;
}

.usp-details p {
    font-family: var(--font-sans);
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 15px;
}

/* =======================================================
   7. SCORE SECTION
======================================================= */
.score-section {
    background-color: #fff;
}
.score-wrapper {
    width: 100%;
    max-width: 100%;
    padding: 60px 0;
    background: #151515 url(./img/pattern-scrore.png) repeat;
    background-size: auto;
    position: relative;
}
.score-section .container{
    margin: 0 auto;
    display: flex; 
    justify-content: space-around; 
    align-items: center;
}
.score-box { text-align: center; min-width:300px;}

.gotham-num {
    font-family: var(--font-sans);
    font-size: 62px;
    font-weight: 300;
    line-height: 1;
}
.gotham-num small { 
    font-size: 2rem; 
    vertical-align: super; 
    padding-left: 5px;
}

.score-label {
    /*display: block;
    font-family: var(--font-sans);
    font-size: 12px;
    letter-spacing: 2px;
    margin-top: 15px;
     */
    font-family: var(--font-sans);
    color: #999;
    font-weight: 500;
    letter-spacing: 1px;
    /* margin-bottom: 20px; */
    display: block;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 32px;
}
.score-divider {
    width: 1px; height: 60px;
    background: var(--primary); opacity: 0.6;
}

p.notes{
    margin: 0;
    font-size: 12px;
    line-height: 100%;
    position: absolute;
    bottom: 68px;
    left: 0;
    right: 0;
    width: 100%;
    font-weight: 400;
    text-align: center;
    color: #999;
}

/*--- footer pattern ----*/

.pattern-breaker{
    width: 100%;
    height: 149px;
    /* background-color: var(--secondary); */
    background: var(--secondary) url(./img/pattern-scrore.png) repeat;
    background-size: auto;
}

/* Footer */
footer { 
    background: var(--white); 
    padding-top: 80px; 
    font-size: 0.95rem; 
    color: #ccc;
}
.footer-grid { 
    display: grid;
    grid-template-columns: repeat(4, 1.5fr);
    gap: 20px;
    padding: 50px 0;
    align-items: center;
}

.f-logo { 
    width: 160px; 
    margin-bottom: 25px; 
}
.f-col h5 { 
    color: #000000;
    font-family: var(--font-sans);
    margin-bottom: 20px;
    font-weight: 600; 
 }
    
.address-box p { margin-bottom: 10px; line-height: 1.6; }

.email-f { 
    gap: 10px;
    color: #000000;
    display: block;
    margin-top: 15px;
    display: flex;
    align-items: center; 
  }

.links-inner { display: flex; gap: 60px; }
.links-inner li { line-height: 44px; }
.links-inner a:hover { color: var(--primary); }

.badges { }
.badges img { }

.social-icons span { 
    font-family: var(--font-sans); 
    font-weight: 700;
    font-style: Bold;
    font-size: 12px;
    line-height: 175%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #000000;
}

.social-icons a { display: inline-block; color: #fff; margin: 0 5px; transition: 0.3s; }
.social-icons a:hover { color: var(--primary); }

.copyright { border-top: 1px solid #333; padding: 25px 0; text-align: center; font-size: 0.8rem; }


/*=============*/

.page-banner .top-banner-block .short-text-block small,
small{
    font-size: 14px;
    line-height: 175%;
    letter-spacing: 0;
    margin: 0 0 15px 0;
    display: inline-block;
}


/* =======================================================
   WHY JOIN AVSAR REALTY SECTION - Career Page
======================================================= */

.secCommon{
    padding: 50px 0;
    width: 100%;
    background-color: #fff;
}

.whyjoin {
    background: #ffffff;
    color: #000000;
}

.whyjoin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 30px 0;
}

.whyjoin-left {
    max-width: 600px;
}

.whyjoin .serif-head {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #000000;
}

.whyjoin-desc {
    font-family: var(--font-text);
    font-size: 16px;
    line-height: 1.75;
    color: #444444;
    margin-bottom: 50px;
}

.whyjoin-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 50px;
}

.whyjoin-item {
    display: flex;
    align-items: center;
    gap: 0px;
    padding: 5px 0;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

/* .whyjoin-item:first-child {
    border-top: 1px solid #e0e0e0;
} */
.whyjoin-item:last-child {
    border-bottom: none;
}

.whyjoin-item:hover,.whyjoin-item.active {
    padding-left: 10px;
    background-color: #fafafa;
    transition: all 0.3s ease;
}
.item-number {
    font-family: var(--font-text);
    font-size: 60px;
    font-weight: 800;
    color: #f7f7f7;
    line-height: 1;
    min-width: 80px;
    transition: all 0.3s ease;
}

.item-title{
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 0 -30px;
    transition: all 0.3s ease;
}
.whyjoin-item:hover .item-title,
.whyjoin-item.active .item-title {
    color: var(--primary);
    transition: all 0.3s ease;
}
.whyjoin-item.active .item-number,
.whyjoin-item:hover .item-number {
    color: #f1eaea;
    transition: all 0.3s ease;
}

/* =======================================================
   BENEFITS ACCORDION STYLING
======================================================= */
.BenefitsAccordSec {
    margin-bottom: 50px;
}

.accord-title {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    display: block;
}

.accord-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.accord-item {
    border-bottom: 1px solid #e0e0e0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accord-item:last-child {
    border-bottom: none;
}

.accord-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
    background-color: #f5f5f5;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 16px;
}

.accord-item:hover .accord-header {
    background-color: #efefef;
}

.accord-label {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    transition: all 0.3s ease;
    flex: 1;
}

.accord-item.active .accord-label {
    color: var(--primary);
}

.accord-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #1a1a1a;
}

.accord-item.active .accord-toggle {
    transform: scaleY(-1);
    color: var(--primary);
}

.accord-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #ffffff;
}

.accord-item.active .accord-content {
    max-height: 200px;
    padding: 20px;
}

.accord-content p {
    font-family: var(--font-text);
    font-size: 15px;
    color: #1a1a1a;
    line-height: 1.6;
    margin: 0;
}

.btn-whyjoin {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #000000;
    color: #ffffff;
    padding: 18px 35px;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.btn-whyjoin:hover {
    background-color: var(--primary);
    transform: translateX(5px);
    color: #fff;
}

.btn-whyjoin svg {
    transition: transform 0.3s ease;
}

.btn-whyjoin:hover svg {
    transform: translateX(5px);
}

/* Right Side Image */
.whyjoin-right {
    position: relative;
    /* height: 600px; */
    height: 100%;
}

.whyjoin-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
    max-height: 600px;
}

.whyjoin-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.whyjoin-img.active {
    opacity: 1;
}

.geometric-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    display: none;
}

.geo-shape {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    width: 400px;
    height: 600px;
    opacity: 0.9;
}
.geometric-overlay svg{
    width: 100%;
    height: 100%;
    scale: 2;
    mix-blend-mode: color;
}


/* =======================================================
   JOB ACCORDION SECTION - Career Page
======================================================= */

.jobSection {
    background: #f5f5f5;
    padding: 50px 0;
}

.job-header {
    margin-bottom: 60px;
}

.job-header .serif-head {
    font-size: 48px;
    margin-bottom: 20px;
    color: #000000;
}

.text-center {
    text-align: center;
}

.title-underline {
    width: 40px;
    height: 2px;
    background-color: var(--primary);
    margin: 0 auto;
}

.job-accordion {
    max-width: 1200px;
    margin: 0 auto;
}

.job-accordion-item {
    background: #ffffff;
    border-radius: 24px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.job-accordion-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.job-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 30px;
    cursor: pointer;
    gap: 30px;
}

.job-header-content {
    flex: 1;
}

.job-category {
    /* font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #999999;
    margin-bottom: 10px;
    text-transform: uppercase; */

    font-family: var(--font-sans);
    color: var(--primary);
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase;
    font-size: 12px;
}

.job-title {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 10px;
    line-height: 100%;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    font-family: var(--font-text);
    font-size: 14px;
    color: #666666;
}

.job-meta-item strong {
    color: #000000;
    font-weight: 600;
}

.job-toggle-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.job-toggle-btn:hover {
    background-color: var(--primary);
    color: #fff;
}

.toggle-icon {
    transition: transform 0.3s ease;
}

.job-accordion-item.active .toggle-icon {
    transform: rotate(180deg);
}

.job-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 40px;
}

.job-accordion-item.active .job-accordion-body {
    max-height: 1000px;
    padding: 0 30px 30px 30px;
}

.job-details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.job-detail-col {
    font-family: var(--font-text);
}

.detail-heading {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #999999;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.job-detail-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #444444;
}

.job-detail-col ul {
    list-style: none;
    padding: 0;
}

.job-detail-col ul li {
    font-size: 14px;
    line-height: 1.7;
    color: #444444;
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
}

.job-detail-col ul li::before {
    content: "•";
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.applyJobSec h2{
    padding: 0 50px 0 0;
    margin-bottom: 20px;
}
.applyJobSec p a{
    text-decoration: underline;
}
.applyJobSec p a:hover{
    color: var(--primary);
}

.applyJobSec .form-wrapper{
    padding: 0 50px 40px;
}

.form-wrapper .form-title {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 30px;
}

.jobApplicationForm {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.jobApplicationForm .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.jobApplicationForm input[type="text"],
.jobApplicationForm input[type="email"],
.jobApplicationForm input[type="tel"],
.jobApplicationForm textarea,
.jobApplicationForm select {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    font-family: var(--font-text);
    font-size: 15px;
    color: #333333;
    background-color: #ffffff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.jobApplicationForm input::placeholder,
.jobApplicationForm textarea::placeholder,
.jobApplicationForm select option:first-child {
    color: #999999;
}

.jobApplicationForm input:focus,
.jobApplicationForm textarea:focus,
.jobApplicationForm select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(219, 31, 38, 0.1);
}

/* Phone Input */
.phone-input {
    position: relative;
    display: flex;
    align-items: center;
}

.phone-prefix {
    position: absolute;
    left: 20px;
    font-family: var(--font-text);
    font-size: 15px;
    color: #333333;
    pointer-events: none;
    z-index: 1;
}



/* Select Dropdown */
.select-wrapper {
    position: relative;
}

.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    padding-right: 45px;
}

.select-wrapper .select-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #666666;
}

/* File Upload */
.file-upload-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    background-color: #ffffff;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.file-upload-label:hover {
    border-color: #999999;
}

.file-name {
    font-family: var(--font-text);
    font-size: 15px;
    color: #999999;
}

.file-upload-label.has-file .file-name {
    color: #333333;
}

.form-wrapper button.upload-btn {
    padding: 10px 24px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: auto;
}

.upload-btn:hover {
    background-color: var(--primary);
}

.file-info {
    font-family: var(--font-text);
    font-size: 12px;
    color: #999999;
    padding-left: 4px;
}

/* Textarea */
.jobApplicationForm textarea {
    resize: vertical;
    min-height: 120px;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 8px;
}

.submit-btn:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}

.form-wrapper .phone-input input,
.form-wrapper .phone-input input[type="tel"],
.phone-input input {
    padding-left: 60px;
}

.AplybtnWrap{
    display: flex;
    align-items: center;
    gap: 15px;
}

.AplybtnWrap .toggle-icon path{
    stroke:#000000;
}

.parterOpportSection .whyjoin-img{
    opacity: 1;
}

.whyPartnerSection{
    background: #f9f9f9 url(./img/bg-pattern.png);
}
.whyPartnerSection .whyjoin-grid{
    grid-template-columns: 1fr 2fr;
}
.whyPartnerSection .whyjoin-left{
    display: flex;
    align-items: center;
    justify-content: center;
}
/* .whyPartnerSection svg path{
    fill: black;
} */
.partnershipStories .d-item{
    display: flex;
    gap: 50px;
    align-items: center;
}

.contactPerson{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
}
.contactPerson label{
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #999999;
    margin-bottom: 0px;
    text-transform: uppercase;
}
.contactPerson h4{
    font-family: var(--font-sans);
    font-weight: 500;
    font-style: normal;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
    margin-bottom: 0px;
    color: #1D1D1B;
}    
.contactPerson p.dsg{
    color: var(--primary);
    font-size: 14px;
}
.contactPerson .contact-sec{
    padding: 0;
    background: transparent;
}
.contactPerson .contact-sec .info:hover span{
    color: var(--primary);
}



/**/

.usp-item .usp-details{
    transition: opacity 0.5s ease, transform 0.5s ease, height 0.3s ease;
}
.usp-item.active .usp-details {
    opacity: 1;
    transform: translateY(0);
    height: auto;
    pointer-events: auto;
    transition: opacity 0.5s ease, transform 0.5s ease, height 0.3s ease;
}

.location-sec .locate-details .highlights .icon img{
    mix-blend-mode: darken;
}

.who-we-are-sec{
    background: #f9f9f9 url("./img/bg-pattern.png");
}


/*--- Top Banner ----*/

.topBannerSection{
    width: 100%;
    height: 80vh;
    overflow: hidden;
    position: relative;
    background-color: #000;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}
.topBannerSection img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    will-change: transform, opacity;
    pointer-events: none;
}
.topBannerSection img.active{
    z-index: 10;
    opacity: 1;
    pointer-events: auto;
}
/*.topBannerSection::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 20;
    background: url("./img/bg-pattern.png") 0% 0% repeat;
    opacity: 0.03;
}*/


.welcome-grid .serif-head{
    margin: 0 0 15px 0;
}

.h-lite{
   font-size: 20px;
   line-height: 150%;
   font-weight: 500;
}

.colab-sect .job-header {
    margin-bottom: 30px;
}

.colab-sect p{
    margin-bottom: 0px;
}

.career .whyjoin-image-wrapper {
    height: 600px !important;
}

.scrolled .changio-colr {
    color: #ffffff;
}

.scrolled .changio-colr img {
    filter: brightness(100);
}

.scrolled .burger-menu .line {
    background-color:#ffffff;
}

.my-navigation .contact-info .c-link {
  color:#ffffff;
}

.my-navigation .contact-info .c-link:hover {
   filter: brightness(0) saturate(100%)
          invert(18%)
          sepia(92%)
          saturate(7420%)
          hue-rotate(-3deg)
          brightness(95%)
          contrast(105%);
}


.invest .parterOpportSection .whyjoin-right {
  	height: auto;
}

footer .email-f:hover{
 color:var(--primary);
}

footer .email-f:hover img{
        filter: brightness(0) saturate(100%)
          invert(18%)
          sepia(92%)
          saturate(7420%)
          hue-rotate(-3deg)
          brightness(95%)
          contrast(105%);
}