/*=====================WHY CHOOSE US SECTION - 2 COLUMNS====================*/
.wrapper.pt45.pb45 {
    background: linear-gradient(135deg, #fff9f9 0%, #fff 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.wrapper.pt45.pb45:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, #d32f2f, #ff9800, #d32f2f);
}

.wrapper.pt45.pb45 h1 {
    font-family: 'Rouge Script', cursive;
    font-size: 48px;
    color: #d32f2f;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.wrapper.pt45.pb45 h1:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #ff9800, #d32f2f);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* 2 Columns Layout */
.why_choose_con {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 40px !important;
}

.reason_box {
    background: white;
    border-radius: 15px;
    padding: 25px;
    width: 48%; /* 2 boxes per line - 48% width each */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    min-height: 180px;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 25px;
}

.reason_box.animated {
    opacity: 1;
    transform: translateY(0);
}

.reason_box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(211, 47, 47, 0.15);
    border-color: #ffcdd2;
}

.reason_box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #d32f2f, #ff9800);
}

.reason_box h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    line-height: 1.4;
}

.reason_box .number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #d32f2f, #ff5252);
    color: white;
    border-radius: 50%;
    margin-right: 12px;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 4px 8px rgba(211, 47, 47, 0.3);
    flex-shrink: 0;
}

.reason_box p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
    margin-left: 47px;
    margin-bottom: 0;
    font-family: 'Roboto', sans-serif;
}

.reason_box:after {
    content: '✓';
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
    background: #f9f9f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4CAF50;
    font-weight: bold;
    font-size: 16px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.reason_box:hover:after {
    opacity: 1;
    transform: scale(1.1);
    background: #e8f5e9;
}

.wrapper.pt45.pb45 .button1 {
    background: linear-gradient(135deg, #d32f2f, #ff5252);
    border: none;
    padding: 14px 35px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
    transition: all 0.3s ease;
    margin-top: 10px;
}

.wrapper.pt45.pb45 .button1:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(211, 47, 47, 0.4);
    background: linear-gradient(135deg, #c62828, #ff5252);
}

/* Responsive Design */
@media (max-width: 992px) {
    .reason_box {
        width: 48%; /* Still 2 per line on tablets */
    }
}

@media (max-width: 768px) {
    .reason_box {
        width: 100%; /* 1 per line on mobile */
    }
    
    .wrapper.pt45.pb45 h1 {
        font-size: 36px;
    }
    
    .reason_box {
        padding: 22px;
        min-height: auto;
    }
    
    .reason_box h3 {
        font-size: 19px;
    }
    
    .reason_box p {
        font-size: 14.5px;
        margin-left: 45px;
    }
}

@media (max-width: 480px) {
    .wrapper.pt45.pb45 {
        padding: 50px 15px;
    }
    
    .wrapper.pt45.pb45 h1 {
        font-size: 32px;
        text-align: center;
        width: 100%;
    }
    
    .reason_box {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .reason_box:after {
        display: none;
    }
}

/* Clear floats */
.why_choose_con:after {
    content: "";
    display: table;
    clear: both;
}