.sms-about-section {
    padding: 60px 0;
    background-color: #fff;
    font-family: 'Poppins', sans-serif;
}

.sms-container {
    max-width: 1300px;
    margin: 0 auto;
    /* padding: 0 15px; */
}

/* Tab Navigation */
.sms-tabs-wrapper {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
}

.sms-tab-card {
    flex: 1;
    max-width: 320px;
    padding: 22px;
    font-size: 19px;
    font-weight: 700;
    border: none; /* Removes the border seen in image 2 */
    background: #ffffff;
    color: #333;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); /* Clean shadow from image 1 */
    text-align: center;
}

/* Active Button State */
.sms-tab-card.active {
    background-color: #f37021; /* Hariom Pipes Orange */
    color: #fff;
    box-shadow: 0 8px 20px rgba(243, 112, 33, 0.25);
}

/* Content Layout */
.sms-tab-content {
    align-items: center;
    gap: 50px;
    animation: smsFadeIn 0.4s ease;
}

.sms-image-col {
    flex: 1;
}

.sms-image-col img {
    width: 100%;
    border-radius: 4px;
    display: block;
}

.sms-text-col {
    flex: 1;
}

.sms-text-col h2 {
    font-size: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

.sms-text-col p, .sms-quality-list li {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.sms-quality-list {
    padding-left: 20px;
}

@keyframes smsFadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .sms-tabs-wrapper { flex-direction: column; align-items: center; }
    .sms-tab-card { width: 100%; }
    .sms-tab-content { flex-direction: column; text-align: center; }
}


/* Container for the tabs */
.sms-tabs-wrapper {
    display: flex !important;
    justify-content: center !important;
    gap: 115px !important;
    margin-bottom: 40px !important;
    padding: 10px 0 !important;
    background: transparent !important;
    
}

/* Individual Card Style */
.sms-tab-card {
    flex: 1 !important;
    max-width: 350px !important;
    padding: 22px 10px !important;
    font-size: 19px !important;
    font-weight: 700 !important;
    text-align: center !important;
    cursor: pointer !important;
    
    /* REMOVE ALL BORDERS AND OUTLINES */
    border: none !important; 
    outline: none !important;
    appearance: none !important;
    -webkit-appearance: none !important;

    /* WHITE BACKGROUND WITH SOFT SHADOW */
    background-color: #ffffff !important;
    color: #1a1a1a !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    border-radius: 2px !important;
    transition: all 0.3s ease !important;
}

/* Active State: The Orange Card */
.sms-tab-card.active {
    background-color: #ed502e !important; /* The Hariom Orange */
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(243, 112, 33, 0.3) !important;
}

/* Hover effect for inactive cards */
.sms-tab-card:hover:not(.active) {
    background-color: #fcfcfc !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12) !important;
}