/*Header*/

.learn-more-section {
    text-align: center;
    background-image: url('/images/hero-img-about-01.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    font-size: 2em;
    padding: 2em;
}

@media (max-width: 768px) {
    .learn-more-section {
        font-size: 1.5em;
    }
}

/*Header*/

/*estimating services*/

.estimating-services {
    background-color: white;
    color: black;
    padding: 2em;
}

@media (max-width: 768px) {
    .learn-more-section {
        font-size: 1.5em;
    }
}

/*estimating services*/

/*vplan estimation*/

.vplan-estimation {
    padding: 2em;
}



/*vplan estimation*/


/*software section*/
.software-section {
    padding: 2em;
    background-color: white;
}

.content-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.software-image {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.icons-section {
    margin-top: 4rem;
}

.icon-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.icon {
    width: 5rem;
    height: 5rem;
    margin-bottom: 1rem;
}


@media (min-width: 768px) {
    .content-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (min-width: 640px) {
    .icon-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .icon-row {
        grid-template-columns: repeat(5, 1fr);
    }
}

/*software section*/


/*video section*/
.video-section {
    padding: 2em;
}

.video-wrapper {
    width: 100%;
}
/*video section*/

/*cta section*/

.cta-section {
    position: relative;
    padding: 4rem 2.5rem;
    text-align: center;
    color: white;
    background-image: url('../images/hero-img-about-01.png');
    background-size: cover;
    background-position: bottom;
} 

.cta-button {
    display: inline-block;
    background-color: #EBC22E;
    color: black;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    /* Full rounded */
    text-decoration: none;
}

.cta-button:hover {
    background-color: #d1a727;
}

/*cta section*/