



/* Testimonials Styles */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.testimonials-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
}

.testimonials-section h2,
.testimonials-section .subtitle {
    color: white !important;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #6f42c1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.quote-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.author-info h6 {
    margin-bottom: 0.25rem;
    font-weight: 600;
    color: #212529;
}

.author-info span {
    font-size: 0.875rem;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(0,123,255,0.1);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(0,123,255,0.2);
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #dee2e6;
    opacity: 0.5;
}

.carousel-indicators button.active {
    background: #007bff;
    opacity: 1;
}

/* Job Search Styles */
.search-container {
    border: 1px solid #e9ecef;
}

.filters-sidebar {
    border: 1px solid #e9ecef;
    position: sticky;
    top: 20px;
}

.filter-group h6 {
    color: #495057;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.job-card {
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.job-card:hover {
    border-color: #007bff;
    box-shadow: 0 5px 15px rgba(0,123,255,0.1);
}

.job-tags .badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
}

.job-meta p {
    margin-bottom: 0.5rem;
}

/* FAQ Styles */
.accordion-item {
    border: 1px solid #e9ecef;
    margin-bottom: 0.5rem;
    border-radius: 8px !important;
    overflow: hidden;
}

.accordion-button {
    background: #f8f9fa;
    border: none;
    font-weight: 500;
    padding: 1rem 1.25rem;
}

.accordion-button:not(.collapsed) {
    background: #007bff;
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 1.25rem;
    background: white;
}

/* Responsive */
@media (max-width: 768px) {
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .filters-sidebar {
        position: static;
        margin-bottom: 2rem;
    }
}