/*==================================================
 GOOGLE FONT
==================================================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

@font-face{
    font-family:'Recoleta';
    src:url('../fonts/Recoleta-Bold.otf') format('opentype');
    font-weight:700;
}

/*==================================================
 RESET
==================================================*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,
body{
    margin:0;
    padding:0;
    overflow-x:hidden;
    background:#000;
}


img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.section{
    padding:100px 0;
}

/*==================================================
 COLORS
==================================================*/

:root{

    --primary:#650076;
    --primary-dark:#52005F;
    --light-purple:#F8F3FA;
    --white:#ffffff;
    --black:#222;
    --gray:#666;
    --border:#ececec;

}

/*==================================================
 BUTTONS
==================================================*/

.btn{

    display:inline-block;

    padding:14px 34px;

    background:var(--primary);

    color:#fff;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.btn:hover{

    background:var(--primary-dark);

}

.btn-black{

    display:inline-block;

    padding:14px 34px;

    border:2px solid #F8F3FA;

    border-radius:50px;

    background:transparent;

    color:#fff;

    transition:.35s;

}

.btn-black:hover{

    background:transparent;

    border-color:#F8F3FA;

    color:#fff;

    transform:translateY(-3px);

}

.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 32px;

    border-radius:50px;

    background:var(--primary);

    color:#fff;

    font-weight:600;

    transition:.35s;

}

.btn-secondary:hover{

    transform:translateY(-3px);

}

/*==================================================
 HEADER
==================================================*/
/*================ HEADER ================

header{

    position:fixed;

    top:20px;

    left:0;

    width:100%;

    z-index:9999;
    

}*/

/*================ HEADER =================*/

#header{

    position:fixed;

    top:25px;

    left:0;

    width:100%;

    z-index:9999;

    background:transparent;

}
.header-wrapper{

    width:95%;
    max-width:1500px;

    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:15px 25px;

    background:transparent;

}

/* LEFT */

.header-left{

    display:flex;

    align-items:center;

    gap:22px;

}

/* Menu */

.menu-btn{

    width:62px;

    height:62px;

    border-radius:50%;

    background:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:0 6px 20px rgba(0,0,0,.15);

    cursor:pointer;

    font-size:24px;

    color:#650076;

}

/* Logo */

.logo{

    display:flex;

    align-items:center;

}

.logo img{

    height:46px;

}

/* CENTER NAV */

.center-nav{

    width:700px;

    height:52px;
     top: 5px;

    background:#8d67af;

    backdrop-filter:blur(15px);

    border-radius:60px;

    display:flex;

    justify-content:space-evenly;

    align-items:center;

    box-shadow:0 5px 18px rgba(0,0,0,.12);

}

.center-nav a{
    font-family: "Poppins", sans-serif;
    text-decoration:none;

    color:#fff;

    font-size:18px;

    font-weight:500;

    transition:.3s;

}

.center-nav a:hover{

    color:#650076;

}

/*=========================================
        ASK AI BUTTON
=========================================*/

.ask-ai-btn{
font-family: "Poppins", sans-serif;
    position:relative;

    width:165px;

    height:56px;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

background: #52005F;

    color:#fff;

    border:none;

    border-radius:50px;

    cursor:pointer;

    overflow:hidden;

    transition:.35s;

}

.ask-ai-btn:hover{

    transform:translateY(-2px);

}

.ask-ai-btn i,
.ask-ai-btn .btn-text{

    position:relative;

    z-index:5;

    font-size:17px;

    font-weight:600;

}
.ai-border{

    position:absolute;

    inset:0;

    border-radius:50px;

    overflow:hidden;

}
.ai-border::before{

    content:"";

    position:absolute;

    width:58px;

    height:160px;

    background:linear-gradient(

        to bottom,

        transparent,

        purple,
        purple,
        navy,
         blue,

        #00f0ff,

        #650076,
         green,

       

        #650076,

        transparent

    );

    left:-20px;

    top:-60px;

    filter:blur(2px);

    animation:borderMove 3.2s linear infinite;

}
.ai-border::after{

    content:"";

    position:absolute;

    inset:2px;

    background:#650076;

    border-radius:50px;

}
@keyframes borderMove{

    0%{

        transform:

        rotate(0deg)

        translateY(-100px)

        translateX(0);

    }

    25%{

        transform:

        rotate(90deg)

        translateY(0)

        translateX(70px);

    }

    50%{

        transform:

        rotate(180deg)

        translateY(100px)

        translateX(0);

    }

    75%{

        transform:

        rotate(270deg)

        translateY(0)

        translateX(-70px);

    }

    100%{

        transform:

        rotate(360deg)

        translateY(-100px)

        translateX(0);

    }

}

.search-icon{
    width:18px;
    height:18px;
}


/*
header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

}*/

#header{
    position: fixed;
    top: 20px;               
    left: 0;
    width: 100%;
    z-index: 999;
    background: transparent;   
    transition: all .3s ease;
}




.header-wrapper{
    width:100%;
    max-width:1450px;
    margin:0 auto;

    display:flex;
    justify-content:center;
    align-items:center;

    gap:20px;

    padding:0 20px;
}
.side-menu{

    position:fixed;

    top:0;

    left:-320px;

    width:300px;

    height:100%;

    background:#fff;

    transition:.4s;

    z-index:99999;

    padding:30px;

    box-shadow:5px 0 20px rgba(0,0,0,.2);

}

.side-menu.active{

    left:0;

}

.side-menu h2{

    margin-bottom:30px;

    color:#650076;

}

.side-menu a{

    display:block;

    padding:16px 0;

    text-decoration:none;

    color:#222;

    font-size:18px;

    border-bottom:1px solid #eee;

}

.side-menu a i{

    width:28px;

}

.close-btn{

    position:absolute;

    right:20px;

    top:20px;

    font-size:24px;

    cursor:pointer;

}

.side-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.4);

    opacity:0;

    visibility:hidden;

    transition:.4s;

    z-index:99998;

}

.side-overlay.active{

    opacity:1;

    visibility:visible;

}


/*==================================================
 NAVBAR
==================================================*/

nav{
    font-family:Poppins,sans-serif;

    width:100%;
    max-width:1200px;
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;

    height: 45px;

    padding:0 30px;

    background:#8d67af;

    border-radius:60px;

    box-shadow:0 8px 25px rgba(0,0,0,.12);

    position:relative;

    z-index:1001;

    transition:.3s;

}


/* Logo */

.logo{

    display:flex;

    align-items:center;

}

.logo img{

    height: 50px;

    width:auto;

}

/* Navigation */

.nav-links{
    font-family:Poppins,sans-serif;

    display:flex;

    align-items:center;

    gap:20px;

}

.nav-links li a{
        font-family:Poppins,sans-serif;


    color:#fff;

    font-size:16px;

    font-weight:600;

    transition:.3s;

}

.nav-links li a:hover{

    color:#650076;

}

/* Right Side */

.nav-right{

    display:flex;

    align-items:center;

    gap:15px;

}




/*==================================================
 MOBILE MENU
==================================================*/

.menu-toggle{

    display:none;

    font-size:30px;

    color:#fff;

    cursor:pointer;

}

/* Tablet */

@media(max-width:992px){

    .ask-ai-btn{

        display:none;

    }

}

/* Mobile */

@media(max-width:768px){

    nav{

        height:68px;

        padding:0 22px;

    }

    .menu-toggle{

        display:block;

        z-index:10001;

    }

    .nav-links{

        position:fixed;

        top:0;

        left:-100%;

        width:80%;

        height:100vh;

        background:#fff;

        flex-direction:column;

        align-items:flex-start;

        justify-content:flex-start;

        padding:110px 35px;

        gap:28px;

        transition:.4s;

        box-shadow:0 0 30px rgba(0,0,0,.15);

        z-index:9999;

    }

    .nav-links.show{

        left:0;

    }

    .nav-links li{

        width:100%;

    }

    .nav-links li a{

        color:#222;

        font-size:20px;

        display:block;

    }

    .logo img{

        height:34px;

    }

}
/*==================================================
 HERO
==================================================*/

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

#hero-video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.72);
    z-index:2;
}

.hero .container{
    position:relative;
    z-index:3;
}

.hero-content{
    font-family: "Red Rose", serif;
    position:relative;

    z-index:2;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    height:100vh;

    max-width:1000px;

    margin:auto;

}
.hero-info-content{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:60px;

    align-items:center;

}
.hero-left h2{

    font-size:48px;

    color:#650076;

    margin-bottom:25px;

}

.hero-left p{

    font-size:18px;

    line-height:1.9;

    color:#555;

    margin-bottom:20px;

}
.hero-right{

    display:flex;

    justify-content:center;

}

.hero-right img{

    width:100%;

    max-width:520px;

    animation:floatImage 5s ease-in-out infinite;

    filter:brightness(1.25) contrast(1.1);

}
.hero-subtitle{

    display:inline-block;

    padding:10px 22px;

    border-radius:40px;

    background:#f3ebf6;

    color:#650076;

    font-weight:600;

    margin-bottom:25px;

}
/*
.hero-content h1{

    font-family:'Recoleta',serif;

    font-size:60px;

    line-height:1.2;

    color:#fff;

    max-width:900px;

    margin:auto;

}*/
.hero-content h1{
    color:#fff;
    width: 1120px;
    max-width:  1120px;
    margin: 0 auto;
    text-align: center;
    font-family: "Red Rose", serif;
    font-size: 76px;
    font-weight: 700;
    line-height: 84px;
    letter-spacing: 0.5px;

}
.gap{
    display:block;
    height:22px;
}
.hero-content p{
    font-family: "Poppins", sans-serif;
    max-width:850px;

    margin:30px auto;

    font-size:18px;

    color:#e6e6e6;

    line-height:1.9;

}

.hero-buttons{

    margin-top:45px;

    display:flex;

    gap:20px;

    justify-content:center;

    flex-wrap:wrap;

}
.hero-info{
   font-family: "Poppins", sans-serif;

    position:relative;

    background:#fff;

    padding:80px 0;

}
.hero-info-box{

    max-width:1200px;

    margin:0 auto;

    background:#fff;

    border-radius:25px;

    padding:60px;

    box-shadow:0 10px 35px rgba(0,0,0,0.08);

}
.hero-buttons{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:12px;
    max-width:1150px;
    width:100%;
    margin:65px auto 0;
}

.hero-buttons a{
    display:flex;
    justify-content:center;
    align-items:center;
    height:48px;
    padding:0 22px;
    border-radius:14px;
    font-family:"Poppins",sans-serif;
    font-size:16px;
    font-weight:600;
    text-decoration:none;
    white-space:nowrap;
    transition:.35s;
}

/* Purple Buttons */
.btn-secondary{
    background:#650076;
    color:#fff;
    border:2px solid #650076;
}

.btn-secondary:hover{
    background:#650076;
    border-color:#650076;
    transform:translateY(-3px);
}

/* White Outline Buttons */
.hero-outline{
    background:transparent;
    color:#fff;
    border:2px solid rgba(255,255,255,.7);
}

.hero-outline:hover{
    background:rgba(255,255,255,.08);
    border-color:#fff;
    color:#fff;
    transform:translateY(-3px);
}

/* Responsive */
@media(max-width:1200px){
    .hero-buttons{
        grid-template-columns:repeat(2,1fr);
        max-width:700px;
    }
}

@media(max-width:768px){
    .hero-buttons{
        grid-template-columns:1fr;
        max-width:340px;
    }
}
/*==================================================
 SECTION HEADING
==================================================*/

.section-heading{
    
font-family: "Red Rose", serif;
    text-align:center;

    margin-bottom:70px;

}

.section-heading span{
font-family: "Poppins", sans-serif;
    display:inline-block;

    color:#650076;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:10px;

}

.section-heading h1,
.section-heading h2{
font-family: "Poppins", sans-serif;
    color:#650076;

    font-size:42px;

    line-height:1.3;

}

.section-heading p{
font-family: "Poppins", sans-serif;
    max-width:700px;

    margin:20px auto 0;

    color:#666;

    line-height:1.8;

}

/*==================================================
 TRUSTED COMPANIES
==================================================*/

.trusted{

    padding:90px 0;

    background:#fff;

}

.company-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:30px;

}

.company-box{

    background:#fff;

    border:1px solid #ececec;

    border-radius:18px;

    padding:30px;

    transition:.35s;

}

.company-box:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 35px rgba(0,0,0,.08);

}

.company-box img{

    height:45px;

    object-fit:contain;

}

/*==================================================
 ABOUT
==================================================*/

.about-page{

    padding:140px 0 90px;

    background:#f8fbff;

}

.about-content{
font-family: "Poppins", sans-serif;
    max-width:1000px;

    margin:auto;

    background:#fff;

    padding:55px;

    border-radius:18px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.about-content strong{

    color:#650076;

}

.about-content p{
font-family: "Poppins", sans-serif;
    font-size:17px;

    color:#555;

    line-height:1.9;

    margin-bottom:24px;

    text-align:justify;

}

/*==================================================
 ABOUT SERVICES
==================================================*/

.about-services{

    padding:90px 0;

    background:#f8fbff;

}

.service-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.service-box{

    background:#f8fbff;

    padding:40px 30px;

    text-align:center;

    border-radius:16px;

    transition:.35s;

}

.service-box:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 30px rgba(0,0,0,.08);

}

.service-box i{

    font-size:42px;

    color:#650076;

    margin-bottom:20px;

}

.service-box h3{
font-family: "Poppins", sans-serif;font-family: "Poppins", sans-serif;
    color:#650076;

    margin-bottom:15px;

}

.service-box p{
font-family: "Poppins", sans-serif;
    color:#666;

    line-height:1.8;

}

/*==================================================
 ABOUT CTA
==================================================*/

.about-cta{

    padding:90px 20px;

    background:#650076;

    text-align:center;

    color:#fff;

}

.about-cta h2{
font-family: "Poppins", sans-serif;
    font-size:42px;

    margin-bottom:20px;

}

.about-cta p{
    font-family: "Poppins", sans-serif;

    max-width:700px;

    margin:auto auto 35px;

    line-height:1.9;

}

/*==================================================
 RESPONSIVE
==================================================*/

@media(max-width:768px){

.hero-content h1{

    width:100%;

    font-size:36px;

    line-height:45px;

    padding:0 20px;

}

}



.company-grid{

    grid-template-columns:repeat(3,1fr);

}

.service-grid{

    grid-template-columns:repeat(2,1fr);

}


@media(max-width:768px){

.hero{

    padding-top:120px;

}

.hero-content h1{

    font-size:38px;

}

.hero-content p{

    font-size:16px;

}

.hero-buttons{

    flex-direction:column;

}

.hero-buttons .btn,
.hero-buttons .btn-outline,
.hero-buttons .btn-secondary{

    width:100%;

    text-align:center;
    color: #650076;

}

.company-grid{

    grid-template-columns:1fr;

}

.service-grid{

    grid-template-columns:1fr;

}

.about-content{

    padding:30px;

}

.about-content p{

    text-align:left;

}

.about-cta h2{

    font-size:30px;

}

.section-heading h1,
.section-heading h2{

    font-size:30px;

}

}
/*==================================================
 SERVICES
==================================================*/

.services{
    padding:140px 0 90px;
    background:#fff;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{

    background:#fff;

    border-radius:18px;

    padding:40px 30px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;
}
.service-card{
    opacity:1;
    transform:none;
}
.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(101,0,118,.15);

}

.service-card i{

    font-size:45px;

    color:#650076;

    margin-bottom:20px;

}

.service-card h3{
 font-family: "Poppins", sans-serif; 
    color:#650076;

    margin-bottom:15px;

    font-size:22px;

}

.service-card p{
 font-family: "Poppins", sans-serif; 
    color:#666;

    line-height:1.8;

}

/*==================================================
 INDUSTRIES
==================================================*/

.industries{

    padding:140px 0 90px;

    background:#f8fbff;

}

.industry-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.industry-card{

    background:#fff;

    border-radius:18px;

    padding:35px 25px;

    text-align:center;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.industry-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(101,0,118,.12);

}

.industry-card i{

    font-size:42px;

    color:#650076;

    margin-bottom:20px;

}

.industry-card h4{
 font-family: "Poppins", sans-serif; 
    color:#650076;

    font-size:19px;

    line-height:1.5;

}

/*==================================================
 EMPLOYERS
==================================================*/

.employers{

    padding:130px 0 80px;

    background-color: #f8fbff;

}

.employer-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:start;

}

.employer-content h3{
font-family: "Poppins", sans-serif;
    font-size:34px;

    color:#650076;

    margin-bottom:20px;

}

.employer-content p{
font-family: "Poppins", sans-serif;
    color:#555;

    font-size:17px;

    line-height:1.9;

    margin-bottom:20px;

}

.employer-content ul{

    margin-top:30px;

}

.employer-content li{

    margin-bottom:18px;

    font-size:16px;

    color:#444;

}

.employer-content li i{

    color:#650076;

    margin-right:10px;

}

/* Employer Form */

.employer-form{

    background:#fff;

    padding:35px;

    border-radius:18px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.employer-form form{
font-family:Poppins,sans-serif;
    display:flex;

    flex-direction:column;

    gap:18px;

}

.employer-form label{

    font-weight:600;

    color:#650076;

}

.employer-form input,
.employer-form select,
.employer-form textarea{

    width:100%;

    padding:15px;

    border:1px solid #ddd;

    border-radius:10px;

    font-family:Poppins,sans-serif;

    font-size:15px;

}

.employer-form textarea{

    min-height:130px;

    resize:vertical;

}


/*==================================================
 JOB SEEKERS
==================================================*/

.jobseekers{

    padding:140px 0 90px;

    background:#f8fbff;

}

.job-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:start;

}

.job-content h3{
font-family:Poppins,sans-serif;
    font-size:34px;

    color:#650076;

    margin-bottom:20px;

}

.job-content p{
font-family:Poppins,sans-serif;
    color:#555;

    font-size:17px;

    line-height:1.9;

}

.job-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin-top:35px;

}

.feature-box{

    background:#fff;

    border-radius:15px;

    padding:25px;

    text-align:center;

    transition:.35s;

    box-shadow:0 8px 25px rgba(0,0,0,.06);

}

.feature-box:hover{

    transform:translateY(-8px);

}

.feature-box i{

    font-size:36px;

    color:#650076;

    margin-bottom:15px;

}

.feature-box h4{
font-family:Poppins,sans-serif;
    color:#650076;

    margin-bottom:10px;

}

.feature-box p{
font-family:Poppins,sans-serif;
    color:#666;

    line-height:1.7;

}

/* Candidate Form */

.job-form{
font-family:Poppins,sans-serif;
    background:#fff;

    padding:35px;

    border-radius:18px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.job-form form{
font-family:Poppins,sans-serif;
    display:flex;

    flex-direction:column;

    gap:18px;

}

.job-form label{

    color:#650076;

    font-weight:600;

}

.job-form input,
.job-form select,
.job-form textarea{

    width:100%;

    padding:15px;

    border:1px solid #ddd;

    border-radius:10px;

    font-family:Poppins,sans-serif;

    font-size:15px;

}

.job-form textarea{

    resize:vertical;

    min-height:130px;

}

/*==================================================
 RESPONSIVE
==================================================*/

@media(max-width:992px){

.services-grid{

    grid-template-columns:repeat(2,1fr);

}

.industry-grid{

    grid-template-columns:repeat(2,1fr);

}

.employer-grid,
.job-grid{

    grid-template-columns:1fr;

}

}

@media(max-width:768px){

.services{

    padding:110px 0 70px;

}

.industries{

    padding:110px 0 70px;

}

.employers{

    padding:110px 0 70px;

}

.jobseekers{

    padding:110px 0 70px;

}

.services-grid,
.industry-grid,
.job-features{

    grid-template-columns:1fr;

}

.service-card,
.industry-card,
.feature-box{

    padding:30px 20px;

}

.employer-form,
.job-form{

    padding:25px;

}

.employer-content h3,
.job-content h3{

    font-size:28px;

}

}
/*==================================================
 PAYROLL
==================================================*/

.payroll{
    padding:120px 0;
    background:#fff;
}

.payroll-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.payroll-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
    transition:.35s;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.payroll-card:hover{
    transform:translateY(-10px);
    background:#650076;
    color:#fff;
    box-shadow:0 20px 40px rgba(101,0,118,.18);
}

.payroll-card:hover i,
.payroll-card:hover p{
    color:#fff;
}

.payroll-card i{
    font-size:45px;
    color:#650076;
    margin-bottom:20px;
}

.payroll-card h3{
     font-family: "Poppins", sans-serif; 
    font-size:22px;
    margin-bottom:15px;
}

.payroll-card p{
     font-family: "Poppins", sans-serif; 
    color:#666;
    line-height:1.8;
}

/*==================================================
 WHY CHOOSE US
==================================================*/

.why-us{
    padding:120px 0;
    background:#F8F3FA;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.why-box{
    background:#fff;
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
    transition:.35s;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.why-box:hover{
    background:#650076;
    color:#fff;
    transform:translateY(-10px);
}

.why-box:hover i,
.why-box:hover p{
    color:#fff;
}

.why-box i{
    font-size:48px;
    color:#650076;
    margin-bottom:20px;
}

.why-box h4{
font-family:Poppins,sans-serif;

    font-size:22px;
    margin-bottom:15px;
}

.why-box p{
font-family:Poppins,sans-serif;
    color:#666;
    line-height:1.8;
}

/*==================================================
 PROCESS
==================================================*/

.process{
    font-family:Poppins,sans-serif;
    padding:120px 0;
    background:#fff;
}

.process-grid{
    font-family:Poppins,sans-serif;
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:20px;
}

.step{
    font-family:Poppins,sans-serif;
    background:#F8F3FA;
    border-radius:18px;
    padding:35px 20px;
    text-align:center;
    transition:.35s;
}

.step:hover{
    background:#650076;
    color:#fff;
    transform:translateY(-8px);
}

.step span{
    width:60px;
    height:60px;
    background:#650076;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    margin-bottom:20px;
    border-radius:50%;
    font-size:22px;
    font-weight:700;
}

.step:hover span{
    background:#fff;
    color:#650076;
}

.step h4{
    font-family:Poppins,sans-serif;
    margin-bottom:15px;
}

.step p{
    font-family:Poppins,sans-serif;
    line-height:1.7;
}

/*==================================================
 STATISTICS
==================================================*/

.stats{
    font-family:Poppins,sans-serif;
    padding:100px 0;
    background:#650076;
    color:#fff;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    text-align:center;
}

.stat-box{
    padding:20px;
}

.stat-box h2{
    font-family:Poppins,sans-serif;
    font-size:55px;
    margin-bottom:12px;
    font-weight:700;
}

.stat-box p{
    font-size:18px;
    opacity:.9;
}

/*==================================================
 RESPONSIVE
==================================================*/

@media(max-width:992px){

.payroll-grid{
    grid-template-columns:repeat(2,1fr);
}

.why-grid{
    grid-template-columns:repeat(2,1fr);
}

.process-grid{
    grid-template-columns:repeat(3,1fr);
}

.stats-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.payroll,
.why-us,
.process,
.stats{
    padding:90px 0;
}

.payroll-grid,
.why-grid,
.process-grid,
.stats-grid{
    grid-template-columns:1fr;
}

.payroll-card,
.why-box,
.step{
    padding:30px 20px;
}

.stat-box h2{
    font-size:42px;
}

.step span{
    width:55px;
    height:55px;
    font-size:20px;
}

}
/*==================================================
CONTACT
==================================================*/

.contact{
    padding:140px 0 90px;
    background:#f8fbff;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
}

.contact-info h3{
    font-family:Poppins,sans-serif;
    font-size:34px;
    color:#650076;
    margin-bottom:20px;
}

.contact-info p{
    font-family:Poppins,sans-serif;
    color:#555;
    margin-bottom:18px;
    line-height:1.8;
}

.contact-info i{
    color:#650076;
    margin-right:12px;
}

.map{
    margin-top:30px;
    border-radius:18px;
    overflow:hidden;
}

.contact-form{
font-family:Poppins,sans-serif;
    background:#fff;

    padding:35px;

    border-radius:18px;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.contact-form h3{
font-family:Poppins,sans-serif;
    color:#650076;

    margin-bottom:25px;

}

.contact-form form{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.contact-form input,
.contact-form select,
.contact-form textarea{
font-family:Poppins,sans-serif;
    width:100%;

    padding:15px;

    border:1px solid #ddd;

    border-radius:10px;

    font-family:Poppins;

}

.contact-form textarea{
font-family:Poppins,sans-serif;
    resize:vertical;

    min-height:130px;

}

/*==================================================
EXTRA CONTACT
==================================================*/

.extra-contact-grid{
font-family:Poppins,sans-serif;
    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

    margin-top:60px;

}

.extra-box{

    background:#fff;

    border-radius:18px;

    padding:35px;

    text-align:center;

    transition:.35s;

    box-shadow:0 10px 25px rgba(0,0,0,.06);

}

.extra-box:hover{

    transform:translateY(-8px);

}

.extra-box i{

    font-size:42px;

    color:#650076;

    margin-bottom:18px;

}

.extra-box h3{
font-family:Poppins,sans-serif;
    color:#650076;

    margin-bottom:10px;

}

/*==================================================
FOOTER
==================================================*/

footer{

    background:#650076;

    color:#fff;

    padding:80px 0 25px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:50px;

}

.footer-grid h3,
.footer-grid h4{
font-family:Poppins,sans-serif;
    margin-bottom:20px;

}

.footer-grid p{
font-family:Poppins,sans-serif;
    color:#ddd;

    line-height:1.8;

}

.footer-grid a{
font-family:Poppins,sans-serif;
    color:#ddd;

    display:block;

    margin-bottom:12px;

    transition:.3s;

}

.footer-grid a:hover{

    color:#fff;

    padding-left:5px;

}

footer hr{
font-family:Poppins,sans-serif;
    margin:40px 0 20px;

    border:none;

    border-top:1px solid rgba(255,255,255,.25);

}

.copyright{
    font-family:Poppins,sans-serif;

    text-align:center;

    color:#ddd;

}

/*==================================================
SCROLL ANIMATION
==================================================*/

.service-card,
.industry-card,
.company-box,
.feature-box,
.why-box,
.payroll-card,
.extra-box{
 font-family: "Poppins", sans-serif; 
    opacity:0;

    transform:translateY(50px);

    transition:.7s;

}

.service-card.active,
.industry-card.active,
.company-box.active,
.feature-box.active,
.why-box.active,
.payroll-card.active,
.extra-box.active{
 font-family: "Poppins", sans-serif; 
    opacity:1;

    transform:translateY(0);

}

/*==================================================
STICKY NAVBAR
==================================================*/

header.sticky{

    background:#f8fbff;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

/*==================================================
ACTIVE MENU
==================================================*/

.nav-links a.active{

    color:#650076;

}

/*==================================================
MOBILE OVERLAY
==================================================*/

.mobile-overlay{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:100%;

    background:rgba(0,0,0,.45);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:9998;

}

.mobile-overlay.show{

    opacity:1;

    visibility:visible;

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:992px){

.contact-grid{

    grid-template-columns:1fr;

}

.extra-contact-grid{

    grid-template-columns:1fr;

}

.footer-grid{

    grid-template-columns:1fr;

    text-align:center;

}

}

@media(max-width:768px){

.contact{

    padding:110px 0 70px;

}

.contact-form{

    padding:25px;

}

.contact-info h3{

    font-size:28px;

}

.footer-grid{

    gap:35px;

}

.footer-grid a{

    margin-bottom:10px;

}

}

/*==================================================
SMALL DEVICES
==================================================*/

@media(max-width:480px){

.hero-content h1{

    font-size:32px;

}

.hero-content p{

    font-size:15px;

}

.section-heading h2{
 
    font-size:28px;

}

.logo img{

    height:30px;

}

.menu-toggle{

    font-size:28px;

}

.btn,
.btn-outline,
.btn-secondary{

    width:100%;

    text-align:center;

}

}
/*================ MOBILE HEADER =================*/

@media(max-width:768px){


#header{

    top:15px;

}


.header-wrapper{

    width:92%;

    padding:12px 15px;

    background:transparent;

}


.logo img{

    height:35px;

}


.menu-btn{

    width:48px;

    height:48px;

    font-size:20px;

}


.center-nav{

    display:none;

}


.ask-ai-btn{

    display:none;

}


/* mobile side menu */

.side-menu{

    width:280px;

}


.side-menu a{

    font-size:16px;

}


}
@media(min-width:769px) and (max-width:992px){

.center-nav{

    width:500px;

}


.center-nav a{

    font-size:15px;

}


.ask-ai-btn{

    width:130px;

}


}
/*==================================================
MOBILE RESPONSIVE (768px and below)
==================================================*/

@media screen and (max-width:768px){

/* Global */

.container{
    width:92%;
}

.section{
    padding:70px 0;
}

/* Header */

#header{
    top:10px;
}

.header-wrapper{
    width:94%;
    padding:10px 15px;
    justify-content:space-between;
}

.logo img{
    height:34px;
}

.menu-btn{
    width:46px;
    height:46px;
    font-size:20px;
}

.center-nav{
    display:none;
}

.ask-ai-btn{
    display:none;
}

/* Hero */

.hero{
    min-height:100vh;
    padding:120px 0 60px;
}

.hero-content{
    height:auto;
    padding-top:40px;
}

.hero-content h1{
    width:100%;
    max-width:100%;
    font-size:38px;
    line-height:48px;
    padding:0;
}

.hero-content p{
    width:100%;
    font-size:16px;
    line-height:28px;
    margin:25px auto;
}

.hero-buttons{
    flex-direction:column;
    gap:15px;
    width:100%;
}

.hero-buttons .btn,
.hero-buttons .btn-outline,
.hero-buttons .btn-secondary{
    width:100%;
    text-align:center;
}

/* Hero Info */

.hero-info-content{
    grid-template-columns:1fr;
    gap:40px;
}

.hero-left h2{
    font-size:32px;
}

.hero-right img{
    max-width:100%;
}

/* Headings */

.section-heading{
    margin-bottom:45px;
}

.section-heading h1,
.section-heading h2{
    font-size:30px;
}

.section-heading p{
    font-size:15px;
}

/* About */

.about-content{
    padding:30px 22px;
}

.about-content p{
    font-size:16px;
    text-align:left;
}

/* Companies */

.company-grid{
    grid-template-columns:1fr;
}

/* Services */

.services-grid{
    grid-template-columns:1fr;
}

/* Industries */

.industry-grid{
    grid-template-columns:1fr;
}

/* Employer */

.employer-grid{
    grid-template-columns:1fr;
}

.employer-content h3{
    font-size:28px;
}

.employer-form{
    padding:25px;
}

/* Job Seekers */

.job-grid{
    grid-template-columns:1fr;
}

.job-features{
    grid-template-columns:1fr;
}

.job-content h3{
    font-size:28px;
}

.job-form{
    padding:25px;
}

/* Payroll */

.payroll-grid{
    grid-template-columns:1fr;
}

/* Why Choose */

.why-grid{
    grid-template-columns:1fr;
}

/* Process */

.process-grid{
    grid-template-columns:1fr;
}

/* Statistics */

.stats-grid{
    grid-template-columns:1fr;
}

.stat-box h2{
    font-size:40px;
}

/* Contact */

.contact-grid{
    grid-template-columns:1fr;
}

.extra-contact-grid{
    grid-template-columns:1fr;
}

.contact-form{
    padding:25px;
}

.contact-info h3{
    font-size:28px;
}

/* Footer */

.footer-grid{
    grid-template-columns:1fr;
    text-align:center;
    gap:35px;
}

/* Forms */

input,
select,
textarea{
    font-size:16px;
}

/* Cards */

.service-card,
.industry-card,
.company-box,
.payroll-card,
.why-box,
.feature-box,
.extra-box,
.step{
    padding:25px 20px;
}

/* Buttons */

.btn,
.btn-outline,
.btn-secondary{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
}

/* Images */

img{
    max-width:100%;
    height:auto;
}

/* Side Menu */

.side-menu{
    width:280px;
}

.side-menu a{
    font-size:16px;
}

}