/* Cards css */
.sptb {
    padding: 60px 0;
    background-color: #fff;
}
.row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.col {
    flex: 1;
    min-width: 200px; 
    max-width: calc(25% - 20px);
    padding-top: 15px;
}
/* Service Card Styles */
.service-card {
    background-color: #f9f9f9;
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: box-shadow 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card:hover {
    box-shadow: 0 5px 15px rgba(16, 49, 85, 0.2);
}

.icon-bg {
    /* background-color: #f0f0f0; */
    padding: 20px;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 20px;
}
  
.icon-bg img {
    max-width: 75px;
    height: auto;
}
  
.service-data h4 {
    font-weight: 600;
    margin: 0 0 10px;
    color: var(--second-color); 
}
  
.service-data p {
    color: #6c757d; 
    margin: 0;
    font-size: 14px;
    text-align: justify;
}
/* Why Choose us */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 500;
}

.section-title p {
    font-size: 16px;
    color: #666;
}

/* Features Row */
.features-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Space between cards */
    justify-content: center;
}

/* Feature Card */
.feature-card {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 1px 2px rgba(234, 238, 249, 0.9);
    padding: 20px;
    width: calc(33.333% - 20px);
    text-align: center;
    box-sizing: border-box;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    border: 1px solid #d8dde6;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.feature-card:hover {
    box-shadow: 0 5px 15px rgba(16, 49, 85, 0.2);;
}

/* Feature Icon */
.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #fff;
    font-size: 24px;
}

.bg-warning {
    background-color: #ffc107;
}

.bg-success {
    background-color: #28a745;
}

.bg-primary {
    background-color: #007bff;
}

.bg-secondary {
    background-color: #6c757d;
}

.bg-warning {
    background-color: #ffc107;
}

.bg-danger {
    background-color: #dc3545;
}

.bg-info {
    background-color: #17a2b8;
}

/* Feature Card Heading and Paragraph */
.feature-card h3 {
    margin: 15px 0 10px;
    font-size: 20px;
    color: var(--second-color);
    font-weight: 500;
}
.feature-card p {
    color: #666;
    font-size: 14px;
}
/* Responsive View */
@media (max-width: 991px) {
    .col {
        min-width: 344px;
    }
}
@media (max-width: 767px) {
    
}
/* Mobile Responsive Layout */
@media (max-width: 575px) {
    .col {
        min-width: 300px;
    }
    .section-title h2 {
        font-size: 18px !important;
        margin-bottom: 30px;
    }
}
@media (max-width: 1024px){
    .feature-card p {
        font-size: 12px;
    }
    .feature-card h3 {
        font-size: 16px;
    }
}
