
         
       .promo-section {
            background-color: #ffcc00;
            padding: 10px;
            text-align: center;
        }

        .promo-btn {
            font-size: 12px;
            padding: 5px 10px;
           
        }
    
         .course-promo-section {
            overflow: hidden;
            white-space: nowrap;
            margin-right: 20px;
            margin-left: 20px;
            padding-bottom: 20px;
            padding-top: 20px
        }

        h4 {
            margin-right: 20px;
            /* Add space between title and badges */
        }

        .promo-content {
            display: inline-block;
            white-space: nowrap;
            animation: scroll-left 60s linear infinite;
            /* Adjust the animation duration as needed */
        }

        /* .promo-content a {
        text-decoration: none;
        } */

       .promo-badge:hover,
        .promo-badge:focus {
            text-decoration: none;
            color: #E12D44;
            background-color: #fff;
            border: rgba(240, 182, 42) 1px solid;
            border-radius: 20px;
        }

        .promo-badge {
            display: inline-block;
            padding: 10px 20px;
            background-color: rgba(240, 182, 42, 0.8);
            color: #E12D44;
            font-weight:700;
            margin-right: 10px;
            border-radius: 20px;
            text-decoration: none
        }


        @keyframes scroll-left {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-100%);
            }
        }
        
        
        
          #toast-container>.toast-error {
            background-color: #BD362F;
        }

        .toastr-success {
            background-color: green;
             color: #fff
        }

        #toast-container>.toast-info {
            background-color: skyblue;
        }

        #toast-container>.toast-warning {
            background-color: orange;
        }
        
        
         .pagination {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }

        .pagination>.active>span {
            background-color: #5F2E7A;
            border-color: #5F2E7A;
        }

        .pagination>li>a {
            color: #5F2E7A;
        }
      
          
        .modal {
            z-index: 1050;
        }
        .header {
            z-index: 1000;
        }
        
         .popup-container {
            display: none;
            position: fixed;
            top: 50%;
            right: 0;
            /* Adjusted to align with the right side */
            transform: translate(0, -50%);
            background-color: #fff;
            padding: 20px;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
            z-index: 999;
            animation: slideInRight 0.5s ease-out;
            /* Add slide-in animation */
        }

        .popup-content {
            text-align: center;
        }

        .close-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 24px;
            cursor: pointer;
        }

        /* Slide-in animation */
        @keyframes slideInRight {
            0% {
                transform: translate(100%, -50%);
            }

            100% {
                transform: translate(0, -50%);
            }
        }

        /* Blinking Animation */
        @keyframes blink {

            0%,
            50%,
            100% {
                opacity: 1;
            }

            25%,
            75% {
                opacity: 0;
            }
        }

        .blinker {
            display: inline-block;
            animation: blink 1s infinite;
            color: #ff6600;
            /* Blinking color */
        }

        .offer-title {
            font-size: 26px;
            color: #333;
        }

        .offer-description {
            font-size: 16px;
            color: #555;
            margin-bottom: 10px;
        }

        .coupon-details {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .coupon-voucher {
            background-color: #fff;
            border: 2px solid #3498db;
            padding: 15px;
            border-radius: 10px;
        }

        .voucher-title {
            font-size: 18px;
            color: #333;
            margin-bottom: 10px;
        }

        .course-details {
            margin-top: 5px;
            display: flex;
            align-items: center;
        }

        .course-avatar {
            width: 80px;
            height: 80px;
            background-size: cover;
            background-position: center;
            border-radius: 50%;
            margin-right: 5px;
        }

        .course-info {
            flex-grow: 1;
        }


        .coupon-code {
            
            font-size: 24px;
            color: #e44d26;
            margin: 0;
        }

     
        .coupon-discount {
            font-size: 16px;
            color: #e44d26;
            margin-bottom: 10px;
        }

        .coupon-instructions {
            font-size: 14px;
            color: #666;
            margin-top: 10px;
        }

        /* .coupon-instructions, */
        .course-enroll-instructions {
            font-size: 14px;
            color: #666;
            margin-top: 5px;
        }

        .enroll-btn {
            display: inline-block;
            padding: 10px 20px;
            background-color: #3498db;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            font-size: 16px;
            margin-top: 10px;
        }

        .enroll-btn:hover {
            background-color: #2980b9;
        }
        
        
         .fa.fa-twitter {
            font-family: sans-serif;
        }

        .fa.fa-twitter::before {
            content: "𝕏";
            font-size: 1.2em;
        }
        
        
          .hero-section {
            position: relative;
            background: linear-gradient(to right, #c2185b, #e91e63);
            color: white;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 600px;
        }

        .hero-content h1 {
            font-size: 48px;
            margin-bottom: 10px;
        }

        .hero-content p {
            font-size: 18px;
            margin-bottom: 20px;
        }

        /* Wave Container */
        .wave-container {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
        }

        /* Waves */
        .wave {
            width: 100%;
            height: auto;
        }

        /* Floating Bubbles */
        .bubbles {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0.5;
        }

        .bubbles span {
            position: absolute;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            animation: float 6s infinite ease-in-out;
        }

        .bubbles span:nth-child(1) {
            width: 20px;
            height: 20px;
            top: 10%;
            left: 5%;
            animation-duration: 5s;
        }

        .bubbles span:nth-child(2) {
            width: 30px;
            height: 30px;
            top: 30%;
            left: 15%;
            animation-duration: 7s;
        }

        .bubbles span:nth-child(3) {
            width: 25px;
            height: 25px;
            top: 50%;
            left: 50%;
            animation-duration: 6s;
        }

        .bubbles span:nth-child(4) {
            width: 35px;
            height: 35px;
            top: 80%;
            left: 70%;
            animation-duration: 8s;
        }

        @media only screen and (min-width: 992px) and (max-width: 1199px) {
            .wave-container {
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                height: auto;
                overflow: visible;
            }

        }

        @media only screen and (max-width: 767px) {
            .wave-container {
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                height: auto;
                overflow: visible;
            }

            .wave {
                width: 100%;
                height: auto;
            }
        }

        /* Floating Animation */
        @keyframes float {
            0% {
                transform: translateY(0);
                opacity: 1;
            }

            50% {
                transform: translateY(-20px);
                opacity: 0.7;
            }

            100% {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
