/* ===========================
        LOADER
=========================== */

#loader{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100vh;

    background:#F5F7FA;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:999999;

    transition:.8s;

}

.loader-container{

    text-align:center;

}

.loader-logo{

    width:120px;
    height:120px;

    margin:auto;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        #0A4DCC,
        #083A9B
    );

    color:white;

    font-size:50px;

    font-family:Poppins,sans-serif;

    font-weight:bold;

    display:flex;

    justify-content:center;

    align-items:center;

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

    margin-bottom:25px;

}

.loader-container h1{

    font-size:32px;

    color:#083A9B;

    margin-bottom:8px;

    font-family:Poppins,sans-serif;

}

.loader-container p{

    color:#666;

    margin-bottom:30px;

    letter-spacing:2px;

}

.spinner{

    width:70px;
    height:70px;

    border-radius:50%;

    border:7px solid #ddd;

    border-top:7px solid #0A4DCC;

    margin:auto;

    animation:spin 1s linear infinite;

}

@keyframes spin{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}

.loader-hide{

    opacity:0;

    visibility:hidden;

}

/* ===========================
        LOADER
=========================== */

@media (max-width:768px){

    .loader-logo{

        width:90px;
        height:90px;

        font-size:38px;

    }

    .loader-container h1{

        font-size:24px;

        padding:0 20px;

    }

    .loader-container p{

        font-size:14px;

        letter-spacing:1px;

    }

    .spinner{

        width:55px;
        height:55px;

        border-width:5px;

    }

}

@media (max-width:480px){

    .loader-logo{

        width:75px;
        height:75px;

        font-size:30px;

    }

    .loader-container h1{

        font-size:20px;

    }

    .loader-container p{

        font-size:13px;

    }

}

/* ==========================================
   NAVBAR
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
}

header{
    width:100%;
    position:sticky;
    top:0;
    left:0;
    z-index:1000;
}

.navbar{
    background:linear-gradient(135deg,#D4AF37,#E8C55A,#C89B1D);
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 8%;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
}

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

.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo-circle{
    width:55px;
    height:55px;
    background:#0A4DCC;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
    font-weight:700;
    box-shadow:0 0 15px rgba(10,77,204,.35);
}

.logo-text h2{
    color:#fff;
    font-size:20px;
    font-weight:700;
}

.logo-text p{
    color:#f8f8f8;
    font-size:13px;
    letter-spacing:1px;
}

/* ===================
   NAV LINKS
=================== */

.nav-links{
    display:flex;
    list-style:none;
    gap:28px;
}

.nav-links li a{
    text-decoration:none;
    color:#fff;
    font-weight:600;
    transition:.3s;
}

.nav-links li a:hover{
    color:#0A4DCC;
}

/* ===================
   HAMBURGER
=================== */

.hamburger{
    display:none;
    font-size:30px;
    color:white;
    cursor:pointer;
}

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

@media(max-width:900px){

    .nav-links{
        display:none;
    }

    .hamburger{
        display:block;
    }

    .navbar{
        padding:15px 20px;
    }

    .logo-circle{
        width:45px;
        height:45px;
        font-size:18px;
    }

    .logo-text h2{
        font-size:16px;
    }

    .logo-text p{
        font-size:11px;
    }

}

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

@media (max-width:900px){

    .nav-links{

        position:absolute;

        top:85px;

        left:0;

        width:100%;

        background:#D4AF37;

        display:none;

        flex-direction:column;

        text-align:center;

        padding:25px 0;

        gap:20px;

        box-shadow:0 10px 20px rgba(0,0,0,.15);

    }

    .nav-links.show-menu{

        display:flex;

    }

}

/* ==========================================
   HERO SECTION
========================================== */

.hero{
    position:relative;
    width:100%;
    min-height:100vh;

    background:
    linear-gradient(
    rgba(0,0,0,.82),
    rgba(5,5,5,.90)),
    url("../images/hero/office1.jpg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

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

    text-align:center;

    padding:120px 8%;

    overflow:hidden;
}

/* ==========================================
   DARK OVERLAY
========================================== */

.hero-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.45);

}

/* ==========================================
   CONTENT
========================================== */

.hero-content{

    position:relative;

    z-index:2;

    max-width:950px;

}

/* ==========================================
   BADGE
========================================== */

.hero-badge{

    display:inline-block;

    background:linear-gradient(135deg,#D4AF37,#F4C542,#B8860B);

    color:#fff;

    padding:12px 28px;

    border-radius:40px;

    font-size:15px;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:30px;

    box-shadow:0 0 20px rgba(212,175,55,.35);

}

/* ==========================================
   TITLE
========================================== */

.hero h1{

    color:#FFFFFF;

    font-size:64px;

    font-weight:700;

    line-height:1.2;

    margin-bottom:25px;

}

.hero p{

    color:#DDDDDD;

    font-size:18px;

    line-height:1.9;

    margin-bottom:45px;

}

/* ==========================================
   SEARCH CONTAINER
========================================== */

.search-container{

    display:grid;

    grid-template-columns:2fr 2fr 1.5fr 1fr;

    gap:15px;

    padding:20px;

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

    backdrop-filter:blur(18px);

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

    border-radius:16px;

    margin-bottom:40px;

}

.search-container input,
.search-container select{

    height:58px;

    border:none;

    outline:none;

    border-radius:10px;

    padding:0 18px;

    font-size:15px;

    background:#F7F7F7;

    color:#222;

}

.search-container input::placeholder{

    color:#777;

}

.search-container button{

    border:none;

    border-radius:10px;

    cursor:pointer;

    background:linear-gradient(135deg,#D4AF37,#F4C542);

    color:white;

    font-size:16px;

    font-weight:600;

    transition:.35s;

}

.search-container button:hover{

    background:#000;

    color:white;

    transform:translateY(-2px);

}

/* ==========================================
   BUTTONS
========================================== */

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

}

.hero-buttons a{

    text-decoration:none;

    padding:16px 36px;

    border-radius:10px;

    font-weight:600;

    transition:.35s;

}

/* Browse Jobs */

.browse-btn{

    background:linear-gradient(135deg,#D4AF37,#F4C542);

    color:white;

    box-shadow:0 8px 20px rgba(212,175,55,.30);

}

.browse-btn:hover{

    background:white;

    color:#000;

}

/* Talent Pool */

.register-btn{

    background:white;

    color:#000;

}

.register-btn:hover{

    background:linear-gradient(135deg,#D4AF37,#F4C542);

    color:white;

}

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

@media(max-width:992px){

.hero{

padding:120px 30px 80px;

}

.hero h1{

font-size:48px;

}

.search-container{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:768px){

.hero{

padding:110px 20px 70px;

}

.hero h1{

font-size:38px;

line-height:1.3;

}

.hero p{

font-size:16px;

}

.search-container{

grid-template-columns:1fr;

padding:18px;

}

.search-container input,
.search-container select,
.search-container button{

width:100%;

}

.hero-buttons{

flex-direction:column;

gap:15px;

}

.hero-buttons a{

width:100%;

text-align:center;

}

}

@media(max-width:480px){

.hero h1{

font-size:30px;

}

.hero-badge{

font-size:13px;

padding:10px 20px;

}

.hero p{

font-size:15px;

}

}

/* ==========================================
   COMPANY STATISTICS
========================================== */

.statistics{

    background:#050505;

    padding:90px 8%;

}

.stats-container{

    display:grid;

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

    gap:30px;

}

.stat-card{

    background:#111111;

    border:1px solid rgba(212,175,55,.15);

    border-radius:18px;

    padding:40px 25px;

    text-align:center;

    transition:.4s;

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

}

.stat-card:hover{

    transform:translateY(-10px);

    border-color:#D4AF37;

    box-shadow:0 15px 35px rgba(212,175,55,.20);

}

.stat-card i{

    font-size:45px;

    color:#D4AF37;

    margin-bottom:20px;

}

.stat-card h2{

    color:#FFFFFF;

    font-size:40px;

    margin-bottom:10px;

}

.stat-card p{

    color:#BDBDBD;

    font-size:17px;

}

/* ==========================================
   FEATURED JOBS
========================================== */

.featured-jobs{

    background:#F7F7F7;

    padding:100px 8%;

}

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    font-size:42px;

    color:#111111;

    margin-bottom:15px;

}

.section-title p{

    color:#666;

    font-size:18px;

}

/* ==========================================
   JOB GRID
========================================== */

.job-grid{

    display:grid;

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

    gap:35px;

}

.job-card{

    background:#FFFFFF;

    border-radius:18px;

    padding:35px;

    transition:.4s;

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

    position:relative;

    overflow:hidden;

}

.job-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:6px;

    height:100%;

    background:#D4AF37;

}

.job-card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 40px rgba(0,0,0,.18);

}

.job-type{

    display:inline-block;

    background:#D4AF37;

    color:#fff;

    padding:8px 18px;

    border-radius:30px;

    font-size:13px;

    margin-bottom:20px;

    font-weight:600;

}

.job-card h3{

    font-size:28px;

    color:#111111;

    margin-bottom:15px;

}

.job-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:25px;

}

.job-info{

    display:flex;

    justify-content:space-between;

    margin-bottom:30px;

    color:#444;

    font-size:15px;

}

.job-info span{

    display:flex;

    align-items:center;

    gap:8px;

}

.job-info i{

    color:#D4AF37;

}

.apply-btn{

    display:inline-block;

    width:100%;

    text-align:center;

    text-decoration:none;

    padding:15px;

    border-radius:10px;

    background:#050505;

    color:#FFFFFF;

    font-weight:600;

    transition:.35s;

}

.apply-btn:hover{

    background:#D4AF37;

    color:#FFFFFF;

}

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

@media(max-width:992px){

.stats-container{

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

}

.job-grid{

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

}

}

@media(max-width:768px){

.statistics,

.featured-jobs{

padding:70px 20px;

}

.stats-container,

.job-grid{

grid-template-columns:1fr;

}

.section-title h2{

font-size:34px;

}

.job-card{

padding:30px;

}

.stat-card{

padding:30px;

}

}

@media(max-width:480px){

.section-title h2{

font-size:28px;

}

.job-card h3{

font-size:22px;

}

.stat-card h2{

font-size:32px;

}

}

/* ==========================================
   WHY CHOOSE US
========================================== */

.why-us{

    background:#050505;

    padding:100px 8%;

}

.why-us .section-title{

    text-align:center;

    margin-bottom:70px;

}

.why-us .section-title h2{

    color:#FFFFFF;

    font-size:42px;

    margin-bottom:15px;

    font-weight:700;

}

.why-us .section-title p{

    color:#B8B8B8;

    font-size:18px;

    max-width:750px;

    margin:auto;

    line-height:1.8;

}

/* ==========================================
   GRID
========================================== */

.why-grid{

    display:grid;

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

    gap:35px;

}

/* ==========================================
   CARD
========================================== */

.why-card{

    background:#111111;

    border:1px solid rgba(212,175,55,.15);

    border-radius:18px;

    padding:40px 30px;

    text-align:center;

    transition:.4s;

    position:relative;

    overflow:hidden;

    cursor:pointer;

}

.why-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:#D4AF37;

    transform:scaleX(0);

    transition:.4s;

}

.why-card:hover::before{

    transform:scaleX(1);

}

.why-card:hover{

    transform:translateY(-12px);

    border-color:#D4AF37;

    box-shadow:0 18px 40px rgba(212,175,55,.18);

}

/* ==========================================
   ICON
========================================== */

.why-card i{

    width:80px;

    height:80px;

    line-height:80px;

    border-radius:50%;

    background:#D4AF37;

    color:#FFFFFF;

    font-size:34px;

    margin-bottom:25px;

    transition:.4s;

}

.why-card:hover i{

    transform:rotate(360deg);

}

/* ==========================================
   TITLE
========================================== */

.why-card h3{

    color:#FFFFFF;

    font-size:24px;

    margin-bottom:18px;

    font-weight:600;

}

/* ==========================================
   TEXT
========================================== */

.why-card p{

    color:#BFBFBF;

    font-size:16px;

    line-height:1.8;

}

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

@media(max-width:992px){

.why-grid{

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

}

}

@media(max-width:768px){

.why-us{

padding:80px 20px;

}

.why-grid{

grid-template-columns:1fr;

gap:25px;

}

.why-us .section-title h2{

font-size:34px;

}

.why-us .section-title p{

font-size:16px;

}

.why-card{

padding:35px 25px;

}

}

@media(max-width:480px){

.why-us .section-title h2{

font-size:28px;

}

.why-card i{

width:70px;

height:70px;

line-height:70px;

font-size:28px;

}

.why-card h3{

font-size:21px;

}

.why-card p{

font-size:15px;

}

}

/* ==========================================
   NEWSLETTER
========================================== */

.newsletter{

    background:#111111;

    padding:90px 8%;

    text-align:center;

}

.newsletter span{

    color:#D4AF37;

    font-weight:600;

    letter-spacing:1px;

}

.newsletter h2{

    color:#FFFFFF;

    font-size:42px;

    margin:20px 0;

}

.newsletter p{

    color:#CFCFCF;

    max-width:700px;

    margin:auto;

    line-height:1.8;

}

.newsletter-form{

    margin-top:40px;

    display:flex;

    justify-content:center;

    gap:15px;

    flex-wrap:wrap;

}

.newsletter-form input{

    width:420px;

    max-width:100%;

    height:58px;

    padding:0 20px;

    border:none;

    border-radius:10px;

    outline:none;

}

.newsletter-form button{

    background:#D4AF37;

    color:white;

    border:none;

    padding:0 35px;

    border-radius:10px;

    cursor:pointer;

    font-weight:600;

    transition:.3s;

}

.newsletter-form button:hover{

    background:#000;

}

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

footer{

    background:#050505;

    padding:70px 8% 25px;

}

.footer-container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:40px;

}

.footer-box h3{

    color:#D4AF37;

    margin-bottom:20px;

}

.footer-box p{

    color:#CCCCCC;

    line-height:1.8;

}

.footer-box ul{

    list-style:none;

}

.footer-box ul li{

    margin:12px 0;

}

.footer-box ul li a{

    color:#CCCCCC;

    text-decoration:none;

    transition:.3s;

}

.footer-box ul li a:hover{

    color:#D4AF37;

}

.footer-logo{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:20px;

}

.social-icons{

    display:flex;

    gap:15px;

    margin-top:20px;

}

.social-icons a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:#111111;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#D4AF37;

    text-decoration:none;

    transition:.3s;

}

.social-icons a:hover{

    background:#D4AF37;

    color:#FFFFFF;

}

footer hr{

    margin:50px 0 25px;

    border:1px solid #222;

}

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}

.footer-bottom p{

    color:#AAAAAA;

}

#backToTop{

    background:#D4AF37;

    color:white;

    border:none;

    padding:12px 22px;

    border-radius:8px;

    cursor:pointer;

}

#backToTop:hover{

    background:#111111;

}

@media(max-width:768px){

.newsletter h2{

font-size:32px;

}

.footer-bottom{

flex-direction:column;

text-align:center;

}

}