.home-container {
    font-size: 1.2rem;
    text-align: center;
    padding: 5rem 1rem 4rem;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    justify-content: flex-start;
    align-items: center;
    min-height: 100vh;
    margin-top: 10px;
}

.box {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: min(850px, 90vw);
    backdrop-filter: blur(8px);
}

.hero-box {
    background: linear-gradient(180deg, rgba(40,120,255,0.1), rgba(20,40,80,0.05));
}

.hero-box h1 {
    font-size: 2.8rem;
    margin: 0;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(180deg, #fff, #b3d9ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

.hero-box h3 {
    margin: 0.5rem 0;
    color: #88bbff;
    font-weight: 500;
}

.subtitle {
    color: #dfeeff;
    font-size: 1.1rem;
    margin: 0.5rem 0 0;
}

.row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    width: min(850px, 90vw);
}

.box-row {
    border: 1px solid rgba(255,255,255,0.08);
    padding: 1.8rem;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    flex: 1;
    backdrop-filter: blur(6px);
}

.box-row h3 {
    color: #b3d9ff;
    margin: 0 0 1rem;
}

.box-row p {
    color: #dfeeff;
    margin: 0;
    line-height: 1.5;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: min(850px, 90vw);
}

.tech-box {
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 1.5rem;
}

.tech-box h4 {
    color: #88bbff;
    margin: 0 0 1rem;
    font-size: 1.2rem;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.5px;
    background: linear-gradient(90deg, #fff, #88c8ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.tech-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #dfeeff;
    text-align: left;
}

.tech-box li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.2rem;
}

.tech-box li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4488ff;
}

.cta-box {
    background: linear-gradient(180deg, rgba(40,120,255,0.08), rgba(20,40,80,0.04));
    width: min(600px, 90vw);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    padding: 2rem;
}

.cta-box h3 {
    color: #b3d9ff;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
}

.cta-box p {
    color: #dfeeff;
    margin: 0;
    font-size: 1.1rem;
    max-width: 80%;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(180deg, #3ba0ff, #0077ee);
    color: #fff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 12px rgba(0,119,238,0.3);
    transition: all 0.3s ease;
    min-width: 180px;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.animate-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

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

@media (max-width: 768px) {
    .home-container {
        gap: 2rem;
        padding: 2rem 0.5rem;
    }
    
    .hero-box {
        width: calc(100% - 20px);
        margin: 60px 10px 0;
        padding: 1.8rem 1rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }

    .hero-box h1 {
        font-size: 1.8rem;
    }

    .hero-box h3 {
        font-size: 1.1rem;
    }
    
    .row {
        flex-direction: column;
        width: calc(100% - 40px);
        gap: 1rem;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
        width: calc(100% - 40px);
        gap: 1rem;
    }
    
    .box-row, .tech-box {
        padding: 1.2rem;
        font-size: 0.9rem;
        text-align: center;
    }

    .box-row p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .tech-box h4 {
        font-size: 1.1rem;
        font-family: 'Orbitron', sans-serif;
        letter-spacing: 0.5px;
        margin-bottom: 0.8rem;
        background: linear-gradient(90deg, #fff, #88c8ff);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .tech-box ul {
        text-align: center;
        font-size: 0.9rem;
    }

    .tech-box li {
        padding: 0.4rem 0;
    }

    .cta-box {
        width: calc(100% - 20px);
        margin: 0 10px;
        padding: 1.8rem 1rem;
    }

    .cta-box h3 {
        font-size: 1.4rem;
    }

    .cta-box p {
        max-width: 100%;
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }

    .cta-button {
        width: 100%;
        min-width: unset;
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }
}










