﻿/*@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&display=swap');
*/
/* Slider Container Styles */
.slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    transition: background-image 1s ease-in-out;
}

/* Content Wrapper */
.slider-content {
    max-width: 800px;
    padding: 0 20px;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Banner Styles */
.welcome-banner {
    background-color: #d3e9fb;
    color: #2490eb;
    padding: 8px 15px;
    width: 381px;
    max-width: fit-content;
    margin: 0 auto;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Heading Styles */
.main-heading {
    font-size: 64px;
    line-height: 72px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #fff;
    text-transform: capitalize;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.sub-heading {
    font-size: 24px;
    margin-bottom: 50px;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Button Styles */
.button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.slider-button {
    background-color: #2490eb;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

    .slider-button:hover {
        background-color: #007aff;
        transform: scale(1.05);
    }

/* Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

    .dot.active {
        background-color: white;
        transform: scale(1.2);
    }

/* Slider Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
}

.nav-arrow {
    color: white;
    font-size: 40px;
    cursor: pointer;
    background: rgba(0,0,0,0.3);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

    .nav-arrow:hover {
        background: rgba(0,0,0,0.5);
        transform: scale(1.1);
    }

/* Responsive Styles */
@media (max-width: 768px) {
    .main-heading {
        font-size: 48px;
        line-height: 56px;
    }

    .welcome-banner {
        width: 250px;
        font-size: 12px;
    }

    .slider-button {
        padding: 12px 22px;
        font-size: 12px;
    }

    .nav-arrow {
        font-size: 30px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 28px;
        line-height: 36px;
    }

    .sub-heading {
        font-size: 18px;
    }

    .welcome-banner {
        width: 200px;
        font-size: 10px;
    }

    .button-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .nav-arrow {
        font-size: 24px;
        width: 36px;
        height: 36px;
    }
}
