/*===================================== 

YOU CAN WRIGHT CUSTOME CSS 

======================================*/

/* Project Gallery Styles */
.project-gallery-link {
    display: block;
    position: relative;
    cursor: pointer;
}

.project-gallery-img {
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

.project-gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 8px;
}

.gallery-overlay i {
    color: #fff;
    font-size: 40px;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.project-gallery-link:hover .gallery-overlay {
    opacity: 1;
}

.project-gallery-link:hover .gallery-overlay i {
    transform: scale(1);
}

.project-gallery-link:hover .project-gallery-img img {
    transform: scale(1.1);
}

.project-gallery-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.project-gallery-carousel .owl-nav button {
    pointer-events: all;
    background: rgba(255, 255, 255, 0.9) !important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.project-gallery-carousel .owl-nav button:hover {
    background: #fff !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.project-gallery-carousel .owl-nav button i {
    font-size: 18px;
    color: #333;
}

/* Modern Project Gallery Carousel Dots */
.project-gallery-carousel .owl-dots {
    text-align: center;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.project-gallery-carousel .owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    margin: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    border: 2px solid transparent;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.project-gallery-carousel .owl-dots .owl-dot:hover {
    background: rgba(0, 0, 0, 0.4);
    transform: scale(1.2);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.project-gallery-carousel .owl-dots .owl-dot.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    width: 40px;
    height: 12px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    transform: scale(1.1);
}

.project-gallery-carousel .owl-dots .owl-dot.active:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.5);
}

@media (max-width: 768px) {
    .project-gallery-img {
        height: 400px;
    }
}

/* Footer copyright link - Codejital */
.footer-bottom .copyrights-text .copyright-link {
    display: inline !important;
    text-decoration: none !important;
    color: inherit !important;
    vertical-align: baseline !important;
    margin: 0 !important;
    padding: 0 !important;
}

.footer-bottom .copyrights-text .copyright-link:hover {
    text-decoration: underline !important;
}
