/* -------- Use Cases Page Specific Styles -------- */

/* ========================= */
/* ===== HERO SECTION ====== */
/* ========================= */
#tech-landing-title, #tech-landing-subtext, #tech-landing-button {
    opacity: 0;
    position: relative;
    top: 50px;
    transition: opacity 1s ease-out, top 1s ease-out;
}

.landing-container {
    position: relative;
    width: 100%;
    height: 100vh;
    background: linear-gradient(200deg, #2c204866, #e471ab88), url("/static/images/usecases.21bc45e7c1c4.jpg") no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.landing-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(6, 0, 0, 0.568) 50%);
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0; }
    50% { transform: translateY(-100px) rotate(180deg); opacity: 1; }
}

.overlay {
    position: relative;
    width: 90%;
    max-width: 1100px;
    z-index: 2;
    padding: 2rem;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 2rem;
    animation: slideDown 1s ease-out;
}

.badge-text {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

.overlay h1 {
    font-family: 'Gelica', sans-serif !important;
    font-weight: 300 !important;
    font-size: 4rem;
    line-height: 1.2;
    color: white;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.gradient-text {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 400;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.overlay p {
    font-family: "Neue Montreal", sans-serif !important;
    font-size: 1.3rem;
    max-width: 900px;
    margin: 0 auto 3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.btn-hero-primary {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    color: white;
    padding: 1rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-hero-primary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    color: white;
    text-decoration: none;
}

.btn-hero-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    color: white;
    text-decoration: none;
}

/* Responsive Adjustments for Hero Section */
@media (max-width: 992px) {
    .overlay h1 {
        font-size: 3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .overlay {
        width: 95%;
        padding: 1rem;
    }
    .overlay h1 {
        font-size: 2.5rem;
    }
    .overlay p {
        font-size: 1.1rem;
    }
    
    .hero-badge {
        margin-bottom: 1.5rem;
    }
    
    .badge-text {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
}

@media (max-width: 576px) {
    .overlay h1 {
        font-size: 2rem;
    }
    .overlay p {
        font-size: 1rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}






/* --- Description Section --- */
.description-section {
    padding: 50px 20px;
}

.d-title {
    width: 50%;
}

.description-title {
    font-family: 'Gelica', sans-serif;
    font-weight: 300;
    font-size: 48px;
    line-height: 56px;
    color: rgb(27, 31, 32);
    margin-top: 20px;
}

.description-text {
    font-family: 'Neue Montreal', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: rgb(27, 31, 32);
    margin-top: 20px;
}

@media (max-width: 992px) {
    .d-title {
        width: 100%;
    }
    .description-title {
        font-size: 40px;
        line-height: 48px;
    }
    .description-text {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 768px) {
    .d-title {
        width: 100%;
    }
    .description-title {
        font-size: 32px;
        line-height: 40px;
    }
    .description-text {
        font-size: 14px;
        line-height: 22px;
    }
}

.description-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.description-image.animate {
    opacity: 1;
    transform: translateY(0);
}

/* --- Use Cases Showcase Section --- */
.use-cases-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.showcase-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #2C2048;
    margin-bottom: 1rem;
    font-family: 'Gelica', sans-serif !important;
}

.showcase-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.use-case-item {
    margin-bottom: 120px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.use-case-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.use-case-image-wrapper {
    position: relative;
    height: 100%;
    min-height: 350px;
}

.use-case-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(44, 32, 72, 0.15);
    transition: all 0.3s ease;
}

.use-case-image-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(44, 32, 72, 0.2);
}

.use-case-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.use-case-image-container:hover .use-case-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(44, 32, 72, 0.1), rgba(44, 32, 72, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.use-case-image-container:hover .image-overlay {
    opacity: 1;
}

.use-case-content {
    padding: 40px 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.use-case-number {
    font-size: 1rem;
    font-weight: 600;
    color: #2C2048;
    background: linear-gradient(135deg, #2C2048, #4a4a6a);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.use-case-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #2C2048;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-family: 'Gelica', sans-serif !important;
}

.use-case-description {
    font-size: 1.125rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.use-case-extended {
    font-size: 1rem;
    color: #495057;
    line-height: 1.6;
    padding: 1.5rem;
    background: rgba(44, 32, 72, 0.02);
    border-left: 4px solid #2C2048;
    border-radius: 0 8px 8px 0;
    position: relative;
}

.use-case-extended::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #2C2048, #4a4a6a);
}

.use-case-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #2C2048;
    text-decoration: none;
    padding: 1rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    width: fit-content;
}

.use-case-cta:hover {
    color: #2C2048;
    border-bottom-color: #2C2048;
    transform: translateX(5px);
}

.use-case-cta svg {
    transition: transform 0.3s ease;
}

.use-case-cta:hover svg {
    transform: translate(3px, -3px);
}

.use-case-divider {
    text-align: center;
    margin: 80px 0;
}

.divider-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #2C2048, transparent);
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .use-cases-showcase {
        padding: 80px 0;
    }
    
    .use-case-item {
        margin-bottom: 80px;
    }
    
    .use-case-content {
        padding: 30px 0;
        text-align: center !important;
    }
    
    .showcase-title {
        font-size: 2.25rem;
    }
    
    .use-case-title {
        font-size: 1.875rem;
    }
    
    .use-case-image-wrapper {
        min-height: 250px;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .use-cases-showcase {
        padding: 60px 0;
    }
    
    .use-case-item {
        margin-bottom: 60px;
    }
    
    .showcase-title {
        font-size: 2rem;
    }
    
    .use-case-title {
        font-size: 1.625rem;
    }
    
    .use-case-description {
        font-size: 1rem;
    }
    
    .use-case-image-wrapper {
        min-height: 200px;
    }
}

@media (max-width: 576px) {
    .showcase-title {
        font-size: 1.75rem;
    }
    
    .use-case-title {
        font-size: 1.5rem;
    }
    
    .use-case-extended {
        padding: 1rem;
        margin-left: 0;
        margin-right: 0;
    }
}





