* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
    
    overflow-x: hidden;
}

.hero-container {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 530px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    top: 0rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        #c9c8c8 0%, 
        #f8fafc 25%, 
        #f1f5f9 50%, 
        #e2e8f0 75%, 
        #bbbbbb 100%);
    z-index: 1;
}

.hero-3d-scene {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    text-align: center;
    top: 0rem;
}

.hero-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: #1e293b;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
}

.hero-title-highlight {
    background: linear-gradient(135deg, #6366f1, #8b5cf6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-top: 0.5rem;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
}

.hero-cta-button {
    position: relative;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.hero-button-text {
    position: relative;
    z-index: 2;
}

.hero-button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.hero-cta-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
}

.hero-cta-button:hover .hero-button-glow {
    left: 100%;
}

.hero-cta-button:active {
    transform: translateY(0) scale(0.98);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-container {
        
        padding: 2rem 0;
        height: 50vh;
        
    }
    
    .hero-content {
        padding: 0 1.5rem;
    }
    
    .hero-title {
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        margin-bottom: 2rem;
    }
    
    .hero-cta-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-cta-button {
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
    }
}

.hero-cta-button a{
    text-decoration: none;
    color: white;
}