/* ===========================================================
   HireNova - Global Styles
   Version: 1.0
=========================================================== */

/* ===========================================================
   RESET
=========================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#222;
    line-height:1.6;
    overflow-x:hidden;
}

/* ===========================================================
   LINKS
=========================================================== */

a{
    text-decoration:none;
    transition:.3s ease;
}

a:hover{
    text-decoration:none;
}

/* ===========================================================
   CONTAINER
=========================================================== */

.container{
    max-width:1250px;
}

/* ===========================================================
   NAVBAR
=========================================================== */

.navbar{

    background:#ffffff;

    padding:18px 0;

    border-bottom:1px solid #edf1f7;

    box-shadow:0 8px 25px rgba(0,0,0,.05);

    transition:.3s ease;

    z-index:999;

}

.navbar-brand{

    display:flex;

    align-items:center;

    gap: 12px;

}

/* Logo */

.navbar-logo{

   width:48px;
    height:48px;

}
.logo-text{
    font-size:30px;
    font-weight:700;
    color:#1565C0;
}

.navbar-brand:hover .navbar-logo{

    transform:scale(1.04);

}

/* Navigation */

.navbar-nav{

    align-items:center;

}

.navbar-nav .nav-link{

    color:#25364a !important;

    font-size:15px;

    font-weight:600;

    padding:10px 14px;

    margin:0 4px;

    border-radius:8px;

    transition:.3s ease;

}

.navbar-nav .nav-link:hover{

    background:#eef6ff;

    color:#1565C0 !important;

}

.navbar-nav .nav-link.active{

    color:#1565C0 !important;

}

/* Navbar Buttons */

.btn{

    border-radius:10px;

    padding:10px 24px;

    font-weight:600;

    transition:.3s ease;

}

.btn-outline-primary{

    border-width:2px;

}

.btn-outline-primary:hover{

    transform:translateY(-2px);

}

.btn-primary{

    box-shadow:0 8px 20px rgba(21,101,192,.25);

}

.btn-primary:hover{

    transform:translateY(-2px);

}

/*==========================================
HERO SECTION
==========================================*/

.hero-section{

    position:relative;

    overflow:hidden;

    padding:90px 0 80px;

    background:linear-gradient(135deg,#f8fbff 0%,#eef5ff 50%,#ffffff 100%);

}

/* Badge */

.hero-badge{

    display:inline-block;

    padding:10px 22px;

    border-radius:40px;

    background:#e8f1ff;

    color:#1565C0;

    font-size:15px;

    font-weight:600;

    margin-bottom:25px;

}

/* Title */

.hero-title{

    font-size:64px;

    font-weight:800;

    line-height:1.15;

    color:#183153;

    margin-bottom:25px;

}

.hero-title span{

    color:#1BA94C;

}

/* Text */

.hero-text{

    font-size:20px;

    line-height:1.8;

    color:#5d6b82;

    margin-bottom:40px;

    max-width:620px;

}

/*==========================================
SEARCH BOX
==========================================*/

.hero-search{

    background:#ffffff;

    padding:20px;

    border-radius:22px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

    margin-bottom:50px;

}

.search-input{

    position:relative;

}

.search-input i{

    position:absolute;

    left:18px;

    top:50%;

    transform:translateY(-50%);

    color:#1565C0;

    z-index:5;

    font-size:18px;

}

.search-input input,

.search-input select{

    height:62px;

    padding-left:48px;

    border-radius:14px;

    border:1px solid #dde6f3;

    font-size:15px;

    box-shadow:none;

}

.search-input input:focus,

.search-input select:focus{

    border-color:#1565C0;

    box-shadow:0 0 0 .2rem rgba(21,101,192,.15);

}

.hero-btn{

    height:62px;

    border-radius:14px;

    font-weight:700;

    font-size:17px;

    background:#1565C0;

    border:none;

    transition:.3s;

}

.hero-btn:hover{

    background:#0d47a1;

    transform:translateY(-2px);

}

/*==========================================
STATISTICS
==========================================*/

.hero-stats{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.stat-box{

    display:flex;

    align-items:center;

    gap:18px;

    background:#ffffff;

    padding:20px;

    border-radius:18px;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.stat-box i{

    width:60px;

    height:60px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#eaf3ff;

    color:#1565C0;

    font-size:24px;

}

.stat-box h3{

    margin:0;

    font-size:32px;

    font-weight:800;

    color:#1565C0;

}

.stat-box span{

    color:#666;

    font-size:15px;

}

/*==========================================
RIGHT HERO IMAGE
==========================================*/
/*==========================================
RIGHT HERO IMAGE
==========================================*/

.hero-image-wrapper{

    position: relative;
    top: -20px;

    width: 145%;

    height: 600px;

    display: flex;

    justify-content: flex-end;

    align-items: flex-end;

    overflow: visible;

}

.hero-image{

    width: 100%;

    max-width: none;

    height: auto;

    object-fit: contain;

    transition: .4s ease;

}

.hero-image:hover{

    transform: scale(1.02);

}

/* Hide World Map (no longer needed) */

.world-map{

    display: none;

}



/*==========================================
FLOATING CARDS
==========================================*/

.floating-card{

    position:absolute;

    background:#ffffff;

    padding:14px 22px;

    border-radius:14px;

    box-shadow:0 15px 35px rgba(0,0,0,.12);

    font-size:15px;

    font-weight:600;

    color:#183153;

    z-index:10;

}

.card-one{

    top:100px;

    left:0;

}

.card-two{

    bottom:150px;

    left:30px;

}

.card-three{

    top:240px;

    right:0;

}

/*==========================================
ANIMATIONS
==========================================*/

@keyframes floatMap{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}

.floating-card{

    animation:floatCard 5s ease-in-out infinite;

}

@keyframes floatCard{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-10px);

    }

    100%{

        transform:translateY(0);

    }

}

/*==========================================
RESPONSIVE
==========================================*/

@media(max-width:992px){

.hero-section{

    text-align:center;

}

.hero-title{

    font-size:48px;

}

.hero-text{

    margin:auto auto 35px;

}

.hero-image-wrapper{

    margin-top:60px;

    min-height:auto;

}

.hero-image{

    max-width:420px;

}

.card-one,

.card-two,

.card-three{

    position:relative;

    margin:15px auto;

    display:inline-block;

    left:auto;

    right:auto;

    top:auto;

    bottom:auto;

}

.hero-stats{

    margin-top:40px;

}

}

@media(max-width:768px){

.hero-title{

    font-size:40px;

}

.hero-search{

    padding:18px;

}

.search-input{

    margin-bottom:15px;

}

.hero-btn{

    width:100%;

}

.hero-stats{

    grid-template-columns:1fr;

}

.hero-image{

    max-width:320px;

}

}

 

@media (max-width:768px){

    .hero-title{

        font-size:34px;

    }

    .hero-text{

        font-size:16px;

    }

    .search-box{

        padding:20px;

    }

    .hero-stats{

        text-align:center;

    }

    .hero-stats .col-4{

        margin-bottom:20px;

    }

}

/* ==========================================
   SECTION HEADINGS
========================================== */

.section-badge{

    display:inline-block;

    padding:8px 18px;

    background:#eaf4ff;

    color:#1565C0;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

}

.section-title{

    font-size:42px;

    font-weight:700;

    color:#1d3557;

}

.section-text{

    color:#6c757d;

    max-width:650px;

    margin:auto;

}

/* ==========================================
   HOW IT WORKS
========================================== */

.how-section{

    padding:90px 0;

    background:#ffffff;

}

.step-card{

    background:#ffffff;

    padding:40px 30px;

    border-radius:20px;

    transition:.35s;

    box-shadow:0 8px 25px rgba(0,0,0,.05);

    height:100%;

}

.step-card:hover{

    transform:translateY(-10px);

    box-shadow:0 18px 45px rgba(0,0,0,.10);

}

.step-icon{

    width:85px;

    height:85px;

    margin:auto;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:32px;

    margin-bottom:25px;

}

.step-card h4{

    font-weight:700;

    margin-bottom:18px;

}

.step-card p{

    color:#6c757d;

    line-height:1.8;

}

/*==================================================
  TRUSTED EMPLOYERS
==================================================*/

.trusted-employers{

    padding:100px 0;

    background:#f8fbff;

}

.employer-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    text-align:center;

    height:100%;

    transition:.35s;

    border:1px solid #eef2f7;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.employer-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.10);

}

.company-logo{

    height:70px;

    width:auto;

    margin-bottom:20px;

}

.employer-card h4{

    font-weight:700;

    color:#1d3557;

    margin-bottom:10px;

}

.country{

    color:#1565C0;

    font-weight:600;

    margin-bottom:5px;

}

.industry{

    color:#666;

    margin-bottom:20px;

}

.verified{

    display:inline-block;

    background:#e9f9ef;

    color:#28a745;

    padding:6px 15px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

}

.jobs-count{

    margin:25px 0;

    font-size:18px;

    font-weight:700;

    color:#1565C0;

}

.view-jobs{

    color:#1565C0;

    font-weight:600;

}

.view-jobs:hover{

    color:#0d47a1;

}

/*==================================================
 FEATURED COUNTRIES
==================================================*/

.featured-countries{

    padding:100px 0;

    background:#ffffff;

}
.country-card{
    position:relative;
    background:#fff;
    border-radius:20px;
    padding:25px;
    text-align:center;
    height:100%;
    transition:.35s ease;
    border:1px solid #edf2f7;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
    overflow:hidden;
}

.country-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

    border-color:#1565C0;

}

.country-flag{
    width:80px;
    height:80px;
    object-fit:cover;
    border-radius:50%;
    border:4px solid #eef5ff;
    margin-bottom:18px;
    transition:.3s;
}

.country-card:hover .country-flag{
    transform:scale(1.08);
}

.country-card h4{

    font-size:24px;

    font-weight:700;

    color:#1d3557;

    margin:15px 0;

}

.country-jobs{

    color:#1565C0;

    font-weight:600;

}

.country-salary{

    color:#666;

    font-size:15px;

    margin:15px 0;

}

.country-tag{

    display:inline-block;

    background:#eaf7ea;

    color:#28a745;

    padding:8px 16px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

}
/*==========================================
 COUNTRY BADGES
==========================================*/

.country-badge{

    position:absolute;

    top:15px;

    right:15px;

    font-size:11px;

    padding:5px 12px;

    border-radius:30px;

    color:#fff;

    font-weight:600;

}

/* Blue */

.country-badge.popular{

    background:#1565C0;

}

/* Green */

.country-badge.hiring{

    background:#28a745;

}

/* Orange */

.country-badge.hot{

    background:#ff9800;

}

/* Purple */

.country-badge.visa{

    background:#6f42c1;

}

/* Red */

.country-badge.new{

    background:#dc3545;

}

/*==========================================
FEATURED JOBS
==========================================*/

.featured-jobs{

    padding:100px 0;

    background:#f8fbff;

}

/* Search Box */

.job-search-box{

    max-width:700px;

    margin:auto;

}

.job-search-box .input-group{

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    border-radius:50px;

    overflow:hidden;

}

.job-search-box .input-group-text{

    background:#fff;

    border:none;

    padding-left:25px;

}

.job-search-box .form-control{

    border:none;

    height:60px;

    font-size:16px;

    box-shadow:none;

}

/* Categories */

.job-categories{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:12px;

}

.category-btn{

    border:none;

    padding:12px 24px;

    border-radius:30px;

    background:#fff;

    font-weight:600;

    transition:.3s;

    box-shadow:0 5px 15px rgba(0,0,0,.05);

}

.category-btn:hover{

    background:#1565C0;

    color:#fff;

}

.category-btn.active{

    background:#1565C0;

    color:#fff;

}



/*==================================================
PREMIUM JOB CARDS
==================================================*/

.job-card{

    background:#fff;

    border-radius:20px;

    padding:25px;

    height:100%;

    transition:.35s;

    border:1px solid #edf2f7;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.job-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.job-status{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:20px;

}

.badge-new{

    background:#1565C0;

    color:#fff;

    padding:6px 12px;

    border-radius:20px;

    font-size:13px;

}

.save-job{

    color:#999;

    font-size:20px;

}

.save-job:hover{

    color:#1565C0;

}

.company-info{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:20px;

}

.company-logo{

    width:60px;

    height:60px;

    object-fit:contain;

}

.company-name{

    margin:0;

    font-weight:700;

}

.verified-company{

    color:#28a745;

}

.job-title{

    font-size:24px;

    font-weight:700;

    margin-bottom:20px;

    color:#1d3557;

}

.job-meta{

    list-style:none;

    padding:0;

    margin:0 0 20px;

}

.job-meta li{

    margin-bottom:12px;

    color:#555;

}

.job-meta i{

    color:#1565C0;

    width:22px;

}

.skills{

    display:flex;

    gap:10px;

    flex-wrap:wrap;

    margin-bottom:20px;

}

.skills span{

    background:#eef6ff;

    color:#1565C0;

    padding:6px 14px;

    border-radius:20px;

    font-size:13px;

}

.job-footer{

    margin-bottom:20px;

    color:#777;

}

.job-buttons{

    display:flex;

    gap:10px;

}

.job-buttons .btn{

    flex:1;

}

/*==========================================
GLOBAL OPPORTUNITY TRACKER
==========================================*/

.opportunity-tracker{
    padding:100px 0;
    background:#f8fbff;
}

.tracker-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.35s;
    height:100%;
    border:1px solid #edf2f7;
}

.tracker-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.tracker-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.tracker-flag{
    width:55px;
    height:55px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #eef5ff;
}

.tracker-badge{
    background:#1565C0;
    color:#fff;
    padding:6px 12px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
}

.tracker-card h4{
    margin:20px 0 10px;
    font-weight:700;
    color:#1d3557;
}

.tracker-card h5{
    color:#1565C0;
    font-weight:700;
    margin-bottom:20px;
}

.progress{
    height:10px;
    border-radius:20px;
    margin-bottom:15px;
}

.progress-bar{
    font-size:10px;
    font-weight:600;
}

.tracker-number{
    color:#1565C0;
    font-size:42px;
    font-weight:700;
}

.tracker-card small{
    font-weight:600;
}

/*==========================================
WHY CHOOSE HIRENOVA
==========================================*/

.why-choose{

    padding:100px 0;

    background:#ffffff;

}

.choose-card{

    background:#fff;

    padding:35px 30px;

    border-radius:20px;

    text-align:center;

    border:1px solid #edf2f7;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    transition:.35s;

    height:100%;

}

.choose-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

    border-color:#1565C0;

}

.choose-icon{

    width:80px;

    height:80px;

    margin:0 auto 25px;

    border-radius:50%;

    background:linear-gradient(135deg,#1565C0,#42A5F5);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:32px;

}

.choose-card h4{

    font-size:24px;

    font-weight:700;

    color:#1d3557;

    margin-bottom:15px;

}

.choose-card p{

    color:#666;

    line-height:1.8;

    font-size:15px;

}

/*==========================================
SUCCESS STORIES
==========================================*/

.success-stories{

    padding:100px 0;

    background:#f8fbff;

}

.story-card{

    background:#fff;

    padding:30px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    transition:.35s;

    border:1px solid #edf2f7;

    height:100%;

}

.story-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.story-header{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:20px;

}

.story-avatar{

    width:70px;

    height:70px;

    border-radius:50%;

    object-fit:cover;

    border:4px solid #eef5ff;

}

.story-header h5{

    margin:0;

    font-weight:700;

    color:#1d3557;

}

.story-header small{

    color:#777;

}

.story-rating{

    color:#ffc107;

    margin-bottom:20px;

    font-size:18px;

}

.story-card p{

    color:#666;

    line-height:1.8;

    font-style:italic;

}

/*==========================================
CAREER ADVICE
==========================================*/

.career-advice{

    padding:100px 0;

    background:#ffffff;

}

.article-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    transition:.35s;

    height:100%;

}

.article-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.article-image{

    width:100%;

    height:230px;

    object-fit:cover;

}

.article-content{

    padding:25px;

}

.article-category{

    display:inline-block;

    background:#1565C0;

    color:#fff;

    padding:6px 14px;

    border-radius:20px;

    font-size:13px;

    margin-bottom:15px;

}

.article-content h4{

    font-weight:700;

    color:#1d3557;

    margin-bottom:15px;

}

.article-content p{

    color:#666;

    line-height:1.8;

}

.read-more{

    color:#1565C0;

    font-weight:600;

}

.read-more i{

    margin-left:8px;

}

/*==========================================
NEWSLETTER
==========================================*/

.newsletter{

    padding:100px 0;

    background:#f8fbff;

}

.newsletter-box{

    background:linear-gradient(135deg,#1565C0,#42A5F5);

    border-radius:25px;

    padding:60px;

    color:#fff;

}

.newsletter h2{

    font-weight:700;

    margin-bottom:20px;

}

.newsletter p{

    color:#f5f5f5;

    line-height:1.8;

}

.newsletter-features{

    margin-top:30px;

}

.newsletter-features div{

    margin-bottom:15px;

    font-size:16px;

}

.newsletter-features i{

    color:#FFD54F;

    margin-right:10px;

}

.newsletter-form{

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.15);

}

.newsletter-form .form-control{

    height:55px;

    border-radius:12px;

}

.newsletter-form .btn{

    height:55px;

    border-radius:12px;

    font-weight:600;

}

.newsletter-form small{

    color:#777;

}

/*==========================================
FOOTER
==========================================*/

.footer{

    background:#0f172a;

    color:#cbd5e1;

    padding:80px 0 30px;

}

.footer-logo{

    width:220px;

    margin-bottom:20px;

}

.footer-about{

    line-height:1.9;

    color:#94a3b8;

    margin-bottom:30px;

}

.footer h5{

    color:#ffffff;

    margin-bottom:25px;

    font-weight:700;

}

.footer ul{

    list-style:none;

    padding:0;

}

.footer ul li{

    margin-bottom:12px;

}

.footer ul li a{

    color:#94a3b8;

    transition:.3s;

}

.footer ul li a:hover{

    color:#ffffff;

    padding-left:6px;

}

.footer-contact li{

    color:#94a3b8;

}

.footer-contact i{

    color:#3b82f6;

    margin-right:10px;

}

.footer-social{

    display:flex;

    gap:12px;

}

.footer-social a{

    width:42px;

    height:42px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#1e293b;

    color:#fff;

    transition:.3s;

}

.footer-social a:hover{

    background:#3b82f6;

    transform:translateY(-4px);

}

.footer-divider{

    border-color:#334155;

    margin:50px 0 25px;

}

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    color:#94a3b8;

    font-size:15px;

}

.back-to-top{

    position:fixed;

    right:25px;

    bottom:25px;

    width:50px;

    height:50px;

    border-radius:50%;

    background:#1565C0;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    box-shadow:0 10px 30px rgba(0,0,0,.25);

    transition:.3s;

    z-index:999;

}

.back-to-top:hover{

    background:#0d47a1;

    color:#fff;

    transform:translateY(-5px);

}

@media(max-width:768px){

.footer-bottom{

    flex-direction:column;

    gap:15px;

    text-align:center;

}

.footer-logo{

    width:180px;

}

}