
.mebot-body {
    background: linear-gradient(135deg, #0a0f2b, #1a237e);
    color: white;
    font-family: Arial, sans-serif;
}

/***********************************
 Главный блок Слайдер hero
***********************************/
/***********************************
 Главный блок Слайдер hero
***********************************/
.mebot-hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(168deg, #06354d, #08080d);
    color: white;
    overflow: hidden;
}

.mebot-hero-content {
    max-width: 60%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.mebot-hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.mebot-hero-text {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.mebot-btn-primary {
    background: #ff9800;
    border: none;
    padding: 12px 24px;
    font-size: 1.2rem;
    border-radius: 5px;
}

/***********************************
 Новые стили для объектов
***********************************/
.mebot-hero-objects {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.mebot-object {
    position: absolute;
    max-width: 20%;
    opacity: 0.9;
    transition: all 0.3s ease;
}

/* Позиции объектов */
.robot-left {
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
}

.robot-right {
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
}

.drone-top {
    top: -75%;
    left: 54%;
    transform: translateX(-50%);
    animation: floatUpDown 4s ease-in-out infinite;
}

.ball-float {
    top: 81%;
    left: 68%;
    width: 140px;
    animation: floatSideways 5s ease-in-out infinite, spin 20s linear infinite;
}

.gear-spin {
    bottom: 66%;
    right: 70%;
    width: 80px;
    animation: spin 8s linear infinite;
}

.crawler-bot {
    bottom: -74%;
    left: 32%;
    width: 150px;
    animation: moveLeftRight 4s ease-in-out infinite;
}

/* Анимации */
@keyframes floatUpDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-15px); }
}

@keyframes floatSideways {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes slightMove {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
@keyframes moveLeftRight {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(15px);
    }
}

@keyframes moveRightLeft {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-15px);
    }
}


/***********************************
 Адаптив
***********************************/
@media (max-width: 1200px) {
    .mebot-hero-content {
        max-width: 70%;
    }
    .mebot-object {
        max-width: 25%;
    }
}

@media (max-width: 992px) {
    .mebot-hero {
        height: 400px;
    }
    .mebot-hero-content {
        max-width: 80%;
    }
    .mebot-hero-title {
        font-size: 2.5rem;
    }
    .mebot-object {
        max-width: 30%;
    }
}

@media (max-width: 768px) {
    .mebot-hero {
        flex-direction: column;
    }
    .mebot-hero-content {
        max-width: 90%;
    }
    .mebot-hero-title {
        font-size: 2rem;
    }
    .mebot-hero-text {
        font-size: 1.1rem;
    }
    .mebot-object {
        max-width: 35%;
        opacity: 0.8;
    }
    .ball-float,
    .gear-spin,
    .crawler-bot {
        display: none;
    }
}

/*********************************
 Главный блок Слайдер
**********************************/

/*******************
Разные стили
********************/
.mebot-hero h1 {
    font-size: 3rem;
    font-weight: bold;
}
.mebot-hero p {
    font-size: 1.2rem;
}
.mebot-btn-primary {
    background: #ff9800;
    border: none;
}
.mebot-section {
    padding: 60px 20px;
    text-align: center;
}
.mebot-card {
    margin-bottom: 15px;
    border: none;
    padding: 20px;
    border-radius: 10px;
}
.mebot-badge {
    background: #ff9800;
    padding: 15px;
    font-size: 1.1rem;
    border-radius: 10px;
}
.mebot-subscribe {
    padding: 50px 20px;
    text-align: center;
}
.mebot-subscribe input {
    width: 50%;
    padding: 10px;
    border-radius: 5px;
    border: none;
}
.mebot-subscribe button {
    background: #0a0f2b;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    margin-left: 10px;
}
/*********************
Разные стили
*********************/

/**************************
 Поля отправить каталог
**************************/
.field-st {
    height: 40px;
    border-radius: 11px;
    padding: 5px;
    margin: 10px 5px;
    background-color: #0c1b1c;
    border: 1px solid #48a7af;
}
/*************************
Поля отправить каталог
*************************/

/**************************************
Стили для круглых
**************************************/
.tech-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    padding: 0 1rem;
    overflow-x: auto;
}

.tech-item {
    flex: 1 1 0;
    min-width: 120px;     /* Минимальная ширина круга */
    max-width: 160px;     /* Максимальная ширина круга */
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeIn 1s ease forwards;
    opacity: 0;
    animation-fill-mode: both;
    margin-top: 5px;
}

.icon-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: linear-gradient(145deg, #1b2c34, #08080d);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.icon-wrapper img {
    width: 60%;
    height: 60%;
    object-fit: contain;
}

.tech-label {
    margin-top: 0.75rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.tech-item:hover .icon-wrapper {
    transform: scale(1.05);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* При очень узком экране — в столбик */
@media (max-width: 500px) {
    .tech-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .tech-item {
        flex: 0 0 100%;
        max-width: none;
    }
}

/**************************************
Стили для круглых
**************************************/


/**************************************
Стили для как делаются
**************************************/
.bglinear {
    background: linear-gradient(145deg, #1b2c34, #08080d);

}

.how-card {
margin-bottom: 15px;
border: none;
border-radius: 20px;
overflow: hidden;
}
/**************************************
Стили для как делаются
**************************************/



/**************************************
Стили для для блока инвестиции
**************************************/
.invest-btn:hover {
    background: linear-gradient(14deg, #00000038, #1d657547);
}

.invest-btn {
    font-size: 20px;
    color: #ffffff;
    background: linear-gradient(88deg, #278ec147, #00000038);
    display: inline-block;
    font-weight: 700;
    padding: 12px 30px 10px;
    border-radius: 10px;
    transition: all 0.3s;
    border-radius: 13px;
    /* transform: skewX(-17deg); */
}
/**************************************
Стили для для блока инвестиции
**************************************/


/************************************
Для формы запроса каталога SET
************************************/
/* Стили для полей формы с префиксом set */
.set-field {
    background-color: transparent;
    border: 1px solid #06a3af;
    padding: 10px;
    color: white;
    transition: all 0.3s ease;
    outline: none;
    border-radius: 10px;
}

.set-field::placeholder {
    color: #ccc;
    transition: opacity 0.3s ease;
}

/* При фокусе */
.set-field:focus {
    border-color: #00bcd4;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.set-field:focus::placeholder {
    opacity: 0;
}

/* Эффекты наведения и нажатия для кнопки */
.set-subscribe-button {
    transition: all 0.3s ease;
    transform: scale(1);
}

/* При наведении — лёгкое увеличение и изменение цвета */
.set-subscribe-button:hover {
    background-color: #ffa726; /* более светлый оранжевый */
    transform: scale(1.1);
}

/* При нажатии — цвет темнее и чуть "вжата" */
.set-subscribe-button:active {
    background-color: #e65100;
    transform: scale(0.95);
}
/************************************
Для формы запроса каталога SET
************************************/
