.project-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.project-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15) !important;
    border-color: #e41e13;
}

.project-image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #f5f5f5;
    overflow: hidden;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-image {
    transform: scale(1.1);
}

.project-overlay {
    background: linear-gradient(135deg, rgba(228, 30, 19, 0.85) 0%, rgba(228, 30, 19, 0.75) 100%);
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    z-index: 2;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-card .feature-box-info h5 {
    color: #223645;
    transition: color 0.3s ease;
    font-size: 20px;
    line-height: 1.4;
}

.project-card:hover .feature-box-info h5 {
    color: #e41e13;
}

.project-card .feature-box-info p {
    color: #707070;
    font-size: 14px;
}

.transition-all {
    transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
    .project-image-wrapper {
        height: 280px;
    }

    .project-card .feature-box-info {
        padding: 1.5rem !important;
    }

    .project-card .feature-box-info h5 {
        font-size: 18px;
    }
}

/* Case Study Section Styles */
.letter-spacing-1 {
    letter-spacing: 1.5px;
}

.btn-modern {
    background: linear-gradient(135deg, #e41e13 0%, #c41a10 100%);
    color: #fff;
    padding: 14px 40px;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(228, 30, 19, 0.3);
}

.btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(228, 30, 19, 0.4);
    background: linear-gradient(135deg, #c41a10 0%, #e41e13 100%);
    color: #fff;
}

/* Subscribe Section Styles */
.form-control-modern {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 0;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-control-modern::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-control-modern:focus {
    outline: none;
    border-color: #fff;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

@media (max-width: 768px) {
    .ticket-info {
        padding: 0 15px;
    }

    .sub-left h4 {
        font-size: 18px;
        margin-bottom: 20px !important;
    }
}