/* =========================================
   1. GLOBAL VARIABLES & RESET
   ========================================= */
:root {
    --primary-blue: #0056b3;
    --primary-orange: #ff6600;
    --bg-dark: #0a1f3a;
    --bg-darker: #001f3f;
    --accent-pink: #ff3366;
    --btn-cyan: #00bcd4;
    --text-light: #ffffff;
    --text-dark: #333333;
    --light-bg: #f8f9fa;
    --light-gray: #f4f7f6;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: var(--text-dark);
    margin: 0;
    overflow-x: hidden;
}

a { text-decoration: none; }

/* =========================================
   2. NAVIGATION BAR
   ========================================= */
/* Default Navbar (Transparent for Hero) */
.navbar {
    padding: 1.5rem 0;
    z-index: 100; /* High z-index to sit above canvas */
    transition: background-color 0.3s;
}

/* Navbar with Dark Background (For Subpages) */
.navbar.navbar-dark-bg {
    background-color: var(--bg-dark);
    padding: 1rem 0;
}

/* Logo Sizing */
.navbar-brand img {
    height: 150px; /* Adjust this value to resize logo */
    width: auto;
}

/* Nav Links */
.nav-link {
    color: rgba(255,255,255,0.8) !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-right: 15px;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-orange) !important;
}

/* CTA Button in Nav */
.btn-nav-cta {
    background: white;
    color: var(--bg-dark);
    border-radius: 20px;
    padding: 8px 20px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-nav-cta:hover {
    background: var(--primary-orange);
    color: white;
}

/* =========================================
   3. HERO SECTIONS
   ========================================= */
/* Home Page Hero Wrapper */
#hero-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: radial-gradient(circle at center, #112d52 0%, #0a1f3a 100%);
    overflow: hidden;
    color: white;
    display: flex;
    flex-direction: column;
}

/* Animated Canvas */
#staffing-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 5;
    flex-grow: 1;
    display: flex;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 60px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.check-icon {
    background-color: var(--primary-orange);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

/* Sub-page Headers (About, Services, Contact) */
.page-header {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #002b49 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
}

.header-subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
}

/* =========================================
   4. FORMS (Home & Contact)
   ========================================= */
/* Hero Floating Form */
.form-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 30px;
    color: #333;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    border-top: 5px solid var(--primary-orange);
}

.btn-submit {
    background-color: var(--primary-orange);
    color: white;
    font-weight: 700;
    border: none;
    width: 100%;
    padding: 12px;
    border-radius: 25px;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #e65c00;
}

/* Contact Page Form Wrapper */
.contact-form-wrapper {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* Footer Form Styles */
.footer-form-label {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #ccc;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.footer-input {
    border-radius: 0;
    border: none;
    padding: 12px;
    font-size: 0.95rem;
}

.btn-cyan {
    background-color: var(--btn-cyan);
    color: #000;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    padding: 12px 40px;
    width: 150px;
    display: block;
    margin-top: 20px;
    transition: all 0.3s;
}

.btn-cyan:hover {
    background-color: #00acc1;
    color: white;
}

/* =========================================
   5. SECTIONS: EXPERTS & STATS
   ========================================= */
#section-experts {
    position: relative;
    background-color: #ffffff;
    padding: 100px 0;
    z-index: 10;
}

.stat-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.stat-card:hover { transform: translateY(-10px); }

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-pink);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #0a1f3a;
    line-height: 1.4;
}

.btn-yellow {
    background-color: #ffcc00;
    color: #0a1f3a;
    font-weight: 700;
    padding: 12px 35px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-yellow:hover {
    background-color: #e6b800;
    color: #000;
}

/* =========================================
   6. SECTIONS: INDUSTRIES & SERVICES
   ========================================= */
#section-industries {
    background: linear-gradient(180deg, #002b49 0%, #001f3f 100%);
    padding: 100px 0;
    color: white;
}

.industry-grid {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .industry-grid { grid-template-columns: repeat(5, 1fr); gap: 30px; }
}

.industry-grid li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    display: block;
    padding: 5px 0;
    transition: color 0.3s;
}

.industry-grid li a:hover { color: var(--primary-orange); }

/* About Page Service Grid */
.section-services { background-color: var(--light-bg); padding: 80px 0; }
.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    border-top: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-top: 4px solid var(--primary-orange);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.service-title { font-weight: 700; color: var(--bg-dark); margin-bottom: 15px; }

/* Services Page Rows */
.service-row { padding: 80px 0; border-bottom: 1px solid #eee; }
.service-row:nth-child(even) { background-color: var(--light-bg); }
.service-icon-large {
    font-size: 3.5rem;
    color: var(--primary-orange);
    margin-bottom: 20px;
    background: rgba(255, 102, 0, 0.1);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.service-list { list-style: none; padding: 0; margin-top: 20px; }
.service-list li { margin-bottom: 10px; display: flex; align-items: flex-start; }
.service-list li i { color: var(--primary-blue); margin-right: 10px; margin-top: 5px; }

/* =========================================
   7. SECTIONS: PROCESS, REVIEWS, AWARDS, SCALE
   ========================================= */
/* Hiring Scale */
#section-scale { background-color: var(--light-bg); padding: 100px 0; text-align: center; }
.scale-icon { width: 50px; height: 50px; border-radius: 50%; margin: 0 auto 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.dot-pink { background: #e91e63; }
.dot-gradient-pink { background: linear-gradient(135deg, #e91e63 0%, #ff6600 100%); }
.dot-gradient-orange { background: linear-gradient(135deg, #ff6600 0%, #ffcc00 100%); }
.dot-gradient-green { background: linear-gradient(135deg, #aadd00 0%, #00cc66 100%); }
.scale-card-title { font-weight: 800; font-size: 1.2rem; color: #0a1f3a; margin-bottom: 15px; }
.scale-card-desc { font-size: 0.9rem; color: #666; line-height: 1.6; padding: 0 15px; }

/* Process */
#section-process { background-color: #002b49; padding: 80px 0; color: white; text-align: center; }
.timeline-wrapper { position: relative; margin-top: 50px; }
.timeline-line { position: absolute; top: 25px; left: 10%; right: 10%; height: 4px; background-color: rgba(255, 255, 255, 0.2); z-index: 0; }
.step-circle { width: 50px; height: 50px; background-color: white; color: #002b49; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.2rem; margin: 0 auto 20px; position: relative; z-index: 1; }
.step-title { font-weight: 700; font-size: 1.1rem; margin-bottom: 10px; height: 40px; }
.step-desc { font-size: 0.85rem; color: rgba(255, 255, 255, 0.7); line-height: 1.4; padding: 0 10px; }

/* Reviews */
#section-reviews { background-color: #f9f9f9; padding: 100px 0; position: relative; }
.review-card { background: white; padding: 40px 30px; border-radius: 10px; text-align: center; box-shadow: 0 5px 25px rgba(0,0,0,0.05); height: 100%; }
.quote-icon { font-size: 2rem; color: var(--accent-pink); margin-bottom: 20px; font-family: serif; }
.review-text { font-size: 0.95rem; color: #555; line-height: 1.6; margin-bottom: 25px; min-height: 120px; }
.reviewer-name { color: var(--accent-pink); font-weight: 700; font-size: 1.1rem; margin-bottom: 0; }
.reviewer-company { font-weight: 700; color: #333; font-size: 0.9rem; }

/* Awards */
#section-awards { background-color: #002b49; padding: 80px 0; color: white; text-align: center; }
.award-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 40px; }
.award-badge { background: white; width: 150px; height: 150px; border-radius: 15px; display: flex; align-items: center; justify-content: center; padding: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.award-badge img { max-width: 100%; height: auto; }

/* =========================================
   8. MISC SECTIONS (FAQ, Contact Info, Text)
   ========================================= */
/* FAQ */
#section-faq { background-color: #f5f5f5; padding: 80px 0; }
.faq-accordion .accordion-item { border: none; background: transparent; border-bottom: 1px solid #ddd; }
.faq-accordion .accordion-button { background: transparent; font-weight: 700; color: #002b49; font-size: 1rem; padding: 20px 0; box-shadow: none; }
.faq-accordion .accordion-button:not(.collapsed) { color: var(--primary-orange); background: transparent; }
.faq-accordion .accordion-body { padding: 0 0 20px 0; color: #666; font-size: 0.95rem; }

/* Contact Page Info Boxes */
.contact-section { padding: 80px 0; }
.info-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    height: 100%;
    transition: transform 0.3s;
    border-bottom: 4px solid var(--primary-orange);
}
.info-box:hover { transform: translateY(-5px); }
.info-icon { font-size: 2.5rem; color: var(--primary-blue); margin-bottom: 20px; }
.info-title { font-weight: 700; margin-bottom: 10px; color: var(--bg-dark); }
.info-text { color: #666; font-size: 0.95rem; }
.info-text a { color: #666; text-decoration: none; transition: color 0.3s; }
.info-text a:hover { color: var(--primary-orange); }

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* About Page Text */
.section-content { padding: 80px 0; }
.lead-text { font-size: 1.15rem; color: #555; line-height: 1.8; }
.section-title { font-weight: 800; color: var(--bg-dark); margin-bottom: 30px; }

.philosophy-banner {
    background: var(--bg-dark);
    color: white;
    padding: 60px 0;
    text-align: center;
}
.philosophy-text { font-size: 1.5rem; font-weight: 300; font-style: italic; max-width: 800px; margin: 0 auto; }
.philosophy-highlight { color: var(--primary-orange); font-weight: 700; }

.methodology-section {
    background-color: var(--primary-blue);
    color: white;
    padding: 80px 0;
    text-align: center;
}
.quote-text {
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 300;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

/* =========================================
   9. FOOTER
   ========================================= */
/* Footer Top Section (Hire Talent) */
#section-hire-footer {
    background-color: #002b49;
    color: white;
    padding: 80px 0 20px;
    position: relative;
}

/* Main Footer */
footer { background-color: #1a1a1a; color: #ccc; padding: 60px 0 20px; font-size: 0.9rem; }
footer a { color: #ccc; text-decoration: none; transition: color 0.3s; }
footer a:hover { color: var(--primary-orange); }

.bottom-nav { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 60px; padding-top: 30px; }
.footer-links a { color: white; text-decoration: none; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; margin: 0 15px; letter-spacing: 1px; transition: color 0.3s; }
.footer-links a:hover { color: var(--btn-cyan); }

.social-icons a { color: white; font-size: 1.2rem; margin-right: 15px; transition: color 0.3s; }
.social-icons a:hover { color: var(--btn-cyan); }

/* --- CREATIVE FOOTER STYLES --- */
.creative-footer {
    position: relative;
    background-color: #05101f; /* Very Dark Blue */
    color: white;
    padding: 80px 0 30px;
    overflow: hidden;
}

#footer-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3; /* Subtle background effect */
    z-index: 1;
    pointer-events: none;
}

.footer-logo {
    height: 100px;
    filter: brightness(0) invert(1);
    display: block;
}

/* Heading Underline Decoration */
.heading-underline {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 2px;
}

/* Staffing Ticker Animation Styles */
.staffing-ticker {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-orange);
    display: inline-block;
    min-width: 280px;
}

.text-gradient {
    background: linear-gradient(90deg, #fff, #00bcd4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.1rem;
}

.cursor {
    display: inline-block;
    width: 2px;
    background-color: var(--primary-orange);
    animation: blink 1s infinite;
    margin-left: 5px;
    color: var(--primary-orange);
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Link Styles */
.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-orange);
    transform: translateX(5px);
}

.hover-white:hover { color: white !important; }

/* Social Buttons */
.social-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-3px);
    color: white;
}

.social-btn.linkedin:hover { background: #0077b5; }
.social-btn.twitter:hover { background: #1da1f2; }
.social-btn.facebook:hover { background: #1877f2; }
.social-btn.instagram:hover { background: #e4405f; }


.glow-on-hover {
    width: 220px;
    height: 50px;
    border: none;
    outline: none;
    color: #fff;
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.glow-on-hover:active {
    color: #000
}

.glow-on-hover:active:after {
    background: transparent;
}

.glow-on-hover:hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111;
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}