﻿

.why-choose-section {
    padding: 80px 0;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.why-choose-section-two {
    margin-top: 50px;
    padding: 80px 0;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    color: #333;
    font-size: 2.5rem;
    font-weight: bold;
    color: #0b509b !important;
}

.feature-box {
    background: white !important;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 3px solid #e9ecef;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-left: 5px solid #0b509b !important;
}

    .feature-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    }

.feature-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    display: block;
}

.icon-construction {
    color: #ff6b35;
}

.icon-delivery {
    color: #ffd700;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #052c65;
}

.feature-description {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}


.section-title::after {
    content: "";
    display: block;
    margin: 8px auto 0;
    width: 30%;
    height: 5px;
    background: #ff6b35;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .feature-box {
        margin-bottom: 30px;
    }
}

