/* Hero Section Styles */

/* Hero title responsive sizes */
@media (min-width: 640px) {
    .hero-br { 
        display: block !important; 
    }
    .hero-title { 
        font-size: 1.5rem; 
        line-height: 2rem; 
    }
}

@media (min-width: 768px) {
    .hero-title { 
        font-size: 3rem; 
        line-height: 1; 
    }
}

@media (min-width: 1024px) {
    .hero-title { 
        font-size: 3.75rem; 
        line-height: 1; 
    }
}

/* Remove focus outline from buttons */
button:focus, 
button:active {
    outline: none !important;
    border: none !important;
}

/* Service button styles */
.service-button {
    outline: none !important;
    border: none !important;
}

/* Hero buttons responsive layout */
@media (min-width: 640px) {
    .hero-buttons { 
        flex-direction: row !important; 
    }
}

/* Hero button hover styles */
.hero-btn-2:hover { 
    background: #ffffff !important; 
    color: #000000 !important; 
}

/* Scroll indicator animations */
@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scrollDot {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.6;
    }
    50% {
        transform: translateY(8px);
        opacity: 1;
    }
}

/* Adjust scroll indicator position for desktop with sidebar */
@media (min-width: 1024px) {
    #scroll-indicator {
        left: calc(50% + 100px) !important; /* Half of sidebar width */
    }
}

/* Hero content styling */
.hero-content {
    z-index: 10;
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: 0.025em;
    word-break: keep-all;
}

/* Gradient text effects */
.gradient-text-tech {
    background: linear-gradient(to right, #22d3ee, #60a5fa, #a855f7);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(96, 165, 250, 0.5);
}

.gradient-text-future {
    background: linear-gradient(to right, #fb923c, #f59e0b, #facc15);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-shadow: 0 0 15px rgba(251, 146, 60, 0.6);
    filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.4));
}

/* Hero subtitle */
.hero-subtitle {
    font-size: 1.5rem;
    line-height: 2;
    color: #fef3c7;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}

/* Hero buttons container */
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
}

/* Hero button 1 (primary) */
.hero-btn-1 {
    padding: 0.75rem 2rem;
    background: linear-gradient(to bottom right, #ff6b35, #ff8c42, #ffa726);
    color: #ffffff;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(1);
    border: none;
    text-decoration: none;
}

.hero-btn-1:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 30px 60px -15px rgba(255, 107, 53, 0.4);
}

/* Hero button 2 (secondary) */
.hero-btn-2 {
    padding: 0.75rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 8px;
    font-weight: 400;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

/* Scroll indicator */
#scroll-indicator {
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 40px;
    border: 2px solid white;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 8px;
    animation: scrollBounce 2s infinite;
}

#scroll-dot {
    width: 4px;
    height: 12px;
    background-color: white;
    border-radius: 20px;
}

/* Gradient overlay */
.gradient-overlay {
    background: linear-gradient(to bottom right, rgba(6, 36, 86, 0.3), rgba(142, 139, 149, 0.1), rgba(19, 35, 67, 0.2));
}