header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}



body {
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}

.hero-pattern {
    background-color: #f8f9fa;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e9ecef' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.cta-button {
    background-color: #333332;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #333332;
    transform: translateY(-2px);
}

.project-card {
    overflow: hidden;
}

.project-card img {
    transition: transform 0.5s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #2c3e50;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

html, body {
    margin: 0;
    padding: 0;
}

main {
    padding-top: 100px;
}

.client-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

/* === Добавени стилове за формата за регистрация === */

.input,
.btn {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 15px auto;
    padding: 12px;
    border-radius: 6px;
    box-sizing: border-box;
}

.input {
    border: 1px solid #ccc;
}

.btn {
    background-color: #333332;
    color: white;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #cc8800;
}

.message {
    color: green;
    text-align: center;
    margin-top: 10px;
    display: none;
}

.footer {
  background-color: #f9fafb; /* светлосив фон */
  padding: 40px 20px;
  font-family: 'Montserrat', sans-serif;
  color: #1f2937; /* тъмносива текст */
}
