


.tab-slider-wrapper {
            position: relative;
            margin-bottom: 30px;
            padding: 0 20px;
        }

        .tab-slider {
            display: flex;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding: 10px 30px;
            gap: 10px;
            scroll-snap-type: x mandatory;
        }

        .tab-slider::-webkit-scrollbar {
            display: none;
        }

        .tab-btn {
            flex: 0 0 auto;
            padding: 10px 20px;
            background: #0061a2;
            color: white;
            border: none;
            border-radius: 30px;
            font-size: 14px;
            white-space: nowrap;
            cursor: pointer;
            transition: background 0.3s ease;
            scroll-snap-align: start;
        }

        .tab-btn.active {
            background-color: #a9cd39;
        }

        .tab-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: #a9cd39 ;
            border: none;
            border-radius: 50%;
            width: 36px;
            height: 36px;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
            
        }

        .tab-arrow.left {
            left: -25px;
        }

        .tab-arrow.right {
            right: -15px;
        }

        .tab-content-area {
            background: #fff;
            padding: 25px 20px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .tab-description {
            display: none;
        }

        .tab-description.active {
            display: block;
        }

        @media (max-width: 768px) {
            .tab-btn {
                min-width: 100%;
                text-align: center; 
                
            }

            .tab-slider {
                padding: 10px 0px;
                gap: 0;
            }

            .tab-arrow.left {
                left: 0;
            }

            .tab-arrow.right {
                right: 0;
            }
        }


         /* Make dropdown show fully inside modal */
        .modal-body {
            overflow: visible !important;
        }

        .modal-dialog {
            max-width: 900px;
        }

        .form-group select.form-control {
            z-index: 1060 !important;
            position: relative;
            background-color: white;
        }

        /* Prevent dropdown clipping */
        .modal-content {
            overflow: visible;
        }


        .course-tabs-container {
            display: flex; 
            justify-content: space-between;
            flex-wrap: wrap;
            /* wrap if too many tabs */
        }

        .course-tab {
            display: flex;
            align-items: center;
            padding: 20px 80px;
            border-radius: 12px;
            border: 1px solid #ddd;
            background-color: #fff;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
            align-items: center;
            border-radius: 20px;
            border: 1px solid #e7e7e7;

        }

        

        .course-tab .tab-icon img {
            width: 70px;
            height: 50px;
            object-fit: contain;
        }

        .course-tab .tab-title {
            font-weight: 600;
            font-size: 16px;
            color: #333;
        }

        .course-tab.active-tab {
            background: #0061a2;
            color: #fff;
            border: none;
        }
        .course-tab.active-tab img {
            filter: brightness(100);
        }

        .course-tab.active-tab .tab-title {
            color: #fff;
        }

        .tab-description {
            display: none;
        }

        .tab-description.active-desc {
            display: block;
            padding-top: 30px;
            align-items: center;
            padding: 30px;
            background-color: #fff;
            border-radius: 20px;
            border: 1px solid #e7e7e7;
        }
        @media (max-width: 768px) {
    .course-tabs-container {
        flex-direction: column; /* stack tabs vertically */
        gap: 10px; /* smaller gap for mobile */
        width: 100%;
    }

    .course-tab {
        width: 100%; /* full width */
        padding: 10px 20px; /* reduce padding for smaller screens */
        justify-content: flex-start; /* align icon + title nicely */
    }

    .course-tab .tab-icon img {
        width: 50px; /* smaller icon for mobile */
        height: 40px;
        margin-right: 10px; /* spacing between icon and title */
    }

    .course-tab .tab-title {
        font-size: 14px; /* slightly smaller font */
    }

    .tab-description.active-desc {
        padding: 20px; /* reduce padding for mobile */
    }
}



/* ----------------------------------------
   Dynamic Responsive Tables
---------------------------------------- */
.content-description table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-family: 'Lato', sans-serif;
    color: #333;
    box-shadow: 0px 0px 9px rgba(0,0,0,0.05);
}

/* Table Header */
.content-description table thead {
    background-color: #95A5A6;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.content-description table thead th,
.content-description table tbody td {
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    text-align: left;
}

/* Table Body */
.content-description table tbody tr {
    background-color: #fff;
}
.content-description table tbody th {
    background-color:   #1362a6;
    color: #fff;
}

/* Stripe effect */
.content-description table tbody tr:nth-child(even) {
    background-color: #fafafa;
}

/* Hover effect */
.content-description table tbody tr:hover {
    background-color: #f1f5f9;
}

/* Responsive - Mobile Card Style */
@media (max-width: 767px) {
    .content-description table,
    .content-description thead,
    .content-description tbody,
    .content-description th,
    .content-description td,
    .content-description tr {
        display: block;
        width: 100%;
    }

    .content-description thead tr {
        display: none; /* hide table header on mobile */
    }

    .content-description tbody tr {
        margin-bottom: 15px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        border-radius: 5px;
        padding: 10px;
        background-color: #fff;
    }

    .content-description td {
        border: none;
        padding: 8px 10px;
        position: relative;
        padding-left: 50%;
        text-align: left;
    }

    /* Add data-label from each cell */
    .content-description td::before {
        position: absolute;
        left: 10px;
        top: 8px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        font-weight: 600;
        color: #6C7A89;
        content: attr(data-label);
        text-align: left;
    }
}


 

 