.hero a, h1, p{
    color: black ;
    text-align: center;
    padding-left: 15%;
    padding-right: 15%;
}
.hero h2{
    color: #003366;
    font-size: 2.3vh;
    text-align: center;
}
.cta-box {
    display: flex;
    align-items: center;
    background-color: #F8F8F8;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
}

/* Left side */
.cta-left {
    flex: 1;
    text-align: center;
}

.cta-left img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
}

.quote-btn {
    background-color: #E67E22;
    color: white;
    padding: 10px 20px;
    font-size: 1.2em;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    border-radius: 5px;
}


.quote-btn:hover {
    background-color: #D35400;
}

/* Right side */
.cta-right {
    flex: 1;
    padding-left: 20px;
}

.cta-right h2 {
    font-size: 1.8em;
    color: #003366;
}

.cta-right ul {
    list-style: none;
    padding: 0;
}

.cta-right li {
    font-size: 1.2em;
    padding: 5px 0;
    color: black;
}

.featured-projects, .testimonials {
    text-align: center;
    padding: 40px;
    background-color: #F8F8F8;
}
.featured-projects, .testimonials h2{
    color: #003366;
}

.project-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.project {
    width: 300px;
    background: white;
    padding: 15px;
    box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
    border-radius: 10px;
}

.project img {
    width: 100%;
    border-radius: 10px;
}
.project h3{
    color: #D35400;
}
.project a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.project a:hover {
    opacity: 0.8;
}


.testimonial {
    max-width: 600px;
    margin: 20px auto;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
}
.testimonial h4 {
 color: #D35400;
}
.view-more a{
 color: white;
}
@media (max-width: 768px) {
    .cta-box {
        flex-direction: column; /* Stacks items vertically */
        text-align: center; /* Centers content */
    }

    .cta-left, .cta-right {
        width: 100%; /* Full width on mobile */
        padding: 10px; /* Adds spacing */
    }

    .cta-left img {
        max-width: 80%; /* Prevents oversized images */
    }
    .project-container {
        flex-direction: column;
        align-items: center;
    }
}
