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

:root {
    --main-color: #3B8DF2; /* Основной цвет (например, синий) */
    --header-color: #1A2149; /* Цвет заголовка (например, тёмно-синий) */
    --text-color: #454B6D; /* Основной цвет текста (тёмно-серый) */
    --white: #ffffff; /* Белый */
    --red: #EE6673; /* Красный */
    --green: #5BA87D; /* Зелёный */
    --violet: #6B3CC8; /* Фиолетовый */
}

@font-face {
    font-family: 'Vela Sans';
    src: url('fonts/VelaSans-Regular.woff2') format('woff2'),
    url('fonts/VelaSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Vela Sans', sans-serif;
    overflow-x: hidden;
}


/* Обертка всей страницы для позиционирования видео */
.page-wrapper {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex; /* Используем flexbox для центрирования содержимого */
    flex-direction: column;
    justify-content: space-between; /* Распределяем header, main, footer */
    align-items: center; /* Центрируем по горизонтали */
}

/* Стили для фонового видео */
.background-video {
    background-image: url('images/vid.png');
    background-size: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Видео покрывает весь контейнер, обрезая лишнее */
    z-index: 1; /* Видео на заднем плане */
}

/* Слой контента поверх видео */
.content-overlay {
    padding: 50px 0 50px 0;
    position: relative; /* Важно для z-index */
    z-index: 2; /* Контент поверх видео */
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

/* Хедер (навигация) */
.main-header {
    width: 100%;
    padding: 1.5rem; /* 24px */
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-container {
    width: 90%; /* Или фиксированная ширина, например, max-width: 1200px; */
    height: 80px;
    max-width: 1200px;
    background-color: rgba(255, 255, 255, 0.8); /* Полупрозрачный белый */
    border-radius: 0.5rem; /* 8px */
    padding: 0.75rem 1.25rem; /* 12px 20px */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Тень */
    display: flex;
    justify-content: space-between;
    align-items: center;


.header_btn {
    cursor: pointer;
    width: 60px;
    height: 60px;
    border: 1px solid var(--main-color);
    background-color: var(--main-color);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s all;


&
:hover {
    opacity: .8;
    scale: .9;
}

}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--header-color);
    font-weight: bold;
    font-size: 1.25rem; /* 20px */
}

.logo-img {
    width: 110px;
    height: 90px;
}

.logo-text {
    color: #333;
    font-size: 1.25rem; /* 20px */
}

.nav-links {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 2rem; /* 32px */
}

.nav-item {
    text-decoration: none;
    color: var(--header-color);
    font-weight: 600;
    font-size: 1.125rem; /* 18px */
    transition: color 0.3s ease;
}

.nav-item:hover {
    color: var(--main-color); /* Пример синего при наведении */
}

}


/* Основной контент (Центральный блок) */
.main-content {
    flex-grow: 1; /* Занимает доступное пространство между хедером и футером */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.main-title {
    color: white;
    font-size: 4rem; /* 64px */
    font-weight: 800;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Тень для читаемости */
    margin-bottom: 2rem;
}

.video-placeholder {
    width: 20rem; /* 320px */
    height: 15rem; /* 240px */
    background-color: rgba(51, 51, 51, 0.7); /* Темный полупрозрачный фон */
    border-radius: 0.5rem; /* 8px */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5rem;
}

/* Футер (кнопки) */
.main-footer {
    width: 100%;
    padding: 1.5rem; /* 24px */
    display: flex;
    justify-content: center;
    align-items: center;

.button-container {
    display: flex;
    flex-wrap: wrap; /* Позволяет кнопкам переноситься на новую строку на маленьких экранах */
    justify-content: center;
    gap: 1.5rem; /* 24px */
    max-width: 70%;

/* Ограничение ширины для контейнера кнопок */


.action-button {
    width: 300px;
    height: 80px;
    background-color: var(--white); /* Почти белый полупрозрачный */
    color: var(--header-color);
    font-weight: bold;
    padding: 0.75rem 1.5rem; /* 12px 24px */
    border-radius: 0.5rem; /* 8px */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem; /* 8px между текстом и иконкой */
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1rem; /* 16px */
    white-space: nowrap;

/* Предотвращает перенос текста на кнопках */

.angled-arrow {
    transform: rotateZ(-45deg);
}

}

.action-button:hover {
    background-color: var(--main-color);
    color: var(--white);
}

.button-icon {
    width: 1.25rem; /* 20px */
    height: 1.25rem; /* 20px */
}

}
}


main {
    width: 100vw;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #D4E7F5;
    overflow-x: hidden;

.tractor {
    width: 2000px;
    height: 180px;
    position: relative;
    will-change: transform; /* Оптимизация анимации */
    transform: translateX(calc(-90% + var(--scroll-progress) * 88%)) translateY(70px); /* Уменьшил диапазон */
    transition: transform 0.1s linear; /* Минимальная задержка для плавности */
}


/* --- Секция "Строим будущее сегодня" --- */
.statistics-section {
    padding: 6rem 0; /* Увеличиваем отступы сверху и снизу для большего пространства */
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;

.bridge {
    position: absolute;
    left: 0;
    bottom: -100px;
}

}

.statistics-container {
    width: 85%; /* Немного уменьшаем ширину контейнера для более плотного размещения */
    display: flex;
    z-index: 100;
    justify-content: space-between;
    align-items: start;
    gap: 3rem;

/* Отступ между блоком текста и блоками статистики */

.left-point {
    width: 30%;
    height: 50px;
    font-size: 28px;
    display: flex;
    gap: 10px;
    align-items: center;


.point {
    font-size: 32px;
    color: var(--main-color);
    transform: translateY(-18px);
}

}
}


.section-header {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 900px; /* Увеличиваем максимальную ширину текста */
    margin-bottom: 2rem;

/* Отступ под заголовком */

.header-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

}

.breadcrumbs {
    color: #4A90E2; /* Используем более яркий синий для "О нас" */
    font-size: 1rem; /* Чуть крупнее */
    font-weight: 600;
    margin-bottom: 1rem; /* Увеличиваем отступ после "О нас" */
}

.section-title {
    font-size: 64px; /* Увеличиваем размер заголовка, чтобы он был более выразительным */
    font-weight: 700; /* Более жирный шрифт */
    color: var(--header-color);
    margin-bottom: 1.5rem; /* Отступ под заголовком */
}

.section-description {
    font-size: 16px; /* Немного крупнее текст описания */
    color: var(--text-color);
    line-height: 1.7; /* Увеличиваем межстрочный интервал для лучшей читаемости */
}

.stats-blocks-wrapper {
    display: flex;
    justify-content: space-between; /* Центрируем блоки */
    gap: 2rem; /* Увеличиваем отступ между блоками статистики */
    width: 100%;
}

.stat-block {
    /* Фоновый цвет будет задан для primary-stat и secondary-stat */
    border-radius: 8px; /* Более выраженное закругление углов */
    padding: 2.5rem 1.5rem; /* Увеличиваем внутренние отступы */
    width: 30%; /* Рассчитываем ширину так, чтобы 3 блока поместились с учетом gap */
    height: 180px; /* Увеличиваем фиксированную высоту для единообразия */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* Более выраженная и мягкая тень */
    background-color: var(--main-color);
    color: var(--white); /* Цвет текста по умолчанию для всех блоков */
}


.stat-number {
    font-size: 36px; /* Значительно увеличиваем размер цифры */
    font-weight: 600; /* Очень жирный шрифт */
    margin-bottom: 0.75rem; /* Увеличиваем отступ под цифрой */
    line-height: 1; /* Убираем лишний интервал строки */
}

.stat-label {
    font-size: 20px; /* Чуть крупнее подпись */
    font-weight: 500;
    line-height: 1.3;
    opacity: 0.8; /* Немного уменьшаем прозрачность для контраста */
}


.map-section {
    width: 90%;
    height: 80vh;
    background-color: var(--white);
    border-radius: 16px;
    z-index: 100;
    margin-top: 50px;
    position: relative;
}

#map {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    z-index: 1;
}

#map-form {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    z-index: 1;
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 280px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    padding: 20px;
    z-index: 999;
    max-height: 90%;
    overflow-y: auto;
}

#search {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 12px;
    font-size: 14px;
    margin-bottom: 12px;
}

#location-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#location-list li {
    padding: 10px 12px;
    margin-bottom: 8px;
    background-color: #f2f2f2;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s;
}

#location-list li:hover {
    background-color: #d0e6ff;
}

}


.projects-section {
    width: 85%;
    height: 70vh;
    margin-top: 50px;


.title-bar {
    width: 100%;
    height: 30%;
    display: flex;
    justify-content: space-between;
    align-items: start;

.left-point {
    width: 30%;
    height: 50px;
    font-size: 28px;
    display: flex;
    justify-content: end;
    gap: 10px;
    align-items: center;


.point {
    font-size: 32px;
    color: var(--main-color);
    transform: translateY(-18px);
}

}
}


.content {
    width: 100%;
    height: 70%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;

.content-element {
    width: 31%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;

.content-video {
    width: 100%;
    height: 75%;
    background-color: var(--main-color);
    border-radius: 16px;
    cursor: pointer;
    transition: .3s all;


&
:hover {
    opacity: .8;
}

}

.content-text {
    width: 100%;
    height: 15%;
    color: var(--text-color);
    font-weight: 500;
    font-size: 20px;
}

}
}
}


.analitics-section {
    width: 90%;
    height: 100vh;
    background-color: var(--main-color);
    border-radius: 16px;
    margin-top: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;

img {
    position: absolute;
}

.analitics-container {
    z-index: 100;
    width: 90%;
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;


.head-text {
    width: 100%;
    height: 15%;
    display: flex;
    justify-content: center;
    position: relative;
    margin-bottom: 25px;

.left-point {
    width: 30%;
    height: 50px;
    font-size: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    left: 0;
    top: 20px;

.breadcrumbs {
    color: var(--white);

}

.point {
    font-size: 32px;
    color: var(--white);
    transform: translateY(-18px);
}

}

.section-title {
    text-align: center;
    color: var(--white);
    font-size: 56px;
    font-weight: 700;
    transform: translateY(30px);
}

}

.content {
    width: 100%;
    height: 85%;
    background-color: var(--white);
    border-radius: 16px;
    padding: 20px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;

.left-titles {
    width: 40%;
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;

.left-text {
    cursor: pointer;
    width: 90%;
    height: 16.5%;
    display: flex;
    justify-content: start;
    align-items: center;
    transition: .3s all;

&
:hover {
    transform: translateX(5px);
}


p {
    color: var(--text-color);
    opacity: .5;
    font-weight: 600;
    font-size: 18px;
}

}

.left-text.active {
    background-color: #F6F9FF;
    border-radius: 16px;
}

.left-text.active p {
    opacity: 1;
}

}

.img-part {
    width: 60%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

img {
    width: 100%;
    height: 100%;
    scale: .53;
}

}
}
}
}

.marker-section {
    width: 100vw;
    height: 100vh;
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;


.marker-container {
    width: 85%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 20px;


.title-bar {
    width: 100%;
    height: 20%;
    display: flex;
    justify-content: space-between;
    align-items: start;

.section-title {
    font-weight: 700;
    font-size: 56px;
    color: var(--header-color);
}

.left-point {
    width: 30%;
    height: 50px;
    font-size: 28px;
    display: flex;
    justify-content: end;
    gap: 10px;
    align-items: center;


.point {
    font-size: 32px;
    color: var(--main-color);
    transform: translateY(-18px);
}

}
}

.content-map {
    width: 100%;
    height: 80%;
    background-color: var(--main-color);
    border-radius: 16px;
    margin-top: 15px;
    position: relative;
    overflow: hidden;

#leafletMap {
    width: 100%;
    height: 100%;
    z-index: 1;
}

}
}


}


.tender-section {
    width: 100vw;
    height: 110vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 150px;


.tender-container {
    width: 85%;
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;


.title-block {
    width: 100%;
    height: 10%;
    display: flex;
    justify-content: start;
    align-items: center;

.section-title {
    color: var(--header-color);
    font-weight: 700;
    font-size: 56px;
}

}

.tender-table {
    width: 100%;
    height: 85%;
    margin: 20px auto;
    padding: 10px;

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr; /* Настройка ширины колонок */
    padding: 15px 20px;
    background-color: var(--main-color); /* Светлый фон заголовка */
    color: var(--white);
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 10px; /* Отступ между заголовком и первой строкой */
}

.header-item {
    text-align: left;
    padding: 0 10px; /* Отступы внутри ячеек заголовка */

}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr; /* Должно соответствовать header */
    border-radius: 8px;
    padding: 15px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); /* Легкая тень для каждой строки */
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    margin-bottom: 10px; /* Отступ между строками */
}

.table-row:last-child {
    margin-bottom: 0; /* Убираем отступ у последней строки */
}

.table-row:hover {
    background-color: #4285f4; /* Фон при наведении */
    color: var(--white);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: .3s all;
}


/* Стили для содержимого ячеек */
.row-item {
    padding: 0 10px; /* Отступы внутри ячеек данных */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Выравнивание содержимого по центру вертикали */
    text-align: left;
}

.tender-id {
    font-size: 14px;
    color: var(--text-color); /* Более светлый цвет для ID */
    margin-bottom: 5px;


.number {
    color: var(--header-color);
}

}

.table-row:hover .tender-id {
    color: rgba(255, 255, 255, 0.7);

.number {
    color: var(--white);
}

}

.tender-description {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--main-color); /* Изначальный цвет */
    margin-top: 15px;
}

.table-row:hover .tender-description {
    color: var(--white);
    transition: .3s all; /* Цвет описания в активной строке */
}

.tender-deadline {
    font-size: 14px;
    color: var(--text-color);
    margin-top: 15px;
}

.table-row:hover .tender-deadline {
    transition: .3s all;
    color: #C4DEFF;
}

.region-name,
.region-details {
    font-size: 16px;
    color: var(--text-color);
}

.price {
    font-size: 16px;
    color: var(--main-color);
    margin-left: 15px;
    font-weight: 600;
}

.table-row:hover .region-name,
.table-row:hover .region-details,
.table-row:hover .price {
    color: #fff;
}

.industries ul {
    padding: 0;
    margin: 0;
}

.industries li {
    font-size: 16px;
    color: var(--text-color);
}

.table-row:hover .industries li {
    color: #fff;
}

}
}
}

.road {
    width: 100vw;
    height: 230px;
    margin-top: 150px;
}

.news-section {
    width: 90%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-top: 100px;
    position: relative;


.title-bar {
    width: 100%;
    height: 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;

.left-point {
    width: 30%;
    height: 100%;
    font-size: 28px;
    display: flex;
    justify-content: start;
    gap: 10px;
    align-items: start;


.point {
    font-size: 32px;
    color: var(--main-color);
    transform: translateY(-18px);
}

}

.right-bar {
    width: 70%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;

.section-title {
    font-weight: 700;
    font-size: 56px;
    color: var(--header-color);
    transform: translateY(25px);
}

.buttons {
    width: 35%;
    height: 70%;
    display: flex;
    justify-content: space-between;
    align-items: center;

.public {
    width: 40%;
    height: 100%;
    border: 2px solid var(--text-color);
    border-radius: 100px;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-color);
    cursor: pointer;
    background-color: transparent;
    padding: 5px 15px;
    transition: .3s all;

&
:hover {
    opacity: .9;
    scale: .95;
}

}

.corporate {
    width: 55%;
    height: 100%;
    border: 2px solid var(--text-color);
    border-radius: 100px;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-color);
    cursor: pointer;
    background-color: transparent;
    padding: 5px 15px;
    transition: .3s all;

&
:hover {
    opacity: .9;
    scale: .95;
}

}

.active {
    border: 2px solid var(--main-color);
    background-color: var(--main-color);
    color: var(--white);
}

}
}

}

.slider-container {
    width: 100%;
    height: 80%;
    margin: 0 auto;
    padding: 20px;
    background-color: var(--bg-light-blue); /* Фоновый цвет, как на макете */
    box-sizing: border-box;
}

.slider-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden; /* Важно, чтобы скрывать невидимые слайды */
    padding: 10px 0; /* Отступ для стрелок, если они абсолютно позиционированы */
}

.slider-content {
    display: flex;
    width: 100%; /* Задаем ширину, чтобы вместить все слайды в ряд */
    transition: transform 0.5s ease-in-out; /* Плавный переход при смене слайдов */
    /* overflow-x: scroll; /* Можно использовать для наглядности прокрутки без JS */
    /* scroll-snap-type: x mandatory; /* Для плавного прилипания слайдов при ручной прокрутке */
    /* -webkit-overflow-scrolling: touch; */
}

.slide {
    flex: 0 0 100%; /* Каждый слайд занимает 100% ширины .slider-content */
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 карточки в ряд */
    gap: 20px; /* Расстояние между карточками */
    padding: 0 10px; /* Небольшой отступ по бокам слайда */
    box-sizing: border-box;
    /* scroll-snap-align: start; /* Для scroll-snap-type */
}

.card {

    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    text-decoration: none; /* Если карточка будет ссылкой */
}

.card img {
    width: 100%;
    height: 200px; /* Фиксированная высота изображения */
    object-fit: cover; /* Обрезает изображение, чтобы оно заполняло контейнер */
    border-radius: 8px; /* Закругляем только верхние углы */
}

.card a {
    text-decoration: none;
    margin-top: 30px;
    font-size: 16px;
    font-weight: bold;
    color: var(--main-color);
    font-weight: 600;
    font-size: 20px;
}

.card p {
    font-size: 16px;
    color: var(--text-color);
    margin-top: 30px;
    font-weight: 400;
}

.card .date {
    font-weight: 600;
    margin-top: 30px;
    font-size: 16px;
    color: var(--text-color);
}

.slider-arrow {
    background-color: transparent;
    color: transparent;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    box-shadow: 0 2px 5px var(--shadow-light);

}


/* Навигация пагинации */
.slider-pagination {
    display: flex;
    justify-content: flex-end; /* Выравнивание вправо, как на макете */
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding-right: 10px; /* Отступ справа, чтобы выровнять с карточками */
    font-size: 16px;
    color: var(--text-color);

.left-arrow {
    transform: rotateZ(180deg);
}

}

.current-slide {
    font-size: 24px;
}

.pagination-info {
    font-size: 20px;
}

.slider-pagination .current-slide {
    font-weight: bold;
}

.pagination-arrow {
    width: 100px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--text-color);
    background: none;
    border-radius: 100px;
    padding: 5px 10px;
    margin-left: 10px; /* Отступ между цифрами и стрелками */
    cursor: pointer;
    font-size: 16px;
    color: var(--text-color);
    transition: .3s all;


}

.pagination-arrow:hover {
    background-color: #F0F0F0;
}


}

.points {
    width: 85%;
    height: 150px;
    margin-top: 150px;
    position: relative;

.city-point {
    opacity: 0;
    transform: translateY(-100px) scale(0.8);
    transition: all 0.7s ease-out;
}

.city-point.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.nukus {
    position: absolute;
    left: -35px;
    bottom: 20px;
}

.buhara {
    position: absolute;
    left: 283px;
    bottom: 50px;

}

.samarkand {
    position: absolute;
    left: 604px;
    bottom: 20px;
}

.tashkent {
    position: absolute;
    left: 929px;
    bottom: 50px;
}

.fergana {
    position: absolute;
    right: 280px;
    bottom: 22px;
}

.andijan {
    position: absolute;
    right: -36px;
    bottom: 50px;
}

.road-map {
    width: 100%;
    position: absolute;
    bottom: 0;
}

}


/* Календарь */
.calendar-section {
    padding: 30px;
    border-radius: 10px;
    width: 85%; /* Ограничиваем ширину */
    height: 120vh;
    margin: 100px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.calendar-title {
    font-size: 56px;
    color: var(--header-color);
    margin: 0;
}

.calendar-button {
    padding: 14px 20px;
    border: 2px solid var(--main-color);
    border-radius: 100px;
    background-color: transparent;
    cursor: pointer;
    color: var(--text-color);
    font-weight: 600;
    font-size: 16px;
    margin-left: 10px;
    transition: .3s all;

&
:hover {
    opacity: .9;
    scale: .95;
}

}

.header-buttons .calendar-button.active {
    background-color: #4285f4; /* Синий цвет */
    color: white;
    border-color: #4285f4;
}

.calendar-controls {
    display: flex;
    justify-content: start;
    gap: 45px;
    align-items: center;
    margin-bottom: 20px;


.filter-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

div {
    width: 30px;
    height: 2px;

}

.online {
    background-color: var(--violet);
}

.offline {
    background-color: var(--red);
}

.hybrid {
    background-color: var(--main-color);
}

}
}

.month-navigation {
    display: flex;
    align-items: center;
    gap: 10px;
}

.month-navigation .nav-arrow {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--header-color);
    cursor: pointer;
    padding: 5px;
    transition: color 0.2s ease;
}

.month-navigation .nav-arrow:hover {
    color: var(--main-color);
}

.current-month {
    font-size: 18px;
    font-weight: 600;
    color: var(--header-color);
}


.filter-buttons .filter-button {
    font-weight: 400;
    margin-right: 15px;
    color: var(--header-color);
    font-size: 14px;
}


.calendar-grid {
    width: 100%;
    height: 150vh;
    margin-top: 35px;

    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 20px;
    align-items: center;


.days-week {
    width: 100%;
    height: 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;

.day {
    width: 13%;
    height: 100%;
    color: var(--text-color);
    font-weight: 600;
    font-size: 20px;
    border-bottom: 2px solid var(--text-color);
}

.weekend {
    border-bottom: 2px solid var(--main-color);
}

}

.date-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;

.date {
    width: 100%;
    height: 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;

.number {
    width: 13%;
    height: 100%;
    color: var(--header-color);
    font-weight: 600;
    font-size: 24px;
}

.last {
    opacity: .5;
}

}

.content {
    width: 100%;
    height: 85%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;

.row {
    width: 100%;
    height: 52%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;

.cell {
    width: 13%;
    height: 100%;
    background-color: var(--white);
    border-radius: 8px;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    gap: 5px;
    cursor: pointer;
    transition: .3s all;

&
:hover {
    opacity: .8;
}

.event-time {
    transform: translateX(5px);
    font-weight: 600;
    font-size: 16px;
}

.event-desc {
    color: var(--text-color);
    font-weight: 400;
    font-size: 16px;
}

.event-type {
    font-weight: 600;
    font-size: 16px;
    color: var(--text-color);

}

}


.empty {
    background-color: transparent;
}

.blue {
    border-top: 2px solid var(--main-color);

li {
    color: var(--main-color);
}

}

.red {
    border-top: 2px solid var(--red);

li {
    color: var(--red);
}

}

.purple {
    border-top: 2px solid var(--violet);

li {
    color: var(--violet);
}

}

.green {
    border-top: 2px solid var(--green);

li {
    color: var(--green);
}

}

.big {
    width: 27.5%;

}

}

}
}

.first {
    height: 35%;
}

.second {
    height: 65%;
}


}


/* Стили для кнопки "Показать больше" */
.show-more-button {
    display: block;
    width: 100%;
    padding: 15px 20px;
    margin-top: 60px;
    text-decoration: underline;
    background-color: var(--main-color); /* Синий цвет */
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s all;

}

.show-more-button:hover {
    opacity: .9;
}


.modal-calendar {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    opacity: 0;
    transition: .3s all;


.modal-content {
    background-color: white;
    margin: 50px auto;
    padding: 25px;
    width: 80%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-20px);
    opacity: 0;
    transition: .3s all;
}

.close {
    color: var(--text-color);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: .3s all;
}

.close:hover {
    color: var(--header-color);
}

#modalEventType {
    color: var(--main-color);
    margin-top: 0;
    font-size: 28px;
    font-weight: 600;
}

#modalEventTitle {
    font-size: 18px;
    margin: 10px 0;
    color: var(--header-color);
    font-size: 20px;
    font-weight: 600;
}

.modal-body {
    margin: 20px 0;
    line-height: 1.6;
    color: var(--text-color);
}

.modal-footer {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid #eee;
    color: var(--text-color);
    font-size: 14px;
}

}


.vacancies-section {
    width: 80%;
    margin-top: 650px;


.title-bar {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: start;

h2 {
    color: var(--header-color);
    font-weight: 700;
    font-size: 56px;
}

.left-point {
    width: 30%;
    height: 50px;
    font-size: 28px;
    display: flex;
    justify-content: end;
    gap: 10px;
    align-items: center;


.point {
    font-size: 32px;
    color: var(--main-color);
    transform: translateY(-18px);
}

}
}

.vacancies-page {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%; /* Занимает всю доступную ширину родителя */
    max-width: 960px; /* Максимальная ширина, как на макете */
    box-sizing: border-box; /* Учитываем padding и border в ширине */
}

/* Хедер страницы вакансий */
.vacancies-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.vacancies-header h2 {
    font-size: 24px;
    color: #333;
    margin: 0;
    font-weight: bold;
}

.vacancies-header a {
    color: #4285F4;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

/* Блок фильтров */
.vacancies-filter {
    width: 100%;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px 0;
    border-radius: 12px;
}

.filter-item {
    flex: 1;
    min-width: 200px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--header-color);
    font-weight: 500;
}

.select-wrapper {
    position: relative;
}

select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--text-color);
    border-radius: 8px;
    appearance: none;
    background-color: transparent;
    font-size: 14px;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

select:focus {
    outline: none;
    border-color: #8C99A9;
    box-shadow: 0 0 0 2px rgba(140, 153, 169, 0.2);
}

.select-wrapper svg {
    position: absolute;
    color: var(--text-color);
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Список вакансий */


.vacancies-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vacancy-item {
    width: 100%;
    background-color: var(--white);
    border: 1px solid var(--white);
    border-radius: 8px;
    margin-bottom: 12px;
    padding: 15px 20px;
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden; /* Скрываем содержимое, которое выходит за границы */
}


.vacancy-item.expanded {
    background-color: var(--white);
    border-color: var(--white);
    cursor: default;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.vacancy-main {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    align-items: center;
    gap: 15px;
    width: 100%;
    transition: .3s all;
}

.vacancy-header {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
    margin-right: 150px;
}


.vacancy-title {
    width: 40%;
    font-size: 18px;
    color: var(--header-color);
    margin: 0;
    font-weight: 600;
    line-height: 1.2;
}

.location-block {
    width: 10%;
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
}

.vacancy-location,
.vacancy-salary {

    font-size: 16px;
    font-weight: 400;
    color: var(--header-color);
    white-space: nowrap;
    margin: 0;
}

.vacancy-salary {
    width: 25%;
}


.vacancy-details-toggle {
    background-color: var(--toggle-button-bg);
    border: 1px solid var(--toggle-button-border);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    color: var(--main-color);
    cursor: pointer;
    outline: none;
    margin-left: 20px;
    flex-shrink: 0;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.vacancy-details-toggle:hover {
    background-color: #DAEEFC;
    border-color: var(--main-color);
}

/* Секция деталей вакансии */
.vacancy-details {
    padding-top: 15px;
    border-top: 1px solid #E0E0E0;
    margin-top: 15px;
    display: none; /* Изначально скрыто */
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
}

.vacancy-item.expanded .vacancy-details {
    display: block; /* Показываем детали, когда expanded */
}

.vacancy-section {
    margin-bottom: 15px;
}

.vacancy-section h4 {
    font-size: 16px;
    color: var(--header-color);
    margin-top: 0;
    margin-bottom: 8px;
    font-weight: 600;
}

.vacancy-section ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 0;
    color: var(--text-color);
}

.vacancy-section ul li {
    margin-bottom: 5px;
}

.vacancy-section p {
    color: var(--text-color);
    margin-top: 0;
    margin-bottom: 10px;
}

.vacancy-contacts {
    margin-top: 30px;

p {
    margin-top: 30px;
}

}

.vacancy-contacts .contact-items {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: var(--main-color);
}

.vacancy-contacts .contact-items span {
    font-size: 14px;
}

.vacancy-contacts .contact-items span:hover {
    text-decoration: underline;
    cursor: pointer;
}


/* Пагинация */
.slider-arrow {
    background-color: transparent;
    color: transparent;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    box-shadow: 0 2px 5px var(--shadow-light);

}


/* Навигация пагинации */
.vacancies-pagination {
    display: flex;
    justify-content: flex-end; /* Выравнивание вправо, как на макете */
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding-right: 10px; /* Отступ справа, чтобы выровнять с карточками */
    font-size: 16px;
    color: var(--text-color);

}

.prev-page-arrow {
    transform: rotateZ(180deg);
}

.current-slide {
    font-size: 24px;
}

.pagination-info {
    font-size: 20px;
}

.vacancies-pagination .current-slide {
    font-weight: bold;
}

.pagination-arrow {
    width: 100px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--text-color);
    background: none;
    border-radius: 100px;
    padding: 5px 10px;
    margin-left: 10px; /* Отступ между цифрами и стрелками */
    cursor: pointer;
    font-size: 16px;
    color: var(--text-color);
    transition: .3s all;


}

.pagination-arrow:hover {
    background-color: #F0F0F0;
}

.apply-button {
    width: 100%;
    margin-top: 30px;
    height: 50px;
    background-color: var(--main-color);
    border-radius: 8px;
    border: 1px solid var(--main-color);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s all;

&
:hover {
    opacity: .8;
}

}

.modal-overlay {

    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    z-index: 9999;
    visibility: hidden;
    transition: all 0.3s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;

}

.modal {
    background-color: white;
    border-radius: 8px;
    width: 100%;
    max-width: 500px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.modal-header {
    margin-bottom: 20px;
    text-align: center;
}

.modal-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--header-color);
    margin-bottom: 5px;
}

.modal-subtitle {
    font-size: 16px;
    color: var(--text-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-color);
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.file-upload {
    display: flex;
    align-items: center;
}

.file-upload-btn {
    background-color: var(--main-color);
    color: var(--white);
    border: 1px solid var(--main-color);
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 10px;
    transition: .3s all;

&
:hover {
    opacity: .9;
    scale: .99;
}

}

.file-upload-text {
    color: var(--text-color);
    font-size: 14px;
}

.submit-btn {
    background-color: var(--main-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: 0.3s all;
}

.submit-btn:hover {
    opacity: .9;
    scale: .99;
}


.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}


}


.report-section {
    width: 90%;
    height: 160vh;
    background-color: var(--white);
    border-radius: 16px;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;

.bglines {
    position: absolute;
    bottom: 0;
    opacity: .6;
}

.report-container {
    width: 90%;
    height: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    z-index: 1;

.header {
    width: 100%;
    height: 15%;
    display: flex;
    justify-content: space-between;
    align-items: start;

h2 {
    color: var(--header-color);
    font-weight: 700;
    font-size: 56px;
}

.left-point {
    width: 30%;
    height: 50px;
    font-size: 28px;
    display: flex;
    justify-content: end;
    gap: 10px;
    align-items: center;


.point {
    font-size: 32px;
    color: var(--main-color);
    transform: translateY(-18px);
}

}
}

.content {
    width: 90%;
    height: 95%;
    padding: 20px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 0 10px 0 #00000012;
    margin-top: 100px;
    z-index: 100;


.form-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.left-column,
.right-column {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #C9D3E8;
    border-radius: 6px;
    font-size: 16px;
    color: var(--header-color);
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group input::placeholder {
    color: var(--text-color);
    opacity: .5;
}


.form-group select {
    cursor: pointer;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group select:focus {
    border-color: var(--main-color);
    box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.2);
    color: var(--text-color);
}

.form-group select {
    background-color: var(--white);
    background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"%3E%3Cpath fill="%238C99A9" d="M3.293 4.293L6 7.000l2.707-2.707A1 1 0 019.414 5.707l-3.5 3.5A1 1 0 015 9.707a1 1 0 01-.707-.293l-3.5-3.5a1 1 0 011.414-1.414z"/%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 10px;
}

.form-group textarea {
    width: 100%;
    height: 120px; /* Minimum height for the textarea */
    padding: 12px 15px;
    font-family: 'Vela Sans', sans-serif; /* Ensure consistent font */
    border: 1px solid #C9D3E8;
    color: var(--text-color);
    border-radius: 6px;
    font-size: 15px;
    resize: vertical; /* Allow vertical resizing */
    outline: none;
    box-sizing: border-box;
}

.form-group textarea::placeholder {
    color: var(--text-color);
}

/* Drop Zone */
.drop-zone {
    transform: translateY(10px);
    border: 1px dashed #C9D3E8;
    border-radius: 6px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 150px;
    box-sizing: border-box;
}

.drop-zone:hover,
.drop-zone.drag-over {
    border-color: var(--main-color);
    background-color: #F8FCFF;
}

.drop-zone .icon {
    width: 48px;
    height: 48px;
    background-color: #E8F5FF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.drop-zone .icon svg {
    width: 24px;
    height: 24px;
    fill: var(--main-color);
}

.drop-zone p {
    font-size: 12px;
    color: var(--text-color);
    margin: 0;
    line-height: 1.5;
}

.drop-zone p.small-text {
    font-size: 13px;
    color: var(--text-color);
    margin-top: 5px;
}

.drop-zone input[type="file"] {
    display: none;
}

.file-list {
    margin-top: 10px;
    font-size: 14px;
    color: var(--text-color);
}

.file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

.file-item .remove-file {
    color: var(--red);
    cursor: pointer;
    margin-left: 10px;
}

.submit-button {
    display: block;
    width: 100%;
    padding: 15px 20px;
    background-color: var(--main-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
    margin-top: 30px;
    box-shadow: var(--button-shadow);
    transition: .3s all;
}

.submit-button:hover {
    opacity: .8;
}

}
}
}

.backanswer-section {
    width: 90%;
    height: 100vh;
    background-color: var(--main-color);
    margin-top: 100px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;

.backanswer-container {
    width: 90%;
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;

.title {
    height: 10%;
    color: var(--white);
    font-weight: 700;
    font-size: 48px;
}

.content {
    width: 100%;
    height: 75%;
    padding: 35px 40px;
    background-color: var(--white);
    border-radius: 8px;

.form-content {
    display: flex;
    height: 100%;
    gap: 40px; /* Отступ между колонками */
    flex-wrap: wrap; /* Для адаптивности */
}

.left-column,
.right-column {
    flex: 1; /* Колонки занимают равное пространство */
    min-width: 300px; /* Минимальная ширина колонки для адаптивности */
}

.right-column {
    transform: translateY(17px);

.text-title {
    color: var(--text-color);
    transform: translateY(-15px);
    font-size: 14px;
}

textarea {
    width: 100%;
    height: 130px;
    padding: 12px 15px;
    border: 1px solid #C9D3E8;
    border-radius: 8px;
    background-color: var(--input-bg);
    font-family: 'Vela Sans', sans-serif; /* Ensure consistent font */
    font-size: 15px;
    color: var(--text-color);
    resize: vertical; /* Allow vertical resizing */
    outline: none;
    box-sizing: border-box;

&
::placeholder {
    color: var(--text-color);
}

}
}

.form-group {
    margin-bottom: 20px; /* Отступ между группами полей */
}

.form-group label {
    display: block;
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 8px;
    font-weight: 500;
    display: flex; /* Для выравнивания текста и тумблера */
    align-items: center;
    justify-content: space-between;
}

.form-group label .toggle-text {
    font-size: 14px;
    color: var(--text-color);
    margin-left: 10px; /* Отступ между тумблером и текстом */
}

.form-group {
    color: var(--text-color);

}


.form-group input[type="text"],
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #C9D3E8;
    border-radius: 6px;
    font-size: 16px;
    color: var(--header-color);
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    -webkit-appearance: none; /* Убираем стандартные стили для select на WebKit */
    -moz-appearance: none; /* Убираем стандартные стили для select на Firefox */
    appearance: none; /* Убираем стандартные стили для select */
}

.form-group select {
    cursor: pointer;
    color: var(--text-color);

}

.form-group input::placeholder {
    color: var(--text-color);
    opacity: .5; /* Для Firefox */
}

.form-group input[type="text"]:focus,
.form-group select:focus {
    border-color: var(--main-color);
    box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.2);
}

.form-group select {
    background-color: var(--white); /* Фон для select */
    background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"%3E%3Cpath fill="%238C99A9" d="M3.293 4.293L6 7.000l2.707-2.707A1 1 0 019.414 5.707l-3.5 3.5A1 1 0 015 9.707a1 1 0 01-.707-.293l-3.5-3.5a1 1 0 011.414-1.414z"/%3E%3C/svg%3E'); /* Пользовательская стрелка */
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 10px;
}

.toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateY(3px);

}

.toggle-text {
    font-size: 16px;
    transform: translateY(-5px);
    color: var(--text-color);
}

/* Стили переключателя */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* Сам ползунок */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: background-color 0.3s;
    border-radius: 30px;
}

/* Кружок внутри */
.slider::before {
    content: "";
    position: absolute;
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    border-radius: 50%;
}

/* При активном состоянии */
input:checked + .slider {
    background-color: var(--main-color);
}

input:checked + .slider::before {
    transform: translateX(22px) scale(1.1);
}

/* Кнопка "Загрузить материалы" */
.upload-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--main-color);
    color: var(--white);
    border: 1px solid var(--main-color);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
    text-decoration: none;
    box-shadow: var(--button-shadow);
    transition: .3s all;
}

.upload-button:hover {
    background-color: var(--white);
    color: var(--main-color);
}

/* Скрываем стандартный инпут для файлов */
.hidden-file-input {
    display: none;
}

.file-list {
    margin-top: 10px;
    font-size: 14px;
    color: var(--text-color);
}

.file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    border-bottom: 1px solid #eee; /* Разделитель между файлами */
}

.file-item:last-child {
    border-bottom: none;
}

.file-item .remove-file {
    color: #FF0000;
    cursor: pointer;
    margin-left: 10px;
    font-weight: bold;
}

/* Кнопка "Отправить" внизу формы */
.submit-button {
    display: block;
    width: 100%;
    padding: 15px 20px;
    background-color: var(--main-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
    margin-top: 30px;
    box-shadow: var(--button-shadow);
    text-align: center; /* Центрируем текст */
    text-decoration: none; /* Убираем подчеркивание, если это ссылка-кнопка */
    transition: .3s all;
}

.submit-button:hover {
    opacity: .8;
}

/* Адаптивность */

}
}

.modal {
    display: none; /* скрыто по умолчанию */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* полупрозрачный тёмный фон */
    z-index: 9999; /* поверх всего */
    justify-content: center;
    align-items: center;
}

/* Контент модального окна */
.modal-content {
    background-color: white;
    padding: 30px 40px;
    border-radius: 12px;
    text-align: center;
    width: 60%;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    animation: scaleIn 0.3s ease-in-out;
}

/* Иконка */
.modal-icon {
    font-size: 48px;
    color: var(--green); /* зелёная галочка */
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    grid-gap: 10px;

}

/* Заголовок */
.modal-title {
    font-size: 32px;
    z-index: 10000000;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--green);
}

/* Текст */
.modal-text {
    font-size: 16px;
    color: var(--text-color);
}

/* Анимация появления */
@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}


}


/* Основной фон модалки (затемнение фона) */


.footer {
    width: 90%;
    height: 60vh;
    border-radius: 16px;
    background-color: var(--white); /* Белый фон футера */
    padding: 80px 100px; /* Отступы внутри футера */
    border-top: 1px solid var(--border-color); /* Верхняя граница */
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05); /* Легкая тень сверху */
    margin-top: 50px;
    margin-bottom: 50px; /* Прижать футер к низу */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;

h2 {
    font-size: 40px;
    font-weight: 600;
    column-rule-color: var(--header-color);
}

.content {
    width: 100%;
    height: 80%;
    margin-top: 50px;

.contacts-header {
    font-size: 32px; /* Размер заголовка "Контакты" */
    color: var(--header-color);
    margin-bottom: 40px; /* Отступ под заголовком */
    font-weight: 600;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* 4 колонки, адаптивные */
    gap: 30px; /* Отступ между ячейками сетки */
}

.contact-column {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Отступ между элементами внутри колонки */
}

.contact-column h4 {
    font-size: 16px; /* Размер подзаголовка колонки */
    color: var(--text-color); /* Цвет подзаголовка */
    margin: 0;
    font-weight: 500;
}

.contact-item {
    display: flex;
    align-items: center;
}

.contact-item .icon-wrapper {
    background-color: var(--main-color); /* Фон иконки */
    border-radius: 50%; /* Круглая форма */
    width: 32px; /* Размер круга */
    height: 32px; /* Размер круга */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 12px; /* Отступ справа от круга */
    flex-shrink: 0; /* Не сжимать */
}

.contact-item .icon-wrapper i,
.contact-item .icon-wrapper svg {
    color: var(--white); /* Цвет иконки */
    font-size: 16px; /* Размер иконки */

}

.contact-item a,
.contact-item span {
    font-size: 14px; /* Размер шрифта текста ссылки/спана */
    color: var(--main-color); /* Цвет ссылки/текста */
    text-decoration: none;
    transition: color 0.2s ease;
    cursor: pointer;
}

.contact-item a:hover {
    transition: .3s all;
}

/* Стиль для графа работы */
.schedule-item {
    display: flex;
    margin-bottom: 8px; /* Отступ между строками расписания */
}

.schedule-item:last-child {
    margin-bottom: 0;
}

.schedule-item .day {
    font-size: 14px;
    color: var(--main-color); /* Цвет дней недели */
    margin-right: 5px;
    white-space: nowrap; /* Чтобы день не переносился */
}

.schedule-item .time {
    font-size: 14px;
    color: var(--main-color); /* Цвет времени */
}

.schedule-item .weekend {
    color: #FF0000; /* Красный цвет для выходных */
}

/* Кнопка подписки */
.subscribe-button {
    display: inline-flex; /* Используем inline-flex для кнопки и стрелки */
    align-items: center;
    padding: 12px 20px; /* Отступы внутри кнопки */
    border: 1px solid var(--main-color); /* Граница кнопки */
    border-radius: 8px; /* Скругление кнопки */
    color: var(--main-color); /* Цвет текста кнопки */
    background-color: var(--white); /* Фон кнопки */
    text-decoration: none;
    font-size: 14px; /* Размер шрифта кнопки */
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.subscribe-button i {
    margin-left: 10px; /* Отступ для иконки стрелки */
    font-size: 16px;
    transition: color 0.2s ease;
}

.subscribe-button:hover {
    background-color: var(--main-color);
    color: var(--white);
}

.subscribe-button:hover i {
    color: var(--white);
}

}

}


.footer-bottom {
    width: 100%;
    height: 20px;
    display: flex;
    justify-content: center;
    font-size: 14px;
    font-weight: 400;
    column-rule-color: var(--text-color);
    transform: translateY(50px);
}


}


