.logo {
    margin-right: 30px;
}
.logo-text {
    font-size: 2em;
    line-height: 0.8;
    /*border-left: 15px dotted #2c7ae7;
    padding-left: 5px;*/
}
.mnu-slider-item div {
    background: rgba(0,0,0,0.6);
    padding: 10px;
    border-radius: 6px;
}

.card-item-wide .card {
    display: flex;
    overflow: visible;
}

.card-badges {
    /*position: absolute;*/
    /*left: -30px;*/
    top: -30px;
    /*display: flex;*/
    /*flex-wrap: wrap;*/
    /*z-index: 1;*/
    /*margin-left: -1rem;*/
}

.card-badge-left {
    height: 2.25rem;
    line-height: 2.25rem;
    font-weight: bold;
    padding: 0 0.625rem;
    border-radius: var(--el-border-radius-min);
    /*margin-bottom: 0.5rem;*/
    margin-left: -30px;
}

.card-badge-right {
    height: 2.25rem;
    line-height: 2.25rem;
    font-weight: bold;
    padding: 0 0.625rem;
    border-radius: var(--el-border-radius-min);
    /*margin-bottom: 0.5rem;*/
    margin-left: 200px;
}

.item-style::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--el-border-radius);
    border: none;
    overflow: hidden;
    pointer-events: none;
    transition: all 0.25s;
}

/*intro*/
.hero-container {
    /*position: relative;*/
    /*width: 100%;*/
    /*min-height: 100vh;*/
    background: linear-gradient(135deg, #0a2f5a 0%, #1a4a7a 50%, #0d5aa8 100%);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-30px); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes jump {
    0%, 100% { transform: translateY(0px) rotate(-15deg); }
    50% { transform: translateY(-40px) rotate(15deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.container {
    /*width: 100%;*/
    /*height: 100vh;*/
    /*display: flex;*/
    /*flex-direction: column;*/
    /*align-items: center;*/
    /*justify-content: center;*/
    /*padding: 2vh 2vw;*/
    /*gap: 3vh;*/
    /*position: relative;*/
    /*z-index: 1;*/
}

.animation-center {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: clamp(20px, 5vw, 40px);
    flex: 0 0 auto;
}

.center-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(40px, 8vw, 80px);
    flex-wrap: wrap;
    width: 100%;
    position: relative;
}

.magnifier {
    font-size: clamp(45px, 12vw, 80px);
    animation: rotate 8s linear infinite;
    transform-origin: center;
}

.gift {
    font-size: clamp(40px, 10vw, 70px);
    animation: jump 2.5s ease-in-out infinite;
}

.heart {
    font-size: clamp(30px, 8vw, 50px);
    animation: pulse 1.5s ease-in-out infinite;
    margin-top: clamp(10px, 2vw, 20px);
}

.robot-container {
    position: relative;
    width: clamp(80px, 18vw, 160px);
    height: clamp(80px, 18vw, 160px);
    animation: float 4s ease-in-out infinite;
    z-index: 5;
    order: 0;
}

.robot {
    font-size: clamp(70px, 18vw, 160px);
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.robot-image {
    width: clamp(80px, 18vw, 160px);
    height: clamp(80px, 18vw, 160px);
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.services-animated {
    display: flex;
    gap: clamp(10px, 2vw, 20px);
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 95vw;
    padding: 0 clamp(10px, 2vw, 20px);
}

.service-title {
    font-size: clamp(12px, 2.5vw, 18px);
    font-weight: 700;
    color: var(--main-color);
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.2), rgba(255, 153, 0, 0.2));
    border: 2px solid rgba(0, 153, 255, 0.4);
    padding: clamp(8px, 1.5vw, 16px) clamp(14px, 2.5vw, 28px);
    border-radius: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: default;
    white-space: nowrap;
}

.service-title:hover {
    border-color: rgba(255, 153, 0, 0.6);
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.3), rgba(255, 153, 0, 0.3));
    transform: scale(1.05);
}

.service-title:nth-child(1) {
    animation: slideInLeft 0.6s ease-out 0s;
}

.service-title:nth-child(2) {
    animation: slideInUp 0.6s ease-out 0.15s both;
}

.service-title:nth-child(3) {
    animation: slideInRight 0.6s ease-out 0.3s both;
}

.content-bottom {
    text-align: center;
    color: white;
    width: 100%;
    max-width: 90vw;
    padding: clamp(10px, 2vw, 30px);
    animation: slideInUp 0.8s ease-out 0.4s both;
    flex: 0 0 auto;
}

.description {
    font-size: clamp(13px, 2.2vw, 16px);
    line-height: 1.6;
    margin-bottom: clamp(15px, 3vw, 25px);
    opacity: 0.9;
    max-width: 85vw;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    padding: clamp(10px, 2vw, 16px) clamp(24px, 4vw, 40px);
    font-size: clamp(12px, 2.2vw, 16px);
    font-weight: 700;
    background: linear-gradient(135deg, #0099ff, #00ccff);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 153, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 153, 255, 0.6);
}

.cta-button:active {
    transform: translateY(-1px);
}

.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    opacity: 0.05;
}

.shape1 {
    width: 30vw;
    height: 30vw;
    max-width: 400px;
    max-height: 400px;
    background: white;
    border-radius: 50%;
    top: -10vh;
    right: -5vw;
    animation: float 8s ease-in-out infinite;
}

.shape2 {
    width: 20vw;
    height: 20vw;
    max-width: 300px;
    max-height: 300px;
    background: white;
    border-radius: 50%;
    bottom: -5vh;
    left: -3vw;
    animation: float 10s ease-in-out infinite reverse;
}

@media (max-width: 1200px) {
    .container {
        padding: 2vh 1vw;
        gap: 2vh;
    }
}

@media (max-width: 768px) {
    .center-group {
        gap: clamp(30px, 6vw, 60px);
    }

    .services-animated {
        gap: clamp(8px, 1.5vw, 12px);
    }

    .service-title {
        font-size: clamp(11px, 2.2vw, 14px);
        padding: clamp(6px, 1.2vw, 10px) clamp(10px, 2vw, 16px);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1vh 1vw;
        gap: 1.5vh;
        min-height: auto;
    }

    .center-group {
        gap: clamp(25px, 5vw, 40px);
    }

    .services-animated {
        flex-direction: column;
        gap: clamp(8px, 1.5vw, 10px);
        width: 100%;
    }

    .service-title {
        font-size: clamp(11px, 2.5vw, 13px);
        padding: clamp(6px, 1.2vw, 8px) clamp(10px, 1.8vw, 12px);
        width: auto;
        min-width: 80%;
    }

    .description {
        font-size: clamp(12px, 2vw, 14px);
        margin-bottom: clamp(10px, 2vw, 15px);
    }

    .cta-button {
        padding: clamp(8px, 1.5vw, 12px) clamp(16px, 3vw, 24px);
        font-size: clamp(11px, 2vw, 13px);
    }
}

@media (max-height: 600px) {
    .container {
        min-height: auto;
        padding: 1vh 1vw;
    }

    .animation-center {
        gap: clamp(15px, 3vh, 25px);
    }
}

/* Logo Styles */
.logo-wrapper {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-wrapper:hover {
    transform: scale(1.02);
}

.logo-img {
    height: auto;
    max-width: 200px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* Animated background for logo */
.logo-animated-bg {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Glow effect */
.logo-glow {
    position: absolute;
    width: 260px;
    height: 80px;
    background: radial-gradient(circle, rgba(0, 153, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow-pulse 3s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes glow-pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.95);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}



/* SVG Animations within the logo area */
@keyframes float-gentle {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

@keyframes rotate-slow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes twinkle-star {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.9); }
}

@keyframes pulse-bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* SVG Filter for animated logo elements */
.logo-img {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    animation: float-gentle 4s ease-in-out infinite;
}



@media (max-width: 480px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
        padding: 10px 15px;
    }

    .logo-img {
        max-width: 160px;
    }

}
