.showcase-section {
    padding: 4rem 0;
}

.showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.showcase-box {
    position: relative;
    height: 400px;
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
    direction: rtl;
}

.showcase-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-box:hover .showcase-image {
    transform: scale(1.05);
}

.showcase-content {
    position: absolute;
    top: 0;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 400px;
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.showcase-content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.2) 100%);
    color: white;
    text-align: center;
    border-radius: 10px;

    display: flex;
    align-items: center;        
    justify-content: center;  
    flex-direction: column;     
}

.showcase-title {
  font-size: 3.6rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1.5px;
  line-height: 1.1;
  text-shadow:
    0 0 6px rgba(0, 0, 0, 0.85),
    0 2px 7px rgba(0, 0, 0, 0.9),
    0 4px 10px rgba(0, 0, 0, 0.6);
}

.showcase-description {
  font-size: 1.8rem;
  color: #fff;
  text-shadow:
    0 0 6px rgba(0, 0, 0, 0.85),
    0 2px 7px rgba(0, 0, 0, 0.9),
    0 4px 10px rgba(0, 0, 0, 0.6);
}

.showcase-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    border: 2px solid transparent;
    transition: background-color 0.3s ease;
}

.showcase-button:hover {
    background-color: #0056b3;
}

/* Animation */
.showcase-box {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.showcase-box.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .showcase-box {
        height: 350px;
    }
    
    .showcase-title {
        font-size: 2.5rem;
    }
    
    .showcase-description {
        font-size: 1.4rem;
    }
}
