 /* ===================================
SENTINEL SERIES BENEFITS SECTION
=================================== */

#tab1.tabs {
padding: 35px 25px;
background: #f7f9fc;
border-radius: 16px;
}

/* Section Heading */
.benefits-header {
max-width: 850px;
margin: 0 auto 35px;
text-align: center;
}

.benefits-tag {
display: inline-block;
padding: 7px 16px;
margin-bottom: 12px;
color: #ffffff;
background: #890c0b;
border-radius: 30px;
font-size: 12px;
font-weight: 700;
letter-spacing: 1px;
}

.benefits-header h3 {
margin: 0 0 12px;
color: #172033;
font-size: 32px;
font-weight: 700;
line-height: 1.25;
}

.benefits-header p {
max-width: 760px;
margin: auto;
color: #687083;
font-size: 16px;
line-height: 1.8;
}

/* Benefits Grid */
.benefits-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 22px;
max-width: 1200px;
margin: 0 auto;
}

/* Individual Card */
.benefit-card {
display: flex;
align-items: flex-start;
gap: 18px;
padding: 25px;
background: #ffffff;
border: 1px solid #e8ebf0;
border-radius: 14px;
box-shadow: 0 5px 20px rgba(20, 35, 60, 0.06);
transition: all 0.35s ease;
}

.benefit-card:hover {
transform: translateY(-6px);
border-color: #890c0b;
box-shadow: 0 14px 30px rgba(20, 35, 60, 0.13);
}

/* Icon Box */
.benefit-icon {
display: flex;
min-width: 58px;
width: 58px;
height: 58px;
align-items: center;
justify-content: center;
color: #ffffff;
background: linear-gradient(135deg, #890c0b, #5a0808);
border-radius: 13px;
font-size: 23px;
box-shadow: 0 7px 18px rgba(227, 30, 36, 0.25);
}

.benefit-content {
flex: 1;
}

.benefit-content h4 {
margin: 0 0 8px;
color: #172033;
font-size: 19px;
font-weight: 700;
}

.benefit-content p {
margin: 0;
color: #687083;
font-size: 14.5px;
line-height: 1.7;
}

/* Tablet */
@media (max-width: 991px) {

.benefits-grid {
grid-template-columns: 1fr;
}

.benefits-header h3 {
font-size: 28px;
}

}

/* Mobile */
@media (max-width: 576px) {

#tab1.tabs {
padding: 25px 15px;
}

.benefits-header {
margin-bottom: 25px;
}

.benefits-header h3 {
font-size: 23px;
}

.benefits-header p {
font-size: 14px;
line-height: 1.7;
}

.benefits-grid {
gap: 15px;
}

.benefit-card {
gap: 13px;
padding: 18px 15px;
}

.benefit-icon {
min-width: 48px;
width: 48px;
height: 48px;
font-size: 19px;
border-radius: 11px;
}

.benefit-content h4 {
font-size: 16px;
}

.benefit-content p {
font-size: 13px;
line-height: 1.6;
}

}
