:root {
    --primary-dark: #0A1927;
    --accent: #00D09C;
    --accent-hover: #00b386;
    --light-bg: #F8FAFE;
    --gray-dark: #1E2A32;
    --text-muted: #5B6E7C;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: #1A2C3E;
    background-color: #ffffff;
    line-height: 1.5;
    overflow-x: hidden;
}

.navbar {
    background-color: rgba(10, 25, 39, 0.92);
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.navbar .navbar-brand {
    color: white;
    font-size: 1.7rem;
    letter-spacing: -0.5px;
}

.navbar .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    margin: 0 0.25rem;
    transition: 0.2s;
}

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

.btn-outline-accent {
    border: 1.5px solid var(--accent);
    background: transparent;
    color: var(--accent);
    border-radius: 40px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: 0.2s;
}

.btn-outline-accent:hover {
    background: var(--accent);
    color: #0A1927;
    border-color: var(--accent);
}

.text-accent {
    color: var(--accent) !important;
}

.bg-accent {
    background-color: var(--accent) !important;
}

.btn-accent {
    background-color: var(--accent);
    color: #0A1927;
    font-weight: 600;
    border-radius: 40px;
    transition: 0.2s;
    border: none;
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    color: #0A1927;
    box-shadow: 0 10px 20px rgba(0, 208, 156, 0.2);
}

.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #0B1B24 0%, #0A2A2A 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&auto=format&fit=crop&w=2072&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    pointer-events: none;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.7;
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--light-bg) !important;
}

.badge-accent {
    background-color: rgba(0, 208, 156, 0.15);
    color: var(--accent);
    padding: 0.4rem 1rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-block;
    letter-spacing: 0.5px;
}

.service-card {
    background: white;
    padding: 2rem 1.8rem;
    border-radius: 28px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(0, 208, 156, 0.08);
    border-color: rgba(0, 208, 156, 0.2);
}

.icon-box {
    width: 64px;
    height: 64px;
    background: rgba(0, 208, 156, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-box i {
    font-size: 2rem;
    color: var(--accent);
}

.service-card h4 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.5;
}

.solution-img-wrapper {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.2);
}

.stats-section {
    background: linear-gradient(120deg, #0A1927 0%, #0D2A2A 100%);
    color: white;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.6rem;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.85;
}

.testimonial-card {
    transition: 0.2s;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--accent);
    background-size: 50%;
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.bg-dark {
    background-color: var(--primary-dark) !important;
}

.bg-white-20 {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.contact-info i {
    width: 28px;
}

.footer {
    background-color: #07141A;
    color: #C9D6DF;
}

.footer a {
    color: #C9D6DF;
    transition: 0.2s;
}

.footer a:hover {
    color: var(--accent);
}

.reveal,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.reveal {
    transform: translateY(30px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0, 0);
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

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

    .stat-number {
        font-size: 2.5rem;
    }

    .navbar .navbar-brand {
        font-size: 1.4rem;
    }

    .btn-accent,
    .btn-outline-light {
        padding: 12px 24px;
    }
}