html,body{
    scroll-behavior: smooth;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.text-shadow-black{
    text-shadow: 1px 1px black;
}
.swiper-pagination-bullet-active {
    background: #78bde3 !important; /* Ձեր բրենդային կանաչը */
    width: 24px !important;
    border-radius: 12px !important;
}
.footer-menu a{
    color: #fff!important;
    padding: 0;
    background: none!important;
}

.input-field{
    width: 100%;
    background-color: #f8f9fa;
    border: none;
    border-radius: 0.75rem; /* 12px */
    padding-top: 1rem;      /* 16px */
    padding-bottom: 1rem;
    padding-left: 1.5rem;    /* 24px */
    padding-right: 1.5rem;
    outline: 2px solid transparent;
    outline-offset: 2px;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.input-field::placeholder {
    color: #9ca3af; /* Tailwind gray-400 */
}

.input-field:focus {
    outline: none;
    box-shadow: 0 0 0 2px #78bde3; /* ring-2 */
}

.btn-field {
    width: 100%;
    padding: 1rem 2.5rem;
    background-color: #78bde3;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    text-align: center;
}

.btn-field:hover {
    background-color: #4b9ac6;
    transform: translateY(-0.25rem);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.btn-field:active {
    transform: translateY(-0.1rem);
}


#menu-menu-2 {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    color: #ffffff;
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 700;
    font-style: italic;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    #menu-menu-2 {
        font-size: 1.875rem; /* text-3xl for mobile balance */
        gap: 1.5rem;
    }
}

#menu-menu-2 a{
    color: #FFF;
    transition-property: color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

#menu-menu-2 a:hover {
    color: #78bde3!important;
    background: transparent!important;
}