html {
    scroll-behavior: smooth;
}


.logo{
    width: 8rem;
    height: auto;
}

[x-cloak] { display: none !important; }
.gradient-bg {
    background: linear-gradient(135deg, #0D1B2A 0%, #1A2D42 50%, #1B9AAA 100%);
}
.service-card {
    transition: all 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(13, 27, 42, 0.1), 0 10px 10px -5px rgba(13, 27, 42, 0.04);
}
.glass-effect {
    background: rgba(224, 225, 221, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(224, 225, 221, 0.2);
}

.footer-logo{
    width: 10rem;
    height: auto;
}

/* Enhanced Survey Button Styling */
.survey-btn {
    /* Base styling */
    display: block !important;
    font-weight: 600 !important;
    font-size: 1.125rem !important;
    padding: 1rem 2rem !important;
    border-radius: 0.75rem !important;
    text-decoration: none !important;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;

    /* Enhanced colors */
    background: linear-gradient(135deg, #1B9AAA 0%, #167A8A 100%) !important;
    color: white !important;
    border: 1px solid #0D1B2A !important;

}

.survey-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.survey-btn:hover {
    border-color: #E0E1DD !important;
    color: #E0E1DD !important;
}

.survey-btn:hover::before {
    left: 100%;
}

.survey-btn:hover {
    animation: none;
}
