/*evaluation*/
.evaluation-card {
    /*background: white;*/
    border-radius: 15px;
    /*box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);*/
    padding: 40px;
    max-width: 500px;
    margin: 0 auto;
}

.form-title {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 30px;
    font-size: 24px;
}

.rating-container {
    background: #0d6b68;
    border-radius: 25px;
    padding: 15px 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
}

.star {
    cursor: pointer;
    color: rgba(255, 255, 255, 0.3);
    font-size: 24px;
    transition: all 0.2s ease;
}

.star:hover,
.star.active {
    color: #ffd700;
    transform: scale(1.1);
}

.rating-label {
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 12px;
    font-size: 15px;
}

.comment-section {
    margin-top: 25px;
}

.form-control {
    border-radius: 10px;
    border: 1.5px solid #e0e0e0;
    padding: 12px 16px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.form-control:focus {
    border-color: #0d6b68;
    box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.1);
}

.submit-btn {
    background: #0d6b68;
    border: none;
    border-radius: 10px;
    padding: 14px 40px;
    font-weight: 600;
    color: white;
    width: 100%;
    margin-top: 25px;
    transition: all 0.3s ease;
    font-size: 15px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 82, 130, 0.3);
}

.rating-text {
    color: white;
    font-size: 14px;
    font-weight: 500;
    margin-left: 10px;
}


/* display evaluations*/

.header-section {
    text-align: center;
    margin-bottom: 40px;
    color: white;
}

.header-section h1 {
    font-weight: 700;
    font-size: 42px;
    margin-bottom: 10px;
}

.header-section p {
    font-size: 18px;
    opacity: 0.9;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 25px 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #667eea;
    display: block;
}

.stat-label {
    color: #666;
    font-size: 14px;
    font-weight: 500;
    margin-top: 5px;
}

.reviews-container {
    max-width: 900px;
    margin: 0 auto;
}

.review-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 15px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
}

.reviewer-details {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-weight: 600;
    color: #2c3e50;
    font-size: 16px;
}

.review-date {
    color: #999;
    font-size: 13px;
}

.rating-display {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
    border-radius: 20px;
    padding: 8px 18px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.rating-display .star {
    color: #ffd700;
    font-size: 16px;
}

.rating-display .star.empty {
    color: rgba(255, 255, 255, 0.3);
}

.review-comment {
    color: #555;
    line-height: 1.7;
    font-size: 15px;
    margin-top: 15px;
}

.filter-section {
    max-width: 900px;
    margin: 0 auto 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 600;
    color: #667eea;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.no-reviews {
    text-align: center;
    color: white;
    font-size: 18px;
    margin-top: 40px;
}

/*evaluation index*/
.avatar-show {
    width: 100%;
    height: 100px;
     border-radius: 50%;
    background: #0D6B68;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
}


/*categories images */

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-header h1 {
    color: white;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.gallery-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    columns: 4;
    column-gap: 20px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 15px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.zoom-icon {
    color: white;
    font-size: 36px;
    transform: scale(0.5);
    transition: transform 0.3s ease;
}

.gallery-item:hover .zoom-icon {
    transform: scale(1);
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.4);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-counter {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 16px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 25px;
}

/* Responsive */
@media (max-width: 1200px) {
    .gallery-container {
        columns: 3;
    }
}

@media (max-width: 768px) {
    .gallery-container {
        columns: 2;
    }

    .gallery-header h1 {
        font-size: 36px;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .lightbox-prev {
        left: 15px;
    }

    .lightbox-next {
        right: 15px;
    }
}

@media (max-width: 480px) {
    .gallery-container {
        columns: 1;
    }
}

/* Loading Animation */
.gallery-item img {
    opacity: 0;
    animation: imageLoad 0.5s ease forwards;
}

@keyframes imageLoad {
    to {
        opacity: 1;
    }
}

/*
.section-background-img {
    background: url(../img/hero-bg.jpg) top center no-repeat;
    background-size: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
*/
.section-background-img {
    background: url(../img/hero-bg.jpg) top center no-repeat;
    background-size: cover;
    background-attachment: fixed; /* Parallax effect */
    /*box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);*/
    position: relative;
    overflow: hidden;
}

/* Animated gradient overlay */
.section-background-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
    135deg,
    rgba(13, 107, 104, 0.3) 0%,
    rgba(13, 107, 104, 0.2) 50%,
    rgba(13, 107, 104, 0.3) 100%
);
    animation: gradientShift 8s ease infinite;
    z-index: 1;
}

/* Subtle animated particles effect */
.section-background-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px;
    background-position: 0 0, 40px 40px;
    animation: particleFloat 20s linear infinite;
    z-index: 2;
}

/* Ensure content appears above overlays */
.section-background-img > * {
    position: relative;
    z-index: 3;
}

/* Gradient animation */
@keyframes gradientShift {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Particle floating animation */
@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
    }
    100% {
        transform: translateY(-50px) translateX(50px);
    }
}

/* Hover effect - intensify on interaction */
.section-background-img:hover::before {
    animation-duration: 4s;
    opacity: 0.9;
}

/* Responsive - disable parallax on mobile for better performance */
@media (max-width: 768px) {
    .section-background-img {
        background-attachment: scroll;
    }
}
