/* Review Section Styles */
.review-section {
    background: #ffffff;
}

.review-wrapper {
    overflow: hidden;
    width: 100%;
}

.review-container {
    display: flex;
    width: calc(300px * 8);
    animation: slide 16s linear infinite;
}

.review-card {
    flex: 0 0 auto;
    margin-right: 20px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    background: #f8f9fa;
    padding: 15px;
}

.review-card:last-child {
    margin-right: 0;
}

.review-card .review-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.review-card .review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
}

.review-card .reviewer-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1a3c5e;
}

.review-card .review-rating {
    color: #ffc107;
    margin-bottom: 10px;
}

.review-card .review-text {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.5;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-75%);
    }
}

@media (min-width: 768px) {
    .horizontal-scroll {
        overflow-x: hidden;
        position: relative;
    }
    .nav-btn-left,
    .nav-btn-right {
        display: flex;
    }
}

/* Campus Locations Section */
.campus-locations {
    padding: 40px 0;
    background-color: #fff;
}

.campus-locations .container {
    max-width: 1200px;
}

.campus-locations h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.campus-locations iframe {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.campus-locations .review-link {
    display: block;
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
}

.campus-locations .review-link:hover {
    text-decoration: underline;
}

.campus-locations .row {
    margin-bottom: 20px;
}

.active {
    color: rgb(166, 206, 57);
}
