/*
Theme Name: Numoo HR
Description: A professional single-page WordPress theme for Numoo HR with dark theme and gold accents
Version: 1.0
Author: Numoo HR
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

body {
    font-family: 'Montserrat', Arial, sans-serif;
    background: #0A1621;
    color: #fff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 22, 33, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #E6B23A;
    text-decoration: none;
}

.custom-logo-link{
	max-width: 220px;
}

.custom-logo-link img{
	width: 100%;
	height: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #E6B23A;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-top: 60px;
}

.hero-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 4rem 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #ccc;
}

/* Button Styles */
.button {
    display: inline-block;
    background: #E6B23A;
    color: #0A1621;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.button:hover {
    background: #f4c95a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 178, 58, 0.3);
}

.cta-button {
    position: absolute;
    bottom: -15rem;
    right: 2rem;
    animation: pulse 1.5s infinite alternate;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(230, 178, 58, 0.5); }
    100% { box-shadow: 0 0 0 16px rgba(230, 178, 58, 0); }
}

/* Section Styles */
section {
    padding: 4rem 0;
}

section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 600;
    color: #E6B23A;
}

/* About Section */
#about {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #eee;
}

.placeholder-box {
    background: #16202B;
    height: 300px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

/* Verticals Section */
#verticals {
    max-width: 1000px;
    margin: 4rem auto;
    text-align: center;
    padding: 0 1rem;
}

.verticals-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Team Section */
#team {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1rem;
}

.team-card {
    background: #16202B;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
}

.team-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(230, 178, 58, 0.2);
}

.team-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
}

.team-name {
    margin-bottom: 0.5rem;
    color: #E6B23A;
    font-weight: 600;
}

.team-role {
    color: #ccc;
}

/* Clients Section */
#clients {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1rem;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.client-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.client-card:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 32px rgba(230, 178, 58, 0.2);
}

.client-logo {
    max-width: 100px;
    height: auto;
    margin-bottom: 1rem;
}

.client-name {
    color: #E6B23A;
    font-weight: 600;
}

.client-description {
    color: #fff;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Testimonials Section */
#testimonials {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 1rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    color: #fff;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 2px solid #E6B23A;
    object-fit: cover;
}

.testimonial-text {
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #E6B23A;
}

/* Contact Section */
#contact {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form {
    background: #16202B;
    padding: 2rem;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.25rem;
    color: #E6B23A;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border-radius: 4px;
    border: 1px solid #333;
    background: #0A1621;
    color: #fff;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #E6B23A;
}

.contact-info {
    background: #16202B;
    padding: 2rem;
    border-radius: 12px;
}

.contact-info h3 {
    margin-bottom: 1rem;
    color: #E6B23A;
}

.contact-item {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.contact-item i {
    color: #E6B23A;
    margin-right: 0.5rem;
    width: 20px;
}

/* Footer */
footer {
    padding: 2rem 0;
    text-align: center;
    background: #0A1621;
    color: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
}

.social-links {
    margin-bottom: 1rem;
}

.social-links a {
    color: #E6B23A;
    margin: 0 1rem;
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #f4c95a;
}

/* Swiper Styles */
.swiper {
    width: 100%;
    padding-bottom: 3rem;
}

.swiper-slide {
    height: auto;
}

.swiper-pagination-bullet {
    background: #E6B23A;
}

.swiper-button-next,
.swiper-button-prev {
    color: #E6B23A;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-button {
        font-size: 1rem;
        bottom: 1rem;
        right: 1rem;
    }
    
    section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .nav-container {
        padding: 0 0.5rem;
    }
    
    .container {
        padding: 0 0.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
} 