/* Hero Section Styling */
.hero-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-text-container {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

/* Main Text Styling */
.hero-text {
    font-size: 32px;
    line-height: 1.6;
    font-weight: 300;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Company Name Emphasis */
.company-name {
    font-weight: 700;
    color: hsl(200, 94%, 26%);
    font-size: 1.1em;
    /* text-shadow: 0 0 10px rgba(76, 175, 80, 0.2);  */
}


/* Highlighted Text */
.highlight {
    color: #64b5f6;
    font-weight: 500;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    transform: scaleX(0);
}

/* Animation Keyframes */
@keyframes underlineExpand {
    to {
        transform: scaleX(1);
    }
}

/* Typing Animation Effect */
.animated-text {
    opacity: 0;
    animation: fadeInUp 1.5s ease-out 0.5s forwards;
}

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

/* Alternative: Typewriter Effect (uncomment to use) */
/*
.hero-text {
    overflow: hidden;
    border-right: 3px solid #4CAF50;
    white-space: nowrap;
    margin: 0 auto;
    animation: typing 4s steps(100, end), blink-caret 0.75s step-end infinite;
    max-width: fit-content;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #4CAF50; }
}
*/

/* Gradient Text Effect (alternative styling) */
/*
.hero-text {
    background: linear-gradient(45deg, #4CAF50, #FFD700, #4CAF50);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
*/

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-text {
        font-size: 1.9rem;
    }
}

@media (max-width: 768px) {
    .hero-text {
        font-size: 1.6rem;
        line-height: 1.5;
    }
    
    .hero-section {
        padding: 60px 0;
        min-height: 50vh;
    }
}

@media (max-width: 480px) {
    .hero-text {
        font-size: 1.4rem;
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 40px 0;
    }
}

/* Hover Effects */
.hero-text-container:hover .hero-text {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.hero-text-container:hover .company-name {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Additional Background Effects */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: radial-gradient(circle at 50% 50%, rgba(76, 175, 80, 0.1) 0%, transparent 70%); */
    pointer-events: none;
}
