:root {
    --primary-color: #262626;
    --text-gray-900: #111827;
    --text-gray-600: #4b5563;
}

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

html {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    max-width: 100vw;
}

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

.bg-primary {
    background-color: #262626;
}

.text-primary {
    color: #262626;
}

.border-primary {
    border-color: #262626;
}

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 60;
    height: 40px;
    transition: transform 0.3s ease;
}

.topbar.hide {
    transform: translateY(-40px);
}

#navbar {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
}

#navbar.scrolled {
    top: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.service-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#hem {
    height: calc(100vh - 104px);
    margin-top: 104px;
    min-height: calc(100vh - 104px);
    max-height: calc(100vh - 104px);
}

@media (max-width: 640px) {
    #hem {
        height: calc(100vh - 96px) !important;
        margin-top: 96px !important;
    }
}

.reco-iframe {
    width: 100%;
    border: 0;
    display: block;
    overflow: hidden;
}