:root {
    --primary: #00cc88;
    --secondary: #0066ff;
    --dark: #121212;
    --light: #f8f9fa;
    --accent: #ff6b6b;
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--dark);
    color: var(--light);
    overflow-x: hidden;
    width: 100%;
    min-width: 320px;
    position: relative;
}

@media (max-width: 768px) {
    body {
        overflow-x: clip;
    }
    
    .navbar {
        padding: 1rem;
    }
    
    .navbar.scrolled {
        padding: 0.8rem 1rem;
    }
}

.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 15s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-100px) translateX(50px);
    }
    50% {
        transform: translateY(-50px) translateX(100px);
    }
    75% {
        transform: translateY(-150px) translateX(-50px);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: background-color 0.3s, padding 0.3s;
}

.navbar.scrolled {
    background-color: rgba(18, 18, 18, 0.95);
    padding: 1rem 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.logo-link {
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo {
    display: flex;
    align-items: center;
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.logo-img {
    height: 40px;
    margin-right: 10px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--light);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link.active {
    color: var(--primary);
    font-weight: 600;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px;
    cursor: pointer;
    position: relative;
    z-index: 1001;
    width: 44px;
    height: 44px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

/* Menu Icon */
.menu-icon {
    width: 20px;
    height: 18px;
    position: relative;
    margin: 0 auto;
    transform: rotate(0deg);
    transition: transform 0.3s ease-in-out;
}

.menu-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--light);
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

/* Setting positions for the three lines */
.menu-icon span:nth-child(1) {
    top: 0;
}

.menu-icon span:nth-child(2) {
    top: 8px;
}

.menu-icon span:nth-child(3) {
    top: 16px;
}

/* Hover effect */
.mobile-menu-btn:hover .menu-icon span {
    background: var(--primary);
}

/* Animation for transforming to X */
.mobile-menu-btn.active .menu-icon span:nth-child(1) {
    top: 8px;
    transform: rotate(135deg);
}

.mobile-menu-btn.active .menu-icon span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-btn.active .menu-icon span:nth-child(3) {
    top: 8px;
    transform: rotate(-135deg);
}

/* Mobile Menu */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(300px, 80vw);
        height: 100%;
        background: rgba(18, 18, 18, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        padding: 2rem max(2rem, env(safe-area-inset-right)) 2rem max(2rem, env(safe-area-inset-left));
        transition: right 0.3s ease;
        z-index: 999;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

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

    .nav-link {
        font-size: 1.2rem;
        opacity: 0;
        transform: translateX(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-links.active .nav-link {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links.active .nav-link:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active .nav-link:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.active .nav-link:nth-child(3) { transition-delay: 0.3s; }
    .nav-links.active .nav-link:nth-child(4) { transition-delay: 0.4s; }
    .nav-links.active .nav-link:nth-child(5) { transition-delay: 0.5s; }
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.highlight {
    color: var(--primary);
    font-weight: 600;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 204, 136, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    margin-left: 1rem;
}

.btn-outline:hover {
    color: white;
}

/* Global Reach Section */
.global-reach {
    padding: 6rem 2rem;
    background-color: rgba(255, 255, 255, 0.02);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.location-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: transform 0.3s;
}

.location-item:hover {
    transform: translateY(-10px);
}

.location-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.location-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.location-item p {
    color: rgba(255, 255, 255, 0.8);
}

/* Contact Section */
.contact {
    padding: 6rem 2rem;
}

.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 0 2rem;
}

.contact-info {
    display: grid;
    gap: 2rem;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--primary);
}

.contact-form {
    display: grid;
    gap: 1.5rem;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: var(--light);
    font-size: 1rem;
}

.form-group textarea {
    height: 120px;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

/* Headquarters Section */
.headquarters-section {
    text-align: center;
    margin: 4rem auto 2rem;
    max-width: 1200px;
}

.addresses-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 400px));
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.address-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.address-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(0, 204, 136, 0.2);
}

.address-box i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.address-box p {
    color: var(--light);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .addresses-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .address-box {
        min-width: 100%;
        margin: 0 auto;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--primary);
    font-size: 2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Sections */
section {
    padding: 8rem 2rem;
    position: relative;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* About Section */
.about {
    background: linear-gradient(to bottom, var(--dark), #1a1a1a);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 4rem 0;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    width: 250px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 204, 136, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 1.2rem;
    color: var(--light);
}

/* Services Section */
.services {
    background: #1a1a1a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    outline: none;
    tabindex: 0;
}

.service-card:hover,
.service-card:focus-visible {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 204, 136, 0.2);
    border-color: var(--primary);
}

.service-card:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.service-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    flex-grow: 1;
}

/* Industries Section */
.industries {
    background: linear-gradient(to bottom, #1a1a1a, #222222);
}

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

.industry-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.industry-tab {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

.industry-tab:hover {
    background: rgba(0, 204, 136, 0.1);
    border-color: var(--primary);
}

.industry-tab.active {
    background: var(--primary);
    color: white;
}

.industry-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.industry-content.active {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.industry-image {
    width: 100%;
    max-width: 600px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.industry-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.industry-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    max-width: 800px;
}

/* Find an AI Consultant Section */
.find-consultant {
    background: #222222;
    overflow: hidden;
    padding: 6rem 2rem;
}


.consultant-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.consultant-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 204, 136, 0.2);
    border-color: var(--primary);
}

.consultant-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.consultant-avatar i {
    font-size: 3rem;
    color: var(--dark);
}

.consultant-name {
    font-size: 1.5rem;
    color: var(--light);
    margin-bottom: 0.5rem;
}

.consultant-speciality {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.consultant-info {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.schedule-btn {
    width: 100%;
    margin-top: auto;
}


/* Global Reach Section */
.global-reach {
    background: #222222;
    overflow: hidden;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.country-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    padding: 0.75rem;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    outline: none;
    border: 1px solid transparent;
    tabindex: 0;
}

.country-item:hover,
.country-item:focus-visible {
    background: rgba(0, 204, 136, 0.1);
    transform: translateY(-5px);
    border-color: var(--primary);
}

.country-item:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.globe-container {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    perspective: 1000px;
}

.globe {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotateY(0deg) rotateX(20deg);
    }
    to {
        transform: rotateY(360deg) rotateX(20deg);
    }
}

.globe-point {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: var(--primary);
    border-radius: 50%;
    transform-style: preserve-3d;
}

.connection-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transform-origin: left center;
    animation: pulse-line 3s infinite;
}

@keyframes pulse-line {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
    }
}


/* Contact Section */
.contact {
    background: linear-gradient(to bottom, #222222, var(--dark));
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 2rem;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    color: var(--light);
}

.contact-text {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: transform 0.3s;
}

.contact-method:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
}

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 50%;
    margin-right: 1rem;
}

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

.contact-info-text {
    color: var(--light);
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--light);
}

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

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--light);
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--light);
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.12);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-success {
    display: none;
    padding: 1rem;
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    border-radius: 6px;
    color: #2ecc71;
    margin-top: 1rem;
}

.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: max(2rem, env(safe-area-inset-right, 2rem));
    width: 50px;
    height: 50px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
    z-index: 998;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1001;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--dark);
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    color: var(--light);
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--primary);
}

.whatsapp-form {
    margin-top: 1.5rem;
}

/* Footer */
.footer {
    background: rgba(18, 18, 18, 0.95);
    padding: 4rem 2rem;
    text-align: center;
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo .logo-img {
    height: 50px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-link {
    color: var(--light);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-link {
    color: var(--light);
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-link:hover {
    color: var(--primary);
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 7rem;
    right: max(2rem, env(safe-area-inset-right, 2rem));
    width: 40px;
    height: 40px;
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    z-index: 997;
}

@media (max-width: 768px) {
    .scroll-top-btn {
        bottom: 5.5rem;
        right: max(1rem, env(safe-area-inset-right, 1rem));
    }
    
    .whatsapp-btn {
        right: max(1rem, env(safe-area-inset-right, 1rem));
        bottom: 1rem;
    }
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-top-btn:hover {
    background: var(--gradient);
    border-color: var(--primary);
    color: var(--dark);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 204, 136, 0.3);
}

.scroll-top-btn:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.infographic {
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 30px;
    position: relative;
    margin: 2rem 0;
    width: 50%;
}

.timeline-item:nth-child(even) {
    align-self: flex-end;
    justify-content: flex-start;
    padding-left: 30px;
    padding-right: 0;
    margin-left: 50%;
}

.timeline-dot {
    position: absolute;
    right: -11px;
    top: 50%;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    transform: translateY(-50%);
    border: 4px solid var(--dark);
    z-index: 1;
}

.timeline-item:nth-child(even) .timeline-dot {
    right: auto;
    left: -11px;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    width: 100%;
    transition: transform 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-content:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.timeline-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.timeline-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Career Page Styles */
.career-page .hero-section {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 3rem;
}

.career-page .hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.career-page .lead {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

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

.job-listings {
    margin-top: 3rem;
}

.job-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(0, 204, 136, 0.2);
}

.job-card h3 {
    color: var(--light);
    margin-bottom: 1rem;
}

.job-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.requirements {
    margin: 1.5rem 0;
}

.requirements h4 {
    margin-bottom: 0.5rem;
    color: var(--light);
}

.requirements ul {
    list-style: none;
    padding-left: 0;
}

.requirements li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.requirements li:before {
    content: "•";
    color: var(--primary);
    position: absolute;
    left: 0;
}

.apply-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    width: 100%;
    text-align: center;
    margin-top: 1rem;
}

.apply-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 204, 136, 0.3);
}

@media (max-width: 768px) {
    .career-page .hero-section {
        padding: 3rem 1rem;
    }

    .career-page .hero-section h1 {
        font-size: 2.5rem;
    }

    .job-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}