/*Defaul Page*/
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #f5f7fa;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    padding: 0 20px;
}

/* HEADER */

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: contents;
}

    .logo img {
        max-width: 200px;
        width: 100%;
    }

/* NAVIGATION */

.nav {
    display: flex;
    align-items: center;
}

/* MENU LINKS */
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
}

    .nav-links li a {
        text-decoration: none;
        color: #333;
        font-size: 15px;
        font-weight: 500;
        transition: .3s;
    }

        .nav-links li a:hover {
            color: #ff6a00;
        }

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: 20px;
}

    .hamburger span {
        width: 25px;
        height: 3px;
        background: #333;
        margin: 4px 0;
        border-radius: 2px;
        transition: .3s;
    }

/* MOBILE */
@media(max-width:768px) {

    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        background: white;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 30px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        display: none;
    }

        .nav-links.active {
            display: flex;
        }

    .hamburger {
        display: flex;
    }
}

@media(max-width:768px) {

    .header {
        padding: 15px 20px;
    }

    .logo {
        font-size: 18px;
    }

        .logo img {
            max-width: 150px;
            width: 100%;
        }
}


/* HERO SECTION */
.homePgHero {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 30px 60px;
    gap: 60px;
}

.homePgHero-left,
.homePgHero-right {
    flex: 1;
}

    .homePgHero-left img {
        width: 100%;
        height: auto;
        border-radius: 12px;
    }

    .homePgHero-right h1 {
        font-size: 43px;
        line-height: 1.2;
        margin-bottom: 25px;
        color: #222;
        font-weight: 300;
        margin-top: 0;
    }

    .homePgHero-right p {
        font-size: 21px;
    }

/* BUTTON */

.bookDemo {
    margin-top: 30px;
}

    .bookDemo a {
        background: #ff6a00;
        color: white;
        padding: 14px 30px;
        text-decoration: none;
        border-radius: 30px;
        font-weight: 500;
    }

/* RESPONSIVE */

/* Tablet */

@media(max-width:1024px) {

    .homePgHero {
        gap: 40px;
    }

    .homePgHero-right h1 {
        font-size: 40px;
        line-height: 1.2;
        margin-bottom: 25px;
        color: #222;
        font-weight: 300;
        margin-top: 0;
    }
}

/* Mobile */

@media(max-width:768px) {

    .homePgHero {
        flex-direction: column;
        padding: 50px 20px;
    }

    .homePgHero-right {
        text-align: center;
    }

        .homePgHero-right h1 {
            font-size: 40px;
            line-height: 1.2;
            margin-bottom: 25px;
            color: #222;
            font-weight: 300;
            margin-top: 0;
        }

        .homePgHero-right p {
            font-size: 18px;
            color: #555;
            line-height: 1.7;
            margin-bottom: 15px;
        }

    .bookDemo {
        text-align: center;
    }
}

.middle-section {
    padding: 30px 20px;
    background: #f7f9fc;
}

.container {
    max-width: 1200px;
    margin: auto;
}

/* Qualification */

.qualification {
    text-align: center;
    margin-bottom: 30px;
}

    .qualification h2 {
        font-size: 44px;
        margin-bottom: 10px;
        margin-top: 0px;
        font-weight: 300;
        line-height: normal;
        line-height: normal;
    }

    .qualification p {
        font-size: 18px;
        color: #555;
    }

/* Outcomes */

.outcomes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Tablet */

@media(max-width:1024px) {

    .outcomes {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */

@media(max-width:600px) {

    .outcomes {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0;
    }
}

.BrandCard {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

    .BrandCard h3 {
        margin-bottom: 10px;
        font-size: 22px;
        font-weight: 500;
        margin-top: 0;
    }

    .BrandCard p {
        margin-bottom: 0;
        color: #414141;
        font-size: 17px;
    }

/* HOW IT WORKS */
.how-it-works {
    max-width: 1200px;
    margin: auto;
    padding: 20px 20px;
}

    .how-it-works h2 {
        text-align: center;
        font-size: 44px;
        margin-bottom: 30px;
        font-weight: 300;
        margin-top: 0;
    }

/* .how-it-works span {
            background: linear-gradient(90deg, #ff6a00, #ffb347);
            -webkit-background-clip: text;
            color: transparent;
        } */

/* layout */

.process-wrapper {
    display: flex;
    gap: 90px;
    align-items: flex-start;
}

/* timeline */

.timeline {
    position: relative;
    flex: 1;
    padding-left: 70px;
}

    /* base line */

    .timeline::before {
        content: "";
        position: absolute;
        left: 30px;
        top: 0;
        width: 4px;
        height: 100%;
        background: #e6e6e6;
        border-radius: 10px;
    }

/* animated progress */

.progress-line {
    position: absolute;
    left: 28px;
    top: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, #ff6a00, #ffb347);
    border-radius: 10px;
    transition: height .3s ease;
}

/* step */

.step {
    position: relative;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    opacity: .4;
    transition: .4s;
}

    /* active step */

    .step.active {
        opacity: 1;
        transform: translateX(6px);
    }

/* circle */

.circle {
    position: absolute;
    left: -72px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6a00, #ffb347);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

/* card */

.hit-card {
    margin-left: 0px;
    padding: 28px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .7);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.04);
    transition: .35s;
}

    .hit-card h4 {
        margin: 0 0 8px;
        color: #ff6a00;
    }

    .hit-card p {
        margin: 0;
        color: #555;
        line-height: 1.6;
        font-size: 17px;
    }

    .hit-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 25px 55px rgba(0, 0, 0, .15);
    }

/* sticky image */

.process-image {
    flex: 1;
    /* position: sticky;
            top: 120px; */
}

    .process-image img {
        width: 100%;
        /* border-radius: 22px;
            box-shadow: 0 25px 60px rgba(0, 0, 0, .18); */
        height: 85vh;
        object-fit: cover;
    }

/* responsive */

@media(max-width:900px) {

    .process-wrapper {
        flex-direction: column;
    }

    .timeline {
        padding-left: 0px;
    }

    .process-image {
        position: relative;
        top: auto;
    }

    .circle {
        display: none;
    }
}

/* Mobile */

@media(max-width:600px) {

    .circle {
        display: none;
    }
}


/* INTRO CTA */

/* FEATURES */
.features-section {
    padding: 30px 20px;
}

    .features-section h2 {
        text-align: center;
        font-size: 44px;
        margin-bottom: 30px;
        font-weight: 300;
        margin-top: 0;
    }

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-tile {
    background: white;
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
    transition: .35s;
}

    .feature-tile:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
    }

.icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.feature-tile h3 {
    margin: 0px;
    font-size: 20px;
    font-weight: 400;
}

.feature-tile p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* DIFFERENTIATORS */

.differentiator-section {
    padding: 80px 20px;
    background: #f7f9fc;
}

.container {
    max-width: 1200px;
    margin: auto;
}

/* WRAPPER */
.diff-wrapper {
    display: flex;
    align-items: stretch;
    gap: 50px;
}

/* LEFT */
.diff-left {
    flex: 1;
    display: flex;
    flex-direction: column;
}

    .diff-left h2 {
        font-size: 44px;
        margin-bottom: 30px;
        font-weight: 300;
        margin-top: 0;
    }

/* LIST */
.diff-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* CARD */
.diff-card {
    background: #fff;
    padding: 22px 25px;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}

    /* left accent line */
    .diff-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 4px;
        background: linear-gradient(180deg, #ff6a00, #ffb347);
    }

    .diff-card:hover {
        transform: translateX(8px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    }

    .diff-card h4 {
        margin: 0;
        font-size: 20px;
        font-weight: 400;
    }

/* RIGHT IMAGE */
.diff-right {
    flex: 1;
    display: flex;
}

    .diff-right img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 16px;
    }

/* RESPONSIVE */
@media(max-width: 992px) {
    .diff-wrapper {
        flex-direction: column;
    }

    .diff-right {
        height: 300px;
    }
}

@media(max-width: 768px) {
    .diff-left h2 {
        font-size: 28px;
    }
}

/* FINAL CTA */

.demo-cta {
    text-align: center;
    background: linear-gradient(135deg, #ff6a00, #ffb347);
    color: white;
    border-radius: 20px;
    padding: 70px 20px;
    margin-bottom: 50px;
}

    .demo-cta h2 {
        font-size: 34px;
        margin-bottom: 15px;
    }

    .demo-cta p {
        max-width: 700px;
        margin: auto;
        margin-bottom: 30px;
    }

.btn-demo {
    background: white;
    color: #ff6a00;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
}

    .btn-demo:hover {
        background: #f4f4f4;
    }

/* RESPONSIVE */

@media(max-width:900px) {

    .feature-grid {
        grid-template-columns: 1fr 1fr;
    }

    .diff-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:600px) {

    .feature-grid {
        grid-template-columns: 1fr;
    }
}


.newsletter {
    display: flex;
    margin-top: 10px;
}

    .newsletter input {
        flex: 1;
        padding: 10px;
        border: none;
        outline: none;
        border-radius: 6px 0 0 6px;
    }

    .newsletter button {
        padding: 10px 15px;
        border: none;
        background: #ff6a00;
        color: white;
        border-radius: 0 6px 6px 0;
        cursor: pointer;
    }


/* TABLET */

@media(max-width:1024px) {

    .why-visulon {
        gap: 30px;
    }

    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/*Default Page end*/

/*Visulon Platform*/
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #f5f7fa;
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: contents;
}

    .logo img {
        max-width: 200px;
        width: 100%;
    }
/* NAVIGATION */

.nav {
    display: flex;
    align-items: center;
}

/* MENU LINKS */
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
}

    .nav-links li a {
        text-decoration: none;
        color: #333;
        font-size: 15px;
        font-weight: 500;
        transition: .3s;
    }

        .nav-links li a:hover {
            color: #ff6a00;
        }

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: 20px;
}

    .hamburger span {
        width: 25px;
        height: 3px;
        background: #333;
        margin: 4px 0;
        border-radius: 2px;
        transition: .3s;
    }

/* MOBILE */
@media(max-width:768px) {

    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        background: white;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 30px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        display: none;
    }

        .nav-links.active {
            display: flex;
        }

    .hamburger {
        display: flex;
    }
}

@media(max-width:768px) {

    .header {
        padding: 15px 20px;
    }

    .logo {
        font-size: 18px;
    }

        .logo img {
            max-width: 150px;
            width: 100%;
        }
}

.logo {
    font-size: 22px;
    font-weight: 600;
    color: #222;
}

/* HERO */
.hero {
    text-align: center;
    padding: 100px 20px;
}

    .hero h1 {
        font-size: 48px;
        font-weight: 300;
        margin-bottom: 20px;
    }

    .hero p {
        max-width: 800px;
        margin: auto;
        color: #555;
        font-size: 18px;
    }

.cta-btn {
    display: inline-block;
    margin-top: 30px;
    background: #ff6a00;
    color: #fff;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 20px;
}

.img-shrink {
    flex-shrink: 0;
}

/* SECTION */
.section {
    padding: 40px 20px;
}

.container {
    max-width: 1200px;
    margin: auto;
}

/* SPLIT */
.split {
    display: flex;
    gap: 60px;
    align-items: center;
}

    /* IMAGE */
    .split img {
        width: 100%;
        border-radius: 18px;
        max-width: 500px;
        /* box-shadow:0 25px 60px rgba(0,0,0,.15); */
    }

/* CONTENT */
.content h2 {
    font-size: 38px;
    font-weight: 300;
    margin-bottom: 20px;
}

.content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 20px;
}

/* LIST */
.list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.list-item {
    background: #fff;
    padding: 15px 18px;
    border-radius: 10px;
    border-left: 4px solid #ff6a00;
    font-size: 20px;
}

/* CTA SECTION */
.cta {
    text-align: center;
    background: linear-gradient(135deg, #ff6a00, #ffb347);
    color: #fff;
    padding: 70px 20px;
    border-radius: 20px;
}

    .cta h2 {
        font-size: 34px;
        margin-bottom: 15px;
    }

    .cta a {
        display: inline-block;
        margin-top: 20px;
        background: #fff;
        color: #ff6a00;
        padding: 14px 30px;
        border-radius: 8px;
        text-decoration: none;
    }

/* ALT BG */
.alt {
    background: #f7f9fc;
}

/* RESPONSIVE */
@media(max-width:900px) {
    .split {
        flex-direction: column;
    }
}


/* NEWSLETTER */
.newsletter {
    display: flex;
    margin-top: 10px;
}

    .newsletter input {
        flex: 1;
        padding: 10px;
        border: none;
        outline: none;
        border-radius: 6px 0 0 6px;
    }

    .newsletter button {
        padding: 10px 15px;
        border: none;
        background: #ff6a00;
        color: white;
        cursor: pointer;
        border-radius: 0 6px 6px 0;
        font-weight: 500;
    }


/*End Visulon Platform*/

/*Why Visulon*/
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #f5f7fa;
    overflow-x: hidden;
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: contents;
}




/* NAVIGATION */

.nav {
    display: flex;
    align-items: center;
}

/* MENU LINKS */
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
}

    .nav-links li a {
        text-decoration: none;
        color: #333;
        font-size: 15px;
        font-weight: 500;
        transition: .3s;
    }

        .nav-links li a:hover {
            color: #ff6a00;
        }

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: 20px;
}

    .hamburger span {
        width: 25px;
        height: 3px;
        background: #333;
        margin: 4px 0;
        border-radius: 2px;
        transition: .3s;
    }

/* MOBILE */
@media(max-width:768px) {

    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        background: white;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 30px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        display: none;
    }

        .nav-links.active {
            display: flex;
        }

    .hamburger {
        display: flex;
    }
}

@media(max-width:768px) {

    .header {
        padding: 15px 20px;
    }

    .logo {
        font-size: 18px;
    }

        .logo img {
            max-width: 150px;
            width: 100%;
        }
}



/* WHY SECTION */

.why-visulon {
    display: flex;
    gap: 60px;
    padding: 30px 0;
    align-items: center;
}

.why-visulon-left {
    flex: 1;
    text-align: center;
}

    .why-visulon-left img {
        width: 100%;
        max-width: 100%;
        border-radius: 20px;
    }

.why-visulon-right {
    flex: 1;
}

    .why-visulon-right h1 {
        font-size: 30px;
        font-weight: 300;
        margin-bottom: 20px;
    }

    .why-visulon-right p {
        font-size: 17px;
        color: #555;
        line-height: 1.7;
    }

/* BENEFITS */

.benefits-section {
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    padding: 35px 25px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    transition: .4s;
}

    .benefit-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
    }

.icon-wrap {
    width: 65px;
    height: 65px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6a00, #ffb347);
    box-shadow: 0 10px 25px rgba(255, 106, 0, .3);
    margin-bottom: 20px;
}

    .icon-wrap svg {
        width: 30px;
        fill: white;
    }

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* CTA */

.cta-final {
    text-align: center;
    background: linear-gradient(135deg, #ff6a00, #ffb347);
    color: #fff;
    padding: 70px 20px;
    border-radius: 20px;
    margin-bottom: 50px;
}

    .cta-final h2 {
        font-size: 34px;
        margin-bottom: 15px;
    }

    .cta-final a {
        display: inline-block;
        margin-top: 20px;
        background: white;
        color: #ff6a00;
        padding: 12px 25px;
        border-radius: 8px;
        text-decoration: none;
    }



.newsletter {
    display: flex;
    margin-top: 10px;
}

    .newsletter input {
        flex: 1;
        padding: 10px;
        border: none;
        outline: none;
        border-radius: 6px 0 0 6px;
    }

    .newsletter button {
        padding: 10px 15px;
        border: none;
        background: #ff6a00;
        color: white;
        border-radius: 0 6px 6px 0;
        cursor: pointer;
    }


/* TABLET */

@media(max-width:1024px) {

    .why-visulon {
        gap: 30px;
    }

    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* MOBILE */

@media(max-width:768px) {

    .header {
        padding: 15px 20px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        background: white;
        flex-direction: column;
        width: 220px;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
        display: none;
    }

        .nav-links.active {
            display: flex;
        }

    .why-visulon {
        flex-direction: column;
        padding: 40px 0;
        text-align: center;
    }

    .why-visulon-left img {
        min-width: auto;
    }

    .why-visulon-right h1 {
        font-size: 24px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .newsletter {
        flex-direction: column;
        gap: 10px;
    }

        .newsletter input,
        .newsletter button {
            border-radius: 6px;
        }
}

/* SMALL MOBILE */

@media(max-width:480px) {

    .why-visulon-right h1 {
        font-size: 22px;
    }

    .benefit-card {
        padding: 25px 20px;
    }

    .cta-final {
        padding: 50px 15px;
    }
}

/*End Of why Visulon*/

/*Career Page*/
body {
    margin: 0;
    font-family: 'Poppins',sans-serif;
    background: #f5f7fa;
    color: #222
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    position: sticky;
    top: 0;
    z-index: 100
}



.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0
}

    .nav-links li a {
        text-decoration: none;
        color: #333;
        font-size: 15px;
        font-weight: 500;
        transition: .3s;
    }

/* HERO */
.career-hero {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg,#ff6a00,#ffb347);
    color: #fff
}

    .career-hero h1 {
        font-size: 42px;
        margin-bottom: 10px;
        font-weight: 500
    }

    .career-hero p {
        max-width: 700px;
        margin: auto;
        font-size: 18px
    }

/* WHY JOIN */
.why-section {
    padding: 60px 20px
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px
}

.card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05)
}

    .card h3 {
        margin-top: 0
    }

/* JOB LIST */
/* JOB LIST - PREMIUM UI */
.jobs {
    padding: 80px 20px;
    background: linear-gradient(180deg, #f7f9fc, #eef2f7);
}

    .jobs h2 {
        text-align: center;
        font-size: 38px;
        margin-bottom: 50px;
        font-weight: 600;
    }

/* GRID */
.job-list {
    display: grid;
    gap: 25px;
}

/* CARD */
.job {
    position: relative;
    padding: 30px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    transition: all 0.3s ease;
    overflow: hidden;
    margin-bottom: 20px;
}

    /* Gradient border glow */
    .job::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 16px;
        padding: 1px;
        background: linear-gradient(135deg, #ff6a00, #ffb347, #ff6a00);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        pointer-events: none;
    }

    /* Hover Effect */
    .job:hover {
        transform: translateY(-5px) scale(1.01);
        box-shadow: 0 20px 50px rgba(255, 106, 0, 0.15);
    }

    /* Title */
    .job h4 {
        margin: 0;
        font-size: 24px;
        font-weight: 600;
    }

.job-details {
    display: grid;
    line-height: 1.6;
    padding-left: 20px;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0;
    list-style: none;
    color: #777;
}
/* BUTTON GROUP */
.job-apply {
    gap: 12px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

/* BUTTON BASE */
.btn {
    position: relative;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
    border: none;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* PRIMARY BUTTON (Apply) */
.btn-primary {
    background: linear-gradient(135deg, #ff6a00, #ffb347);
    color: #fff;
    box-shadow: 0 5px 15px rgba(255,106,0,0.3);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(255,106,0,0.4);
    }

/* OUTLINE BUTTON (View) */
.btn-outline {
    background: transparent;
    border: 1px solid rgba(0,0,0,0.1);
    color: #333;
}

    .btn-outline:hover {
        background: #111;
        color: #fff;
    }

/* Glow animation on hover */
.btn-primary::after {
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255,255,255,0.4), transparent 60%);
    top: -10%;
    left: -10%;
    opacity: 0;
    transition: 0.4s;
}

.btn-primary:hover::after {
    opacity: 1;
}

/* CULTURE */
.culture {
    padding: 60px 20px
}

.culture-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center
}

.culture img {
    width: 100%;
    border-radius: 12px
}

/* CTA */
.cta {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 60px 20px
}

    .cta a {
        background: #ff6a00;
        color: #fff;
        padding: 14px 30px;
        border-radius: 25px;
        text-decoration: none
    }

/* MODAL */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999
}

    .modal.active {
        display: flex
    }

.modal-content {
    background: #fff;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    padding: 30px;
    position: relative
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 20px;
    cursor: pointer
}

/* FORM */
.contactForm {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px
}

input, textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-family: inherit
}

    input[type=file] {
        border: none
    }

button.submit-btn {
    background: #ff6a00;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer
}



/* TABLET */

@media(max-width:1024px) {

    .why-visulon {
        gap: 30px;
    }

    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* RESPONSIVE */
@media(max-width:900px) {
    .why-grid {
        grid-template-columns: 1fr 1fr
    }

    .culture-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:600px) {
    .why-grid {
        grid-template-columns: 1fr
    }

    .career-hero h1 {
        font-size: 30px
    }
}
/*End pf career*/
/*Contact */
/* Contact HERO */
.ContactHero {
    text-align: center;
    padding: 60px 20px 20px;
}

    .ContactHero h1 {
        font-size: 40px;
        font-weight: 400;
        margin-bottom: 10px;
    }

    .ContactHero p {
        color: #666;
        max-width: 520px;
        margin: auto;
        font-size: 16px;
    }

/* WRAPPER */
.wrapper {
    max-width: 480px;
    margin: 30px auto 80px;
    padding: 0 16px;
}

/* FORM BOX */
.form-box {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    padding: 30px 25px;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* FIELD */
.field {
    position: relative;
    margin-bottom: 20px;
}

    .field input,
    .field textarea {
        width: stretch;
        padding: 14px 14px 14px 42px;
        border-radius: 10px;
        border: 1px solid #ddd;
        font-size: 14px;
        transition: all 0.25s ease;
        background: rgba(255, 255, 255, 0.9);
    }
.g-recaptcha {
    margin-bottom: 20px;
}

    /* ICON */
    .field svg {
        position: absolute;
        top: 14px;
        left: 12px;
        width: 18px;
        height: 18px;
        fill: #aaa;
        transition: 0.2s;
    }

    /* FOCUS */
    .field input:focus,
    .field textarea:focus {
        border-color: #ff6a00;
        box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.12);
    }

        .field input:focus + svg,
        .field textarea:focus + svg {
            fill: #ff6a00;
        }

    /* VALIDATION */
    .field.error input,
    .field.error textarea {
        border-color: #e74c3c;
    }

    .field.success input,
    .field.success textarea {
        border-color: #2ecc71;
    }

.error-text {
    font-size: 12px;
    color: #e74c3c;
    margin-top: 6px;
    display: none;
}

.field.error .error-text {
    display: block;
}

/* BUTTON */
.RequestBtn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #ff6a00, #ffb347);
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

    .RequestBtn:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
    }

/* SUCCESS */
.success-msg {
    text-align: center;
    color: #2ecc71;
    margin-top: 12px;
    display: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }

    .ContactHero h1 {
        font-size: 30px;
    }

    .form-box {
        padding: 25px 18px;
    }
}

@media (max-width: 480px) {
    .ContactHero h1 {
        font-size: 26px;
    }

    .ContactHero p {
        font-size: 14px;
    }

    .nav-links {
        display: none;
    }
}
/*End Of Contact*/
/*Footer Section*/
.footer {
    background: #111;
    color: #ddd;
    padding: 70px 20px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* LOGO */
.footer-logo img {
    max-width: 170px;
}

/* HEADINGS */
.footer-col h4 {
    color: white;
    margin-bottom: 15px;
    font-weight: 500;
}

/* TEXT */
.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #aaa;
}

/* LINKS */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-col ul li {
        margin-bottom: 10px;
    }

        .footer-col ul li a {
            text-decoration: none;
            color: #aaa;
            font-size: 14px;
            transition: .3s;
        }

            .footer-col ul li a:hover {
                color: #ff6a00;
            }

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid #222;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
}

    .footer-bottom p {
        font-size: 13px;
        color: #777;
    }

/* RESPONSIVE */

@media(max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .newsletter {
        flex-direction: column;
        gap: 10px;
    }

        .newsletter input,
        .newsletter button {
            border-radius: 6px;
        }
}
