*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#f5f5f5;
    overflow-x:hidden;
}

body.menu-open{
    overflow: hidden;

    overflow-x:hidden;
}




/* ================= HEADER ================= */

.header{
    width:100%;
    height:110px;
    background:#fff;
    padding:0 5%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    position:relative;
    z-index:99999;
}

/* TEXT LOGO */

/* .logo a{
    text-decoration: none;
    font-size: 34px;
    font-weight: 800;
    color: #111;

    font-family: 'Poppins', sans-serif;

    letter-spacing: -1px;

    display: flex;
    align-items: center;
    gap: 8px;

    transition: .3s ease;
}

.logo a span{
    color: #0f8f6f;
    position: relative;
} */

/* Underline Effect */

/* .logo a span::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;

    width: 100%;
    height: 3px;

    background: #c4f226;

    border-radius: 20px;
}

.logo a:hover{
    transform: scale(1.02);
} */



/* image logo css */


/* ================= IMAGE LOGO ================= */

.logo{
    display:flex;
    align-items:center;
    height:100%;
}

.logo a{
    display:flex;
    align-items:center;
    height:100%;
}

.logo img{
    max-height:70px;   /* Desktop */
    width:auto;
    max-width:220px;
    object-fit:contain;
    display:block;
    transition:.3s ease;
}

.logo img:hover{
    transform:scale(1.03);
}










/* NAVIGATION */

.nav-menu{
    display:flex;
    align-items:center;
    gap:45px;
    list-style:none;
}

.nav-menu li{
    position:relative;
}

.nav-menu li a{
    text-decoration:none;
    color:#111;
    font-size:18px;
    font-weight:500;
    transition:.3s;
}

.nav-menu li a:hover,
.nav-menu li a.active{
    color:#0f8f6f;
}

/* DROPDOWN */

.dropdown > a{
    display:flex;
    align-items:center;
    gap:8px;
}

.dropdown-menu{
    position:absolute;
    top:55px;
    left:0;

    width:240px;
    background:#fff;

    border-radius:15px;
    padding:15px 0;

    list-style:none;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    opacity:0;
    visibility:hidden;
    transform:translateY(20px);

    transition:.3s;

    z-index:99999;
}

.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown-menu li{
    width:100%;
}

.dropdown-menu li a{
    display:block;
    padding:14px 25px;
    font-size:16px;
}

.dropdown-menu li a:hover{
    background:#f5f5f5;
    color:#0f8f6f;
}

/* CONTACT BUTTON */

.contact-btn{
    text-decoration:none;
    background:#c4f226;
    color:#111;

    padding:12px 14px 12px 28px;

    border-radius:60px;

    display:flex;
    align-items:center;
    gap:18px;

    font-size:18px;
    font-weight:600;
}

.contact-btn span{
    width:48px;
    height:48px;
    background:#fff;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;
}

/* HAMBURGER */

.hamburger{
    display:none;
    font-size:30px;
    cursor:pointer;
    z-index:1000000;
}

/* ================= TABLET ================= */

@media(max-width:1024px){

    .header{
        padding:0 3%;
    }

    .nav-menu{
        gap:25px;
    }

       .logo img{
        max-height:60px;
        max-width:190px;
    }

}

/* ================= MOBILE ================= */

@media(max-width:768px){

    .header{
        height:90px;
        padding:0 20px;
    }

    /* .logo{
        font-size:24px;
    } */

       .logo img{
        max-height:50px;
        max-width:160px;
    }


    .contact-btn{
        display:none;
    }

    .hamburger{
        display:block;
    }

    .navbar{
        position:fixed;

        top:90px;
        left:-100%;

        width:100%;
        height:calc(100vh - 90px);

        background:#fff;

        padding:20px;

        overflow-y:auto;

        transition:.4s ease;

        z-index:999999;
    }

    .navbar.active{
        left:0;
    }

    .nav-menu{
        width:100%;

        flex-direction:column;

        align-items:flex-start;

        gap:0;
    }

    .nav-menu li{
        width:100%;
        border-bottom:1px solid #eee;
    }

    .nav-menu li a{
        width:100%;

        display:flex;
        justify-content:space-between;
        align-items:center;

        padding:18px 0;

        font-size:17px;
    }

    /* MOBILE DROPDOWN */

    .dropdown-menu{
        position:static;

        width:100%;

        margin:0;

        padding:0;

        border-radius:0;

        box-shadow:none;

        opacity:1;
        visibility:visible;
        transform:none;

        display:none;

        background:transparent;
    }

    .dropdown.active .dropdown-menu{
        display:block;
    }

    .dropdown-menu li{
        border:none;
    }

    .dropdown-menu li a{
        padding:12px 20px;
        font-size:15px;
        color:#666;
    }

}

/* ================= SMALL PHONES ================= */

@media(max-width:480px){

    .header{
        padding:0 15px;
    }

    /* .logo{
        font-size:20px;
    } */

      .logo img{
        max-height:42px;
        max-width:140px;
    }

    .hamburger{
        font-size:26px;
    }

}

/* 2nd section */

.hero{
    display:flex;
    width:100%;
    min-height:750px;
    overflow:visible;
    position:relative;
    z-index:1;
}

/* LEFT SIDE */

.hero-left{
    width:50%;
    background:#006c5f;
    padding:80px 70px;
    display:flex;
    align-items:center;
}

.hero-content{
    max-width:650px;
}

/* TITLE */

.hero-title{
    font-size:58px;
    line-height:1.15;
    color:#fff;
    font-weight:700;
    margin-bottom:25px;
    text-transform:uppercase;
    letter-spacing:-1px;
}

.italic-text{
    display:block;
    color:#d8ff35;
    font-style:italic;
    font-family:'Playfair Display', serif;
    margin-top:12px;
}

.second-line{
    display:block;
    font-size:28px;
    font-weight:400;
    color:#fff;
    line-height:1.5;
    margin-top:25px;
    text-transform:none;
    letter-spacing:0;
}

/* DESCRIPTION */

.hero-description{
    color:#fff;
    opacity:.9;
    font-size:18px;
    line-height:1.8;
    margin:35px 0;
}

/* BUTTONS */

.hero-btns{
    display:flex;
    gap:20px;
    margin-bottom:50px;
    flex-wrap:wrap;
}

.hero-btn{
    display:flex;
    align-items:center;
    gap:18px;
    padding:18px 28px;
    border-radius:60px;
    text-decoration:none;
    font-size:18px;
    font-weight:600;
    transition:.3s ease;
}

.hero-btn:hover{
    transform:translateY(-3px);
}

.hero-btn span{
    width:48px;
    height:48px;
    border-radius:50%;
    background:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#000;
}

.primary-btn{
    background:#d8ff35;
    color:#000;
}

.secondary-btn{
    border:1px solid rgba(255,255,255,.4);
    color:#fff;
}

/* RIGHT SIDE */

.hero-right{
    width:50%;
    position:relative;
    z-index:1;
}

.hero-image{
    width:100%;
    height:100%;
    object-fit:cover;
    position:relative;
    z-index:1;
}

/* HIRING CARD */

.hiring-card{
    width:290px;
    background:#fff;
    padding:25px;
    border-radius:24px;
    animation:floatCard 4s ease-in-out infinite;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.card-top{
    display:flex;
    justify-content:space-between;
    margin-bottom:20px;
}

.avatar-group{
    display:flex;
    margin-bottom:20px;
}

.avatar-group img,
.plus-avatar{
    width:45px;
    height:45px;
    border-radius:50%;
    margin-left:-10px;
    border:3px solid #fff;
}

.avatar-group img:first-child{
    margin-left:0;
}

.plus-avatar{
    background:#ddd;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* CANDIDATE CARD */

.candidate-card{
    position:absolute;
    bottom:40px;
    left:30px;
    width:320px;
    background:#fff;
    border-radius:24px;
    padding:25px;
    animation:floatCard 5s ease-in-out infinite;
    z-index:10;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.score{
    display:block;
    color:#0d8b78;
    margin:12px 0;
}

.graph-container{
    margin:20px 0;
}

.graph-line{
    fill:none;
    stroke:#0d8b78;
    stroke-width:4;
    stroke-dasharray:500;
    stroke-dashoffset:500;
    animation:graphAnimation 4s linear infinite;
}

@keyframes graphAnimation{
    0%{
        stroke-dashoffset:500;
    }

    100%{
        stroke-dashoffset:-500;
    }
}

@keyframes floatCard{
    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-10px);
    }
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:1200px){

    .hero-title{
        font-size:48px;
    }

    .second-line{
        font-size:24px;
    }

    .hero-left{
        padding:70px 50px;
    }

}

/* TABLET */

@media(max-width:992px){

    .hero{
        flex-direction:column;
    }

    .hero-left,
    .hero-right{
        width:100%;
    }

    .hero-left{
        padding:70px 40px;
    }

    .hero-title{
        font-size:44px;
    }

    .second-line{
        font-size:22px;
    }

    .hero-description{
        font-size:17px;
    }

    .hero-image{
        height:550px;
    }

    .candidate-card{
        width:300px;
        left:20px;
        bottom:20px;
    }

}

/* MOBILE */

@media(max-width:768px){

    .hero-left{
        padding:60px 25px;
    }

    .hero-title{
        font-size:34px;
        line-height:1.2;
    }

    .second-line{
        font-size:18px;
        margin-top:18px;
    }

    .hero-description{
        font-size:16px;
    }

    .hero-btns{
        flex-direction:column;
        width:100%;
    }

    .hero-btn{
        width:100%;
        justify-content:space-between;
    }

    .hero-image{
        height:450px;
    }

    .candidate-card{
        width:90%;
        left:5%;
        bottom:20px;
    }

    .hiring-card{
        width:100%;
    }

}

/* SMALL PHONES */

@media(max-width:480px){

    .hero-title{
        font-size:28px;
    }

    .second-line{
        font-size:16px;
    }

    .hero-description{
        font-size:15px;
    }

    .hero-left{
        padding:50px 20px;
    }

    .hero-image{
        height:380px;
    }

    .candidate-card{
        padding:20px;
    }

}

/* 2nd section stats */

/* ================= TRUST SECTION ================= */

.trust-section{
    width:100%;
    padding:90px 7%;
    background:#f8f8f8;
}

.trust-container{
    max-width:1400px;
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
}

/* LEFT */

.trust-content{
    width:45%;
}

.section-tag{
    color:#0f8f6f;
    font-size:15px;
    font-weight:700;
    letter-spacing:3px;
}

.trust-content h2{
    font-size:58px;
    line-height:1.15;
    color:#111;
    margin:20px 0;
}

.trust-content p{
    font-size:18px;
    color:#666;
    line-height:1.8;
    margin-bottom:40px;
}

.trust-btn{
    display:inline-flex;
    align-items:center;
    gap:18px;

    background:#0f8f6f;
    color:#fff;

    padding:18px 28px;

    border-radius:60px;

    text-decoration:none;
    font-weight:600;

    transition:.3s;
}

.trust-btn:hover{
    transform:translateY(-5px);
}

.trust-btn span{
    width:45px;
    height:45px;

    background:#fff;
    color:#111;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;
}

/* RIGHT */

.trust-stats{
    width:55%;

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.trust-card{
    background:#fff;
    padding:45px 35px;

    border-radius:25px;

    box-shadow:0 10px 35px rgba(0,0,0,.05);

    transition:.4s;
}

.trust-card:hover{
    transform:translateY(-10px);
}

.trust-card h3{
    font-size:64px;
    color:#0f8f6f;
    font-family:'Playfair Display',serif;
    margin-bottom:10px;
}

.trust-card p{
    font-size:18px;
    color:#666;
}

/* responsive */

@media(max-width:1100px){

    .trust-container{
        flex-direction:column;
    }

    .trust-content,
    .trust-stats{
        width:100%;
    }

}

@media(max-width:768px){

    .trust-section{
        padding:80px 20px;
    }

    .trust-content h2{
        font-size:40px;
    }

    .trust-stats{
        grid-template-columns:1fr;
    }

    .trust-card h3{
        font-size:50px;
    }

}

@media(max-width:480px){

    .trust-content h2{
        font-size:32px;
    }

    .trust-content p{
        font-size:16px;
    }

    .trust-card{
        padding:35px 25px;
    }

}

/* 3rd section */

/* ================= HOW IT WORKS ================= */

.how-it-works{
    width:100%;
    padding:90px 7%;
    background:#ffffff;
}

.section-header{
    text-align:center;
    max-width:900px;
    margin:auto;
    margin-bottom:80px;
}

.section-tag{
    color:#0f8f6f;
    font-size:15px;
    font-weight:700;
    letter-spacing:3px;
}

.section-header h2{
    font-size:55px;
    margin:20px 0;
    line-height:1.2;
    color:#111;
}

.section-header h2 span{
    color:#0f8f6f;
}

.section-header p{
    color:#666;
    font-size:18px;
    line-height:1.8;
}

.steps-wrapper{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.step-card{
    background:#fff;
    border-radius:30px;
    padding:45px 35px;

    position:relative;

    box-shadow:0 15px 40px rgba(0,0,0,.05);

    transition:.4s ease;

    opacity:0;
    transform:translateY(80px);
}

.step-card.show{
    opacity:1;
    transform:translateY(0);
}

.step-card:hover{
    transform:translateY(-12px);
}

.step-number{
    position:absolute;
    top:25px;
    right:30px;

    font-size:60px;
    font-weight:800;

    color:rgba(15,143,111,.08);
}

.step-icon{
    width:80px;
    height:80px;

    border-radius:50%;
    background:#d8ff35;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:32px;
    color:#111;

    margin-bottom:30px;
}

.step-card h3{
    font-size:28px;
    margin-bottom:20px;
}

.step-card p{
    color:#666;
    line-height:1.9;
    font-size:17px;
}

.work-rights-note{
    margin-top:60px;
    padding:25px 30px;

    background:#f6f8f7;

    border-left:5px solid #0f8f6f;

    border-radius:15px;

    color:#555;
    font-size:17px;

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

/* responsive */

@media(max-width:992px){

    .steps-wrapper{
        grid-template-columns:1fr;
    }

    .section-header h2{
        font-size:42px;
    }

}

@media(max-width:768px){

    .how-it-works{
        padding:80px 20px;
    }

    .section-header h2{
        font-size:34px;
    }

    .step-card{
        padding:35px 25px;
    }

    .step-card h3{
        font-size:24px;
    }

}

@media(max-width:480px){

    .section-header h2{
        font-size:28px;
    }

    .section-header p{
        font-size:16px;
    }

    .step-number{
        font-size:45px;
    }

}

/* 4th section */

/* ================= WHY SECTION ================= */

.why-section{
    width:100%;
    padding:90px 7%;
    background:#f8f9f8;
}

.why-container{
    max-width:1400px;
    margin:auto;

    display:flex;
    align-items:center;
    gap:70px;
}

/* IMAGE */

.why-image{
    width:50%;
    position:relative;
}

.why-image img{
    width:100%;
    border-radius:30px;
    object-fit:cover;
    display:block;
}

.experience-card{
    position:absolute;
    bottom:30px;
    left:30px;

    background:#fff;
    padding:25px 35px;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    animation:floatCard 4s ease infinite;
}

.experience-card h3{
    font-size:50px;
    color:#0f8f6f;
}

.experience-card p{
    color:#666;
}

/* CONTENT */

.why-content{
    width:50%;
}

.why-content h2{
    font-size:52px;
    margin:20px 0;
    line-height:1.2;
}

.why-content h2 span{
    color:#0f8f6f;
}

.why-description{
    color:#666;
    line-height:1.8;
    margin-bottom:50px;
}

/* GRID */

.why-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.why-card{
    background:#fff;
    padding:35px;
    border-radius:25px;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    transition:.4s ease;

    opacity:0;
    transform:translateY(50px);
}

.why-card.show{
    opacity:1;
    transform:translateY(0);
}

.why-card:hover{
    transform:translateY(-10px);
}

.why-icon{
    width:70px;
    height:70px;

    background:#d8ff35;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:28px;

    margin-bottom:25px;
}

.why-card h3{
    margin-bottom:15px;
    font-size:24px;
}

.why-card p{
    color:#666;
    line-height:1.8;
}

/* responsive */

@media(max-width:1100px){

    .why-container{
        flex-direction:column;
    }

    .why-image,
    .why-content{
        width:100%;
    }

}

@media(max-width:768px){

    .why-section{
        padding:80px 20px;
    }

    .why-content h2{
        font-size:38px;
    }

    .why-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:480px){

    .why-content h2{
        font-size:30px;
    }

}

/*==================================================
                5th SECTION
==================================================*/

.audience-section{
    width:100%;
    padding:110px 7%;
    background:#ffffff;
}

.audience-grid{

    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));

    gap:30px;

    margin-top:70px;

}

.audience-card{

    background:#fff;

    padding:40px 30px;

    border-radius:28px;

    box-shadow:0 18px 45px rgba(0,0,0,.06);

    transition:.4s ease;

    opacity:0;
    transform:translateY(60px);

    display:flex;
    flex-direction:column;

    height:100%;

}

.audience-card.show{

    opacity:1;
    transform:translateY(0);

}

.audience-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 55px rgba(0,0,0,.10);

}

.audience-icon{

    width:78px;
    height:78px;

    background:#d8ff35;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:30px;

    margin-bottom:25px;

    flex-shrink:0;

}

.audience-card h3{

    font-size:24px;
    font-weight:700;

    color:#111;

    margin-bottom:15px;

    line-height:1.3;

}

.audience-card p{

    color:#666;

    font-size:16px;

    line-height:1.8;

    margin-bottom:20px;

}

/*==================================================
                COUNTRIES
==================================================*/

.countries-box{

    margin-top:70px;

    text-align:center;

}

.countries-box h4{

    font-size:34px;

    font-weight:700;

    color:#111;

    margin-bottom:35px;

    text-align:center;

    line-height:1.2;

}

/*==================================================
                COUNTRY TAGS
==================================================*/

.country-tags{

    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:14px;

}

.country-pill{

    display:flex;
    align-items:center;
    gap:10px;

    padding:8px 16px;

    background:#ffffff;

    border:1px solid #e7e7e7;

    border-radius:999px;

    box-shadow:0 4px 12px rgba(0,0,0,.05);

    transition:.3s;

    cursor:default;

}

.country-pill:hover{

    transform:translateY(-3px);

    border-color:#0B7A75;

    box-shadow:0 8px 20px rgba(11,122,117,.18);

}

.country-pill span:last-child{

    font-size:14px;

    font-weight:600;

    color:#222;

}

.country-pill .fi{

    width:24px;

    height:24px;

    border-radius:50%;

    overflow:hidden;

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    display:inline-block;

    flex-shrink:0;

    border:1px solid #ddd;

    box-shadow:0 2px 6px rgba(0,0,0,.12);

}

.country-pill:hover .fi{

    transform:scale(1.08);

    transition:.3s;

}
/*==================================================
            LARGE TABLETS
==================================================*/

@media(max-width:1200px){

.audience-grid{

grid-template-columns:repeat(2,1fr);

gap:25px;

}

}

/*==================================================
                TABLETS
==================================================*/

@media(max-width:768px){

.audience-section{

padding:80px 20px;

}

.audience-grid{

grid-template-columns:1fr;

gap:22px;

}

.audience-card{

padding:32px 24px;

}

.audience-icon{

width:70px;
height:70px;

font-size:28px;

}

.audience-card h3{

font-size:22px;

}

.audience-card p{

font-size:15px;

}

.country-tags{

gap:10px;

}

.country-tags span{

font-size:14px;

padding:9px 14px;

}

.countries-box{

margin-top:50px;

}

.countries-box h4{

font-size:28px;

margin-bottom:25px;

}

}



/*==================================================
            SMALL PHONES
==================================================*/

@media(max-width:480px){

.audience-section{

padding:70px 15px;

}

.audience-card{

padding:25px 20px;

border-radius:22px;

}

.audience-icon{

width:62px;
height:62px;

font-size:24px;

margin-bottom:18px;

}

.audience-card h3{

font-size:20px;

}

.audience-card p{

font-size:14px;

line-height:1.7;

}

.countries-box h4{

font-size:24px;

margin-bottom:20px;

}


.country-tags{

gap:8px;

}

.country-tags span{

padding:8px 12px;

font-size:13px;

gap:8px;

}

.country-tags img{

width:20px;
height:20px;

}

}

/* ================= PRICING PREVIEW ================= */

.pricing-preview{
    padding:120px 7%;
    background:#f7f8f7;
}

.pricing-box{

    background:linear-gradient(135deg,#0f8f6f,#0a6f58);

    border-radius:40px;

    padding:70px;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:80px;

    position:relative;
    overflow:hidden;

    opacity:0;
    transform:translateY(80px);
    transition:1s ease;
}

.pricing-box.show{
    opacity:1;
    transform:translateY(0);
}

/* Background Circle */

.pricing-box::before{

    content:"";

    position:absolute;

    width:420px;
    height:420px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    right:-150px;
    top:-170px;

}

.pricing-box::after{

    content:"";

    position:absolute;

    width:260px;
    height:260px;

    border-radius:50%;

    background:rgba(255,255,255,.04);

    left:-100px;
    bottom:-120px;

}

/* LEFT */

.pricing-info{

    flex:1;
    position:relative;
    z-index:2;

}

.pricing-tag{

    display:inline-block;

    color:#d8ff35;

    font-size:14px;
    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:20px;

}

.pricing-info h2{

    font-size:58px;

    color:#fff;

    line-height:1.12;

    margin-bottom:25px;

}

.pricing-info h2 span{

    display:inline;

    color:#d8ff35;

    font-family:'Playfair Display',serif;
    font-style:italic;

}

.pricing-info p{

    color:rgba(255,255,255,.92);

    font-size:18px;

    line-height:1.9;

    max-width:650px;

    margin-bottom:35px;

}

/* FEATURES */

.pricing-features{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:18px;

    margin-bottom:40px;

}

.feature-item{

    display:flex;
    align-items:center;
    gap:12px;

    color:#fff;

    font-size:17px;

}

.feature-item i{

    color:#d8ff35;

    font-size:20px;

}

/* BUTTON */

.pricing-btn{

    display:inline-flex;

    align-items:center;

    gap:18px;

    padding:18px 18px 18px 34px;

    border-radius:60px;

    background:#d8ff35;

    color:#111;

    text-decoration:none;

    font-size:17px;

    font-weight:700;

    transition:.35s;

}

.pricing-btn:hover{

    transform:translateY(-6px);

    box-shadow:0 20px 35px rgba(196,242,38,.35);

}

.pricing-btn span{

    width:52px;
    height:52px;

    border-radius:50%;

    background:#fff;

    display:flex;
    justify-content:center;
    align-items:center;

}

/* RIGHT */

.pricing-stats{

    width:320px;

    display:flex;
    flex-direction:column;

    gap:25px;

    position:relative;
    z-index:2;

}

.stat-card{

    background:rgba(255,255,255,.13);

    backdrop-filter:blur(18px);

    border-radius:28px;

    padding:38px 30px;

    color:#fff;

    text-align:center;

    transition:.35s;

}

.stat-card:hover{

    transform:translateY(-8px);

}

.featured{

    background:#d8ff35;
    color:#111;

}

.stat-card h3{

    font-size:56px;

    margin-bottom:12px;

    font-family:'Playfair Display',serif;
    font-style:italic;

}

.stat-card p{

    font-size:16px;

    line-height:1.7;

}

/* ================= RESPONSIVE ================= */

@media(max-width:1200px){

    .pricing-info h2{

        font-size:48px;

    }

}

@media(max-width:992px){

    .pricing-box{

        flex-direction:column;

        text-align:center;

        gap:50px;

    }

    .pricing-features{

        grid-template-columns:1fr;

    }

    .feature-item{

        justify-content:center;

    }

    .pricing-stats{

        width:100%;

        flex-direction:row;

        justify-content:center;

    }

    .stat-card{

        flex:1;

    }

}

@media(max-width:768px){

    .pricing-preview{

        padding:80px 20px;

    }

    .pricing-box{

        padding:40px 25px;

        border-radius:28px;

    }

    .pricing-info h2{

        font-size:36px;

    }

    .pricing-info p{

        font-size:16px;

    }

    .pricing-features{

        gap:15px;

    }

    .feature-item{

        justify-content:flex-start;

        font-size:15px;

    }

    .pricing-btn{

        width:100%;

        justify-content:space-between;

    }

    .pricing-stats{

        flex-direction:column;

    }

}

@media(max-width:480px){

    .pricing-info h2{

        font-size:30px;

    }

    .pricing-tag{

        font-size:12px;

    }

    .feature-item{

        font-size:14px;

    }

    .stat-card{

        padding:30px 20px;

    }

    .stat-card h3{

        font-size:42px;

    }

}

/* 7th section */

/* ================= TESTIMONIAL SECTION ================= */

.testimonial-section{
    padding:90px 7%;
    background:#fff;
}

.testimonial-header{
    text-align:center;
    margin-bottom:70px;
}

.subtitle{
    color:#c4f226;
    letter-spacing:4px;
    font-size:14px;
    font-weight:700;
}

.testimonial-header h2{
    font-size:64px;
    margin:20px 0;
}

.testimonial-header p{
    max-width:700px;
    margin:auto;
    color:#666;
}

.testimonial-slider{
    position:relative;
    min-height:650px;
}

.testimonial-slide{
    position:absolute;
    width:100%;

    display:flex;
    gap:40px;

    opacity:0;
    visibility:hidden;
    transform:translateY(30px);

    transition:.7s ease;
}

.testimonial-slide.active{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.testimonial-left{
    width:58%;
    background:#006c5f;
    border-radius:35px;
    padding:50px;
    color:#fff;

    display:flex;
    flex-direction:column;
    justify-content:space-between;

    min-height:600px;
}

.quote-icon{
    font-size:70px;
    color:#c4f226;
}

.testimonial-left h3{
    font-size:50px;
    line-height:1.25;
    min-height:260px;
}

.testimonial-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;

    border-top:1px solid rgba(255,255,255,.2);
    padding-top:30px;
}

.client-details h4{
    font-size:34px;
}

.client-details p{
    color:#ddd;
}

.slider-buttons{
    display:flex;
    gap:15px;
}

.slider-buttons button{
    width:60px;
    height:60px;
    border:none;
    border-radius:15px;
    background:#c4f226;
    cursor:pointer;
}

.testimonial-right{
    width:42%;
}

.testimonial-right img{
    width:100%;
    height:600px;
    object-fit:cover;
    border-radius:35px;
}

/* responsive */

@media(max-width:991px){

    .testimonial-slider{
        min-height:1000px;
    }

    .testimonial-slide{
        flex-direction:column;
    }

    .testimonial-left,
    .testimonial-right{
        width:100%;
    }

    .testimonial-left h3{
        font-size:34px;
        min-height:auto;
    }

    .testimonial-right img{
        height:450px;
    }

}

@media(max-width:768px){

    .testimonial-section{
        padding:80px 20px;
    }

    .testimonial-header h2{
        font-size:40px;
    }

    .testimonial-left{
        padding:35px;
    }

    .testimonial-left h3{
        font-size:26px;
    }

    .testimonial-footer{
        flex-direction:column;
        align-items:flex-start;
        gap:25px;
    }

}

/* 8th section cta */

/* ================= FINAL CTA ================= */

.final-cta{
    width:100%;
    padding:90px 7%;
    background:#f7f8f7;
    position:relative;
    overflow:hidden;
}

.cta-content{
    background:linear-gradient(135deg,#006c5f,#0f8f6f);

    border-radius:40px;

    padding:100px 70px;

    text-align:center;

    position:relative;
    overflow:hidden;

    z-index:2;
}

.cta-tag{
    display:inline-block;

    color:#d8ff35;

    font-size:14px;
    font-weight:700;

    letter-spacing:3px;

    margin-bottom:25px;
}

.cta-content h2{
    font-size:72px;
    color:#fff;
    line-height:1.1;
    margin-bottom:25px;
}

.cta-content h2 span{
    display:block;
    color:#d8ff35;
    font-style:italic;
    font-family:'Playfair Display', serif;
}

.cta-content p{
    max-width:750px;
    margin:auto;

    color:rgba(255,255,255,.9);

    font-size:20px;
    line-height:1.8;

    margin-bottom:50px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.cta-btn{
    text-decoration:none;

    display:flex;
    align-items:center;
    gap:18px;

    padding:18px 18px 18px 32px;

    border-radius:60px;

    font-size:18px;
    font-weight:600;

    transition:.4s ease;
}

.primary-cta{
    background:#d8ff35;
    color:#111;
}

.primary-cta span{
    width:52px;
    height:52px;

    background:#fff;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;
}

.secondary-cta{
    border:2px solid rgba(255,255,255,.25);
    color:#fff;
    padding:18px 35px;
}

.cta-btn:hover{
    transform:translateY(-6px);
}

/* Floating Shapes */

.cta-bg-shape{
    position:absolute;
    border-radius:50%;
    background:rgba(255,255,255,.05);
}

.shape-1{
    width:400px;
    height:400px;

    top:-200px;
    left:-120px;

    animation:floatShape1 10s linear infinite alternate;
}

.shape-2{
    width:300px;
    height:300px;

    bottom:-150px;
    right:-80px;

    animation:floatShape2 12s linear infinite alternate;
}

@keyframes floatShape1{
    from{
        transform:translateY(0);
    }
    to{
        transform:translateY(40px);
    }
}

@keyframes floatShape2{
    from{
        transform:translateY(0);
    }
    to{
        transform:translateY(-40px);
    }
}



/* responsive */
@media(max-width:992px){

    .cta-content{
        padding:80px 50px;
    }

    .cta-content h2{
        font-size:52px;
    }

}

@media(max-width:768px){

    .final-cta{
        padding:80px 20px;
    }

    .cta-content{
        padding:60px 30px;
    }

    .cta-content h2{
        font-size:38px;
    }

    .cta-content p{
        font-size:16px;
    }

    .cta-buttons{
        flex-direction:column;
    }

    .cta-btn{
        width:100%;
        justify-content:center;
    }

}

@media(max-width:480px){

    .cta-content h2{
        font-size:30px;
    }

}



/* ===== BASE ===== */
.chat-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000; /* ↑ z-index bada kiya */
}

/* BUTTON */
.chat-toggle {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #38bdf8, #6366f1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: 0.3s;
}

.chat-toggle:hover {
  transform: scale(1.1) rotate(5deg);
}

/* ===== CHAT BOX ===== */
.chat-box {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 280px;
  background: rgba(15,23,42,0.9);
  backdrop-filter: blur(15px);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  display: none;
  animation: slideUp 0.3s ease;
}

/* HEADER */
.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header h3 {
  font-size: 18px;
  color: #fff;
}

.chat-header span {
  cursor: pointer;
  font-size: 18px;
  color: #ef4444;
  transition: 0.3s;
}

.chat-header span:hover {
  color: #dc2626;
  transform: scale(1.2);
}

/* TEXT */
.chat-subtext {
  font-size: 13px;
  color: #cbd5e1;
  margin: 10px 0 15px;
}

/* OPTIONS */
.chat-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ITEM */
.chat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 10px;
  background: #1e293b;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.chat-item:hover {
  transform: translateX(6px);
}

/* CALL BUTTON DEFAULT GREEN */
.chat-item:nth-child(1) {
  background: #22c55e;
}

/* COLORS */
.chat-item:nth-child(2):hover {
  background: #ea4335;
}

.chat-item:nth-child(3):hover {
  background: #25d366;
}

/* ANIMATION */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ===== SCROLL BUTTON ===== */
#topBtn {
  position: fixed;
  bottom: 20px;
  right: 95px; /* chat se proper gap */
  z-index: 900; /* chat ke niche rakha */

  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #0f172a;
  color: #fff;
  border: none;
  cursor: pointer;

  opacity: 0.85;
  transition: 0.3s;
}

/* HOVER */
#topBtn:hover {
  background: #38bdf8;
  transform: scale(1.1);
}

/* 🔥 IMPORTANT FIX → CONTENT COVER NA HO */
body.scrolled-bottom #topBtn {
  bottom: 120px;
}

/* ============================= */
/* 📱 MOBILE OPTIMIZATION */
/* ============================= */
@media (max-width: 768px) {

  .chat-box {
    width: 90vw;
    right: 5%;
    bottom: 90px;
  }

  .chat-toggle {
    width: 56px;
    height: 56px;
  }

  /* 🔥 TOP BUTTON → CHAT KE UPAR STACK */
  #topBtn {
    right: 20px;      /* chat ke saath align */
    bottom: 95px;     /* chat ke upar */
    width: 42px;
    height: 42px;
  }

  /* 🔥 FOOTER KE PASS AUR UPAR SHIFT */
  body.scrolled-bottom #topBtn {
    bottom: 140px;
  }
}

@media (max-width: 480px) {

  .chat-box {
    width: 92vw;
    right: 4%;
    padding: 15px;
  }

  .chat-item {
    padding: 10px;
  }

  .chat-toggle {
    width: 52px;
    height: 52px;
  }

  /* 🔥 TOP BUTTON CHAT KE UPAR */
  #topBtn {
    right: 20px;     /* same alignment as chat */
    bottom: 85px;    /* chat ke upar */
    width: 38px;
    height: 38px;
  }

  /* 🔥 FOOTER KE PASS SHIFT */
  body.scrolled-bottom #topBtn {
    bottom: 130px;
  }
}


/* last section footer */

/* ================= FOOTER ================= */

.footer{
    background:linear-gradient(135deg,#002f2a,#00443c,#002f2a);
    padding:90px 7% 30px;
    color:#fff;
    position:relative;
    overflow:hidden;
}

/* Animated Background */

.footer::before,
.footer::after{
    content:'';
    position:absolute;
    border-radius:50%;
    background:rgba(196,242,38,.05);
    animation:floatShape 12s infinite alternate ease-in-out;
}

.footer::before{
    width:500px;
    height:500px;
    top:-250px;
    left:-150px;
}

.footer::after{
    width:600px;
    height:600px;
    bottom:-300px;
    right:-200px;
}

@keyframes floatShape{
    from{
        transform:translateY(0px);
    }
    to{
        transform:translateY(50px);
    }
}

/* Top Area */

.footer-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
    margin-bottom:50px;
    position:relative;
    z-index:2;
}

.footer-newsletter-text h2{
    font-size:64px;
    color:#c4f226;
    line-height:1.1;
}

.newsletter-form{
    display:flex;
    gap:15px;
}

.newsletter-form input{
    width:320px;
    height:65px;
    border:none;
    outline:none;
    padding:0 25px;
    border-radius:50px;
    font-size:18px;
}

.newsletter-form button{
    height:65px;
    padding:0 35px;
    border:none;
    border-radius:50px;
    background:#c4f226;
    font-size:18px;
    cursor:pointer;
    transition:.3s;
}

.newsletter-form button:hover{
    transform:translateY(-3px);
}

.footer-divider{
    width:100%;
    height:1px;
    background:rgba(255,255,255,.1);
    margin:50px 0;
}

/* Grid */

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:60px;
    position:relative;
    z-index:2;
}

.footer-col h3{
    font-size:32px;
    margin-bottom:30px;
}

.footer-col p{
    color:#c5d0cc;
    line-height:1.9;
    margin-bottom:40px;
}

.footer-logo{
    font-size:42px;
    font-weight:700;
}

.footer-logo span{
    color:#c4f226;
}

.footer-col a{
    display:block;
    color:#c5d0cc;
    text-decoration:none;
    margin-bottom:18px;
    transition:.3s;
}

.footer-col a:hover{
    color:#c4f226;
    transform:translateX(8px);
}

/* Contact */

.footer-contact{
    display:flex;
    justify-content:space-between;
    margin-top:70px;
    padding:35px 0;
    border-top:1px solid rgba(255,255,255,.1);
    border-bottom:1px solid rgba(255,255,255,.1);
    position:relative;
    z-index:2;
}

.contact-item{
    display:flex;
    align-items:center;
    gap:15px;
    color:#d2ddd8;
}

.contact-item i{
    color:#c4f226;
}

.footer-bottom{
    text-align:center;
    margin-top:30px;
    color:#c5d0cc;
    position:relative;
    z-index:2;
}

/* responsive */

@media(max-width:1100px){

    .footer-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .footer-contact{
        flex-direction:column;
        gap:20px;
    }

}

@media(max-width:768px){

    .footer{
        padding:70px 20px 30px;
    }

    .footer-top{
        flex-direction:column;
        align-items:flex-start;
    }

    .footer-newsletter-text h2{
        font-size:42px;
    }

    .newsletter-form{
        width:100%;
        flex-direction:column;
    }

    .newsletter-form input,
    .newsletter-form button{
        width:100%;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .footer-logo{
        font-size:34px;
    }

}

/* ================= EXTRA MOBILE FIXES ================= */

@media(max-width:768px){

    /* Header */

    .header{
        height:85px;
        padding:0 15px;
    }

    .logo a{
        font-size:22px;
        gap:5px;
        letter-spacing:0;
    }

    .logo a span::after{
        height:2px;
        bottom:-2px;
    }

    .hamburger{
        font-size:26px;
    }

    .navbar{
        top:85px;
        height:calc(100vh - 85px);
    }

    /* Hero */

    .hero-left{
        padding:50px 20px;
    }

    .hero-title{
        font-size:30px;
        line-height:1.2;
    }

    .second-line{
        font-size:17px;
        margin-top:15px;
    }

    .hero-description{
        font-size:15px;
        line-height:1.7;
    }

    .hero-btn{
        width:100%;
        justify-content:space-between;
        padding:15px 20px;
        font-size:15px;
    }

    .hero-btn span{
        width:42px;
        height:42px;
    }

    .hero-image{
        height:340px;
    }
    
/* Graph Card */

.hero-right{
    overflow:hidden;
    position:relative;
}

.candidate-card{
    position:absolute;
    width:85%;
    max-width:320px;
    left:50%;
    transform:translateX(-50%);
    bottom:10px;

    padding:15px;
    border-radius:18px;
    overflow:hidden;
    box-sizing:border-box;
}

.candidate-card h3{
    font-size:16px;
    margin-bottom:8px;
}

.candidate-card p{
    font-size:13px;
    line-height:1.5;
}

.score{
    display:block;
    font-size:13px;
    margin:10px 0;
}

.graph-container{
    width:100%;
    overflow:hidden;
    margin:10px 0;
}

.graph-container svg{
    width:100%;
    max-width:100%;
    height:45px;
    display:block;
}

.graph-line{
    stroke-width:3;
}

    /* Hiring Card */

    .hiring-card{
        width:220px;
        padding:15px;
    }

    .avatar-group img,
    .plus-avatar{
        width:35px;
        height:35px;
    }

    /* Trust Section */

    .trust-content h2{
        font-size:34px;
    }

    .trust-card h3{
        font-size:42px;
    }

    /* How It Works */

    .section-header h2{
        font-size:32px;
    }

    /* Why Section */

    .why-content h2{
        font-size:34px;
    }

    /* Audience */

    .countries-box h4{
        font-size:24px;
    }

    /* Pricing */

    .pricing-info h2{
        font-size:34px;
    }

    /* Testimonials */

    .testimonial-slider{
        min-height:850px;
    }

    .testimonial-left{
        min-height:auto;
        padding:30px;
    }

    .testimonial-left h3{
        font-size:24px;
        min-height:auto;
    }

    .client-details h4{
        font-size:24px;
    }

    .testimonial-right img{
        height:320px;
    }

    /* CTA */

    .cta-content h2{
        font-size:34px;
    }

    /* Footer */

    .footer-newsletter-text h2{
        font-size:32px;
    }

}


/* 468px wale bhi responsive  */

@media(max-width:480px){

    .logo a{
        font-size:18px;
    }

    .hero-title{
        font-size:25px;
    }

    .second-line{
        font-size:15px;
    }

    .hero-image{
        height:280px;
    }

    .candidate-card{
    width:90%;
    padding:12px;
}

.graph-container{
    width:100%;
    overflow:hidden;
     
}

.graph-container svg{
    width:100%;
    max-width:100%;
    height:35px;
    display:block;
   
}

    .testimonial-right img{
        height:280px;
    }

    .footer-newsletter-text h2{
        font-size:28px;
    }

}


/* footer phones icons link  */

.contact-link{

    color:#d2ddd8;

    text-decoration:none;

    font-weight:500;

    transition:.3s ease;

    display:inline-flex;

    align-items:center;

    gap:8px;

}

.contact-link:hover{

    color:#c4f226;

}

.contact-link:hover i{

    transform:scale(1.1);

}

.contact-item i{

    color:#c4f226;

    font-size:18px;

    transition:.3s ease;

}


/*==================================================
        REDUCED MOTION
==================================================*/

@media(prefers-reduced-motion:reduce){

.flap{

transition:none;

}

}
.country-indicator{

    display:flex;
    align-items:center;
    gap:10px;

    margin-left:20px;

    padding:8px 14px;

    background:#f8f9fa;

    border:1px solid #e5e7eb;

    border-radius:50px;

}

.country-flag{

    width:22px;
    height:22px;

    border-radius:50%;

    background-size:cover;

    background-position:center;

    border:1px solid #ddd;

    flex-shrink:0;

}

.country-name{

    font-size:14px;

    font-weight:600;

    color:#222;

}

.change-country-btn{

    display:flex;

    align-items:center;

    gap:5px;

    text-decoration:none;

    color:#0B7A75;

    font-size:13px;

    font-weight:600;

}

.change-country-btn:hover{

    color:#08665f;

}

@media(max-width:768px){

    .country-indicator{

        margin-left:10px;

        padding:6px 10px;

        gap:6px;

    }

    .country-name{

        max-width:75px;

        overflow:hidden;

        white-space:nowrap;

        text-overflow:ellipsis;

        font-size:12px;

    }

    .country-flag{

        width:18px;

        height:18px;

    }

    .change-country-btn{

        font-size:11px;

    }

}

.footer-country-list{

    display:flex;

    flex-direction:column;

    gap:3px;

}

.footer-country{

    display:flex;

    align-items:center;

    gap:3px;

    color:#ddd;

    text-decoration:none;

    transition:.3s;

}

.footer-country:hover{

    color:#fff;

    padding-left:6px;

}

.footer-country .fi{

    width:18px;

    height:18px;

    border-radius:50%;

    background-size:cover;

    border:1px solid rgba(255,255,255,.2);

    flex-shrink:0;

}
