:root {
    --primary-dark: #111111;
    --secondary-dark: #1c1c1c;
    --accent-gold: #BFA05C;
    --accent-gold-dark: #A68A4B;
    --accent-gold-light: #D4B876;
    --off-white: #F9F9F9;
    --pure-white: #FFFFFF;
    --text-dark: #2A2A2A;
    --text-light: #E8E8E8;

     /* Fonts */
     --font-primary: 'Playfair Display', serif;
     --font-secondary: 'Poppins', sans-serif;
}

/* h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
} */


/* Hero Section */
.nwoko-hero-mini {
    margin-top: 0;
    height: 500px;
    background: var(--primary-dark);
    background-image: url('../images/indoor-shot-two-successful-businessmen-having-meeting-modern-office-interior.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--pure-white);
    animation: fadeIn 1s ease-in-out;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        145deg,
        rgba(17, 17, 17, 0.80),
        rgba(28, 28, 28, 0.70)
    );
    z-index: 1;
}

/* .nwoko-hero-mini .container {
    position: relative;
    z-index: 2;
} */

.hero-mini-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    margin-top: 60px;
    animation: slideUp 0.8s ease-out;
    animation-fill-mode: both;
}

.hero-mini-content h1 {
    animation: fadeIn 0.8s ease-out 0.2s;
    animation-fill-mode: both;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.breadcrumb {
    animation: fadeIn 0.8s ease-out 0.4s;
    animation-fill-mode: both;
    display: flex;
    justify-content: center;
    gap: 10px;
    color: var(--accent-gold);
}

.breadcrumb a {
    color: var(--pure-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--accent-gold);
}

.breadcrumb .separator {
    color: var(--accent-gold);
    margin: 0 5px;
}

.breadcrumb .current {
    color: var(--accent-gold);
}

/* Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-visual-img {
    z-index: 3;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual-img img {
    max-width: 320px;
    width: 100%;
    height: auto;
    display: block;
}

.hero-bg-svg {
    position: absolute;
    top: 30px;
    right: 30px;
    opacity: 0.12;
    z-index: 1;
}

@media (max-width: 991px) {
    .nwoko-hero-mini {
        height: 320px;
    }
    .hero-visual-img img {
        max-width: 220px;
    }
}

@media (max-width: 768px) {
    .nwoko-contact-info , .nwoko-hours{
        margin-top: 6%;
    }

    .nwoko-hero-mini {
        height: auto;
        padding: 60px 0 30px 0;
    }
    .nwoko-hero-mini .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    .hero-visual-img {
        margin-top: 20px;
        justify-content: flex-start;
    }
    .hero-visual-img img {
        max-width: 180px;
    }
    .hero-bg-svg {
        top: 10px;
        right: 10px;
        width: 100px;
        height: 100px;
    }
    .navbar-brand {
        display: flex;
        align-items: center;
        margin-right: 0;
    }
    .navbar-toggler {
        margin-left: 10px;
    }
    .navbar-nav .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        box-shadow: none;
    }
    .navbar-nav .dropdown-menu .dropdown-item {
        color: var(--pure-white);
        padding: 10px 15px;
    }
    .navbar-nav .dropdown-menu .dropdown-item:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
}

/* Career Overview Section */
.career-overview-section {
    padding: 70px 0;
    background: var(--pure-white);
}

.section-header {
    text-align: left;
    margin-bottom: 50px;
}

.section-subtitle {
    display: block;
    color: var(--accent-gold);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.title-separator {
    display: flex;
    align-items: center;
    gap: 15px;
}

.separator-line {
    width: 60px;
    height: 1px;
    background: var(--accent-gold);
}

.separator-icon {
    font-size: 18px;
}

.lead-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-top: 20px;
    max-width: 800px;
}

/* Why Join Grid */
.why-join-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.why-join-card {
    padding: 35px;
    background: var(--pure-white);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.why-join-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(191, 160, 92, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.card-icon i {
    font-size: 24px;
    color: var(--accent-gold);
}

/* Current Openings Section */
.current-openings-section {
    padding: 70px 0;
    background: var(--off-white);
}

.openings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.job-card {
    background: var(--pure-white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.job-type {
    background: rgba(191, 160, 92, 0.1);
    color: var(--accent-gold);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.job-details {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-size: 14px;
}

.job-details i {
    color: var(--accent-gold);
    margin-right: 5px;
}

.apply-btn {
    display: inline-block;
    padding: 12px 25px;
    background: var(--accent-gold);
    color: var(--pure-white);
    text-decoration: none;
    border-radius: 8px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.apply-btn:hover {
    background: var(--accent-gold-dark);
    transform: translateY(-3px);
}

/* Application Process Section */
.application-process-section {
    padding: 70px 0;
    background: var(--pure-white);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    color: var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

/* General Application Section */
.general-application-section {
    padding: 70px 0;
    background: var(--primary-dark);
    color: var(--pure-white);
    text-align: center;
}

.application-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--accent-gold);
    color: var(--pure-white);
    text-decoration: none;
    border-radius: 8px;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--accent-gold-dark);
    transform: translateY(-3px);
}

/* Footer Styles (Copied from index.css) */
.footer-container {
    position: relative;
    z-index: 4;
    width: 90%;
    display: flex;
    justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.nwoko-footer {
    background: var(--primary-dark);
    color: var(--white);
    position: relative;
}

.nwoko-footer-top {
    padding: 80px 0 60px;
}

.nwoko-footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.nwoko-footer-logo h3 {
    font-size: 1.8rem;
    margin: 0;
    font-weight: 700;
    font-family: var(--font-primary);
}

.nwoko-footer-desc {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.nwoko-social-links {
    display: flex;
    gap: 15px;
}

.nwoko-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.nwoko-footer-title {
    color: var(--pure-white);
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.nwoko-footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-gold);
}

.nwoko-contact-grid {
    display: grid;
    gap: 20px;
}

.nwoko-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.nwoko-contact-item i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.nwoko-contact-content .nwoko-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 5px;
}

.nwoko-contact-content p {
    margin: 0;
    color: var(--text-light);
}

.nwoko-hours-grid {
    display: grid;
    gap: 15px;
}

.nwoko-hours-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nwoko-day {
    color: rgba(255, 255, 255, 0.8);
}

.nwoko-time {
    color: var(--accent-gold);
}

.nwoko-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    padding: 12px 25px;
    background: var(--accent-gold);
    color: var(--pure-white);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nwoko-footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nwoko-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nwoko-legal-links {
    display: flex;
    gap: 20px;
}

.nwoko-legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.nwoko-legal-links a:hover {
    color: var(--accent-gold);
}

@media (max-width: 991px) {
    .nwoko-footer-top {
        padding: 60px 0 40px;
    }
    .nwoko-copyright {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .nwoko-legal-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        padding-left: 0;
        padding-right: 0;
    }
    .nwoko-footer-top {
        padding: 40px 0 20px;
    }
    .nwoko-copyright {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .nwoko-legal-links {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .why-join-grid,
    .openings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .shh{
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .why-join-grid,
    .openings-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .job-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
} 