.rs-gallery {
    padding: 60px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-desc {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    text-align: center;
    opacity: 0;
    transition: all 0.4s ease;
    padding: 20px;
}

.gallery-item:hover .gallery-desc {
    opacity: 1;
}

.gallery-desc h3 {
    margin-top: 25%;
    font-size: 20px;
}

.gallery-desc h3 a {
    color: #fff;
    text-decoration: none;
}

.gallery-desc p {
    font-size: 14px;
    margin: 10px 0;
}

.gallery-desc .image-popup {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    font-size: 18px;
}


.hr-icon {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #ccc, transparent);
    position: relative;
    margin: 40px 0;
}

.hr-icon::after {
    content: "\f005"; /* Font Awesome star */
    font-family: FontAwesome;
    position: absolute;
    left: 50%;
    top: -12px;
    transform: translateX(-50%);
    background: #fff;
    padding: 0 10px;
    color: #999;
}
      .cv-button {
            display: inline-block;
            margin-top: 15px;
            padding: 10px 20px;
            background-color: var(--accent-color);
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background 0.3s ease;
        }

        .cv-button:hover {
            background-color: var(--btn-hover);
        }
		 header {
            background: var(--primary-color);
            color: white;
            padding: 3rem 1rem;
            text-align: center;
        }