 .custom-select {
    position: relative;
    width: 220px;
  }

  .custom-select select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 10px 36px 10px 12px;
    width: 100%;
    border: 1px solid #2c3e50;
    border-radius: 6px;
    background-color: #f0f2fd;
    color: #333;
    font-size: 14px;
    cursor: pointer;
  }

  .arrow-container {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 20px;
    pointer-events: none;
  }

  .arrow-container svg {
    width: 12px;
    height: 12px;
    stroke: #444;
  }
.search-btn {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 20px;
    align-items: center;
    border-radius: 5px;
    padding: 4px 49px 4px 18px;
    color: white;
    background: #202F64;
    border: 3px solid #202F64;
}

input[type="text"] {
    padding:8px;
    width: fit-content !important;
    height: 45px;
    border: 1px solid #202F64;
    border-radius: 4px;
    background: unset;
    color: #333333;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 14px;

}
select {
    background: unset;
    border: 1px solid #202F64;
    border-radius: 4px;
    color: #333333;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 14px;
    line-height: 28px;
}
section.course-banner-section {
    position: relative;
    /* display: flex; */
    

}
.custom-section-course {
    
    background-repeat: repeat ;
    height: 100%;
}
.course-banner-header {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.course-banner-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #FFFFFF;

}

.course-banner-header p {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0%;
    text-align: center;
    color: #fff;
}

.course-search-bar {
    display: flex;
    justify-content: center;
    /* margin-top: 30px; */
}

.course-search-bar {
    position: absolute;
    bottom: -12%;
    left: 50%;
    transform: translate(-50%, -0%);
    background: #F0F3FF;
    display: flex;
    box-shadow: 0px 4px 4px 0px #00000040;
    border-radius: 10px;
    padding: 34px 36px;
}

form.course-search-form {
    display: flex;
    gap: 40px;
    margin-block-end: 0;
}

.course-search-input-wrapper {
    display: flex;
    align-items: center;
    background-color: white;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 0 12px;
    height: 52px;
    width: 600px;
    box-sizing: border-box;
}

.course-search-input-wrapper input {
    border: none;
    outline: none;
    font-size: 16px;
    width: 100%;
    padding: 10px;
    background: transparent;
}

.search-icon {
    color: #94a3b8;
    margin-left: 8px;
    font-size: 18px;
}

.course-search-button {
    background-color: #202F64;
    color: white;
    font-size: 16px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 52px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0%;
    vertical-align: bottom;
}

.course-content-list {
    margin-block-start: 122px;
    margin-block-end: 85px;
    margin-inline: 55px;
}

.course-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    row-gap: 65px;
    column-gap: 28px;
}

.course-grid-individual {
    background: #FFFFFF;
    padding: 16px;
    border-radius: 16px;
    text-decoration: none;
}

.course-grid-individual img.responsiveImg {
    border-radius: 8px;
}

.course-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-block-start: 16px;
}

.course-details h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    vertical-align: bottom;
    color: #1B1D1F;

}

.course-details p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    vertical-align: bottom;
    text-align: center;
    color: #6D737A;
    margin-bottom: 16px;
}

/* Individual Styles */


.webinar-container {
 
    
    width: 90%;
    margin: 0 auto;
    padding: 40px;
    gap: 40px;
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
}
 

 
        .live-badge {
            display: inline-flex;
            align-items: center;
            background: #C12033;
            color: white;
            gap: 8px;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 24px;
        }
 
        
 
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }
 
        .share-btn {
            position: absolute;
            top: 40px;
            right: 40px;
            background: transparent;
            border: none;
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            opacity: 0.8;
            transition: opacity 0.3s;
        }
 
        .share-btn:hover {
            opacity: 1;
        }
 
        .webinar-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 32px;
    color: white;
    width: 90%;
}
 
.webinar-details {
    display: flex;
    gap: 16px;
    /* margin-bottom: 40px; */
    flex-direction: column;
    width: fit-content;
    border-right: 2px solid white;
    padding-right: 24px;
    /* padding-top: 14px; */
    height: 58px;
    align-items: flex-start;
    justify-content: center;
}
 

 
        .detail-icon {
            width: 20px;
            height: 20px;
            opacity: 0.8;
        }
 
   .speaker-section {
    display: flex;
    align-items: center;
    gap: 0px;
    margin-bottom: 40px;
    width: fit-content;
    background: #C12033;
    padding: 8px 20px;
    border-radius: 12px;
}
 .speaker-img{
    width:50px;
    height:50px;
    border-radius: 50%;
 }
        .speaker-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 20px;
        }
 
        .speaker-info {
    background: #C12033;
    padding: 12px 16px;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
}
 
        .speaker-label {
            font-size: 11px;
            text-transform: uppercase;
            opacity: 0.9;
            margin-bottom: 2px;
            letter-spacing: 0.5px;
        }
 
        .speaker-name {
            font-weight: 700;
            font-size: 16px;
        }
 
        .credits-section {
            margin-bottom: 8%;
        }
 
    .credits-title {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 16px;
        color: white;
    }
 
    .wbnr-dtls-spkr-wrapper {
        display: flex;
        gap: 24px;
        margin-bottom: 24px;
    }
 

 
.join-btn {
    background: white;
    color: #C12033;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(220, 53, 69, 0.3);
        }
 
        .join-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
        }
 
        .purchase-panel {
            background: white;
            display: flex;
            flex-direction: column;
            border-radius: 10px;
            flex: 0 0 35%;
            height: fit-content;
            padding-block-end: 15px;
        }
 .purchase-header {
    background:#C12033;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 10px 10px 0px 0px;
}
 
.purchase-content {
    padding: 0px;
    flex: 1;
}
 
.header-labels {
    display: flex;
    gap: 50px;
}
 
.header-label {
            /* color: #666; */
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            color: white;
        }
 
.option-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 8px;
    border-bottom: 1px solid #d9d9d9;
    transition: background-color 0.2s;
    margin: 0px 8px;
}
 
.option-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}
 
.option-icon {
    width: 32px;
    height: 32px;
    background: #2c3e7d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: bold;
}
 
.option-label {
    color: #333;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    width: fit-content;
}
 
        .info-icon {
    width: 16px;
    height: 16px;
    background: #ccc;
    border-radius: 50%;
    color: white;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    cursor: help;
    position: absolute;
    top: -4px;
    right: -18px;
}
 
        .option-controls {
            display: flex;
            align-items: center;
            gap: 4px;
        }
 
        .quantity-control {
            display: flex;
            align-items: center;
            gap: 4px;
        }
 
        .qty-btn {
            width: 24px;
    height: 24px;
    border: 2px solid #ddd;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #666;
    transition: all 0.2s;
        }
 
        .qty-display {
            width: 16px;
            text-align: center;
            font-weight: 600;
            color: #333;
        }
 
        .option-price {
            color: #C12033;
    font-size: 16px;
    font-weight: 700;
    min-width: 40px;
    text-align: right;
    flex: 1;
        }
        select.orderQty {
            border: 1px solid #202F64;
            border-radius: 15px;
            flex: 1;
            margin-right: 10px;
        }
        .add-to-cart-btn {
            background: #C12033;
            color: white;
            border: none;
            padding: 18px 24px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            width: 80%;
            margin-top: 16px;
            margin-bottom: 16px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 16px rgba(220, 53, 69, 0.3);
            margin-inline: 10%;
        }
 
        .add-to-cart-btn-member:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
        }
 
        button.add-to-cart-btn.membership {
            background: #202F64;
        }
        .atc-btn-wrapper {
    display: flex;
    justify-content: center;
    background: white;
    margin-top: -2px;
}
.quantity-control {
            display: flex;
            align-items: center;
            gap: 8px;
        }
 
        .qty-dropdown {
            padding: 6px 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            background-color: white;
            font-size: 14px;
            min-width: 60px;
            cursor: pointer;
        }
 
        .qty-dropdown:focus {
            outline: none;
            border-color: #C12033;
        }
 
        /* Modal styles */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
        }
 
        .modal {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: white;
            border-radius: 8px;
            padding: 24px;
            max-width: 500px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
        }
 
        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            border-bottom: 1px solid #eee;
            padding-bottom: 16px;
        }
 
        .modal-title {
            font-size: 20px;
            font-weight: bold;
            color: #333;
        }
 
        .close-btn {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #666;
            padding: 0;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
 
        .close-btn:hover {
            color: #333;
        }
 
        .cart-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid #eee;
        }
 
        .cart-item:last-child {
            border-bottom: none;
        }
 
        .item-details {
            flex: 1;
        }
 
        .item-name {
            font-weight: 500;
            color: #333;
            margin-bottom: 4px;
        }
 
        .item-qty {
            color: #666;
            font-size: 14px;
        }
 
        .item-price {
            font-weight: bold;
            color: #C12033;
        }
 
        .cart-total {
            margin-top: 16px;
            padding-top: 16px;
            border-top: 2px solid #eee;
            text-align: right;
        }
 
        .total-label {
            font-size: 18px;
            font-weight: bold;
            color: #333;
        }
 
        .total-price {
            font-size: 20px;
            font-weight: bold;
            color: #C12033;
        }
 
        .modal-actions {
            margin-top: 20px;
            display: flex;
            gap: 12px;
            justify-content: flex-end;
        }
 
        .btn {
            padding: 10px 20px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 500;
        }
 
        .btn-secondary {
            background-color: #f8f9fa;
            color: #333;
            border: 1px solid #ddd;
        }
 
        .btn-primary {
            background-color: #C12033;
            color: white;
        }
 
        .btn:hover {
            opacity: 0.9;
        }
 
        @media (max-width: 1440px) {
            .option-label {
    color: #333;
    font-size: 12px;
    font-weight: 500;
    position: relative;
    width: fit-content;
}
.option-price {
    color: #C12033;
    font-size: 14px;
    font-weight: 700;
    min-width: 36px;
    text-align: right;
}
.option-icon {
    width: 24px;
    height: 24px;
    background: #2c3e7d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: bold;
}
.option-info {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 4;
}
        }
 
@media (max-width: 768px) {
    .custom-select {
        position: relative;
        width: 100%;
    }
    input[type="text"]{
        width: 100% !important;
    }
}

.custom-select select{
    width: 100%;
}
.webinar-container {
    display: flex;
    width: 100%;
    margin: 0 auto;
    gap: 5%;
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
}
.speaker-img{
    width:36px;
    height:36px;
}
.purchase-panel {
    width: 100%;
}
 
.webinar-info {
    background: linear-gradient(135deg, #2c3e7d 0%, #1a2654 100%);
    color: white;
    padding: 40px;
    flex: 1;
    position: relative;
    border-radius: 10px;
    flex: 0 0 60%;
    height:35%;
}
 
.webinar-title {
    font-size: 28px;
}
 

.live-badge {
    display: inline-flex;
    align-items: center;
    background: #C12033;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}
.share-btn {
    position: absolute;
    top: 6.5%;
    right: 24px;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s;
}
.webinar-title {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 16px;
    color: white;
    width: 100%;
}
.wbnr-dtls-spkr-wrapper {
    display: flex;
    gap: 16px;
}
.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}
.speaker-section {
    display: flex;
    align-items: center;
    gap: 0px;
    margin-bottom: 0px;
    width: fit-content;
    background: #C12033;
    padding: 8px 10px;
    border-radius: 4px;
}
.speaker-image {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: unset;
}
.speaker-info {
    background: #C12033;
    padding: 0px 10px;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
}
.speaker-label {
    font-size: 10px;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 0px;
    letter-spacing: 0.5px;
}
.speaker-name {
    font-weight: 500;
    font-size: 16px;
}
.credits-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: white;
}
.credits-list {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
}
.credit-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 5px 20px 6px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid white;
    margin-top: -4px;
    letter-spacing: 1px;;
}
.join-btn {
    background: white;
    color: #C12033;
    border: none;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(220, 53, 69, 0.3);
}
.purchase-panel {
    background: white;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    flex: 0 0 35%;
}
.purchase-header {
    background: linear-gradient(135deg, #C12033 0%, #c82333 100%);
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 10px 10px 0px 0px;
}
.add-ons-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
    background: #202F64;
    color: white;
    padding: 8px 16px;
}

.order-price-qty {
    display: flex;
    flex: 0 0 30%;
}


.option-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}
.option-icon {
    width: 24px;
    height: 24px;
    background: #2c3e7d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: bold;
}
.option-label {
    color: #333;
    font-size: 11px;
    font-weight: 500;
    position: relative;
    width: fit-content;
}
.info-icon {
    width: 16px;
    height: 16px;
    background: #ccc;
    border-radius: 50%;
    color: white;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    cursor: help;
    position: absolute;
    top: -4px;
    right: -18px;
}
.option-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}
.quantity-control {
    display: flex;
    align-items: center;
    gap: 4px;
}
.qty-btn {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #666;
    transition: all 0.2s;
}
.qty-display {
    width: 8px;
    text-align: center;
    font-weight: 600;
    color: #333;
    font-size: 11px;
}
.option-price {
    color: #C12033;
    font-size: 12px;
    font-weight: 700;
    min-width: 20px;
    text-align: right;
}

body {
    padding: 0px;
}
.webinar-info {
    background: linear-gradient(135deg, #2c3e7d 0%, #1a2654 100%);
    color: white;
    padding: 24px 24px 40px 24px;
    flex: 1;
    position: relative;
    border-radius: 10px;
    flex: 0 0 60%;
}
.option-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 6px;
    border-bottom: 1px solid #D9D9D9;
    transition: background-color 0.2s;
}
.atc-btn-wrapper {
    display: flex;
    justify-content: center;
    background: white;
    margin-top: -2px;
}

/* Tab Navigation */
.tab-nav {
    display: flex;
    background-color: #202F64;
    padding-inline: 30px;
}

.tab-btn {
    flex: 1;
    padding: 18px 20px;
    background: none;
    border: none;
    color: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s;
}

.tab-btn.active {
    background-color: #C12033;
}

.tab-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.tab-btn.active:hover {
    background-color: #e74c3c;
}

/* Main Content */
.main-content {
    display: flex;
    min-height: 500px;
    gap: 60px;
    padding: 40px 30px;
}

/* Left Content */
.left-content {
    flex: 2;
    padding: 0;
}

/* Accordion */
.accordion-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 32px;
}

.accordion-header {
    background-color: #202F64;
    color: white;
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    border-radius: 8px 8px 0px 0px;
    display: flex;
}

.accordion-header.collapsed {
    border-radius: 8px;
}

.purchase-plan-image{
    width: 36px;
    border-radius: 50%;
}

.accordion-header.collapsed svg {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 25px;
    background-color: white;
    color: #666;
    line-height: 1.6;
    display: block;
    margin-top: -4px;
    position: relative;
    z-index: 2;
    box-shadow: 1px 4px 7px 0px #00000040;
    font-size: 15px;
    border-radius: 0px 0px 8px 8px; 
}

.speaker-detail-course {
    display: flex;
    justify-content: space-between;
}

.speaker-overview {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.accordion-content.hidden {
    display: none;
}

/* Right Sidebar */
.right-sidebar {
    flex: 1;
    background-color: white;
    padding: 20px;
    border: 1px solid #BBBBBB;
    border-radius: 12px;
    position: relative;
    padding-top: 60px;
}

.offer-badge {
    background-color: #C12033;
    color: white;
    padding: 8px 16px;
    border-radius: 0px 0px 20px 20px;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
    position: absolute;
    top: 0;
    left: 32%;
}

.offer-title {
    font-family: Roboto;
    font-weight: 600;
    font-size: 24px;
    line-height: normal;
    letter-spacing: 0px;
    text-align: center;
    text-transform: uppercase;
    color: #202F64;
}

.offer-price {
    font-family: Roboto;
    font-weight: 600;
    font-size: 24px;
    line-height: normal;
    letter-spacing: 0px;
    text-align: center;
    color: #C12033;
}

.benefits-list {
    list-style: none;
    margin-bottom: 30px;
}

.benefits-list li {
    padding: 8px 0;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 10px;
}

.membership-section {
    margin-bottom: 30px;
}

.membership-title {
    text-align: center;
    color: #C12033;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 14px;
}

.membership-option {
    display: flex;
    align-items: center;
    padding: 12px;
    margin-bottom: 18px;
    border: 2px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    transition: border-color 0.3s;
    width: 60%;
    margin-inline: auto;
}

.membership-option:hover {
    border-color: #202F64;
}

.membership-option.selected {
    border-color: #BBBBBB;
    background-color: white;
    box-shadow: 1px 4px 7px 0px #00000040;
    border: 1px solid #BBBBBB;
}
.membership-option input[type="radio"] {
    margin-right: 10px;
}

span.membership-text {
    font-family: 'Roboto';
    font-weight: 500;
    font-size: 14px;
    line-height: normal;
    letter-spacing: 0px;
    color: #202F64;
    text-transform: uppercase;
    text-align: center;
    width: 90%;
}
.membership-text span {
    font-weight: 700;
}
.membership-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    justify-content: space-around;
}

.membership-option input[type="radio"] {
    display: none;
}

.custom-radio {
    width: 16px;
    height: 16px;
    border: 2px solid #C4CDD5;
    border-radius: 50%;
    background-color: #C4CDD5;
    position: relative;
}

.membership-option input[type="radio"]:checked + .custom-radio::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 8px;
    height: 8px;
    background-color: black;
    border-radius: 50%;
}
.add-to-cart-btn-member {
    width: 80%;
    padding: 15px;
    background-color: #202F64;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s;
    letter-spacing: 1.2px;
    margin-inline: auto;
}

.add-to-cart-btn:hover {
    background-color: #34495e;
}

.atc-btn-wrapper {
    display: flex;
    justify-content: center;
    background: white;
    margin-top: -8px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    text-align: center;
}

.modal-header {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
}

.modal-body {
    margin-bottom: 20px;
}

.modal-subscription {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.modal-price {
    font-size: 24px;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 20px;
}

.modal-buttons {
    display: flex;
    gap: 10px;
}

.modal-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
}

.modal-confirm {
    background-color: #27ae60;
    color: white;
}

.modal-cancel {
    background-color: #95a5a6;
    color: white;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    color: #000;
}



@media(max-width: 998px){
    .membership-title svg {
        width: 30px;
    }
}

@media (max-width: 768px) {
.container {
    margin: 0 auto;
    background-color: white;
    border-radius: unset;
}
.tab-nav {
    display: flex;
    background-color: #202F64;
    overflow: scroll;
    padding-inline: 12px;;
}
.order-price-qty {
    gap: 30px;
}
.tab-btn {
    flex: 0 0 33.33%;
    padding: 12px 0px;
    background: none;
    border: none;
    color: white;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s;
    text-wrap-mode: nowrap;
    padding: 10px;
}
.accordion-header {
    background-color: #202F64;
    color: white;
    padding: 12px;
    cursor: pointer;
    display: flex;
    justify-content: between;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    border-radius: 8px;
}
.accordion-content {
    padding: 12px;
    background-color: white;
    color: #666;
    line-height: 1.6;
    display: block;
    margin-top: -4px;
    position: relative;
    z-index: 2;
    box-shadow: 1px 4px 7px 0px #00000040;
    font-size: 12px;
}
.accordion-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 16px;
}
.main-content {
    display: flex;
    min-height: unset;
    gap: 16px;
    padding: 16px;
    flex-wrap: wrap;
    flex-direction: column;
}
.right-sidebar {
    flex: 1;
    background-color: white;
    padding: 12px;
    border: 1px solid #BBBBBB;
    border-radius: 12px;
    position: relative;
    padding-top: 40px;
}
.offer-badge {
    background-color: #C12033;
    color: white;
    padding: 8px 16px;
    border-radius: 0px 0px 20px 20px;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
    position: absolute;
    top: 0;
    left: 29%;
}
.offer-title {
    font-size: 18px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 4px;
    text-align: center;
}
.offer-price {
    font-size: 20px;
    font-weight: bold;
    color: #C12033;
    text-align: center;
    margin-bottom: 0px;
}
.benefits-list {
    list-style: none;
    margin-bottom: 8px;
}
.benefits-list li {
    padding: 8px 0;
    color: #2c3e50;
    display: flex;
    align-items: center;
    font-size: 14px;
}
.membership-section {
    margin-bottom: 24px;
}
.membership-title {
    text-align: center;
    color: #C12033;
    font-weight: bold;
    margin-bottom: 16px;
    text-transform: uppercase;
    font-size: 14px;
}
.membership-option {
    display: flex;
    align-items: center;
    padding: 8px;
    margin-bottom: 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    transition: border-color 0.3s;
    width: 70%;
    margin-inline: auto;
}
.membership-text {
    font-size: 12px;
    color: #2c3e50;
    width: 100%;
    text-align: center;
    font-weight: bold;
}
.add-to-cart-btn-member {
    width: 80%;
    padding: 8px;
    background-color: #202F64;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s;
    letter-spacing: 1.2px;
    margin-inline: auto;
}
        }
        @media (max-width: 768px) {
            .webinar-container {

    flex-direction: column;
    gap: 24px;
    padding: 16px;

}
.webinar-details {
    border: unset
}
.wbnr-dtls-spkr-wrapper {
    display: flex;
    gap: 16px;
    flex-direction: column;
    margin-top: 12%;
}
sup.tooltips svg {
    width: 12px;
    height: 12px
}
.webinar-details .detail-item:nth-child(2) {
    border-bottom: 2px solid #ffffff;
    padding-right: 0;
    padding-bottom: 16px;
}
.webinar-info {
border-radius: 4px;
padding: 24px 24px 24px 24px;
height: unset;
}
    svg {
        width: 20px;
        height: 20px;
    }
.share-btn{
gap:3px;
}
detail-icon {
    width: 24px;
    height: 24px;
}
.detail-item {
    font-size: 15px;

}
.detail-icon {
    width: 20px;
    height: 20px;
}
.credits-title {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 20px;
    color: white;
}
.speaker-section {
    display: flex;
    align-items: center;
    gap: 0px;
    margin-bottom: 0px;
    width: fit-content;
    background: #C12033;
    padding: 8px 10px;
    border-radius: 4px;
    margin-top: 16px;
}
.credits-list {
    gap: 12px;
    margin-top: 16px;
}
.credit-badge {
    
    padding: 4px 14px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid white;
    
}

.join-btn {
    padding: 6px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
 
}
.add-ons-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
    background: #202F64;
    color: white;
    padding: 8px 16px;
}
.header-labels {
    display: flex;
    gap: 60px;
}
.option-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 6px;
    border-bottom: 1px solid #D9D9D9;
    transition: background-color 0.2s;
}
.option-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    position: relative;
}   
.purchase-plan-image {
    background: #202F64;
    width: 36px !important;
    border-radius: 50%;
}
.option-label {
    color: #000;
    font-size: 11px;
    font-weight: 500;
    position: relative;
    width: fit-content;
    text-transform: uppercase;
}
.tooltips {
    position: relative;
    display: inline-block;
    display: flex;
    align-items: flex-start;
    margin-left: -10px;
    margin-top: -10px;
}
.containerRelatedCourse svg {
    width: 10px !important;
    height: 10px !important;
}
select.orderQty {
    border: 1px solid #202F64;
    border-radius: 15px;
    flex: 1;
    margin-right: 0px;
    max-width: 50px;
    text-align: center;
}
.option-price {
    color: #C12033;
    font-size: 12px;
    font-weight: 700;
    min-width: unset;
    text-align: right;
    width: fit-content;
    max-width: 85px;
}
.add-to-cart-btn {
    background: linear-gradient(135deg, #C12033 0%, #c82333 100%);
    color: white;
    border: none;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    width: 70%;
    margin-top: 0px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(220, 53, 69, 0.3);
    margin-inline: auto;
    transform: translate(22%,25%);
}
.right-sidebar .add-to-cart-btn {
    transform: unset;
    width: 80%;
    background: #202F64;
    box-shadow: none;
    font-size: 16px;
    font-weight: 600;
    padding: 8px;
    margin-bottom: 6px;
}
.share-btn {
    top: 5.5%;
}
.share-btn svg {
    width: 16px !important;
    height: 16px !important;
}
.speaker-name {
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
}
.title-wrapper1 .rc-heading {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 24px;
    text-align: center;
    padding-bottom: 16px;
}
.relatedCourseGridWrapper {
    gap: 0px !important;
}
.relatedCourseIndvBox {
    display: flex;
    flex-direction: column;
    gap: 12px !important;
}
.relatedCourseIndvBoxContent h3 {
    font-family: Roboto;
    font-weight: 500;
    font-size: 16px;
    line-height: normal;
    letter-spacing: 0px;
    color: #000;
    text-transform: capitalize;
    margin: 0;
    margin-block-end: 20px;
    margin-bottom: 10px !important;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;       
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.timeDurationInfo {
    display: grid;
    grid-template-columns: 1fr !important;
    row-gap: 10px;
}
span.timeDurationInfoIndv {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    font-family: Roboto;
    font-weight: 400;
    font-size: 12px;
    line-height: normal;
    letter-spacing: 0px;
    vertical-align: middle;
    text-transform: capitalize;
    color: #333;
}
/* a.btn.btn-primary {
    display: flex;
    width: 65% !important;
    gap: 8px !important;
    align-items: center;
    padding: 2px 0px !important;
    justify-content: center;
    font-size: 12px !important;
} */

}