/* Hero Section Styles extracted from index.html */
#hero {
    width: 100%;
    height: 100vh;
    background: #fff;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.purple-bg-circle {
    position: absolute;
    width: 550px;
    height: 550px;
    background: #6f42c1;
    border-radius: 50%;
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    box-shadow: 0 10px 30px rgba(111, 66, 193, 0.3);
}
.light-purple-sweep {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: #f4eefe;
    border-bottom-left-radius: 50% 100%;
    z-index: 0;
}
.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}
.hero-img img {
    max-width: 100%;
    height: auto;
}
.hero-info h1 {
    margin: 0 0 10px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #002147;
    font-family: "Montserrat", sans-serif;
}
.hero-info h1 span {
    color: #ff4a17;
}
.hero-info p {
    color: #555;
    margin-bottom: 30px;
    font-size: 18px;
}
.hero-info .btn-get-estimate {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 35px;
    border-radius: 50px;
    transition: 0.5s;
    color: #fff;
    background: #ff4a17;
    box-shadow: 0 8px 15px rgba(255, 74, 23, 0.3);
    text-decoration: none;
}
.hero-info .btn-get-estimate:hover {
    background: #e83e0d;
    color: #fff;
}
.agile-box {
    border: 1px solid #ff4a17;
    padding: 0 5px;
    margin: 0 2px;
    display: inline-block;
}
@media (max-width: 991px) {
    #hero {
        height: auto;
        padding: 120px 0 60px 0;
    }
    .purple-bg-circle {
        width: 400px;
        height: 400px;
        left: -100px;
        display: none; /* Hide the circle on mobile */
    }
    .hero-info h1 {
        font-size: 32px;
        line-height: 40px;
        color: #002147;
        text-align: center;
    }
    .hero-img img {
        max-width: 60%;
        display: block;
        margin: 0 auto 30px auto;
    }
    .hero-info {
        text-align: center;
    }
    .hero-info p {
        color: #002147;
        font-weight: 600;
    }
}
