/* Styles for the testimonials section */
.testimonial-slider {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(40, 40, 40, 0.8);
}

.testimonial-icon-container {
    background: linear-gradient(135deg, #0a84ff, #0074e0);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(10, 132, 255, 0.3);
}

.testimonial-quote {
    font-size: 1.3rem;
    line-height: 1.6;
    max-width: 800px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0a84ff, #0074e0);
    box-shadow: 0 5px 15px rgba(10, 132, 255, 0.4);
    margin: 0 auto;
}

.slider-control {
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
}

.slider-control-inner {
    width: 36px;
    height: 36px;
    background: rgba(10, 132, 255, 0.15);
    backdrop-filter: blur(4px);
}

/* Fixed carousel indicators */
.carousel-indicators {
    margin-bottom: 0 !important;
    bottom: 10px !important;
}

.carousel-indicators [data-bs-target] {
    width: 8px !important;
    height: 8px !important;
    margin: 0 5px !important;
    background-color: #0a84ff !important;
    opacity: 0.4 !important;
    transition: opacity 0.3s ease;
    border-radius: 50%;
    border: none;
}

.carousel-indicators .active {
    opacity: 1 !important;
}

/* Hero section styles */
.hero-section {
    background-size: cover;
    background-position: center;
    height: calc(100vh + 80px);
    display: flex;
    align-items: center;
    width: 100vw;
    margin-top: -80px;
    padding: 0;
}

/* Counter items */
.counter-item {
    background-color: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid #333;
    transition: all 0.3s ease;
}

/* Card hover effects */
.hover-zoom {
    transition: transform 0.3s ease;
}

.hover-zoom:hover {
    transform: translateY(-10px);
}

/* Call to action buttons */
.hover-scale {
    transition: all 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Smooth transition for testimonial slides */
.carousel-item {
    transition: transform 0.6s ease-in-out;
} 