/* ================= GLOBAL STYLES ================= */
:root {
    --primary: #2563eb;
    /* Royal Blue */
    --primary-dark: #1e40af;
    --primary-light: #eff6ff;
    --secondary: #10b981;
    /* Emerald Green */
    --accent: #f59e0b;
    /* Amber */
    --dark: #0f172a;
    /* Slate 900 */
    --dark-light: #1e293b;
    --text-main: #334155;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

body {
    background: var(--bg-white);
    color: var(--text-main);
    scroll-behavior: smooth;
    overflow-x: hidden;
    line-height: 1.6;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.dark-bg {
    background: var(--bg-light);
}

/* Typography */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-title span {
    color: var(--primary);
}

.section-title.center {
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

/* ================= HEADER ================= */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    padding: 15px 8%;
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.95);
}

header .logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.5px;
}

header .logo .dot {
    color: var(--primary);
}

header .logo-img {
    width: 400px;
    height: 45px;
    object-fit: contain;
    display: block;
    margin-left: -120px;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav ul li a {
    font-weight: 500;
    color: var(--text-main);
    font-size: 15px;
}

/* Navigation Authentication Buttons */
.nav-auth-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 10px;
}

nav ul li a.nav-login-btn,
nav ul li button.nav-login-btn {
    background: transparent;
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    text-decoration: none;
}

nav ul li a.nav-login-btn:hover,
nav ul li button.nav-login-btn:hover {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-dark);
}

/* Logged-in user name display in nav */
.nav-username {
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

nav ul li a.nav-signup-btn {
    background: var(--primary);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.39);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

nav ul li a.nav-signup-btn:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.23);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.39);
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.23);
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: var(--dark);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--dark);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

/* ================= AI BADGE (Hero) ================= */
.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(96, 165, 250, 0.5);
    color: #93c5fd;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
    letter-spacing: 0.5px;
}

/* ================= AI STRIP BANNER ================= */
.ai-strip {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #0f172a 100%);
    padding: 60px 8%;
    border-top: 1px solid rgba(37, 99, 235, 0.3);
    border-bottom: 1px solid rgba(37, 99, 235, 0.3);
}

.ai-strip-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.ai-strip-icon {
    font-size: 3.5rem;
    color: #60a5fa;
    flex-shrink: 0;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        text-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
    }

    50% {
        text-shadow: 0 0 30px rgba(96, 165, 250, 1), 0 0 60px rgba(96, 165, 250, 0.5);
    }
}

.ai-strip-text {
    flex: 1;
}

.ai-strip-text h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.ai-strip-text p {
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .ai-strip-inner {
        flex-direction: column;
        text-align: center;
    }
}


.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 120px 8% 60px;
    position: relative;
    overflow: hidden;
    background: var(--dark);
    /* Fallback color */
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.hero-video-wrapper video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    pointer-events: none;
    border: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.6) 100%);
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 900px;
}

/* Decorative background elements */
.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
    z-index: 3;
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-content h1 .highlight {
    background: linear-gradient(120deg, #60a5fa, #93c5fd);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.25rem;
    color: #e2e8f0;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Hero Slogan */
.hero-slogan {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.hero-slogan span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    backdrop-filter: blur(6px);
    letter-spacing: 0.5px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    transition: background 0.3s, transform 0.2s;
}

.hero-slogan span:hover {
    background: rgba(37, 99, 235, 0.5);
    transform: translateY(-2px);
}

.hero-slogan span i {
    color: #60a5fa;
    font-size: 1rem;
}

.slogan-dot {
    color: #60a5fa !important;
    background: transparent !important;
    border: none !important;
    font-size: 1.4rem !important;
    padding: 0 !important;
    font-weight: 700 !important;
    backdrop-filter: none !important;
}

/* ================= STATS SECTION ================= */
.stats {
    padding: 0 8%;
    margin-top: -50px;
    position: relative;
    z-index: 20;
}

.stat-container {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.stat-box .stat-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
    opacity: 0.8;
}

.stat-box h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark);
    display: inline-block;
    line-height: 1;
}

.stat-box span {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-box p {
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 5px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* ================= SECTIONS ================= */
section {
    padding: 100px 8%;
}

/* ================= ABOUT ================= */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--dark);
}

.about-features li i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.about-image {
    position: relative;
    padding: 20px 0 20px 20px;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: block;
    position: relative;
    z-index: 1;
}

.about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    z-index: 0;
}

/* ================= VISION & MISSION ================= */
.vision-mission {
    background: var(--bg-light);
}

.vm-container {
    max-width: 1100px;
    margin: 0 auto;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.vm-card {
    background: white;
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.vm-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    margin: 0 auto 24px;
    transition: var(--transition);
}

.vm-card:hover .vm-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.vm-card h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 18px;
    font-weight: 700;
}

.vm-card p {
    font-size: 1.05rem;
    color: var(--text-main);
    line-height: 1.8;
    font-style: italic;
}

/* ================= SERVICES ================= */
.service-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
    z-index: 2;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.card-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.4));
    z-index: 0;
}

.card-icon,
.card h3,
.card p {
    position: relative;
    z-index: 1;
}

.card:hover::after {
    transform: scaleX(1);
}

.card {
    background-size: cover;
    background-position: center;
    color: white;
    border: none;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    color: white;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
    transition: var(--transition);
}

.card:hover .card-icon {
    background: var(--primary);
    color: white;
}

.card h3 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 15px;
}

.card p {
    color: #cbd5e1;
}

/* ================= PROCESS ================= */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
}

.step {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--border);
    position: relative;
    transition: var(--transition);
}

.step:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 20px auto;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

.step h4 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.step p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ================= CLIENT MARQUEE ================= */
.marquee-row {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 30px auto;
    overflow: hidden;
    position: relative;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.marquee-inner {
    display: flex;
    min-width: 200%;
    animation: marqueeScroll 35s linear infinite;
}

.marquee-inner:hover {
    animation-play-state: paused;
}

.marquee-reverse {
    animation-direction: reverse;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

.fade-left,
.fade-right {
    position: absolute;
    top: 0;
    height: 100%;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.fade-left {
    left: 0;
    background: linear-gradient(to right, var(--bg-light), transparent);
}

.fade-right {
    right: 0;
    background: linear-gradient(to left, var(--bg-light), transparent);
}

/* Client Card */
.client-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-md);
    margin: 0 15px;
    width: 350px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.client-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.client-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.client-name {
    font-weight: 700;
    color: var(--dark);
}

.client-handle {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 500;
}

.client-text {
    font-size: 1rem;
    color: var(--text-main);
    font-style: italic;
    flex-grow: 1;
}

/* .client-date {
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    padding-top: 15px;
} */

/* ================= CONTACT ================= */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    /* Removed gap, merging columns visually */
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.contact-info {
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.9)), url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?q=80&w=800') center/cover;
    color: white;
    padding: 60px 50px;
}

.contact-info .section-title {
    color: white;
}

.contact-info>p {
    color: #cbd5e1;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-item p {
    color: #cbd5e1;
}

.contact-form {
    padding: 60px 50px;
}

form .input-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

form input,
form textarea {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 20px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-light);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
}

form select {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 20px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-light);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23667eea' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

form select:focus,
form input:focus,
form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px var(--primary-light);
}

/* ================= CAREERS PAGE STYLES ================= */

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    justify-content: center;
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
}

.hero-stat .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Culture Section */
.culture-section {
    padding: 100px 8%;
    background: var(--bg-light);
}

.culture-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.culture-video {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.video-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    cursor: pointer;
}

.video-placeholder i {
    font-size: 4rem;
    opacity: 0.9;
    transition: transform 0.3s;
}

.video-placeholder:hover i {
    transform: scale(1.2);
}

.video-placeholder span {
    display: block;
    margin-top: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

.culture-content .section-title {
    text-align: left;
}

.culture-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin: 20px 0 30px;
}

.culture-values {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.culture-value {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.culture-value i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.culture-value h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.culture-value p {
    font-size: 0.95rem;
    margin: 0;
}

/* Process Steps */
.apply-process {
    padding: 100px 8%;
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 60px auto 0;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -20px;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(102, 126, 234, 0.15);
    line-height: 1;
    margin-bottom: 10px;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon i {
    color: white;
    font-size: 1.5rem;
}

.process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Job Icons */
.job-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.job-icon i {
    font-size: 1.3rem;
    color: #667eea;
}

.job-list-item {
    display: flex;
    align-items: center;
}

.job-meta span {
    margin-right: 20px;
}

.job-meta i {
    color: #667eea;
    margin-right: 5px;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 8%;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 60px auto 0;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: rgba(102, 126, 234, 0.1);
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 1rem;
    margin-bottom: 3px;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.cta-buttons .btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #667eea;
}

/* Responsive */
@media (max-width: 1024px) {
    .culture-container {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-step::after {
        display: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

.careers-hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 120px 8% 60px;
    position: relative;
    overflow: hidden;
}

.careers-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(102, 126, 234, 0.4) 100%);
    z-index: 2;
}

.careers-hero .hero-content {
    text-align: center;
    max-width: 900px;
    position: relative;
    z-index: 10;
}

.careers-hero .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    color: white;
    line-height: 1.1;
}

.careers-hero .hero-content h1 .highlight {
    background: linear-gradient(120deg, #60a5fa, #93c5fd);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.careers-hero .hero-content p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #e2e8f0;
}

.perks-section {
    padding: 100px 8%;
    background: var(--bg-light);
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.perk-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.perk-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.perk-icon {
    width: 70px;
    height: 70px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.perk-card:hover .perk-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.perk-card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: var(--dark);
}

.jobs-section {
    padding: 100px 8%;
}

/* ---- Job Filter Bar ---- */
.job-filter-bar {
    max-width: 1000px;
    margin: 40px auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(147, 197, 253, 0.25);
    border-radius: 16px;
    padding: 20px 24px;
}

.job-search-wrap {
    flex: 1 1 220px;
    position: relative;
    display: flex;
    align-items: center;
}

.job-search-wrap i {
    position: absolute;
    left: 14px;
    color: #93c5fd;
    font-size: 0.9rem;
}

.job-search-wrap input {
    width: 100%;
    padding: 12px 16px 12px 38px;
    border: 1.5px solid rgba(147, 197, 253, 0.4);
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.7);
    color: #e2e8f0;
    font-size: 0.95rem;
    outline: none;
    transition: border 0.2s, box-shadow 0.2s;
}

.job-search-wrap input::placeholder {
    color: #64748b;
}

.job-search-wrap input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.job-filter-bar select {
    flex: 1 1 160px;
    padding: 12px 36px 12px 14px;
    border: 1.5px solid rgba(147, 197, 253, 0.4);
    border-radius: 10px;
    background-color: rgba(15, 23, 42, 0.7);
    color: #e2e8f0;
    font-size: 0.95rem;
    outline: none;
    cursor: pointer;
    transition: border 0.2s, box-shadow 0.2s;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2393c5fd' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.job-filter-bar select option {
    background: #0f172a;
    color: #e2e8f0;
}

.job-filter-bar select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.job-count-label {
    max-width: 1000px;
    margin: 10px auto 0;
    color: #93c5fd;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 0 4px;
    letter-spacing: 0.02em;
}

.no-jobs-msg {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 60px 20px;
    color: #64748b;
    text-align: center;
}

.no-jobs-msg i {
    font-size: 2.5rem;
    opacity: 0.4;
}

.no-jobs-msg p {
    font-size: 1rem;
}

/* ================= JOB ACTION BUTTONS ================= */
.job-action {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.job-action .btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.job-action .btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

/* ================= VIEW REQUIREMENTS BUTTON ================= */
.btn-requirements {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-main);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-requirements:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-requirements i {
    font-size: 0.85rem;
}

/* ================= JOB REQUIREMENTS MODAL ================= */
.requirements-modal-container {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 720px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .requirements-modal-container {
    transform: translateY(0);
}

.requirements-modal-header {
    padding: 30px 35px 20px;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: white;
    z-index: 5;
    border-radius: 16px 16px 0 0;
}

.req-modal-badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.req-modal-badge.tech { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.req-modal-badge.ops { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.req-modal-badge.support { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }
.req-modal-badge.finance { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.req-modal-badge.ai { background: rgba(37, 99, 235, 0.1); color: #2563eb; }
.req-modal-badge.hr { background: rgba(236, 72, 153, 0.1); color: #ec4899; }

.requirements-modal-header h3 {
    font-size: 1.5rem;
    color: var(--dark);
    font-weight: 700;
}

.requirements-modal-body {
    padding: 25px 35px;
}

.req-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}

.req-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--bg-light);
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--text-main);
    font-weight: 500;
}

.req-info-item i {
    color: var(--primary);
    font-size: 0.95rem;
    width: 18px;
    text-align: center;
}

.req-section {
    margin-bottom: 24px;
}

.req-section h4 {
    font-size: 1.05rem;
    color: var(--dark);
    margin-bottom: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.req-section h4 i {
    color: var(--primary);
    font-size: 1rem;
}

.req-section p {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.7;
}

.req-section ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.req-section ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.93rem;
    color: var(--text-main);
    line-height: 1.5;
}

.req-section ul li i {
    color: var(--secondary);
    font-size: 0.75rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.req-section ul li .fa-angle-right {
    color: var(--primary);
}

.req-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.req-skill-tag {
    background: var(--primary-light);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.req-skill-tag:hover {
    background: var(--primary);
    color: white;
}

.requirements-modal-footer {
    padding: 20px 35px 25px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    position: sticky;
    bottom: 0;
    background: white;
    border-radius: 0 0 16px 16px;
}

.requirements-modal-footer .btn {
    padding: 12px 28px;
    font-size: 0.95rem;
}

.requirements-modal-footer .btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 2px solid var(--border);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-main);
}

.requirements-modal-footer .btn-outline:hover {
    border-color: var(--dark);
    color: var(--dark);
}

/* ---- Click-to-Call Floating Button ---- */
.call-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--primary, #2563eb);
    color: #fff;
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
    font-size: 1rem;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    animation: callPulse 2.5s infinite;
}

.call-float-btn i {
    font-size: 1.1rem;
}

.call-float-btn:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.55);
    animation: none;
}

@keyframes callPulse {

    0%,
    100% {
        box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
    }

    50% {
        box-shadow: 0 8px 32px rgba(37, 99, 235, 0.75), 0 0 0 8px rgba(37, 99, 235, 0.12);
    }
}

@media (max-width: 600px) {
    .call-float-label {
        display: none;
    }

    .call-float-btn {
        padding: 16px;
        border-radius: 50%;
    }
}

/* ---- End new additions ---- */

.jobs-container {
    max-width: 1000px;
    margin: 20px auto 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.job-list-item {
    background: white;
    border-radius: 16px;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.job-list-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(37, 99, 235, 0.2);
}

.job-department {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.job-department.tech {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.job-department.sales {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.job-department.market {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.job-department.finance {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}
.job-department.ai{
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}
.job-info {
    flex: 1;
    text-align: left;
}


.job-info h3 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 10px;
    text-align: left;
}

.job-meta {
    display: flex;
    gap: 20px;
    color: var(--text);
    font-size: 0.95rem;
    text-align: left;
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.job-meta i {
    color: var(--primary);
}

.career-cta {
    padding: 80px 8%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    text-align: center;
    color: white;
}

.career-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.career-cta p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .job-list-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 25px;
    }

    .job-action {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .job-action .btn,
    .job-action .btn-outline,
    .job-action .btn-requirements {
        width: 100%;
        justify-content: center;
    }
}

/* ================= AI CHATBOT WIDGET ================= */
.chat-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(102, 126, 234, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0);
    }
}

.chat-toggle:hover {
    transform: scale(1.1);
    animation: none;
}

.chat-toggle i {
    color: white;
    font-size: 24px;
}

.chat-toggle.active i::before {
    content: "\f00d";
}

.chat-window {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 380px;
    height: 520px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    z-index: 9998;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
}

.chat-window.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chat-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-avatar i {
    color: white;
    font-size: 22px;
}

.chat-title {
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.chat-status {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #00e676;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.chat-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.chat-close i {
    color: white;
    font-size: 14px;
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-message {
    display: flex;
    gap: 10px;
    max-width: 85%;
}

.chat-message.user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chat-message.bot .message-avatar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.chat-message.bot .message-avatar i {
    color: white;
    font-size: 14px;
}

.chat-message.user .message-avatar {
    background: #10b981;
}

.chat-message.user .message-avatar i {
    color: white;
    font-size: 14px;
}

.message-content {
    background: white;
    padding: 12px 15px;
    border-radius: 15px;
    border-top-left-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.chat-message.user .message-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-top-left-radius: 15px;
    border-top-right-radius: 4px;
}

.message-text {
    font-size: 14px;
    line-height: 1.5;
    white-space: pre-wrap;
}

.message-time {
    font-size: 10px;
    opacity: 0.6;
    margin-top: 5px;
}

.chat-quick-actions {
    padding: 10px 15px;
    background: white;
    border-top: 1px solid #eee;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.chat-quick-actions button {
    background: #f0f0ff;
    border: none;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: #667eea;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
}

.chat-quick-actions button:hover {
    background: #667eea;
    color: white;
}

.chat-input-area {
    padding: 15px;
    background: white;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
}

#chat-input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

#chat-input:focus {
    border-color: #667eea;
}

.chat-send {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.chat-send:hover {
    transform: scale(1.1);
}

.chat-send i {
    color: white;
    font-size: 16px;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .chat-window {
        width: calc(100% - 20px);
        right: 10px;
        bottom: 80px;
        height: calc(100vh - 120px);
    }

    .chat-toggle {
        bottom: 20px;
        right: 20px;
    }
}

/* ================= MAP SECTION ================= */
.map-section {
    padding: 80px 8% 0;
    background: var(--light);
}

.map-header {
    text-align: center;
    margin-bottom: 40px;
}

.map-header p {
    color: var(--gray);
    font-size: 1.05rem;
    margin-top: 10px;
}

.map-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
    filter: grayscale(10%);
}

.map-overlay-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #fff;
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    max-width: 360px;
    z-index: 10;
}

.map-card-icon {
    background: var(--primary);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 4px;
}

.map-card-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.map-card-info p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 12px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.82rem;
}

@media (max-width: 600px) {
    .map-overlay-card {
        position: static;
        max-width: 100%;
        border-radius: 0 0 12px 12px;
        box-shadow: none;
        border-top: 1px solid #eee;
    }

    .map-wrapper {
        border-radius: 12px;
    }
}

footer {
    background: var(--dark);
    color: white;
    padding: 80px 8% 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col .logo {
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.footer-col .logo .dot {
    color: var(--primary);
}

.footer-col .logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.footer-col p {
    color: #cbd5e1;
    margin-bottom: 20px;
}

.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #cbd5e1;
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-address i {
    color: var(--primary);
    margin-top: 3px;
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #cbd5e1;
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    margin-bottom: 0;
    border-radius: 8px 0 0 8px;
    border: none;
}

.newsletter-form button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    font-size: 0.9rem;
}

.footer-legal a {
    margin-left: 20px;
}

.footer-legal a:hover {
    color: white;
}

/* ================= ANIMATIONS ================= */
[data-animate] {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-animate="fade-up"] {
    transform: translateY(40px);
}

[data-animate="fade-right"] {
    transform: translateX(-40px);
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

.is-visible {
    opacity: 1;
    transform: translate(0, 0) !important;
}

/* ================= REQUIREMENTS PAGE ================= */
.req-page-hero {
    padding: 140px 8% 60px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    color: white;
}

.req-page-hero-inner {
    max-width: 900px;
}

.req-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #93c5fd;
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 24px;
    transition: var(--transition);
}

.req-back-link:hover {
    color: white;
    transform: translateX(-4px);
}

.req-page-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.req-page-badge.tech { background: rgba(59, 130, 246, 0.2); color: #93c5fd; }
.req-page-badge.ops { background: rgba(16, 185, 129, 0.2); color: #6ee7b7; }
.req-page-badge.support { background: rgba(139, 92, 246, 0.2); color: #c4b5fd; }
.req-page-badge.finance { background: rgba(245, 158, 11, 0.2); color: #fcd34d; }
.req-page-badge.ai { background: rgba(37, 99, 235, 0.2); color: #93c5fd; }
.req-page-badge.hr { background: rgba(236, 72, 153, 0.2); color: #f9a8d4; }
.req-page-badge.market { background: rgba(139, 92, 246, 0.2); color: #c4b5fd; }

.req-page-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.req-page-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.req-page-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #e2e8f0;
    backdrop-filter: blur(6px);
}

.req-page-meta span i {
    color: #60a5fa;
    font-size: 0.85rem;
}

.req-page-body {
    padding: 60px 8% 100px;
    background: var(--bg-light);
}

.req-page-container {
    max-width: 1100px;
    margin: 0 auto;
}

.req-page-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

.req-page-main {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.req-page-section {
    margin-bottom: 36px;
}

.req-page-section:last-child {
    margin-bottom: 0;
}

.req-page-section h2 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-light);
}

.req-page-section h2 i {
    color: var(--primary);
    font-size: 1.1rem;
}

.req-page-section p {
    font-size: 1.05rem;
    color: var(--text-main);
    line-height: 1.8;
}

.req-page-section ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.req-page-section ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.98rem;
    color: var(--text-main);
    line-height: 1.6;
    padding: 12px 16px;
    background: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition);
}

.req-page-section ul li:hover {
    background: var(--primary-light);
}

.req-page-section ul li i {
    color: var(--secondary);
    font-size: 0.8rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.req-page-section ul li .fa-angle-right {
    color: var(--primary);
}

.req-page-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.req-page-skill-tag {
    background: var(--primary-light);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.req-page-skill-tag:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Sidebar */
.req-page-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.req-sidebar-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.req-sidebar-card h3 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.req-sidebar-card p {
    font-size: 0.93rem;
    color: var(--text-muted);
    margin-bottom: 18px;
    line-height: 1.5;
}

.btn-outline-req {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-outline-req:hover {
    background: var(--primary);
    color: white;
}

.req-share-buttons {
    display: flex;
    gap: 10px;
}

.req-share-buttons a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    font-size: 1.1rem;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.req-share-buttons a:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-3px);
}

@media (max-width: 900px) {
    .req-page-grid {
        grid-template-columns: 1fr;
    }

    .req-page-hero h1 {
        font-size: 2rem;
    }

    .req-page-meta {
        gap: 10px;
    }

    .req-page-meta span {
        font-size: 0.82rem;
        padding: 6px 14px;
    }
}

@media (max-width: 600px) {
    .req-page-hero {
        padding: 120px 5% 40px;
    }

    .req-page-body {
        padding: 40px 5% 60px;
    }

    .req-page-main {
        padding: 24px;
    }

    .req-page-hero h1 {
        font-size: 1.6rem;
    }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .vm-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 5%;
    }

    .menu-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px 5%;
        box-shadow: var(--shadow-md);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-in-out;
    }

    nav.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .hero {
        padding: 100px 5% 60px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .stats {
        margin-top: 30px;
        padding: 0 5%;
    }

    section {
        padding: 60px 5%;
    }

    .contact-info,
    .contact-form {
        padding: 40px 30px;
    }

    form .input-group {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* ================= AUTHENTICATION (LOGIN) ================= */
.auth-body {
    background: var(--bg-light);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
overflow-y: auto;
}

.back-home {
    position: absolute;
    top: 30px;
    left: 40px;
    font-weight: 500;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 100;
}

.back-home:hover {
    color: var(--primary);
    transform: translateX(-5px);
}

.auth-wrapper {
    display: flex;
    width: 100%;
    max-width: 1100px;
    min-height: 650px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
    z-index: 10;
}

/* Left Side Branding */
.auth-info {
    flex: 1;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9) 0%, rgba(30, 64, 175, 0.95) 100%), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=1080') center/cover no-repeat;
    color: white;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.auth-info::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -50px;
    left: -100px;
}

.auth-info::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -150px;
    right: -100px;
}

.auth-info-content {
    position: relative;
    z-index: 2;
}

.auth-info h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.auth-info p {
    font-size: 1.1rem;
    color: var(--primary-light);
    line-height: 1.6;
    margin-bottom: 40px;
}

.auth-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}

.auth-stat-item i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
}

/* Right Side Form */
.auth-form-container {
    flex: 1;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

.auth-form-box h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.auth-subtitle {
    color: var(--text-muted);
    margin-bottom: 35px;
}

.input-group-auth {
    margin-bottom: 20px;
}

.input-group-auth label {
    display: block;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.input-with-icon input {
    width: 100%;
    padding: 14px 20px 14px 50px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--bg-light);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
}

.input-with-icon input:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px var(--primary-light);
}

.auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: var(--text-main);
}

.forgot-link {
    color: var(--primary);
    font-weight: 500;
}

.forgot-link:hover {
    text-decoration: underline;
}

.auth-btn {
    padding: 15px;
    font-size: 1.05rem;
    border-radius: 12px;
}

.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 30px 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border);
}

.auth-divider span {
    padding: 0 15px;
}

.social-login {
    display: flex;
    gap: 15px;
}

.btn-social {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
}

.btn-social:hover {
    border-color: var(--dark);
    background: var(--bg-light);
}

.btn-social img {
    height: 18px;
}

.auth-footer {
    text-align: center;
    margin-top: 30px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.auth-footer a {
    color: var(--primary);
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Auth Responsive */
@media (max-width: 900px) {
    .auth-wrapper {
        flex-direction: column;
        border-radius: 20px;
    }

    .auth-info {
        padding: 40px 30px;
    }

    .auth-form-container {
        padding: 40px 30px;
    }

    .back-home {
        position: static;
        margin-bottom: 20px;
    }

    .auth-body {
        align-items: flex-start;
    }
}

/* ================= JOB APPLICATION MODAL ================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f1f5f9;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}

.modal-close:hover {
    background: #e2e8f0;
    transform: rotate(90deg);
}

.modal-close i {
    color: #64748b;
    font-size: 16px;
}

.modal-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid #e2e8f0;
}

.modal-header h3 {
    font-size: 24px;
    color: #0f172a;
    margin-bottom: 8px;
}

.modal-header h3 span {
    color: var(--primary);
}

.modal-header p {
    color: #64748b;
    font-size: 14px;
}

.job-application-form {
    padding: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="url"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.2s ease;
    background: #f8fafc;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group small {
    display: block;
    margin-top: 6px;
    color: #94a3b8;
    font-size: 12px;
}

.file-upload {
    position: relative;
}

.file-upload input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-label {
    border: 2px dashed #cbd5e1;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.2s ease;
    background: #f8fafc;
}

.file-upload-label i {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 8px;
    display: block;
}

.file-upload-label span {
    color: #64748b;
    font-size: 14px;
}

.file-upload:hover .file-upload-label {
    border-color: var(--primary);
    background: rgba(102, 126, 234, 0.05);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--primary);
}

.checkbox-group label {
    font-weight: 400;
    color: #64748b;
    margin-bottom: 0;
}

.checkbox-group a {
    color: var(--primary);
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.job-application-form .btn-block {
    width: 100%;
    padding: 14px 24px;
    font-size: 16px;
    margin-top: 10px;
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .modal-container {
        width: 95%;
        max-height: 85vh;
    }

    .modal-header,
    .job-application-form {
        padding: 20px;
    }

    .requirements-modal-container {
        width: 95%;
    }

    .requirements-modal-header,
    .requirements-modal-body {
        padding: 20px;
    }

    .requirements-modal-footer {
        padding: 15px 20px 20px;
        flex-direction: column;
    }

    .requirements-modal-footer .btn {
        width: 100%;
        justify-content: center;
    }

    .req-info-grid {
        grid-template-columns: 1fr;
    }
}