/* GLOBAL VARIABLES & RESET */
:root {
    --lime-green: #7AC403; 
    --neon-green: #BAFC50; 
    --forest-green: #1B4E2B; 
    --dark: #000000;
    --text-grey: #4A4A4A;
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
    --font-head: 'Mulish', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-grey);
    line-height: 1.8;
    background-color: var(--light-bg);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    color: var(--forest-green);
    font-weight: 800;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* NAVIGATION */
.navbar {
    background-color: var(--white);
    padding: 15px 0;
    border-bottom: 3px solid var(--lime-green);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px; 
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li a {
    text-decoration: none;
    color: var(--forest-green);
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: var(--lime-green);
}

/* --- ADVANCED DROPDOWN MENU --- */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 150%; 
    left: 0;
    background-color: var(--white);
    min-width: 280px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-radius: 12px;
    border-top: 4px solid var(--lime-green);
    z-index: 2000;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.5, 0, 0, 1);
    padding: 10px 0;
}

.dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    top: 100%;
    transform: translateY(0);
}

.dropdown-content a {
    color: var(--text-grey) !important; 
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-transform: capitalize !important; 
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-content a:hover {
    background-color: var(--light-bg);
    color: var(--forest-green) !important;
    border-left: 3px solid var(--neon-green);
    padding-left: 27px; 
}

.dropdown-divider {
    height: 1px;
    background-color: #eaeaea;
    margin: 8px 0;
}

/* --- VIRTUAL HR SPOTLIGHT & NAV UPDATES --- */
.nav-btn-highlight {
    background-color: var(--neon-green);
    color: var(--forest-green) !important;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 900 !important;
    box-shadow: 0 4px 10px rgba(186, 252, 80, 0.3);
}

.nav-btn-highlight:hover {
    background-color: var(--forest-green);
    color: var(--white) !important;
    box-shadow: 0 4px 10px rgba(27, 78, 43, 0.3);
}

.spotlight-section {
    background: linear-gradient(135deg, var(--forest-green) 0%, #0d2b17 100%);
    color: var(--white);
    padding: 100px 0;
    border-top: 5px solid var(--lime-green);
    border-bottom: 5px solid var(--lime-green);
}

.spotlight-section h2 {
    color: var(--white);
    font-size: 48px;
    margin-bottom: 15px;
}

.spotlight-section .slogan {
    font-size: 24px;
    color: var(--neon-green);
    font-style: italic;
    margin-bottom: 40px;
}

.spotlight-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(186, 252, 80, 0.3);
    padding: 40px;
    border-radius: 12px;
}

/* BUTTONS & BADGES */
.btn {
    display: inline-block;
    background-color: var(--neon-green);
    color: var(--forest-green);
    padding: 15px 30px;
    border: 2px solid var(--neon-green);
    border-radius: 15px;
    text-decoration: none;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(186, 252, 80, 0.3);
}

.btn:hover {
    background-color: var(--forest-green);
    border-color: var(--forest-green);
    color: var(--white);
}

.badge {
    background-color: var(--lime-green);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

/* SLOGAN STRIP */
.slogan-strip {
    background-color: var(--forest-green);
    color: var(--white);
    text-align: center;
    padding: 15px 0;
    font-family: var(--font-head);
    font-weight: 700;
    font-style: italic;
    letter-spacing: 1px;
}

.slogan-strip span { color: var(--neon-green); }

/* HERO & HEADERS */
.hero {
    padding: 120px 0;
    background-color: var(--white);
    border-bottom: 1px solid #eaeaea;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 25px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 700px;
}

/* LAYOUT GRIDS */
.section-pad { padding: 100px 0; }
.bg-white { background-color: var(--white); }
.bg-light { background-color: var(--light-bg); }
.bg-dark { background-color: var(--forest-green); color: var(--white); }
.bg-dark h2, .bg-dark h3 { color: var(--white); }

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }

/* FEATURE CARDS */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background-color: var(--white);
    border-left: 6px solid var(--lime-green);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-left-color: var(--forest-green);
}

/* LADDER TO SUCCESS / NUMBERED CARDS */
.ladder-step {
    display: flex;
    align-items: center;
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-left: 8px solid var(--forest-green);
}

.ladder-step .step-num {
    background: var(--neon-green);
    color: var(--forest-green);
    font-size: 24px;
    font-weight: 900;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 25px;
    flex-shrink: 0;
}

/* IMAGES */
.img-fluid {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* DETAILED SERVICE LISTS & TAGS */
.service-list {
    list-style: none;
    margin-top: 15px;
    padding: 0;
}

.service-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    font-size: 15px;
    color: var(--text-grey);
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--lime-green);
    font-weight: bold;
    font-size: 16px;
}

.bg-dark .service-list li {
    color: rgba(255, 255, 255, 0.85);
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.industry-tag {
    background: rgba(186, 252, 80, 0.15); 
    color: var(--forest-green);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
    border: 1px solid var(--lime-green);
}

.bg-dark .industry-tag {
    color: var(--neon-green);
    border-color: var(--neon-green);
}

/* --- ANIMATIONS & INTERACTIVITY --- */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(80px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active, 
.reveal-left.active, 
.reveal-right.active {
    opacity: 1;
    transform: translate(0, 0);
}

.float-anim {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.img-zoom-wrapper {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.img-zoom-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.img-zoom-wrapper:hover img {
    transform: scale(1.08); 
}

/* Glassmorphism Spotlight */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 40px;
    color: var(--white);
}

/* Parallax Hero Background */
.parallax-hero {
    background-image: linear-gradient(rgba(27, 78, 43, 0.85), rgba(27, 78, 43, 0.95)), url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=1920&q=80');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--white);
    padding: 150px 0;
    text-align: center;
}

.parallax-hero h1 {
    color: var(--white);
    font-size: 64px;
}

/* Typewriter Cursor */
.typewriter::after {
    content: '|';
    animation: blink 1s step-end infinite;
    color: var(--neon-green);
}
@keyframes blink { 50% { opacity: 0; } }

/* Animated Counters Grid */
.counter-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
    text-align: center;
}

.counter-box {
    padding: 30px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-bottom: 4px solid var(--lime-green);
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.6s ease-out;
}

.counter-box.active {
    transform: translateY(0);
    opacity: 1;
}

.counter-num {
    font-size: 48px;
    font-weight: 900;
    font-family: var(--font-head);
    color: var(--forest-green);
}

/* Glowing Border Hover Effect */
.glow-card {
    position: relative;
    background: var(--white);
    border-radius: 8px;
    padding: 40px;
    z-index: 1;
}
.glow-card::before {
    content: "";
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(45deg, var(--lime-green), var(--neon-green), var(--forest-green));
    z-index: -1;
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}
.glow-card:hover::before {
    opacity: 1;
}

/* --- RICH FOOTER --- */
.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 80px 0 30px;
    border-top: 5px solid var(--forest-green);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--neon-green);
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--lime-green);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

/* --- MOBILE RESPONSIVENESS --- */
@media screen and (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-grid.reverse {
        display: flex;
        flex-direction: column-reverse;
    }

    .hero h1, .parallax-hero h1 {
        font-size: 42px;
    }

    .spotlight-section {
        padding: 60px 0;
    }

    .spotlight-section h2 {
        font-size: 36px;
    }

    .nav-links {
        display: none; 
    }
}