/* Ultra-Premium Design System */
:root {
    --primary: #008181;
    --primary-glow: rgba(0, 129, 129, 0.4);
    --secondary: #92e052;
    --accent: #9d2d8c;
    --dark: #0f172a;
    --light: #f8fafc;
    --white: #ffffff;
    --gray: #64748b;
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header & Navigation (Overlay Style) */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

header.sticky {
    position: fixed;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.logo img {
    height: 50px;
    filter: brightness(0) invert(1);
    transition: var(--transition);
    object-fit: contain;
}

header.sticky .logo img {
    filter: none;
    height: 50px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

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

.nav-links a {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    padding-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: var(--transition);
    opacity: 0.9;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--secondary);
}

header.sticky .nav-links a {
    color: var(--dark);
    text-shadow: none;
}

.nav-links a::after {
    display: none;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
}

header.sticky .mobile-toggle {
    color: var(--dark);
}

/* Buttons */
.btn {
    padding: 14px 36px;
    border-radius: 100px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px var(--primary-glow);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 10px 22px;
    font-size: 0.9rem;
    border-radius: 100px;
}

.btn-header-primary {
    background: var(--primary);
    color: var(--white);
    padding: 10px 25px;
    font-size: 0.9rem;
    border-radius: 100px;
}

header.sticky .btn-outline {
    border-color: var(--primary);
    color: var(--primary);
}

/* Hero Slider (Full Screen) */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.slider {
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    color: var(--white);
    width: 100%;
    max-width: 1300px;
    padding: 0 40px;
    display: flex;
    justify-content: flex-start;
}

.hero-text {
    text-align: left;
    max-width: 750px;
}

.hero-text h1 {
    font-size: 4.8rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -2px;
    animation: slideRightText 1s ease forwards;
}

.hero-text p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    max-width: 600px;
    animation: slideRightText 1.2s ease forwards;
    line-height: 1.5;
}

@keyframes slideRightText {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Sections */
.section-padding {
    padding: 120px 0;
}

.text-center h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

/* Service Grid - Modern Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: var(--white);
    padding: 60px 40px;
    border-radius: 40px;
    transition: var(--transition);
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

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

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 60px -20px rgba(0, 0, 0, 0.1);
}

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

.service-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 30px;
    display: inline-block;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

/* Stats Floating */
.stats-floating {
    background: var(--white);
    padding: 60px;
    border-radius: 40px;
    display: flex;
    justify-content: space-around;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    margin-top: -100px;
    position: relative;
    z-index: 20;
}

.stat-item h3 {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 5px;
}

/* Benefits Section */
.benefits-section {
    background: #fdfdfd;
}

.benefit-card {
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 30px;
    background: var(--white);
    border-radius: 30px;
    margin-bottom: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}

.benefit-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary);
    background: rgba(0, 129, 129, 0.05);
    padding: 20px;
    border-radius: 20px;
}

/* High-Impact Hiring Section */
.hiring-section-premium {
    background: var(--dark);
    border-radius: 50px;
    overflow: hidden;
    display: flex;
    min-height: 550px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.hiring-content {
    flex: 1;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    background: linear-gradient(90deg, var(--dark) 40%, transparent 100%);
    color: var(--white);
}

.hiring-content span {
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: block;
}

.hiring-content h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--white);
}

.hiring-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 500px;
}

.hiring-image-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: 1;
}

.hiring-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--dark) 20%, transparent 80%);
}

.hiring-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 1024px) {
    .hiring-section-premium {
        flex-direction: column;
        min-height: auto;
    }

    .hiring-image-container {
        position: relative;
        width: 100%;
        height: 350px;
    }

    .hiring-content {
        padding: 50px 30px;
        background: var(--dark);
    }
}

/* Contact & Footer */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    background: var(--white);
    border-radius: 60px;
    padding: 80px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
}

footer {
    background: var(--dark);
    padding: 120px 0 40px;
    color: #94a3b8;
}

.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: #25d366;
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.3);
    z-index: 1000;
}

/* Responsive */
/* Tablet & Mobile Header */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-right {
        gap: 20px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background: var(--white);
        flex-direction: column;
        padding: 100px 40px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: 0.5s ease;
        z-index: 2000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--dark);
        text-shadow: none;
        font-size: 1.2rem;
    }

    .mobile-toggle {
        display: block;
        z-index: 2100;
    }

    .hiring-section-premium {
        flex-direction: column;
        min-height: auto;
    }

    .hiring-image,
    .hiring-content {
        width: 100%;
    }

    .hiring-image {
        height: 350px;
    }

    .container {
        padding: 0 25px;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

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

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

@media (max-width: 768px) {
    .nav-cta {
        display: none;
        /* Hide button on small mobile for space */
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

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

    .stats-floating {
        flex-direction: column;
        gap: 40px;
        padding: 40px;
        text-align: center;
    }
}