:root {
    --primary-teal: #4ECDC4;
    --primary-dark: #2C5F5D;
    --accent-mint: #6EE7E0;
    --bg-light: #F8FFFE;
    --text-dark: #1A3636;
    --text-gray: #5A7C7B;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
}

.gradient-bg {
    background: linear-gradient(135deg, #4ECDC4 0%, #6EE7E0 100%);
}

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

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(78, 205, 196, 0.2);
}

.pulse-dot {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.section-divider {
    position: relative;
    height: 100px;
    overflow: hidden;
}

.section-divider svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    animation: blob 10s infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes blob {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(40px, -60px) scale(1.1);
    }

    100% {
        transform: translate(-20px, 30px) scale(0.9);
    }
}

.nav-link.active {
    background-color: #0d9488 !important;
    /* teal-600 */
    color: #ffffff !important;
    box-shadow: 0 10px 15px -3px rgba(13, 148, 136, 0.2);
}

.mixture-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(13, 148, 136, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.stats-counter {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-teal);
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(135deg, #4ECDC4 0%, #6EE7E0 100%);
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.coming-soon-section {
    position: relative;
    background: linear-gradient(135deg, #2C5F5D 0%, #1A3636 100%);
    overflow: hidden;
}

.coming-soon-content {
    position: relative;
    z-index: 10;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(110, 231, 224, 0.5);
    border-radius: 50%;
}

.nav-link {
    transition: color 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #4ECDC4 0%, #6EE7E0 100%);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}

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

.btn-outline {
    border: 2px solid var(--primary-teal);
    color: var(--primary-teal);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}

.btn-outline:hover {
    background: var(--primary-teal);
    color: white;
}

@media (max-width: 768px) {
    .stats-counter {
        font-size: 2rem;
    }
}

/* Navbar Enhancements */
#nav-container {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#nav-container.scrolled {
    /* min-height removed */
}

.nav-links-container {
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-link {
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
    letter-spacing: 0.025em;
}

#nav-container.scrolled .nav-link {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
    font-size: 0.75rem;
}

#nav-container.scrolled .nav-links-container {
    padding: 0.25rem;
}

#nav-container.scrolled a.bg-teal-600 {
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
}

#nav-container.scrolled img {
    height: 2.2rem;
}

@media (max-width: 1024px) {
    #nav-container {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }
}