﻿


   
.why-choose-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    font-weight: bold;
}

.feature-box {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;

}

    .feature-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

.feature-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    display: block;
}

.icon-construction {
    color: #ff6b35;
}

.icon-delivery {
    color: #ffd700;
}

.icon-pricing {
    color: #28a745;
}

.icon-support {
    color: #6f42c1;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0d47a1;
    margin-bottom: 20px;
}

.feature-description {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.feature-box .form-control {
    border-radius: 8px;
    border: 1px solid #ddd;
}

    .feature-box .form-control:focus {
        border-color: #0d47a1;
        box-shadow: 0 0 6px rgba(13,71,161,0.2);
    }

.feature-box .btn {
    background: linear-gradient(135deg, #0d47a1, #1976d2);
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .feature-box .btn:hover {
        background: #ffd700;
        color: #0d47a1;
    }

.form-label {
    text-align: start !important;
}
.form-label {
    text-align: start !important;
}


.feature-box div.d-flex {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

.feature-box span {
    min-width: 30px;
}


.section-title::after {
    content: "";
    display: block;
    margin: 8px auto 0;
    width: 50%;
    height: 5px;
    background: #ff6b35;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .feature-box {
        margin-bottom: 30px;
    }
}

