﻿
/* Gallery Section */
.gallery-one {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.gallery-one__carousel .item {
    position: relative;
}




.gallery-one__img {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

    .gallery-one__img img {
        width: 100%;
        height: auto;
        transition: transform 0.3s ease;
    }

    .gallery-one__img:hover img {
        transform: scale(1.05);
    }

.gallery-one__img-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-one__img:hover .gallery-one__img-icon {
    opacity: 1;
}

.gallery-one__img-icon a {
    color: #fff;
    font-size: 24px;
    text-decoration: none;
}

    .gallery-one__img-icon a:hover {
        color: #ff0000; /* Red color on hover */
    }

/* Carousel Navigation Arrows */
.icon-left-arrow, .icon-right-arrow {
    font-size: 24px;
    color: #003366;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .gallery-one__carousel {
        padding: 0 10px;
    }
}

@media (max-width: 768px) {
    .gallery-one__carousel {
        padding: 0 20px;
    }
}

.testimonial-section {
    padding: 80px 20px;
    background: #ffffff;
}

.testimonial-heading {
    text-align: center;
    margin-bottom: 50px;
}

    .testimonial-heading h2 {
        font-size: 36px;
        color: #2c3e50;
        margin-bottom: 10px;
    }

    .testimonial-heading span {
        font-size: 16px;
        color: #3498db;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

.testimonial-carousel .item {
    background: #ecf5fc;
    border-left: 5px solid #3498db;
    border-radius: 12px;
    padding: 25px;
    margin: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s;
}

    .testimonial-carousel .item:hover {
        transform: translateY(-10px);
    }

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #3498db;
    margin-bottom: 15px;
}

.testimonial-rating {
    color: #f39c12;
    margin: 10px 0;
}

.testimonial-name {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-role {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.6;
    color: #34495e;
}

@media (max-width: 768px) {
    .testimonial-heading h2 {
        font-size: 28px;
    }
}


