/* NexHire Global - Main Stylesheet */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(30, 30, 30, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
}

nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

nav a {
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 6px;
    transition: all 0.2s;
}

nav a:hover,
nav a.active {
    color: #00A8E8;
    background: rgba(0,168,232,0.15);
}

.phone-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #00A8E8;
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.phone-btn:hover {
    background: #0077B6;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,168,232,0.3);
}

.phone-btn svg {
    width: 16px;
    height: 16px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 40px 80px;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 100%),
                url('../images/7822.jpg') center/cover no-repeat;
    z-index: 0;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(0,168,232,0.1) 0%, 
        transparent 50%, 
        rgba(0,212,255,0.1) 100%);
    animation: gradientShift 8s ease infinite;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

@keyframes gradientShift {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 64px;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 16px;
    max-width: 650px;
}

.hero h1 .highlight {
    color: #00D4FF;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 500;
    color: rgba(255,255,255,0.95);
    margin-bottom: 20px;
}

.hero p {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.search-box {
    display: flex;
    max-width: 520px;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    margin-bottom: 28px;
}

.search-box input {
    flex: 1;
    padding: 16px 24px;
    border: none;
    font-size: 15px;
    outline: none;
}

.search-box input::placeholder {
    color: #888;
}

.search-box button {
    background: #00A8E8;
    color: white;
    border: none;
    padding: 0 20px;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-box button:hover {
    background: #0077B6;
}

.search-box button svg {
    width: 20px;
    height: 20px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #00A8E8;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #0077B6;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,168,232,0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s;
    border: 1px solid rgba(255,255,255,0.5);
    cursor: pointer;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

/* Welcome Section */
.welcome {
    padding: 100px 40px;
    background: #f8fafc;
    text-align: center;
}

.welcome-container {
    max-width: 850px;
    margin: 0 auto;
}

.welcome-label {
    font-size: 13px;
    font-weight: 600;
    color: #00A8E8;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.welcome h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 24px;
}

.welcome h2 span {
    color: #00A8E8;
}

.welcome p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 32px;
}

.welcome-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
}

.welcome .btn-secondary {
    color: #333;
    border-color: #ccc;
}

.welcome .btn-secondary:hover {
    background: #f0f0f0;
}

/* Services Section */
.services {
    padding: 100px 40px;
    background: white;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.section-header h2 span {
    color: #00A8E8;
}

.section-header p {
    font-size: 16px;
    color: #666;
    max-width: 550px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 36px 28px;
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.service-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 14px;
}

.service-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-card .btn-primary {
    padding: 10px 22px;
    font-size: 14px;
}

/* Why Choose Us Section */
.why-choose {
    padding: 100px 40px;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%),
                url('../images/7821.jpg') center/cover no-repeat;
    background-attachment: fixed;
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose .section-header h2,
.why-choose .section-header p {
    color: white;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.why-card {
    background: rgba(255,255,255,0.95);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.2);
    background: white;
}

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00A8E8, #0077B6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 28px;
    font-weight: 700;
}

.why-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 40px;
    background: white;
}

.how-container {
    max-width: 1200px;
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    position: relative;
    text-align: center;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00A8E8, #0077B6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(0,168,232,0.3);
}

.step-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* For Candidates Section */
.for-candidates {
    padding: 100px 40px;
    background: #f8fafc;
}

.candidates-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.candidates-image {
    width: 100%;
    height: 500px;
    background: url('../images/7819.jpg') center/cover no-repeat;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

.candidates-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.candidates-content h2 span {
    color: #00A8E8;
}

.candidates-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
    margin: 30px 0;
}

.features-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 15px;
    color: #555;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00A8E8;
    font-weight: 700;
    font-size: 18px;
}

/* For Employers Section */
.for-employers {
    padding: 100px 40px;
    background: white;
}

.employers-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.employers-image {
    width: 100%;
    height: 500px;
    background: url('../images/7823.jpg') center/cover no-repeat;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

.employers-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.employers-content h2 span {
    color: #00A8E8;
}

.employers-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* News Section */
.news-section {
    padding: 100px 40px;
    background: #f8fafc;
}

.news-container {
    max-width: 1200px;
    margin: 0 auto;
}

.empty-state {
    text-align: center;
    padding: 60px 40px;
    background: white;
    border-radius: 12px;
}

.empty-state svg {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    opacity: 0.3;
    stroke: #00A8E8;
}

.empty-state h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.empty-state p {
    font-size: 15px;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
}

/* Blog Section */
.blog-section {
    padding: 100px 40px;
    background: white;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 40px;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%),
                url('../images/7824.jpg') center/cover no-repeat;
    background-attachment: fixed;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials .section-header h2,
.testimonials .section-header p {
    color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: rgba(255,255,255,0.95);
    padding: 32px;
    border-radius: 12px;
    transition: all 0.3s;
}

.testimonial-card:hover {
    background: white;
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}

.testimonial-text {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
}

.testimonial-role {
    font-size: 13px;
    color: #00A8E8;
}

/* Office Section */
.office-section {
    padding: 100px 40px;
    background: #f8fafc;
}

.office-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.office-image {
    width: 100%;
    height: 500px;
    background: url('../images/7820.jpg') center/cover no-repeat;
    border-radius: 16px;
    margin-top: 40px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

/* CTA Section */
.cta-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    text-align: center;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-section h2 span {
    color: #00D4FF;
}

.cta-section p {
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 28px;
}

/* Contact Section */
.contact {
    padding: 80px 40px;
    background: white;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #444;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s;
    outline: none;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #00A8E8;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.checkbox-group input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #00A8E8;
}

.checkbox-group label {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

.checkbox-group a {
    color: #00A8E8;
    text-decoration: none;
}

.contact-info > div {
    margin-bottom: 24px;
}

.contact-info h4 {
    font-size: 13px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.contact-info p,
.contact-info a {
    font-size: 14px;
    color: #333;
    text-decoration: none;
    line-height: 1.6;
}

.contact-info a:hover {
    color: #00A8E8;
}

.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #00A8E8;
    color: white;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    margin-top: 12px;
    transition: all 0.2s;
}

.directions-btn:hover {
    background: #0077B6;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, rgba(0,168,232,0.1), rgba(0,212,255,0.1));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00A8E8;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0,168,232,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.social-links a:hover::before {
    width: 100px;
    height: 100px;
}

.social-links a:hover {
    background: linear-gradient(135deg, #00A8E8, #00D4FF);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,168,232,0.4),
                0 0 20px rgba(0,212,255,0.3);
}

.social-links a svg {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
}

.social-links a:hover svg {
    transform: scale(1.1) rotate(5deg);
}

/* Footer */
footer {
    background: #1a1a2e;
    color: white;
    padding: 60px 40px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand .logo-text {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    display: block;
}

.footer-brand .logo-text span {
    font-weight: 400;
    color: rgba(255,255,255,0.7);
}

.footer-brand p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-brand .copyright {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}

.footer-column h4 {
    font-size: 13px;
    font-weight: 600;
    color: white;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: #00D4FF;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: #00D4FF;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #333;
    margin: 5px 0;
    transition: all 0.3s;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 24px;
    }

    nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .services-grid,
    .why-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .candidates-container,
    .employers-container,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 24px 60px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .welcome,
    .services,
    .why-choose,
    .how-it-works,
    .for-candidates,
    .for-employers,
    .news-section,
    .blog-section,
    .testimonials,
    .office-section,
    .cta-section,
    .contact {
        padding: 60px 24px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons,
    .welcome-buttons {
        flex-direction: column;
    }
}

/* Signup Button Hover Effects */
button[type="submit"] {
    transition: all 0.3s ease;
}

button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2) !important;
}

button[type="submit"]:active {
    transform: translateY(0);
}

button[onclick="viewAllData()"]:hover {
    opacity: 1 !important;
}

/* Form Input Focus Styles */
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #3498db !important;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}
