* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #111;
    --white: #fff;
    --gray: #f8f9fa;
    --text: #444;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--primary);
    overflow-x: hidden;
}

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

/* ========== PRELOADER ========== */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s, visibility 0.6s;
}

#preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    width: 70px;
    animation: bounceIn 1s ease;
}

.preloader-bar {
    width: 120px;
    height: 3px;
    background: #eee;
    border-radius: 10px;
    margin-top: 20px;
    overflow: hidden;
}

.preloader-progress {
    height: 100%;
    width: 0;
    background: var(--primary);
    border-radius: 10px;
    animation: loading 1.5s ease forwards;
}

@keyframes loading {
    to { width: 100%; }
}

@keyframes bounceIn {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    z-index: 1000;
    padding: 12px 0;
    transition: all 0.3s;
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 38px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-btn {
    font-size: 0.85rem;
    padding: 10px 22px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

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

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.04;
    background: var(--primary);
}

.shape-1 { width: 500px; height: 500px; top: -200px; right: -100px; }
.shape-2 { width: 300px; height: 300px; bottom: -100px; left: -50px; }
.shape-3 { width: 200px; height: 200px; top: 50%; left: 50%; }

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: var(--gray);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid #eee;
}

.hero-content h1 {
    font-size: 3.4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.highlight {
    background: linear-gradient(135deg, #111 0%, #555 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 28px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-avatars {
    display: flex;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: -8px;
    border: 2px solid var(--white);
}

.avatar:first-child { margin-left: 0; }

.hero-trust span {
    font-size: 0.85rem;
    color: var(--text);
}

.hero-product {
    margin-top: 20px;
}

.product-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #eef2ff, #f0fdf4);
    border: 1px solid #e0e7ff;
    border-radius: 14px;
    text-decoration: none;
    color: var(--primary);
    transition: all 0.3s;
    max-width: 420px;
}

.product-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(79,70,229,0.12);
    border-color: #c7d2fe;
}

.product-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    flex-shrink: 0;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; box-shadow: 0 0 6px #10b981; }
    50% { opacity: 0.3; box-shadow: none; }
}

.product-badge-text {
    font-size: 0.6rem;
    font-weight: 700;
    background: #4f46e5;
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.product-badge-name {
    font-size: 0.88rem;
    font-weight: 700;
}

.product-badge-desc {
    font-size: 0.7rem;
    opacity: 0.6;
    display: none;
}

.product-badge i {
    font-size: 0.7rem;
    opacity: 0.4;
    margin-left: auto;
    color: #4f46e5;
}

@media (min-width: 576px) {
    .product-badge {
        flex-wrap: wrap;
    }
    .product-badge-desc {
        display: block;
        width: 100%;
        margin-top: -4px;
        padding-left: 20px;
    }
}

/* ========== MOCKUP ========== */
.hero-visual {
    display: flex;
    justify-content: center;
}

.mockup-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
}

.product-showcase {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    animation: heroFloat 4s ease-in-out infinite;
    border: 4px solid #111;
}

.product-showcase img {
    width: 100%;
    display: block;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(0.5deg); }
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: floatCard 3s ease-in-out infinite;
}

.card-1 {
    top: 20px;
    right: -20px;
}

.card-1 i { color: #10b981; }

.card-2 {
    bottom: 40px;
    left: -20px;
    animation-delay: 1s;
}

.card-2 i { color: #f59e0b; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ========== STATS — Design: Dark gradient + glowing number counters ========== */
.stats-section {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(79,70,229,0.15), transparent 70%);
    top: -100px;
    right: -50px;
    border-radius: 50%;
}

.stats-section::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(14,165,233,0.1), transparent 70%);
    bottom: -80px;
    left: -30px;
    border-radius: 50%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 30px 15px;
    border-radius: 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    transition: all 0.4s;
}

.stat-item:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.stat-icon {
    margin-bottom: 12px;
}

.stat-icon i {
    font-size: 1.6rem;
    background: linear-gradient(135deg, #4f46e5, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item .stat-number,
.stat-item .stat-plus {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--white);
    display: inline;
    text-shadow: 0 0 20px rgba(79,70,229,0.3);
}

.stat-item p {
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========== ABOUT — Design: Left-right split layout with vertical line accent ========== */
.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-tag {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-desc {
    color: var(--text);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    font-size: 0.95rem;
}

.about {
    padding: 50px 0;
    background: var(--white);
    position: relative;
}

.about .section-header {
    text-align: left;
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 4px solid var(--primary);
}

.about .section-desc {
    margin: 0;
}

.expertise-grid {
    display: flex;
    gap: 14px;
    margin-bottom: 30px;
}

.expertise-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    padding: 28px 12px;
    background: var(--gray);
    border-radius: 14px;
    border: 1px solid #eee;
    transition: all 0.4s;
}

.expertise-item:hover {
    background: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: transparent;
}

.expertise-item:hover .expertise-icon {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
}

.expertise-item:hover .expertise-icon i {
    color: #fff;
}

.expertise-item:hover h4 {
    color: #fff;
}

.expertise-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--clr) 12%, transparent);
    border: 2px solid color-mix(in srgb, var(--clr) 25%, transparent);
    transition: all 0.4s;
}

.expertise-icon i {
    font-size: 1.15rem;
    color: var(--clr);
    transition: color 0.4s;
}

.expertise-item h4 {
    font-size: 0.8rem;
    font-weight: 600;
    transition: color 0.4s;
}

.about-bottom {
    text-align: center;
}

.commitment-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 22px 32px;
    border-radius: 60px;
    border: 1px solid #eee;
    max-width: 750px;
    margin: 0 auto;
    text-align: left;
}

.commitment-card i {
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.commitment-card p {
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.6;
}

/* ========== SERVICES ========== */
.services {
    padding: 50px 0;
}

.services-grid {
    display: flex;
    gap: 16px;
}

.service-card {
    flex: 1;
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 24px 20px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--clr);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-color: transparent;
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    background: color-mix(in srgb, var(--clr) 10%, transparent);
}

.service-icon i {
    font-size: 1.2rem;
    color: var(--clr);
}

.service-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.service-tags span {
    background: var(--gray);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text);
    border: 1px solid #eee;
    transition: all 0.3s;
}

.service-tags span:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* ========== HRMS PRODUCT ========== */
.hrms-section {
    padding: 50px 0;
    background: var(--gray);
}

.hrms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hrms-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.hrms-desc {
    color: var(--text);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.hrms-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.hrms-feat {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 500;
    border: 1px solid #eee;
    transition: all 0.3s;
}

.hrms-feat:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    border-color: transparent;
}

.hrms-feat i { font-size: 0.95rem; }

.hrms-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hrms-visual { display: flex; justify-content: center; }

.hrms-img-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.hrms-img-wrapper img {
    width: 100%;
    display: block;
    border-radius: 16px;
}



/* ========== TEAM ========== */
.team-section {
    padding: 50px 0;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.team-card {
    text-align: center;
    padding: 30px 24px;
    background: var(--gray);
    border-radius: 16px;
    border: 1px solid #eee;
    transition: all 0.3s;
    min-width: 160px;
    flex: 1;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.team-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    background: color-mix(in srgb, var(--clr) 12%, transparent);
}

.team-avatar i { font-size: 1.4rem; color: var(--clr); }
.team-card h4 { font-size: 0.85rem; font-weight: 600; }

/* ========== INDUSTRIES — Design: Dark bg + hexagonal icon grid + neon glow ========== */
.industries-section {
    padding: 50px 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.industries-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(244,63,94,0.08), transparent 70%);
    bottom: -150px;
    right: -100px;
    border-radius: 50%;
}

.industries-section .section-header { position: relative; z-index: 1; }
.industries-section .section-tag { background: rgba(255,255,255,0.1); color: #fff; }
.industries-section .section-title { color: #fff; }
.industries-section .highlight {
    background: linear-gradient(135deg, #f43f5e, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    position: relative;
    z-index: 1;
}

.industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 28px 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s;
    cursor: default;
}

.industry-item:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.industry-item i {
    font-size: 1.6rem;
    filter: drop-shadow(0 0 8px currentColor);
}

.industry-item span {
    color: rgba(255,255,255,0.7);
    font-size: 0.78rem;
    font-weight: 500;
}

/* ========== WHY CHOOSE US ========== */
.why-section {
    padding: 50px 0;
}

.why-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.why-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 24px;
    background: var(--gray);
    border-radius: 14px;
    border: 1px solid #eee;
    transition: all 0.3s;
}

.why-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border-color: transparent;
}

.why-card i { font-size: 1.3rem; flex-shrink: 0; }
.why-card h4 { font-size: 0.88rem; font-weight: 600; }

/* ========== FOUNDER ========== */
.founder-section {
    padding: 50px 0;
}

.founder-card {
    display: flex;
    align-items: center;
    gap: 30px;
    background: var(--gray);
    border-radius: 20px;
    padding: 30px 36px;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid #eee;
}

.founder-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--primary);
}

.founder-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-tag {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #4f46e5;
}

.founder-info h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin: 4px 0 6px;
}

.founder-info p {
    font-size: 0.82rem;
    color: var(--text);
    line-height: 1.5;
    margin-bottom: 12px;
}

.founder-contact {
    display: flex;
    gap: 12px;
}

.founder-contact a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid #ddd;
    transition: all 0.3s;
}

.founder-contact a:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

@media (max-width: 768px) {
    .founder-card { flex-direction: column; text-align: center; padding: 24px 20px; }
    .founder-contact { justify-content: center; }
}

/* ========== CONTACT ========== */
.contact-section {
    padding: 50px 0;
    background: var(--gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 14px 18px;
    border: 1px solid #eee;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.9rem;
    background: var(--white);
    transition: border-color 0.3s;
    outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
}

.contact-form textarea { resize: vertical; }

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid #eee;
}

.info-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--clr) 12%, transparent);
    flex-shrink: 0;
}

.info-icon i { font-size: 1.1rem; color: var(--clr); }
.info-card h4 { font-size: 0.85rem; font-weight: 700; }
.info-card p { font-size: 0.85rem; color: var(--text); }

/* ========== FOOTER ========== */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-logo { height: 36px; filter: brightness(0) invert(1); margin-bottom: 12px; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

.footer-links h4 { font-size: 0.9rem; margin-bottom: 14px; }
.footer-links a {
    display: block;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 8px;
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--white); }

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--white);
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.5); }

/* ========== POPUPS ========== */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9998;
}

.popup-overlay.active {
    display: flex;
}

.popup-box {
    background: var(--white);
    border-radius: 18px;
    padding: 36px 32px;
    width: 90%;
    max-width: 400px;
    position: relative;
    animation: popIn 0.3s ease;
}

@keyframes popIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.popup-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #999;
    line-height: 1;
}

.popup-box h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.popup-box p {
    font-size: 0.85rem;
    color: var(--text);
    margin-bottom: 20px;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.popup-form input,
.popup-form select {
    padding: 12px 16px;
    border: 1px solid #eee;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.3s;
}

.popup-form input:focus,
.popup-form select:focus {
    border-color: var(--primary);
}

.thank-box {
    text-align: center;
}

.thank-icon {
    font-size: 3rem;
    color: #10b981;
    margin-bottom: 12px;
}

/* ========== FIXED IT TEAM ANIMATION ========== */
.it-scene {
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 1;
    pointer-events: none;
    width: 100px;
}

.dev-svg {
    width: 100%;
    opacity: 0.85;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.1));
}

.code-anim {
    animation: codeType 2.5s infinite;
    transform-origin: left;
}
.c1 { animation-delay: 0s; }
.c2 { animation-delay: 0.5s; }
.c3 { animation-delay: 1s; }
.c4 { animation-delay: 1.5s; }

@keyframes codeType {
    0% { transform: scaleX(0); opacity: 0; }
    30% { transform: scaleX(1); opacity: 1; }
    80% { transform: scaleX(1); opacity: 1; }
    100% { transform: scaleX(0); opacity: 0; }
}

.arm-left {
    animation: typeLeft 0.6s infinite alternate;
    transform-origin: right center;
}

.arm-right {
    animation: typeRight 0.6s infinite alternate;
    transform-origin: left center;
}

@keyframes typeLeft {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-1.5px) rotate(-2deg); }
}

@keyframes typeRight {
    0% { transform: translateY(-1.5px) rotate(2deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

.steam {
    animation: steamRise 2s infinite;
    opacity: 0;
}

.s1 { animation-delay: 0s; }
.s2 { animation-delay: 0.8s; }

@keyframes steamRise {
    0% { opacity: 0; transform: translateY(0); }
    30% { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-6px); }
}

@media (max-width: 768px) {
    .it-scene { display: none; }
}

/* ========== FLOATING CONTACT ICONS ========== */
.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.float-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.float-icon:hover {
    transform: scale(1.1);
}

.float-icon.whatsapp {
    background: #25d366;
}

.float-icon.call {
    background: var(--primary);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    body { overflow-x: hidden; }
    .nav-links, .nav-btn { display: none; }
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        border-bottom: 1px solid #eee;
        gap: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }
    .nav-toggle { display: block; }
    .nav-container { padding: 0 15px; }
    .hero { padding: 90px 0 40px; min-height: auto; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 20px; }
    .hero-buttons { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-content h1 { font-size: 1.8rem; }
    .hero-content p { font-size: 0.9rem; }
    .hero-badge { font-size: 0.75rem; }
    .hero-visual { margin-top: 20px; }
    .mockup-wrapper { max-width: 90%; }
    .product-showcase { border-width: 3px; }
    .floating-card { display: none; }
    .product-badge { max-width: 100%; flex-wrap: wrap; gap: 8px; padding: 10px 14px; }
    .product-badge-desc { display: none; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .stat-item { padding: 20px 10px; }
    .stat-item .stat-number, .stat-item .stat-plus { font-size: 1.8rem; }
    .section-title { font-size: 1.5rem; }
    .about .section-header { padding-left: 14px; }
    .expertise-grid { flex-wrap: wrap; gap: 10px; }
    .expertise-item { flex: 1 1 45%; padding: 18px 10px; }
    .expertise-icon { width: 40px; height: 40px; }
    .commitment-card { border-radius: 14px; padding: 16px 20px; flex-direction: column; text-align: center; }
    .services-grid { flex-direction: column; }
    .service-card { max-width: 100%; }
    .hrms-grid { grid-template-columns: 1fr; gap: 25px; }
    .hrms-title { font-size: 1.5rem; }
    .hrms-features { gap: 8px; }
    .hrms-feat { padding: 8px 12px; font-size: 0.75rem; }
    .team-grid { flex-wrap: wrap; }
    .team-card { flex: 1 1 45%; min-width: 140px; padding: 20px 14px; }
    .industries-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .industry-item { padding: 18px 8px; }
    .industry-item i { font-size: 1.2rem; }
    .industry-item span { font-size: 0.7rem; }
    .why-grid { gap: 10px; }
    .why-card { padding: 14px 16px; }
    .why-card i { font-size: 1.1rem; }
    .why-card h4 { font-size: 0.8rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 25px; }
    .floating-contact { right: 12px; bottom: 12px; }
    .float-icon { width: 44px; height: 44px; font-size: 1.1rem; }
    .btn { padding: 12px 20px; font-size: 0.82rem; }
}

@media (max-width: 380px) {
    .hero-content h1 { font-size: 1.5rem; }
    .expertise-item { flex: 1 1 100%; }
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .team-card { flex: 1 1 100%; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}
