/* Project Detail Page Styles - Same as Service Detail */

.project-detail-section {
    background: transparent;
    transform: translateZ(0);
}

.project-detail-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-detail-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(79, 70, 229, 0.3);
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.3);
}

.project-detail-image {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.project-detail-image img {
    width: 100%;
    height: auto;
    min-height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-detail-image:hover img {
    transform: scale(1.02);
}

.project-detail-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.2) 0%, rgba(16, 185, 129, 0.2) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.project-detail-image-placeholder::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate-gradient 10s linear infinite;
}

@keyframes rotate-gradient {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.placeholder-icon {
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.placeholder-icon i {
    font-size: 4rem;
    background: linear-gradient(135deg, #4F46E5 0%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-detail-header {
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.project-detail-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.project-detail-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.project-detail-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.project-info-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.project-info-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.project-info-box h3 i {
    background: linear-gradient(135deg, #4F46E5 0%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    min-width: 150px;
}

.info-item strong i {
    background: linear-gradient(135deg, #4F46E5 0%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-item span {
    color: rgba(255, 255, 255, 0.8);
}

.info-item .project-link {
    color: rgba(79, 70, 229, 1);
    text-decoration: none;
    transition: all 0.3s ease;
    word-break: break-all;
}

.info-item .project-link:hover {
    color: rgba(16, 185, 129, 1);
    text-decoration: underline;
}

/* Project Link Box */
.project-link-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.project-link-box:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(79, 70, 229, 0.3);
}

.project-visit-btn {
    background: linear-gradient(135deg, #4F46E5 0%, #10B981 100%);
    color: white;
    border: none;
    font-weight: 600;
    padding: 16px 30px;
    transition: all 0.3s ease;
    transform: translateZ(0);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}

.project-visit-btn:hover {
    transform: translateY(-2px) translateZ(0);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.5);
    color: white;
}

/* Project Gallery */
.project-gallery {
    margin-top: 40px;
}

.project-gallery h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
}

.project-gallery h3 i {
    background: linear-gradient(135deg, #4F46E5 0%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Project CTA Box */
.project-cta-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.project-cta-box:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(79, 70, 229, 0.3);
}

.project-cta-box h4 {
    color: #fff;
    font-weight: 700;
    margin: 0;
}

.project-cta-box p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.project-cta-box .btn-primary,
.project-cta-box .btn-quote {
    background: linear-gradient(135deg, #4F46E5 0%, #10B981 100%);
    color: white;
    border: none;
    font-weight: 600;
    padding: 12px 30px;
    transition: all 0.3s ease;
    transform: translateZ(0);
}

.project-cta-box .btn-primary:hover,
.project-cta-box .btn-quote:hover {
    transform: translateY(-2px) translateZ(0);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.5);
}

/* Sidebar */
.project-sidebar {
    position: sticky;
    top: 100px;
}

.project-info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-info-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(79, 70, 229, 0.3);
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.3);
}

.project-info-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
}

.project-info-card h4 i {
    background: linear-gradient(135deg, #4F46E5 0%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.other-projects-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.other-projects-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(79, 70, 229, 0.3);
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.3);
}

.other-projects-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
}

.other-projects-card h4 i {
    background: linear-gradient(135deg, #4F46E5 0%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.other-projects-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.other-project-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateZ(0);
}

.other-project-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px) translateZ(0);
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.2);
    border-color: rgba(79, 70, 229, 0.3);
}

.other-project-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.other-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.other-project-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.2) 0%, rgba(16, 185, 129, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.other-project-placeholder i {
    font-size: 2rem;
    background: linear-gradient(135deg, #4F46E5 0%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.other-project-content {
    flex: 1;
}

.other-project-content h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.other-project-content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.other-project-arrow {
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.other-project-item:hover .other-project-arrow {
    background: linear-gradient(135deg, #4F46E5 0%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateX(5px);
}

/* Image Modal */
#imageModal .modal-content {
    background: rgba(0, 0, 0, 0.9);
    border: none;
}

#imageModal .modal-body {
    padding: 20px;
}

#imageModal img {
    max-height: 80vh;
    width: auto;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 991.98px) {
    .project-sidebar {
        position: static;
        margin-top: 40px;
    }
    
    .project-detail-card {
        padding: 30px 20px;
    }
}

@media (max-width: 767.98px) {
    .project-detail-title {
        font-size: 1.5rem;
    }
    
    .project-detail-content {
        font-size: 1rem;
    }
    
    .project-info-box {
        padding: 20px;
    }
    
    .project-cta-box {
        padding: 20px;
        text-align: center;
    }
    
    .project-detail-image-placeholder {
        height: 300px;
    }
    
    .placeholder-icon {
        width: 100px;
        height: 100px;
    }
    
    .placeholder-icon i {
        font-size: 3rem;
    }
    
    .gallery-item img {
        height: 200px;
    }
}




