body {
    margin: 0;
    font-family: 'DM Sans'; /* Backup hata diya gaya hai */
    background-color: var(--bg);
}

/* Sabhi heading aur components ke liye */
.jn-logo, 
.jn-nav-links a, 
.hero-text h1, 
.wcu-main-header h2, 
.promo-title, 
.jn-stats-section, 
.jn-final-footer {
    font-family: 'DM Sans' !important;
}


/* About us */
/* --- Global Scope Reset --- */
#jn-about-scope {
    --primary-orange: #f26a2e;
    --primary-olive: #b6bf90;
    --text-dark: #0c0d12;
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    background: #fff;
    margin: 0;
    overflow-x: hidden;
}

/* --- NAVBAR STYLES --- */
.jn-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    border-bottom: 1px solid #f0f0f0;
    background: #fff;
    position: relative;
    z-index: 1000;
}

.jn-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 22px;
    color: var(--text-dark);
}

/* Desktop Menu Links */
.jn-menu .jn-menu-links a {
    text-decoration: none;
    color: #444;
    margin: 0 15px;
    font-weight: 600;
    font-size: 14px;
}

.jn-menu .jn-menu-links a.active {
    color: #000;
}

.jn-close-icon {
    display: none;
}

.jn-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Cart Badge Styling */
.jn-cart {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.jn-cart i {
    font-size: 20px;
}

.jn-count {
    position: absolute;
    top: -10px;
    right: -12px;
    background: var(--primary-orange);
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 50%;
    border: 2px solid #fff;
    font-weight: 800;
}

/* Button Styles (Image Matching) */
.jn-btn-black {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'DM Sans';
}

.jn-btn-outline {
    background: transparent;
    border: 1px solid #d1d1d1;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'DM Sans';
}

.jn-hamburger {
    display: none;
    cursor: pointer;
    font-size: 22px;
    color: #000;
}

/* --- ABOUT SECTION LAYOUT --- */
.jn-container {
    display: flex;
    padding: 100px 8%;
    gap: 100px;
    align-items: flex-start;
}

.jn-left-visual {
    position: relative;
    flex-shrink: 0;
}

.jn-orange-box {
    background: var(--primary-orange);
    color: #fff;
    padding: 60px 45px;
    border-radius: 120px 120px 120px 0;
    width: 240px;
    box-shadow: 0 20px 40px rgba(242, 106, 46, 0.15);
}

.jn-orange-box h2 {
    font-size: 30px;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 500;
}

.jn-line {
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}

/* Shapes matching original image */
.jn-abstract-shapes {
    position: relative;
    margin-top: 50px;
}

.shape-olive {
    width: 150px;
    height: 150px;
    background: var(--primary-olive);
    border-radius: 50% 50% 0 50%;
}

.shape-dot {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 25px;
    height: 25px;
    background: var(--primary-orange);
    border-radius: 50%;
}

.jn-right-text h1 {
    font-size: 65px;
    font-weight: 400;
    line-height: 1.1;
    margin: 0;
    color: var(--text-dark);
}

.jn-dual-para {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    color: #666;
    margin-top: 50px;
    line-height: 1.8;
    font-size: 15px;
}

/* --- MOBILE RESPONSIVE (LEFT SIDEBAR) --- */
@media (max-width: 1024px) {
    .jn-hamburger {
        display: block;
        order: 4;
    }

    .jn-hide-mobile {
        display: none;
    }

    /* Simple Sidebar (Home Page Style) */
    .jn-menu {
        position: fixed;
        top: 0;
        left: -110%;
        /* Start off-screen left */
        width: 280px;
        height: 100vh;
        background: #fff;
        display: flex;
        flex-direction: column;
        padding: 60px 30px;
        transition: 0.4s ease-in-out;
        z-index: 2000;
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
    }

    .jn-menu .jn-menu-links {
        display: flex;
        flex-direction: column;
    }

    .jn-menu .jn-menu-links a {
        margin: 15px 0;
        font-size: 18px;
        border-bottom: 1px solid #f5f5f5;
        padding-bottom: 10px;
    }

    .jn-close-icon {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 30px;
        cursor: pointer;
    }

    /* Checkbox logic for opening from Left */
    #jn-drawer-check:checked~.jn-menu {
        left: 0;
    }

    /* Layout stack for mobile */
    .jn-container {
        flex-direction: column;
        padding: 50px 5%;
        gap: 50px;
    }

    .jn-right-text h1 {
        font-size: 42px;
    }

    .jn-dual-para {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .jn-left-visual {
        margin: 0 auto;
    }
}

/*  */

/* about section */
/* --- TRUST SECTION --- */
#jn-trust-area {
    position: relative;
    /* padding: 80px 0; */
    background: #fff;
    width: 100%;
    /* overflow-x hataya taake agar zarurat ho to content manage ho sake, 
       lekin main container ko bound rakha hai */
}

.jn-trust-container {
    width: 100%;
    position: relative;
}

.jn-image-frame-right {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    position: relative;
    z-index: 10;
}

.jn-main-img-right {
    width: 85%;
    height: 550px;
    object-fit: cover;
    display: block;
    border-radius: 0 20px 20px 0px;
}

/* Yellow Strip Fix */
.jn-yellow-strip {
    background-color: #f5f9ba;
    width: calc(100% - 120px);
    /* Width se margin minus kiya taake cut na ho */
    margin-top: -120px;
    padding: 160px 5% 60px 40px;
    position: relative;
    z-index: 5;
    margin-left: 85px;
    display: flex;
    justify-content: center;
    /* Content ko center rakha taake edge touch na ho */
}

.jn-strip-content {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: nowrap;
    /* Desktop par ek line mein rahega */
}

.jn-trust-text {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    min-width: 180px;
    /* Width ko fixed rakha taake logos ko jagah mile */
    line-height: 1.2;
}

.jn-logos-row {
    display: flex;
    flex: 1;
    justify-content: space-around;
    align-items: center;
    gap: 15px;
    /* Agar screen choti ho to logos shrink honge cut nahi */
}

.jn-logos-row span {
    font-size: 15px;
    color: #444;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

/* --- MOBILE RESPONSIVE (Strict Fix for Cutting) --- */
@media (max-width: 1024px) {
    .jn-main-img-right {
        width: 100%;
        height: 300px;
        border-radius: 0;
    }

    .jn-yellow-strip {
        width: 100%;
        /* Mobile par poori width */
        margin-left: 0;
        /* Margin zero kiya taake left side se start ho */
        margin-top: -60px;
        padding: 80px 20px 40px;
    }

    .jn-strip-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .jn-trust-text {
        width: 100%;
        min-width: unset;
    }

    .jn-logos-row {
        flex-wrap: wrap;
        /* Logos niche lines mein aa jayenge cut nahi honge */
        justify-content: center;
        gap: 20px;
    }

    .jn-logos-row span {
        font-size: 14px;
        background: rgba(0, 0, 0, 0.03);
        /* Halki si background taake spacing dikhe */
        padding: 5px 10px;
        border-radius: 4px;
    }
}

/*  */

/* mission vission section */
/* --- MISSION & VISION SECTION --- */
#jn-mission-scope {
    /* padding: 50px 8%; */
    background-color: #fff;
}

.jn-mission-container {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1300px;
    margin: 0 auto;
}

/* Left Content Styles */
.jn-mission-left {
    flex: 1;
}

.jn-mission-title {
    font-size: 48px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.2;
}

.jn-mission-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.jn-mission-reasons h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.jn-mission-reasons ul {
    list-style: none;
    padding: 0;
}

.jn-mission-reasons ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #444;
    margin-bottom: 15px;
    font-weight: 500;
}

.jn-mission-reasons ul li i {
    color: #1a1a1a;
    /* Black tick as per image */
    font-size: 14px;
}

/* Right Image Styles */
.jn-mission-right {
    flex: 1;
}

.jn-mission-img-box img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    /* Slight curve to match the feel */
    display: block;
}

/* --- RESPONSIVE SETTINGS --- */
@media (max-width: 1024px) {
    #jn-mission-scope {
        padding: 60px 5%;
    }

    .jn-mission-container {
        flex-direction: column-reverse;
        /* Image mobile par pehle dikhegi (optional) */
        gap: 50px;
    }

    .jn-mission-title {
        font-size: 36px;
    }

    .jn-mission-right,
    .jn-mission-left {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .jn-mission-title {
        font-size: 30px;
    }

    .jn-mission-desc {
        font-size: 15px;
    }
}

/*  */



/* values section */
#jn-core-values-section {
    padding: 50px 5%;
    background: #fff;
    text-align: center;
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
}

.jn-values-intro h1 {
    font-size: 50px;
    font-weight: 500;
    margin-bottom: 15px;
}

.jn-values-intro p {
    color: #777;
    max-width: 600px;
    margin: 0 auto 80px;
    line-height: 1.6;
}

/* Grid setup */
.jn-values-grid-layout {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.jn-value-item {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- THE SHAPE LOGIC --- */
.jn-icon-container {
    position: relative;
    width: 240px;
    height: 180px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.jn-main-u-shape {
    background: #f26a2e;
    /* Original Orange */
    width: 200px;
    height: 180px;
    border-radius: 0 0 100px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    /* Main shape upar rahegi */
}

.jn-main-u-shape i {
    font-size: 60px;
    color: white;
}

/* Side Flaps (Light Orange) */
.jn-wing {
    position: absolute;
    top: 0;
    width: 40px;
    height: 40px;
    background: #EB6424;
    /* Lighter Orange for Flaps */
    z-index: 1;
    /* Flaps piche rahengi */
}

.jn-wing-left {
    left: 0;
    border-radius: 8px 0 0 8px;
}

.jn-wing-right {
    right: 0;
    border-radius: 0 8px 8px 0;
}

/* Text Styling */
.jn-id {
    color: #ccc;
    font-weight: 700;
    font-size: 18px;
    display: block;
    margin-bottom: 10px;
}

.jn-text-box h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 15px;
}

.jn-text-box p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .jn-values-grid-layout {
        flex-direction: column;
        align-items: center;
        gap: 80px;
    }
}

/*  */
/* counter section */

/* --- STATISTICS FLUSH LAYOUT --- */
#jn-stats-flush {
    width: 100%;
    background-color: #fff;
    border-top: 1px solid #d1d1d1;
    /* Top Border jo touch hoga */
    /* border-bottom: 1px solid #d1d1d1; */
}

.jn-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1300px;
    /* Thoda wide rakha hai jaisa image mein hai */
    margin: 0 auto;
}

.jn-stat-box {
    text-align: center;
    /* padding: 60px 20px;  */
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Vertical lines touch the top and bottom borders */
.jn-stat-box:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    /* Bilkul top border se touch */
    height: 100%;
    /* Puri height cover karega */
    width: 1px;
    background-color: #d1d1d1;
}

.jn-stat-num {
    font-size: 68px;
    /* Bada font size jaisa image mein hai */
    font-weight: 500;
    color: #000;
    margin-bottom: 15px;
}

.jn-stat-info {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    max-width: 200px;
    margin: 0 auto;
}

/* --- MOBILE RESPONSIVE (Low Padding) --- */
@media (max-width: 1024px) {
    .jn-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Responsive grid par borders manage karne ke liye */
    .jn-stat-box:nth-child(2)::after {
        display: none;
    }

    .jn-stat-box {
        border-bottom: 1px solid #d1d1d1;
    }

    .jn-stat-box:nth-child(3),
    .jn-stat-box:nth-child(4) {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    #jn-stats-flush {
        padding: 0;
        /* Container padding khatam */
    }

    .jn-stats-grid {
        grid-template-columns: 1fr;
    }

    .jn-stat-box {
        padding: 40px 10%;
        /* Mobile par kam padding */
        border-bottom: 1px solid #d1d1d1;
    }

    .jn-stat-box::after {
        display: none !important;
        /* Mobile par vertical lines khatam */
    }

    .jn-stat-num {
        font-size: 50px;
    }
}

/*  */

/* team section */
/* --- TEAM SECTION STYLES --- */
#jn-team-final {
    padding: 80px 8%;
    background: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.jn-team-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    gap: 30px;
}

.jn-head-left h1 {
    font-size: 42px;
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
}

.jn-head-right p {
    font-size: 14px;
    color: #666;
    max-width: 380px;
    line-height: 1.6;
    margin: 0;
}

/* Grid: 4 items per row */
.jn-team-grid-8 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.jn-card {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 6px;
}

.jn-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Overlay logic */
.jn-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f5b191;
    /* Theme Orange */
    opacity: 0;
    padding: 25px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.jn-card-info {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Heading at TOP, Icon at BOTTOM */
}

.jn-text-top h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.jn-text-top p {
    color: #fff;
    font-size: 14px;
    margin-top: 5px;
    opacity: 0.9;
}

/* Icon Styles */
.jn-icon-bottom {
    display: block;
}

.jn-icon-bottom i {
    color: #ffffff !important;
    font-size: 24px !important;
    display: inline-block !important;
}

/* Hover & Active State */
.jn-card:hover .jn-card-overlay,
.jn-card.jn-active .jn-card-overlay {
    opacity: 0.7;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .jn-team-grid-8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    #jn-team-final {
        padding: 40px 15px;
        /* Kam padding mobile par */
    }

    .jn-team-header {
        flex-direction: column;
        gap: 15px;
    }

    .jn-head-left h1 {
        font-size: 30px;
    }

    .jn-team-grid-8 {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .jn-card-overlay {
        padding: 15px;
    }

    .jn-text-top h3 {
        font-size: 16px;
    }
}
/*  */


/* all heading adjust on mobile */
/* =========================
   MOBILE HEADING SIZE FIX
========================= */
@media (max-width: 768px) {

    /* About Section */
    .jn-right-text h1 {
        font-size: 34px;
        line-height: 1.2;
    }

    /* Mission & Vision */
    .jn-mission-title {
        font-size: 30px;
        line-height: 1.25;
    }

    /* Core Values Heading */
    .jn-values-intro h1 {
        font-size: 32px;
        line-height: 1.25;
    }

    .jn-text-box h2 {
        font-size: 24px;
    }

    /* Team Section */
    .jn-head-left h1 {
        font-size: 28px;
        line-height: 1.2;
    }

    /* Orange Box Heading */
    .jn-orange-box h2 {
        font-size: 22px;
        line-height: 1.3;
    }

    /* Trust Strip Text */
    .jn-trust-text {
        font-size: 16px;
    }

    /* Stats Numbers */
    .jn-stat-num {
        font-size: 44px;
    }


    .jn-dual-para {

        margin-top: 0px;
    }

    .jn-right-text h1{
        font-size: 28px;
    }

    #jn-trust-area{
        margin-top: 0px;

    }
}

/*  */

/* footer */
.jn-final-footer {
    background-color: #000;
    color: #fff;
    padding-top: 80px;
    font-family: 'Inter', sans-serif;
    width: 100%;
}

.jn-final-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.jn-final-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr 1.5fr; /* 4 Columns */
    gap: 30px;
    padding-bottom: 60px;
}

/* Aligning bottom row elements */
.jn-final-top-group {
    min-height: 230px; /* Is se niche wale sections barabar line mein ayenge */
}

/* Logo */
.jn-final-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 22px;
}
.jn-final-brand i { color: #E46425; font-size: 26px; }

/* Headings */
.jn-final-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
}

/* Links & Text Styles */
.jn-final-links { list-style: none; padding: 0; margin: 0; }
.jn-final-links li { margin-bottom: 12px; }
.jn-final-links a, .jn-final-text p {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.6;
    transition: 0.3s;
}
.jn-final-links a:hover { color: #E46425; }

/* Orange Button */
.jn-final-btn {
    display: inline-block;
    background-color: #E46425;
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-top: 10px;
}

/* Bottom Bar */
.jn-final-bottom-bar {
    border-top: 1px solid #222;
    padding: 30px 0;
}
.jn-final-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    font-size: 13px;
}
.jn-final-socials { display: flex; gap: 20px; }
.jn-final-socials a { color: #fff; font-size: 18px; }

/* Responsive */
@media (max-width: 992px) {
    .jn-final-main-grid { grid-template-columns: 1fr 1fr; }
    .jn-final-top-group { min-height: auto; margin-bottom: 40px; }
}
@media (max-width: 600px) {
    .jn-final-main-grid { grid-template-columns: 1fr; }
    .jn-final-bottom-flex { flex-direction: column; gap: 20px; text-align: center; }
}

/*  */
/*  */

/* Jobs post page */
/* browse section */
/* Unique Hero Section Styles */
.jn-hero-section {
    background-color: #d8dbca; /* Image wala soft background */
    padding: 100px 20px;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
}

.jn-hero-container {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.jn-hero-title {
    font-size: 80px; /* Large heading like image */
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.jn-hero-desc {
    font-size: 18px;
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Search Bar Styling */
.jn-hero-search-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.jn-hero-search-box {
    background: #ffffff;
    padding: 8px 8px 8px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 650px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.jn-search-icon {
    color: #999;
    font-size: 18px;
    margin-right: 15px;
}

.jn-hero-input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 16px;
    color: #333;
}

.jn-hero-search-btn {
    background-color: #e46425; /* Theme Orange */
    color: white;
    border: none;
    padding: 15px 45px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.jn-hero-search-btn:hover {
    background-color: #d1561e;
}

.jn-hero-sub-text {
    font-size: 13px;
    color: #666;
    margin-top: 15px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .jn-hero-title {
        font-size: 50px;
    }
    
    .jn-hero-section {
        padding: 60px 20px;
    }

    .jn-hero-search-box {
        flex-direction: column;
        border-radius: 20px;
        padding: 15px;
        gap: 15px;
    }

    .jn-hero-search-btn {
        width: 100%;
    }

    .jn-hide-mobile {
        display: none;
    }
    
    .jn-search-icon {
        display: none; /* Mobile pe clean look ke liye */
    }
}


/*  */
/*  */

/* blog page */
/* blog section */
.vibe-journal-area {
    padding: 80px 0;
    background-color: #ffffff;
    /* font-family: 'Inter', sans-serif; */
}

.vibe-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.vibe-main-title {
    font-size: clamp(32px, 5vw, 54px); /* Responsive font size */
    text-align: center;
    font-weight: 500;
    color: #000;
    margin-bottom: 60px;
    letter-spacing: -2px;
}

.vibe-grid-system {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 30px; /* Vertical 50px, Horizontal 30px */
}

.vibe-img-wrap img {
    width: 100%;
    height: 100%; /* Height ko container ke mutabiq fix kar diya */
    display: block;
    /* 'cover' se image crop ho kar fit hogi, stretch nahi hogi */
    object-fit: cover; 
    transition: transform 0.4s ease;
}

.vibe-img-wrap {
    width: 100%;
    /* 4:3 ratio images ko ek jaisa rectangular look dega */
    aspect-ratio: 4 / 3; 
    margin-bottom: 20px;
    overflow: hidden;
    background-color: #f5f5f5; /* Image load hone se pehle halka grey dikhega */
}

.vibe-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.vibe-card:hover .vibe-img-wrap img {
    transform: scale(1.03);
}

.vibe-meta-info {
    font-size: 14px;
    color: #777;
    margin-bottom: 12px;
}

/* Yahan aapka bataya hua color use kiya gaya hai */
.vibe-highlight {
    color: #EB6424; 
    font-weight: 600;
    margin-right: 5px;
}

.vibe-post-heading {
    font-size: 18px;
    line-height: 1.5;
    color: #1a1a1a;
    font-weight: 500;
    letter-spacing: -0.2px;
}

/* Tablets */
@media (max-width: 992px) {
    .vibe-grid-system {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .vibe-grid-system {
        grid-template-columns: 1fr;
    }
    .vibe-main-title {
        letter-spacing: -1px;
    }
}
/*  */
/*  */


/* Faq's page */

/* faq section */

:root {
    --px-orange: #EB6424;
    --px-green: #b8c195;
    --px-pale: #f4f9c6;
}

.exact-faq-px {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: #fff;
    /* font-family: 'Inter', sans-serif; */
}

/* --- ALL 3 SHAPES (EXACT PLACEMENT) --- */
.px-green-cap {
    position: absolute;
    top: 250px;
    right: -80px;
    width: 280px;
    height: 140px;
    background: var(--px-green);
    border-radius: 100px;
}

.px-mid-shape {
    position: absolute;
    right: 0;
    top:400px;
    display: flex;
    z-index: 5;
}
.px-half-b { width: 30px; height: 60px; background: #111; border-radius: 60px 0 0 60px; }
.px-half-o { width: 30px; height: 60px; background: var(--px-orange); border-radius: 0 60px 60px 0; margin-left: 2px; }

.px-bot-left {
    position: absolute;
    bottom: 10%;
    left: -15px;
}
.px-dot-o { width: 28px; height: 14px; background: var(--px-orange); border-radius: 30px 30px 0 0; margin-left: 18px; }
.px-semi-b { width: 64px; height: 32px; background: #111; border-radius: 0 0 64px 64px; }

/* --- GRID & LAYOUT --- */
.px-main-wrapper { max-width: 1160px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 10; }
.px-head-row { display: flex; justify-content: space-between; margin-bottom: 80px; align-items: center;}
.px-big-title { font-size: 62px; letter-spacing: -3px; line-height: 1; font-weight: 500; }
.px-top-p { max-width: 320px; color: #777; font-size: 14px; padding-top: 15px; }

.px-grid-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 70px; align-items: start; }

/* --- SMOOTH ACCORDION (NO JERK) --- */
.px-input-hidden { display: none; }

.px-box-item { 
    border: 1px solid #000000; 
    margin-bottom: 20px; /* To prevent double borders */
}

.px-label-box {
    display: flex;
    justify-content: space-between;
    padding: 20px 20px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    background: #fff;
}

.px-icon::after { content: '+'; font-size: 22px; font-weight: 400; }

.px-answer-box {
    display: grid;
    grid-template-rows: 0fr; /* Initial height 0 */
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fafafa;
}

.px-inner-content {
    overflow: hidden;
    padding: 0 20px;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* Expansion Trigger */
.px-input-hidden:checked ~ .px-answer-box {
    grid-template-rows: 1fr;
    padding-bottom: 20px;
    padding-top: 10px;
}

.px-input-hidden:checked ~ .px-label-box .px-icon::after { content: '−'; }

/* --- CONTACT CARD --- */
.px-right-card {
    background: var(--px-pale);
    padding: 60px 45px;
    text-align: center;
}
.px-right-card h3 { font-size: 30px; margin-bottom: 20px; line-height: 1.2; letter-spacing: -1px; font-weight: 500;}
.px-right-card p { font-size: 14px; color: #444; margin-bottom: 35px; }

.px-orange-btn {
    background: var(--px-orange);
    color: #fff;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 300;
    display: inline-block;
    margin-bottom: 30px;
}

.px-footer-call { font-size: 18px; }

/* Responsive */
@media (max-width: 900px) {
    .px-grid-layout { grid-template-columns: 1fr; }
    .px-head-row { flex-direction: column; gap: 20px; align-items: center;}
    .px-big-title { font-size: 38px; }
}

/*  */
/*  */

/* contact us page */
/* contact us section */
:root {
    --color-orange: #EB6424;
    --color-sage: #b8c195;
    --color-pale: #f4f9c6;
    --color-black: #0d0d0d;
}

.contact-fixed {
    padding: 100px 0;
    background: #fff;
    /* font-family: 'Inter', sans-serif; */
}

.px-container {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.px-heading { font-size: 80px; letter-spacing: -4px; line-height: 0.9; margin-bottom: 25px; font-weight: 500; }
.px-subtext { max-width: 300px; color: #888; font-size: 14px; }

/* --- THE ART FRAME --- */
.px-art-frame { flex: 1; display: flex; justify-content: flex-end; }

.px-art-inner {
    position: relative;
    width: 400px;
    height: 400px;
}

/* 1. Top Orange */
.sh-top-orange {
    position: absolute;
    top: 0;
    right: 50px;
    width: 130px;
    height: 130px;
    background: var(--color-orange);
    border-top-right-radius: 130px;
    z-index: 3;
}

/* 2. Middle Group (Isay Black ke upar hona chahiye) */
.sh-mid-group {
    display: flex;
    position: absolute;
    top: 130px;
    left: 20px;
    z-index: 4; /* Higher than black */
}

.sh-left-yellow {
    width: 180px;
    height: 180px;
    background: var(--color-pale);
    border-bottom-left-radius: 180px;
}

.sh-right-green {
    width: 180px;
    height: 180px;
    background: var(--color-sage);
    border-bottom-right-radius: 180px;
}

/* 3. Black Shape (PEECHE KR DIYA) */
.sh-black-behind {
    position: absolute;
    top: 250px; /* Thoda yellow/green ke niche se shuru ho */
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: 120px;
    background: var(--color-black);
    border-top-left-radius: 120px;
    border-top-right-radius: 120px;
    z-index: 2; /* Yellow/Green se kam */
}

/* 4. Floating Card */
.px-user-card {
    position: absolute;
    top: 100px;
    left: 80px;
    width: 180px;
    background: #fff;
    padding: 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    z-index: 10;
}

.px-avatar-img img { width: 40px; height: 40px; border-radius: 50%; }
.px-card-lines { flex: 1; }
.ln-1 { display: block; width: 60px; height: 4px; background: #eee; margin-bottom: 4px; }
.ln-2 { display: block; width: 40px; height: 4px; background: #eee; }

.px-send-tilt { transform: rotate(-50deg); color: #222; }
.px-send-tilt svg { width: 20px; height: 20px; }

@media (max-width: 900px) {
    .px-container { flex-direction: column; text-align: center; }
    .px-art-inner { transform: scale(0.8); margin-top: 50px; }
}

@media (max-width: 425px) {

.px-heading{
    font-size: 40px;
  }

  .contact-fixed{
        padding: 30px 0;
  }
}


/* contact form */
/* Unique wrapper to avoid conflicts */
.unique-contact-form-wrapper {
    padding: 30px 0;
    background-color: #ffffff;
    /* font-family: 'Inter', sans-serif; */
}
.unique-form-input, .unique-form-textarea {
font-family: 'DM Sans';

}
.unique-form-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Row display for 2 columns */
.unique-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.unique-form-field {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.unique-form-field--full {
    width: 100%;
    margin-top: 10px;
}

.unique-form-label {
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 500;
    margin-bottom: 12px;
}

/* Matching the exact input style from image */
.unique-form-input, 
.unique-form-textarea {
    width: 100%;
    background-color: #f2f2f2; /* Light grey background as seen in image */
    border: none;
    padding: 20px;
    font-size: 15px;
    border-radius: 4px;
    color: #333;
    box-sizing: border-box; /* Ensures padding doesn't break width */
}

.unique-form-input::placeholder, 
.unique-form-textarea::placeholder {
    color: #a0a0a0;
}

.unique-form-textarea {
    resize: none;
}

/* Button position and style */
.unique-form-action {
    margin-top: 40px;
}

.unique-form-submit-btn {
    background-color: #eb6424; /* Exact orange from previous assets */
    color: white;
    border: none;
    padding: 18px 50px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 100px; /* Fully rounded/capsule */
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: 'DM Sans';
}

.unique-form-submit-btn:hover {
    background-color: #cf551d;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .unique-form-row {
        flex-direction: column; /* Stack inputs on mobile */
        gap: 25px;
        margin-bottom: 25px;
    }

    .unique-form-submit-btn {
        width: 100%; /* Full width button on small screens */
    }
    
    .unique-form-label {
        font-size: 14px;
    }
}
/*  */

/*  */


/* sign in page */
/* sign in form */
.exact-layout-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f9f9f9;
    padding: 20px;
    /* font-family: 'Inter', sans-serif; */
}

.exact-wrapper {
    display: flex;
    width: 100%;
    max-width: 1100px;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    /* box-shadow: 0 10px 40px rgba(0,0,0,0.05); */
}

/* LEFT VISUAL SIDE */
.exact-visual-box {
    flex: 1;
    background-color: #f1f1f1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px;
}

.exact-abstract-circle {
    width: 440px;
    height: 440px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    border-radius: 50%;
    overflow: hidden;
    transform: rotate(-5deg); /* Subtle tilt like image */
}

.q-black { background: #0d0d0d; }
.q-pale-top { background: #f4f9c6; }
.q-pale-bottom { background: #f4f9c6; }
.q-orange { background: #eb6424; }

.exact-user-card {
    position: absolute;
    left: 15%;
    width: 280px;
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.12);
    z-index: 10;
}

.exact-card-header { font-weight: bold; margin-bottom: 15px; font-size: 14px; }

.exact-user-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.exact-user-item img { width: 40px; height: 40px; border-radius: 50%; }

.sk-bar { background: #f0f0f0; height: 6px; border-radius: 10px; margin-bottom: 5px; }
.sk-lg { width: 100px; }
.sk-sm { width: 60px; }

/* RIGHT FORM SIDE */
.exact-form-box {
    flex: 1;
    padding: 80px;
    display: flex;
    align-items: center;
}

.exact-login-container { width: 100%; max-width: 380px; margin: 0 auto; }

.exact-title { font-size: 34px; font-weight: 500; margin-bottom: 30px; }

.exact-input-group { margin-bottom: 20px; }
.exact-input-group label { display: block; margin-bottom: 8px; font-size: 14px; color: #666; }

.exact-input-group input {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'DM Sans';
}

.exact-submit-btn {
    width: 100%;
    padding: 16px;
    background: #eb6424;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    font-family: 'DM Sans';
}

.exact-meta-links { display: flex; justify-content: space-between; margin-top: 20px; font-size: 13px; }
.exact-meta-links a { text-decoration: none; color: #0066cc; }
.forgot { color: #eb6424 !important; }

.exact-divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
}
.exact-divider::before {
    content: ""; position: absolute; left: 0; top: 50%; width: 100%; height: 1px; background: #eee;
}
.exact-divider span { background: #fff; padding: 0 10px; position: relative; color: #999; font-size: 12px; }

.exact-google-btn {
    width: 100%;
    padding: 14px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 500;
    cursor: pointer;
}

.exact-google-btn img { width: 18px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .exact-wrapper { flex-direction: column; }
    .exact-visual-box { padding: 40px; min-height: 400px; }
    .exact-abstract-circle { width: 300px; height: 300px; }
    .exact-user-card { width: 220px; left: 50%; transform: translateX(-50%); }
    .exact-form-box { padding: 40px 20px; }
}
/*  */
/*  */

/* job detail page */
/* job detail form */
/* Layout Styling */
.jn-exp-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
    /* font-family: 'Inter', sans-serif;  */
    text-align: center;
}

.jn-exp-group input, .jn-exp-group textarea{
    font-family: 'DM Sans';
}

.jn-exp-header {
    margin-bottom: 50px;
}

.jn-exp-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.jn-exp-title {
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.1;
    margin: 10px 0;
}

.jn-exp-desc {
    color: #666;
    max-width: 550px;
    margin: 20px auto;
    line-height: 1.4;
    font-size: 0.95rem;
}

/* Form Structure */
.jn-exp-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    text-align: left; /* Image ke mutabiq labels left par hain */
}

.jn-exp-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.jn-exp-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.jn-exp-group label {
    font-weight: 700;
    font-size: 0.95rem;
}

.jn-exp-group input, 
.jn-exp-group textarea {
    background-color: #f4f4f4; /* Exactly same as image bg */
    border: none;
    border-radius: 4px;
    padding: 18px 20px;
    font-size: 0.9rem;
    width: 100%;
    box-sizing: border-box;
}

.jn-exp-group textarea {
    min-height: 180px;
    resize: none;
}

/* Button */
.jn-exp-submit {
    background-color: #ea692c; /* Exact orange from image */
    color: white;
    border: none;
    padding: 18px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 10px;
    font-family: 'DM Sans';
}

/* Responsive Logic */
@media (max-width: 768px) {
    .jn-exp-title {
        font-size: 2.2rem;
    }
    
    .jn-exp-row {
        grid-template-columns: 1fr; /* Mobile par stack ho jayega */
        gap: 25px;
    }

    .jn-exp-container {
        margin: 30px auto;
    }
}
/*  */
/*  */