/* Custom Styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
}

/* Glassmorphism Header on Scroll */
.header-scrolled {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Custom gradient for buttons and hero text */
.brand-gradient-text {
    background: linear-gradient(90deg, #0077B6, #00B4D8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-gradient-bg {
    background: linear-gradient(90deg, #0077B6, #00B4D8);
}

.brand-gradient-bg:hover {
    background: linear-gradient(90deg, #00609a, #009ac4);
}

/* Custom Slider Thumb */
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: #0077B6;
    border-radius: 50%;
    cursor: pointer;
    border: 4px solid #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

input[type=range]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: #0077B6;
    border-radius: 50%;
    cursor: pointer;
    border: 4px solid #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Accordion styles */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

/* Testimonials slider styles */
.swiper-pagination-bullet-active {
    background-color: #0077B6 !important;
}

.swiper-button-next, .swiper-button-prev {
    color: #0077B6 !important;
}

/* Silliq o'tish (Smooth Scroll) effekti */

html {
    scroll-behavior: smooth;
}