@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
    font-family: 'Inter', sans-serif;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.gradient-bg {
    background: linear-gradient(135deg, #b51e22 0%, #8a1619 100%);
}

.slider-container {
    position: relative;
    overflow: hidden;
}

.slide {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.exam-card {
    transition: all 0.3s ease;
}

.exam-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(181, 30, 34, 0.2);
}

.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #b51e22;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.insurance-logo {
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.insurance-logo:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

iframe {
    max-width: 100%;
}

.contact-btn {
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
