
@font-face {
    font-family: 'Gilroy';
    src: url('../gilroy/Gilroy-Light.ttf') format('truetype');
    font-weight: 300; 
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gilroy';
    src: url('../gilroy/Gilroy-Regular.ttf') format('truetype');
    font-weight: 900; 
    font-style: normal;
    font-display: swap;
}


* {
    box-sizing: border-box;
}

body {
    font-family: 'Gilroy', sans-serif;
    font-weight: 300;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
}



.slider-container {
    width: 100%;
    margin: 0 auto; 
    padding: 0;
    position: relative;
}

@media (min-width: 769px) {
    .slider-container {
        
        padding-top: 0; 
        padding-bottom: 40px;
    }
    .video-hero {
        max-width: 1450px; 
        margin: 0 auto; 
        padding: 0 20px;
    }
}

.video-hero {
    position: relative;
    width: 100%;
    height: 750px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    background-color: #eee;
}

.video-hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transform: translate(-50%, -50%);
    display: block;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.4) 100%);
    color: white;
    padding: 60px 80px;
    box-sizing: border-box;
    font-family: 'Gilroy', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.main-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 50%;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 400px;
}
.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}
.feature-item svg {
    width: 28px;
    height: 28px;
    margin-right: 15px;
    fill: white;
    flex-shrink: 0;
}
.feature-item-content strong {
    display: block;
    font-size: 18px;
    margin-bottom: 4px;
    font-weight: 900;
}
.feature-item-content p {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

.bottom-right-content {
    position: absolute;
    bottom: 60px;
    right: 80px;
    max-width: 400px;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.bottom-right-content p {
    font-size: 24px;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 20px;
}

.slider-appointment-button-group {
    display: flex;
    align-items: center;
    text-decoration: none;
    border-radius: 9999px;
    box-shadow: 0 2px 4px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    background-color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.slider-appointment-text-button {
    background-color: transparent;
    border: none;
    color: #0c4a6e;
    padding: 10px 18px 10px 20px;
    font-weight: 900;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.slider-appointment-icon-button {
    background-color: #2daae2;
    border-radius: 50%;
    padding: 6px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 8px 0 0;
    box-shadow: none;
}

.slider-appointment-icon-button svg {
    color: white;
    width: 18px;
    height: 18px;
    transform: none;
}




@media (max-width: 768px) {
    .slider-container {
       
        padding-top: 0; 
        padding-bottom: 20px;
        padding-left: 0;
        padding-right: 0;
    }
    
    .video-hero {
        max-width: 100%;
        height: auto;
        overflow: visible;
        box-shadow: none;
        background-color: transparent;
        border-radius: 0;
        display: flex;
        flex-direction: column;
    }
    
    .video-overlay {
        position: static;
        background: white;
        color: #333;
        padding: 0 20px;
        width: 100%;
        height: auto;
        order: 1;
    }
    
    .video-hero video {
        position: static;
        transform: none;
        width: 100%;
        height: 300px;
        min-height: auto;
        border-radius: 10px;
        z-index: 1; 
        margin-top: 30px;
        order: 2;
        object-fit: cover; 
    }
    
    .main-title {
        font-size: 32px;
        max-width: 100%;
        color: #333;
        margin-bottom: 30px;
    }

    .feature-list {
        margin-top: 20px;
        padding-top: 20px;
    }
    .feature-item-content strong {
        color: #333;
    }
    .feature-item-content p {
        color: #666;
    }
    .feature-item svg {
        fill: #0c4a6e;
    }
    
    .bottom-right-content {
        position: static;
        text-align: left;
        align-items: flex-start;
        margin-top: 30px;
        max-width: 100%;
        width: 100%;
        order: 3; 
        padding: 0 20px;
    }
    .bottom-right-content p {
        font-size: 18px;
        color: #333;
        text-align: left;
        width: 100%;
    }
    
    .slider-appointment-button-group {
        width: 100%;
        margin-bottom: 20px;
        border: none;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        justify-content: space-between;
        align-items: center;
    }
}