/* 
* Hero Text Fix
* This file ensures proper text alignment and centering in the hero section
*/

/* Force proper centering for hero content */
.hero-area .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-area .row {
    width: 100%;
    justify-content: center !important;
    text-align: center !important;
    margin: 0;
}

.hero-area .col-lg-10 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0 20px;
}

/* Force centered text in hero content */
.hero-content {
    width: 100%;
    max-width: 900px;
    text-align: center !important;
    margin: 0 auto !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Ensure the heading is properly sized and centered */
.hero-content h1 {
    font-size: 3.2rem !important;
    line-height: 1.2 !important;
    text-align: center !important;
    width: 100% !important;
    font-weight: 700 !important;
    margin-bottom: 25px !important;
    color: #ffffff !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3) !important;
}

/* Ensure paragraph text is properly sized and centered */
.hero-content p {
    font-size: 1.25rem !important;
    line-height: 1.6 !important;
    text-align: center !important;
    max-width: 800px !important;
    width: 100% !important;
    margin: 0 auto 30px !important;
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2) !important;
}

/* Responsive styles */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem !important;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem !important;
    }
    
    .hero-content p {
        font-size: 1.1rem !important;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.2rem !important;
    }
    
    .hero-content p {
        font-size: 1rem !important;
    }
}
