/* === Hero Section Styles === */
.welcome-area {
    position: relative;
    height: 100vh;
    background: linear-gradient(135deg, #003366 0%, #0066CC 100%);
    overflow: hidden;
}
.header-text {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    align-items: center;
}
.hero-text {
    padding-right: 2rem;
}
.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--preformia-white);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.hero-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}
.hero-cta {
    margin-bottom: 2.5rem;
}
.hero-cta .main-button {
    background-color: var(--preformia-light-blue);
    color: var(--preformia-white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(102, 204, 255, 0.3);
    font-size: 1.1rem;
}
.hero-cta .main-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 204, 255, 0.4);
    background-color: #7fd4ff;
}
@media (max-width: 991px) {
    .welcome-area {
        padding-top: 120px;
        height: fit-content;

    }
    .header-text {
        padding: 60px 0;
        height: 100%;
    }
    .hero-title {
        font-size: 32px;
        line-height: 1.4;
        margin-bottom: 20px;
    }
    .hero-subtitle {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 30px;
    }
}
@media (max-width: 767px) {
    .welcome-area {
        padding-top: 100px;
        height: fit-content;
    }
    .header-text {
        padding: 40px 0;
        height: 100%;

    }
    .hero-title {
        font-size: 28px;
        line-height: 1.3;
        word-wrap: break-word;
        text-align: center;
        margin-bottom: 15px;
    }
    .hero-subtitle {
        font-size: 15px;
        line-height: 1.5;
        text-align: center;
        margin-bottom: 25px;
    }
    .hero-cta {
        text-align: center;
        margin-bottom: 25px;
    }
}
@media (max-width: 480px) {
    .welcome-area {
        padding-top: 80px;
        height: fit-content;

    }
    .header-text {
        padding: 30px 0;
        height: 100%;
    }
    .hero-title {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 12px;
    }
    .hero-subtitle {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 20px;
    }
    .hero-cta {
        margin-bottom: 20px;
    }
    .hero-cta .main-button {
        padding: 12px 24px;
        font-size: 14px;
    }
} 