 <style>
            body {
                padding: 0;
                margin: 0;
                background-color: #f9f9f9;
                font-family: "Segoe UI", sans-serif;
            }

            .badge-custom {
          background-color: #00b363;
          font-size: 1.25rem;
          padding: 0.75rem 2rem;
          border-radius: 1.5rem;
          color: white;
          display: inline-block;
          overflow: hidden;
          position: relative;
          animation: resetText 6s linear infinite;
        }
        
        .badge-custom .char {
          display: inline-block;
          opacity: 0;
          transform: translateX(-10px);
          animation: textReveal 0.4s forwards;
        }
        
        .badge-custom .char:nth-child(1) { animation-delay: 0.1s; }
        .badge-custom .char:nth-child(2) { animation-delay: 0.2s; }
        .badge-custom .char:nth-child(3) { animation-delay: 0.3s; }
        .badge-custom .char:nth-child(4) { animation-delay: 0.4s; }
        .badge-custom .char:nth-child(5) { animation-delay: 0.5s; }
        .badge-custom .char:nth-child(6) { animation-delay: 0.6s; }
        .badge-custom .char:nth-child(7) { animation-delay: 0.7s; }
        .badge-custom .char:nth-child(8) { animation-delay: 0.8s; }
        .badge-custom .char:nth-child(9) { animation-delay: 0.9s; }
        .badge-custom .char:nth-child(10) { animation-delay: 1s; }
        .badge-custom .char:nth-child(11) { animation-delay: 1.1s; }
        .badge-custom .char:nth-child(12) { animation-delay: 1.2s; }
        .badge-custom .char:nth-child(13) { animation-delay: 1.3s; }
        .badge-custom .char:nth-child(14) { animation-delay: 1.4s; }
        .badge-custom .char:nth-child(15) { animation-delay: 1.5s; }
        .badge-custom .char:nth-child(16) { animation-delay: 1.6s; }
        .badge-custom .char:nth-child(17) { animation-delay: 1.7s; }
        .badge-custom .char:nth-child(18) { animation-delay: 1.8s; }
        .badge-custom .char:nth-child(19) { animation-delay: 1.9s; }
        .badge-custom .char:nth-child(20) { animation-delay: 2s; }
        .badge-custom .char:nth-child(21) { animation-delay: 2.1s; }
        .badge-custom .char:nth-child(22) { animation-delay: 2.2s; }
        
        @keyframes textReveal {
          to {
            opacity: 1;
            transform: translateX(0);
          }
        }
        
        @keyframes resetText {
          0%   { opacity: 1; }
          95%  { opacity: 1; }
          100% { opacity: 0; } /* hide for reset */
        }


            .heading {
                color: #001f5c;
                font-weight: 700;
            }

            .highlight {
                color: #00b363;
            }

            .subheading {
                color: #333;
                font-size: 1.25rem;
                font-weight: 400;
            }

            .highlight-green {
                color: #00b363;
            }

            .border-wrapper {
                position: relative;
                width: 280px;
                height: 280px;
                margin: auto;
            }
            
            .rotating-border {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                border: 3px dashed #00B363;
                border-radius: 50%;
                animation: spin 15s linear infinite; /* Slow speed here */
                box-sizing: border-box;
                z-index: 1;
            }

            
            .speaker-img {
                width: 100%;
                height: 100%;
                border-radius: 50%;
                object-fit: cover;
                background: ;
                position: relative;
                z-index: 2;
                padding: 10px; /* Space between image and border */
            }
            
            /* Rotate animation */
            @keyframes spin {
                0% { transform: rotate(0deg); }
                100% { transform: rotate(360deg); }
            }


            .info-card {
                background-color: #fff;
                border-radius: 1rem;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
                padding: 1.5rem;
                margin-bottom: 1rem;
            }

            .icon-box {
                background-color: #ffe1b3;
                border-radius: 0.75rem;
                padding: 0.75rem;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                width: 45px;
                height: 45px;
                font-size: 1.2rem;
                margin-right: 1rem;
            }

            .register-btn {
                background-color: #00b363;
                color: #fff;
                font-size: 1.25rem;
                font-weight: 600;
                padding: 1rem 3rem;
                border-radius: 3rem;
                border: none;
            }

            .strike {
                text-decoration: line-through;
                opacity: 0.7;
            }

            .green-text {
                color: #00b363;
                font-weight: 600;
            }

            .section-title {
                font-size: 2rem;
                font-weight: 700;
            }

            .highlight-green {
                color: #00b363;
            }

            .sticky-bottom-bar {
                position: fixed;
                bottom: 0;
                left: 0;
                right: 0;
                z-index: 990;
                background-color: #fff;
                border-top: 1px solid #061646;
            }

            .testimonial-card {
                background-color: #fff;
                border-radius: 1rem;
                color: #000;
                overflow: hidden;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
                transition: transform 0.3s ease;
                height: 100%;
            }

            .testimonial-card:hover {
                transform: translateY(-5px);
            }

            .testimonial-img {
                width: 100%;
                height: 180px;
                object-fit: cover;
            }

            .testimonial-body {
                padding: 1rem;
                min-height: 160px;
            }

            .testimonial-quote {
                font-size: 0.95rem;
                font-style: italic;
                margin-bottom: 0.75rem;
            }

            .testimonial-name {
                font-weight: 700;
                text-transform: uppercase;
                font-size: 0.9rem;
            }

            .testimonial-role {
                font-size: 0.8rem;
                color: #555;
            }

            .line-bar {
                width: 60px;
                height: 3px;
                background-color: #00b363;
                margin: 0 auto;
            }

            .section-title {
                font-size: 2rem;
                font-weight: 700;
                color: #0a1a58;
            }

            .highlight-green {
                color: #00b363;
            }

            .line-bar {
                width: 60px;
                height: 3px;
                background-color: #00b363;
                margin: 0 auto;
            }

            .card-custom {
                background: #fff;
                border: none;
                border-radius: 1rem;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
                padding: 1.5rem;
                text-align: center;
                height: 100%;
                transition: transform 0.3s ease;
            }

            .card-custom:hover {
                transform: translateY(-5px);
            }

            .card-custom img {
                height: 80px;
                margin-bottom: 1rem;
            }

            .register-btn {
                background-color: #00b363;
                color: #fff;
                font-weight: 600;
                font-size: 1.25rem;
                border-radius: 3rem;
                padding: 1rem 3rem;
                border: none;
            }

            .strike {
                text-decoration: line-through;
                opacity: 0.7;
            }

            .section-heading {
                font-size: 2rem;
                font-weight: 700;
                text-align: center;
                color: #0a1a58;
            }

            .section-heading .highlight {
                color: #00b363;
            }

            .video-wrapper iframe {
                border-radius: 1rem;
                width: 100%;
                height: 220px;
            }

            .video-card {
                padding: 10px;
            }

            .section-title {
                text-align: center;
                font-size: 2rem;
                font-weight: 700;
                margin-bottom: 20px;
            }

            .section-title .highlight {
                color: #00b363;
            }

            .info-box {
                background-color: #1a2e66;
                border-radius: 15px;
                padding: 20px;
                text-align: center;
                margin-bottom: 20px;
                height: 100%;
            }

            .info-box img {
                width: 60px;
                margin-bottom: 15px;
            }

            .learn-box {
                background-color: #1a2e66;
                border-radius: 15px;
                padding: 20px;
                margin-bottom: 20px;
                display: flex;
                align-items: flex-start;
            }

            .learn-box i {
                font-size: 20px;
                color: #00b363;
                margin-right: 15px;
                margin-top: 4px;
            }

            .learn-text {
                font-size: 16px;
                line-height: 1.5;
            }

            .bonus-section {
                padding: 60px 0;
                text-align: center;
            }

            .bonus-title {
                font-size: 24px;
                font-weight: bold;
                color: #0b1e52;
            }

            .bonus-title .green {
                color: #00b363;
            }

            .bonus-card {
                border-radius: 16px;
                background: #ffffff;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
                padding: 20px;
                height: 100%;
                transition: all 0.3s ease;
            }

            .bonus-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            }

            .bonus-card img {
                width: 100%;
                border-radius: 10px;
                margin-bottom: 15px;
            }

            .bonus-label {
                font-weight: 600;
                color: #00b363;
                font-size: 16px;
            }

            .bonus-text {
                font-size: 15px;
                color: #333;
            }

            /* Green border only on right and bottom with rounded corner */
            .rounded-img-wrapper {
                border-right: 6px solid #00b86b;
                border-bottom: 6px solid #00b86b;
                border-radius: 25px;
                overflow: hidden;
                display: inline-block;
            }

            .rounded-img {
                border-radius: 25px;
                display: block;
                width: 100%;
                height: auto;
            }

            .underline {
                width: 80px;
                height: 4px;
                background-color: #00b86b;
                border: none;
                margin-top: 10px;
            }

            .custom-footer {
              background-color: #071c5a;
              color: #ffffff;
              font-family: "Poppins", sans-serif;
            }
            
            .custom-footer .footer-link {
              color: #00b86b;
              text-decoration: underline;
            }
            
            .custom-footer .footer-link:hover {
              text-decoration: none;
              color: #00d07c;
            }
            
            .contact-icon {
              font-size: 2.5rem;
              color: white;
              background-color: #00B363;
              padding: 20px;
              border-radius: 50%;
              display: inline-flex;
              align-items: center;
              justify-content: center;
              margin-bottom: 15px;
              transition: transform 0.3s ease;
            }
            
            .contact-icon:hover {
              transform: rotate(10deg);
              background-color: #00d07c;
            }
            
            .contact-card {
              background: rgba(255, 255, 255, 0.05);
              border-radius: 15px;
              text-align: center;
              padding: 30px;
              margin-bottom: 30px;
              box-shadow: 0 0 10px rgba(0, 179, 99, 0.2);
            }
            
            .btn-custom {
              background-color: #00B363;
              color: white;
              border: none;
              padding: 10px 25px;
              font-weight: 600;
              border-radius: 25px;
              transition: background 0.3s;
            }
            
            .btn-custom:hover {
              background-color: #00d07c;
              color: #fff;
            }


            /* ========== Responsive for Tablets (768px–1023px) ========== */
            @media screen and (max-width: 1023px) {
                .banner-wrapper {
                    padding: 20px 15px;
                }

                .workshop-banner h2 {
                    font-size: 1.8rem;
                    line-height: 1.4;
                    padding: 20px 30px;
                }

                .footer-container {
                    padding: 30px 20px;
                }

                .footer-container p {
                    font-size: 14px;
                }

                .logo {
                    width: 160px;
                }
            }

            /* ========== Responsive for Mobile (≤767px) ========== */
            @media screen and (max-width: 767px) {
                body {
                    font-size: 14px;
                }

                .banner-wrapper {
                    padding: 20px 10px 0;
                }

                .workshop-banner h2 {
                    font-size: 1.4rem;
                    padding: 15px 20px;
                    border-radius: 15px;
                }

                .footer-container {
                    padding: 20px 10px;
                    text-align: center;
                }

                .footer-container p {
                    font-size: 12px;
                    line-height: 1.5;
                }
            }
            
            .glassy-shine {
              position: relative;
              display: inline-block;
              color: #00b363; /* Green color or customize */
              overflow: hidden;
            }
            
            .glassy-shine::before {
              content: "";
              position: absolute;
              top: 0;
              left: -80%;
              width: 2550%;
              height: 100%;
              background: linear-gradient(
                120deg,
                rgba(255, 255, 255, 0.1) 0%,
                rgba(255, 255, 255, 0.7) 50%,
                rgba(255, 255, 255, 0.1) 100%
              );
              transform: skewX(-45deg);
              animation: glassy-shine-move 4s linear infinite;
              pointer-events: none;
            }
            
            @keyframes glassy-shine-move {
              0% {
                left: -80%;
              }
              100% {
                left: 120%;
              }
            }
            
    


        </style>