* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #1e293b;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 80px 0;
}

.section-padding-lg {
    padding: 120px 0;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-cta {
    margin-left: 2rem;
    display: flex;
    align-items: center;
}

.nav-cta .btn {
    white-space: nowrap;
}

.nav-logo h2 {
    color: white;
    font-size: 1.8rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img, .nav-logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.company-name {
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

.tagline {
    color: #f97316;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #f97316;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0ea5e9 100%);
    color: white;
    padding: 120px 0 120px;
    text-align: center;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0ea5e9;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    line-height: 1.7;
}

.hero-logo {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.hero-logo-img {
    height: 120px;
    width: auto;
    max-width: 400px;
    object-fit: contain;
}

.hero-logo-text {
    text-align: center;
    line-height: 1.3;
}

.hero-company-name {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    margin-bottom: 5px;
}

.hero-tagline {
    color: #f97316;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: white;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0284c7, #0369a1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
    background: white;
    color: #1e293b;
    border-color: white;
}

.btn-outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.8);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Why Choose Us Section */
.why-choose-us {
    background: #f8fafc;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1000px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Industries Served Section */
.industries-served {
    background: white;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .industries-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

.industry-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.industry-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.industry-image i {
    font-size: 2rem;
    color: white;
}

.industry-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.industry-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.industry-roles {
    list-style: none;
    padding: 0;
}

.industry-roles li {
    color: #475569;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding-left: 1.5rem;
}

.industry-roles li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0ea5e9;
    font-weight: bold;
}

.industry-roles li:last-child {
    border-bottom: none;
}

/* Consulting Services Section */
.consulting-services {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.consulting-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="consulting-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23e2e8f0" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23consulting-pattern)"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.consulting-services .container {
    position: relative;
    z-index: 2;
}

.consulting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.consulting-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.consulting-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #f97316);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.consulting-card:hover::before {
    transform: scaleX(1);
}

.consulting-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.consulting-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.consulting-card:hover .consulting-icon {
    transform: scale(1.1) rotate(5deg);
}

.consulting-icon i {
    font-size: 1.5rem;
    color: white;
}

.consulting-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.consulting-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.consulting-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.consulting-features li {
    color: #475569;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.consulting-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1rem;
}

.consulting-cta {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.consulting-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.consulting-cta-content {
    position: relative;
    z-index: 2;
}

.consulting-cta h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.consulting-cta p {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* How It Works Section */
.how-it-works {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 16px rgba(14, 165, 233, 0.3);
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.step-content p {
    color: #64748b;
    line-height: 1.6;
}

.step-arrow {
    color: #0ea5e9;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.step-arrow i {
    opacity: 0.6;
}

/* Testimonials Section */
.testimonials {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

.testimonial-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid #0ea5e9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #475569;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: #64748b;
    font-size: 0.9rem;
}

/* About Story Section */
.about-story {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text .section-header {
    text-align: left;
    margin-bottom: 2rem;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 1.5rem;
}

.values-list {
    margin-top: 2rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #1e293b;
}

.value-item i {
    color: #0ea5e9;
    font-size: 1.2rem;
    width: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0ea5e9;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

/* FAQ Section */
.faq {
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 700px) {
    .faq-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

.faq-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid #0ea5e9;
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #475569;
    line-height: 1.6;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1e3a8a;
}

.about p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat h3 {
    font-size: 3rem;
    color: #f97316;
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 1.1rem;
    color: #666;
}

/* Services Section */
.services {
    padding: 100px 0;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e3a8a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 3rem;
    color: #f97316;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e3a8a;
}

/* Jobs Section */
.jobs {
    padding: 100px 0;
    background: #f8fafc;
}

.jobs-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.jobs h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e3a8a;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
}

@media (max-width: 900px) {
    .jobs-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

.job-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-card-link:hover {
    transform: translateY(-5px);
    text-decoration: none;
    color: inherit;
}

.job-card-link:hover .job-card {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.job-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 200px;
    transition: box-shadow 0.3s ease;
    cursor: pointer;
}

.job-card h3 {
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    line-height: 1.4;
}

.job-card p {
    flex-grow: 1;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.job-type {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #f97316;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
}

/* Desktop fix for job title spacing */
.job-card h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    padding-right: 120px; /* Add space for the tag */
    line-height: 1.3;
}

/* Mobile fix for job type overlap */
@media (max-width: 768px) {
    .job-type {
        position: static;
        display: inline-block;
        margin-bottom: 1rem;
        margin-top: 0;
    }

    .job-card h3 {
        margin-top: 0;
        padding-right: 0; /* Remove padding on mobile */
    }
}

.jobs .btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e3a8a;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.feature-card i {
    font-size: 3.5rem;
    color: #f97316;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1e3a8a;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e3a8a;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #f97316;
    margin-right: 1rem;
    width: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

/* Phone Input Group - Combined Box */
.phone-input-group {
    display: flex;
    border: 2px solid #e5e7eb;
    border-radius: 5px;
    overflow: hidden;
    transition: border-color 0.3s;
    background-color: white;
}

.phone-input-group:focus-within {
    border-color: #3b82f6;
}

.country-code-select {
    flex: 0 0 auto;
    min-width: 200px;
    padding: 1rem;
    border: none;
    background-color: #f8fafc;
    font-size: 1rem;
    cursor: pointer;
    border-right: 1px solid #e5e7eb;
}

.country-code-select:focus {
    outline: none;
    background-color: #f1f5f9;
}

.phone-input-group input[type="tel"] {
    flex: 1;
    padding: 1rem;
    border: none;
    font-size: 1rem;
    background-color: white;
}

.phone-input-group input[type="tel"]:focus {
    outline: none;
}

/* Footer */
.footer {
    background: #1e3a8a;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #f97316;
}

/* Thank You Page */
.thank-you-section {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-content i {
    font-size: 5rem;
    color: #10b981;
    margin-bottom: 2rem;
    display: block;
}

.thank-you-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.thank-you-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.thank-you-content .btn {
    margin-top: 2rem;
}

/* Candidate Submission Page */
.candidate-submission {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    padding-top: 140px;
}

.submission-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.submission-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
}

.info-card i {
    font-size: 2rem;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.info-card p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

.candidate-form {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section h3 {
    color: #1e293b;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-section h3 i {
    color: #3b82f6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: end;
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    box-sizing: border-box;
    min-height: 48px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-actions {
    text-align: center;
    padding-top: 1rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-note i {
    color: #10b981;
}

/* Candidate Success Page */
.candidate-success-section {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.success-content {
    max-width: 800px;
    margin: 0 auto;
}

.success-content i {
    font-size: 5rem;
    color: #10b981;
    margin-bottom: 2rem;
    display: block;
}

.success-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.success-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.next-steps {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
}

.next-steps h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #fbbf24;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 1rem;
}

.step {
    text-align: center;
}

.step i {
    font-size: 2rem;
    color: #fbbf24;
    margin-bottom: 1rem;
    display: block;
}

.step h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: white;
}

.step p {
    font-size: 0.9rem;
    color: #cbd5e1;
    line-height: 1.5;
}

.action-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Enhanced Mobile Responsiveness */

/* Prevent horizontal overflow */
* {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

.container {
    padding: 0 16px;
    max-width: 100%;
}

/* Mobile-first responsive design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.15);
        z-index: 1000;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-container {
        padding: 0 16px;
    }

    .nav-cta {
        margin-left: 1rem;
    }

    .nav-cta .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
        border-radius: 25px;
    }

    .hero {
        padding: 100px 0 80px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0 16px;
        margin-bottom: 2rem;
    }

    .nav-logo {
        gap: 8px;
    }

    .logo-img, .nav-logo-img {
        height: 32px;
        max-width: 100px;
    }

    .company-name {
        font-size: 1rem;
    }

    .tagline {
        font-size: 0.55rem;
        letter-spacing: 0.3px;
    }

    .hero-logo-img {
        height: 70px;
        max-width: 200px;
        margin-bottom: 1rem;
    }

    .hero-company-name {
        font-size: 1.6rem;
    }

    .hero-tagline {
        font-size: 0.8rem;
        letter-spacing: 0.8px;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
        padding: 0 16px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .section-header h2 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .section-header p {
        font-size: 1rem;
        padding: 0 16px;
    }

    .section-padding {
        padding: 3rem 0;
    }

    .features-grid {
        padding: 0 16px;
    }

    .feature-card {
        padding: 1.5rem;
        text-align: center;
    }

    .industries-grid {
        padding: 0 16px;
    }

    .industry-card {
        padding: 1.5rem;
    }

    .process-steps {
        flex-direction: column;
        gap: 2rem;
        padding: 0 16px;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }

    .step {
        min-width: auto;
        max-width: none;
        padding: 0 16px;
    }

    .testimonials-grid {
        padding: 0 16px;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 16px;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        padding: 0 16px;
    }

    .stat-card {
        padding: 1.2rem 0.8rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .faq-grid {
        padding: 0 16px;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 16px;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        width: 100%;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .phone-input-group {
        flex-direction: column;
        gap: 0;
    }

    .country-code-select {
        min-width: 100%;
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        border-radius: 8px 8px 0 0;
    }

    #phoneInput {
        border-radius: 0 0 8px 8px;
        border-top: none;
    }

    .jobs-grid {
        padding: 0 16px;
        gap: 1.5rem;
    }

    .job-card {
        padding: 1.5rem;
        min-height: auto;
    }

    .job-card h3 {
        font-size: 1.2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .job-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* Consulting Services Mobile */
    .consulting-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .consulting-card {
        padding: 1.5rem;
    }

    .consulting-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .consulting-icon i {
        font-size: 1.2rem;
    }

    .consulting-card h3 {
        font-size: 1.2rem;
    }

    .consulting-cta {
        padding: 2rem 1.5rem;
    }

    .consulting-cta h3 {
        font-size: 1.5rem;
    }

    .consulting-cta p {
        font-size: 1rem;
    }

    /* Candidate Submission Mobile */
    .submission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .candidate-form {
        padding: 1.5rem;
        margin: 0;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .info-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
    }

    .candidate-submission {
        padding-top: 120px;
    }
}

/* File Upload Styles */
.file-upload-wrapper {
    position: relative;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed #cbd5e1;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    background: #f8fafc;
    cursor: pointer;
    min-height: 120px;
}

.file-upload-label:hover {
    border-color: #0ea5e9;
    background: #f0f9ff;
}

.file-upload-label i {
    font-size: 2rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.file-upload-text {
    font-weight: 600;
    color: #1e293b;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.file-upload-info {
    font-size: 0.9rem;
    color: #64748b;
}

.file-upload-container {
    position: relative;
    border: 2px dashed #cbd5e1;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    background: #f8fafc;
    cursor: pointer;
}

.file-upload-container:hover {
    border-color: #0ea5e9;
    background: #f0f9ff;
}

.file-upload-container.dragover {
    border-color: #0ea5e9;
    background: #e0f2fe;
    transform: scale(1.02);
}

.file-upload-container input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.file-upload-info i {
    font-size: 2rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.file-upload-text {
    font-weight: 600;
    color: #1e293b;
    font-size: 1.1rem;
}

.file-upload-formats {
    font-size: 0.9rem;
    color: #64748b;
}

.file-upload-selected {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #e0f2fe;
    border-radius: 6px;
    border: 1px solid #0ea5e9;
}

.file-upload-selected i {
    color: #0ea5e9;
    font-size: 1.2rem;
}

.file-upload-selected .file-name {
    flex: 1;
    font-weight: 500;
    color: #1e293b;
}

.file-remove {
    background: none;
    border: none;
    color: #ef4444;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.file-remove:hover {
    background: #fee2e2;
}

/* Mobile file upload styles */
@media (max-width: 768px) {
    .file-upload-container {
        padding: 1.5rem 1rem;
    }

    .file-upload-info i {
        font-size: 1.5rem;
    }

    .file-upload-text {
        font-size: 1rem;
    }

    .file-upload-formats {
        font-size: 0.8rem;
    }

    .footer .container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 0 16px;
    }

    .social-links {
        justify-content: center;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-company-name {
        font-size: 1.4rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .container {
        padding: 0 12px;
    }

    .nav-container {
        padding: 0 12px;
    }

    .nav-cta {
        margin-left: 0.5rem;
    }

    .nav-cta .btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* Very small devices - hide nav CTA if needed */
@media (max-width: 360px) {
    .nav-cta {
        display: none;
    }
}