/* Rounded Cards CSS - Exact Replica of User Image */

/* Special cleaner styling for Advantage section */

/* 1. The Card Container */

/* 1. The Card Container - REMOVED TO RESTORE ORIGINAL STYLE */
/* The user requested to revert to the original "good" card style for Our Services.
   The specific customizations for Advantage Section remain below. */

.advantage-section-cards .classes-col {
    border: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
    margin-bottom: 40px;
}

.advantage-section-cards .classes-col .class-thumb {
    border: none !important;
    background: transparent !important;
}

.advantage-section-cards .classes-col .class-thumb .icon-container {
    background: transparent !important;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.advantage-section-cards .classes-col .class-thumb .icon-container i {
    font-size: 40px;
    margin-bottom: 10px;
}

.advantage-section-cards .classes-col .class-info {
    padding: 10px 15px;
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center !important;
    background: transparent !important;
    border: none !important;
}

.advantage-section-cards .classes-col .class-info p {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}

.advantage-section-cards .classes-col .class-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
}


/* Index Page - Advantage Section Cards (White, Shadow, Left Align) */
.advantage-section .advantage-box {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 30px 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    /* Soft shadow */
    text-align: left !important;
    /* Override container text-center */
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid #f0f0f0;
    /* Subtle border */
    margin-bottom: 30px;
}

.advantage-section .advantage-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.advantage-section .advantage-box i {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
}

.advantage-section .advantage-box h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2b2b2b;
    margin-bottom: 12px;
    line-height: 1.4;
}

.advantage-section .advantage-box p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Fix spacing between rows in Advantage Section */
.advantage-section .row>div {
    margin-bottom: 30px;
}