	body {
		font-family: 'Inter', sans-serif;
	}

        .hero-section {
            background: #1D2631;
            color: white;
            text-align: center;
            padding: 60px 20px;
        }
        .service-card {
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
            background: white;
            margin-bottom: 20px;
        }
        .cta-section {
            background: #FFC600;
            color: white;
            text-align: center;
            padding: 40px;
            margin-top: 30px;
        }
		p {font-size:16px}
		
		/* Общий стиль для ссылок меню */
.menu-link {
    position: relative;
    text-decoration: none;
    padding-bottom: 5px;
    transition: color 0.3s ease-in-out;
}

/* Создаем белую полоску под ссылкой */
.menu-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

/* Эффект при наведении */
.menu-link:hover::after {
    width: 100%;
    left: 0;
}

/* Блок "Свяжитесь с нами" */
.contact-block {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

/* Заголовок */
.contact-block h2 {
    font-size: 28px;
    font-weight: 700;
    color: #393939;
    margin-bottom: 10px;
}

/* Текст */
.contact-block p {
    font-size: 16px;
    color: #5EAD51;
    margin-bottom: 20px;
}

/* Контейнер кнопок */
.button-container {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Стили кнопок */
.custom-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: white;
    transition: transform 0.2s ease-in-out, background 0.3s ease-in-out;
}

/* Иконки */
.custom-btn img {
    width: 20px;
    height: 20px;
}

/* WhatsApp */
.whatsapp-btn {
    background: #25D366;
}

.whatsapp-btn:hover {
    background: #1da851;
    transform: scale(1.05);
}

/* Telegram */
.telegram-btn {
    background: #0088cc;
}

.telegram-btn:hover {
    background: #0077b5;
    transform: scale(1.05);
}

/* Анимация на мобильных устройствах (кнопка подпрыгивает) */
@media (max-width: 768px) {
    .button-container {
        flex-direction: column;
    }

    .custom-btn:active {
        transform: translateY(-5px);
    }
}

/* Форма заказа звонка */
.call-form {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 0 auto;
}

/* Заголовок */
.call-form h2 {
    font-size: 24px;
    font-weight: 700;
    color: #393939;
    margin-bottom: 10px;
}

/* Текст */
.call-form p {
    font-size: 16px;
    color: #5EAD51;
    margin-bottom: 15px;
}

/* Поля ввода */
.call-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 2px solid #393939;
    border-radius: 8px;
    font-size: 16px;
}

/* Кнопка */
.call-btn {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: white;
    background: #5EAD51;
    transition: transform 0.2s ease-in-out, background 0.3s ease-in-out;
    border: none;
    cursor: pointer;
}

/* Анимация кнопки */
.call-btn:hover {
    background: #4b9142;
    transform: scale(1.05);
}

/* Текст под кнопкой */
.info-text {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    color: #777;
}

/* Сообщение об успехе или ошибке */
#responseMessage {
    margin-top: 10px;
    font-size: 14px;
}



       /* Button Styles */
        .btn-to-top, .btn-telegram, .btn-whatsapp {
            position: fixed;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 50px;
            height: 50px;
            background-color: #1e81b0; /* Sea-inspired turquoise */
            color: #fff;
            border-radius: 8px;
            font-size: 24px;
            text-decoration: none;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
            transition: opacity 0.8s ease, transform 0.3s ease;
            opacity: 0; /* Initially hidden */
            visibility: hidden;
            z-index: 1000;
        }

        #back-to-top {
            bottom: 20px;
            right: 20px;
            background-color: #FFC600; /* Gold for the sand */
        }

        #back-to-top:hover {
            background-color: #FFC600; /* Gold for the sand */
            transform: scale(1.1);
        }

        #telegram-link {
            bottom: 20px;
            left: 20px;
        }

        #whatsapp-link {
            bottom: 90px;
            left: 20px;
			background-color: green; /* Green for the sand */
        }

        .telegram-icon, .whatsapp-icon {
            width: 24px;
            height: 24px;
        }

        .btn-to-top.show, .btn-telegram.show, .btn-whatsapp.show {
            opacity: 1;
            visibility: visible;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }
            50% {
                transform: rotate(180deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        @keyframes spin-reverse {
            0% {
                transform: rotate(0deg);
            }
            50% {
                transform: rotate(-180deg);
            }
            100% {
                transform: rotate(-360deg);
            }
        }

        .spin-active {
            animation: spin 1.2s ease;
        }

        .spin-reverse-active {
            animation: spin-reverse 1.2s ease;
        }

        #telegram-link:hover {
            animation: spin 1.2s ease;
        }

        #whatsapp-link:hover {
            animation: spin-reverse 1.2s ease;
        }
		
		
		
.gallery-img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(150, 150, 150, 0.6);
    animation: bounce 0.5s ease forwards;
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}




/* Initial state for the animation */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 1s ease, transform 1s ease;
}

/* Class to activate the animation */
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}


