﻿html {
    overflow-y :hidden!important;
}
@media screen and (max-width: 1024px){
    html{
        overflow-y: auto!important;
    }
}

/* Project Tab Section Styles */
.tab-section {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
}

.tab-header {
    text-align: center;
    margin-bottom: 60px;
}

.tab-header h2 {
    font-size: 3.5rem;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.2;
}

.tab-header h2 span {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.tab-header h2.animate span {
    opacity: 1;
    transform: translateY(0);
}

.tab-navigation {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 60px;
    border-bottom: 1px solid #e0e0e0;
}

.tab-btn {
    background: none;
    border: none;
    padding: 20px 30px;
    font-family: 'Museo Sans 500 Medium', serif;
    font-size: 1rem;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: -1px;
}

.tab-btn:hover {
    color: #1a1a1a;
}

.tab-btn.active {
    color: #1a1a1a;
    font-weight: 600;
    border-bottom: 2px solid #1a1a1a;
}

.tab-content {
    position: relative;
}

.tab-panel {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.tab-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.project-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.project-visual {
    position: relative;
}

.project-card {
    background: #ffffff;
    border: none;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.card-tag {
    background: #f0f0f0;
    color: #666;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.card-number {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    opacity: 0.3;
}

.card-images {
    display: grid;
    gap: 20px;
    margin-bottom: 20px;
    min-height: 200px;
}

.image-left, .image-right {
    background: #f5f5f5;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    min-height: 150px;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: #4CAF50;
    color: white;
    transform: scale(1.1);
}

.image-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.year {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
}

.card-footer {
    display: flex;
    justify-content: center;
}

.review-badge {
    background: #4CAF50;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.badge-number {
    background: rgba(255, 255, 255, 0.2);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.video-container {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.project-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    background: #f0f0f0;
    color: #666;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.project-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 15px;
}

.project-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 15px;
}

.project-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.service-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-item {
    font-size: 0.9rem;
    color: #666;
    padding: 8px 12px;
    background: #f9f9f9;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: #f0f0f0;
    color: #1a1a1a;
}

/* Services Section Enhancements */
.card-icon {
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.minimal-card:hover .card-icon {
    background: #1a1a1a;
    transform: scale(1.1);
}

.card-icon i {
    font-size: 1.5rem;
    color: #666;
    transition: color 0.3s ease;
}

.minimal-card:hover .card-icon i {
    color: #ffffff;
}

.services-cta {
    text-align: center;
    margin-top: 4rem;
    position: absolute;
    right: 30%;
    top: 5%;
}

.services-cta .about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    height: 100px;
    width: 100px;
    background: transparent;
    border: 1px solid #b6ff7f;
    padding: 2rem;
    font-size: 12px;
    color: #1a1a1a;
}

.services-cta .about-btn::before {
    background-image: linear-gradient(140.65deg, #97ea24 8.63%, #eaff57 48.92%, #76ff00 92.57%);
    border-radius: 50%;
    clip-path: circle(50% at 50% 50%) padding-box;
    content: "";
    inset: 0;
    -webkit-mask: radial-gradient(transparent 66%, #000 67%, #000 100%);
    mask: radial-gradient(transparent 66%, #000 67%, #000 100%);
    position: absolute;
    transition: opacity .6s ease, opacity .6s ease .6s;
}

.services-cta .about-btn:hover {
    background: #4CAF50;
    color: white;
    transform: translateY(-2px);
}

.services-cta .about-btn[data-mouse-follower="active"] {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
    background: #4CAF50 !important;
    color: white !important;
    border-color: #4CAF50 !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .project-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .tab-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .tab-section {
        padding: 80px 0;
    }
    
    .tab-header h2 {
        font-size: 2rem;
    }
    
    .tab-navigation {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .project-title {
        font-size: 1.5rem;
    }
    
    .project-services {
        grid-template-columns: 1fr;
    }
    
    .card-images {
        grid-template-columns: 1fr;
    }
}
