/* Webinar Page CSS */
/* hero section */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .webinars_hero {
            min-height: 100vh;
            /* background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%); */
            background-image: url('./static/images/webinarbg.png');
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding: 60px 20px;
        }

        .webinars_hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: #1a1a1a;
            z-index: -2;
        }

        .webinars_hero_background {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: -1;
            opacity: 0.1;
        }

        .webinars_hero_icon {
            position: absolute;
            color: white;
            animation: float 6s ease-in-out infinite;
        }

        .webinars_hero_icon:nth-child(1) {
            top: 10%;
            left: 5%;
            font-size: 2rem;
            animation-delay: 0s;
        }

        .webinars_hero_icon:nth-child(2) {
            top: 20%;
            right: 8%;
            font-size: 1.5rem;
            animation-delay: 1s;
        }

        .webinars_hero_icon:nth-child(3) {
            top: 60%;
            left: 3%;
            font-size: 1.8rem;
            animation-delay: 2s;
        }

        .webinars_hero_icon:nth-child(4) {
            bottom: 20%;
            right: 5%;
            font-size: 2.2rem;
            animation-delay: 3s;
        }

        .webinars_hero_icon:nth-child(5) {
            top: 40%;
            left: 8%;
            font-size: 1.6rem;
            animation-delay: 4s;
        }

        .webinars_hero_icon:nth-child(6) {
            top: 15%;
            left: 50%;
            transform: translateX(-50%);
            font-size: 1.4rem;
            animation-delay: 5s;
        }

        .webinars_hero_icon:nth-child(7) {
            bottom: 30%;
            left: 10%;
            font-size: 1.7rem;
            animation-delay: 1.5s;
        }

        .webinars_hero_icon:nth-child(8) {
            top: 30%;
            right: 15%;
            font-size: 1.9rem;
            animation-delay: 2.5s;
        }

        .webinars_hero_icon:nth-child(9) {
            bottom: 10%;
            left: 20%;
            font-size: 1.3rem;
            animation-delay: 3.5s;
        }

        .webinars_hero_icon:nth-child(10) {
            top: 70%;
            right: 20%;
            font-size: 2rem;
            animation-delay: 4.5s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            25% {
                transform: translateY(-10px) rotate(5deg);
            }
            50% {
                transform: translateY(-20px) rotate(0deg);
            }
            75% {
                transform: translateY(-10px) rotate(-5deg);
            }
        }

        .webinars_hero_content {
            text-align: center;
            max-width: 1200px;
            z-index: 10;
            position: relative;
        }

        .webinars_hero_heading {
            font-family: 'Arial', sans-serif;
            font-size: 3.5rem;
            font-weight: bold;
            color: white;
            margin-bottom: 2rem;
            line-height: 1.2;
            animation: slideInUp 1s ease-out;
        }

        .webinars_hero_company {
            color: #FF0000;
            display: block;
            font-size: 2rem;
            margin-bottom: 1rem;
            animation: slideInUp 1s ease-out 0.3s both;
        }

        .webinars_hero_text {
            font-family: 'Arial', sans-serif;
            font-size: 1.3rem;
            color: #e0e0e0;
            line-height: 1.6;
            margin-bottom: 2.5rem;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            animation: slideInUp 1s ease-out 0.6s both;
        }

        .webinars_hero_highlight {
            color: #FF0000;
            font-weight: bold;
        }

        .webinars_hero_cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #FF0000, #cc0000);
            color: white;
            padding: 15px 30px;
            font-size: 1.1rem;
            font-weight: bold;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            animation: slideInUp 1s ease-out 0.9s both;
            box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
        }

        .webinars_hero_cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
            background: linear-gradient(135deg, #cc0000, #FF0000);
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .webinars_hero_heading {
                font-size: 3rem;
            }
            
            .webinars_hero_company {
                font-size: 1.8rem;
            }
            
            .webinars_hero_text {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 768px) {
            .webinars_hero {
                padding: 40px 15px;
                min-height: 90vh;
            }
            
            .webinars_hero_heading {
                font-size: 2.5rem;
                margin-bottom: 1.5rem;
            }
            
            .webinars_hero_company {
                font-size: 1.5rem;
            }
            
            .webinars_hero_text {
                font-size: 1.1rem;
                margin-bottom: 2rem;
            }
            
            .webinars_hero_cta {
                padding: 12px 25px;
                font-size: 1rem;
            }
            
            .webinars_hero_icon {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .webinars_hero {
                padding: 30px 10px;
            }
            
            .webinars_hero_heading {
                font-size: 2rem;
            }
            
            .webinars_hero_company {
                font-size: 1.3rem;
            }
            
            .webinars_hero_text {
                font-size: 1rem;
                line-height: 1.5;
            }
            
            .webinars_hero_cta {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
        }

        /* Additional floating elements for mobile */
        @media (min-width: 769px) {
            .webinars_hero_icon:nth-child(11) {
                top: 25%;
                left: 15%;
                font-size: 1.2rem;
                animation-delay: 0.5s;
            }
            
            .webinars_hero_icon:nth-child(12) {
                bottom: 40%;
                right: 12%;
                font-size: 1.8rem;
                animation-delay: 2.8s;
            }
        }
        /* end heri section */


        /* why webinar section */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .webinars_why {
            background: #f8f8f8;
            padding: 80px 20px;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .webinars_why_container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .webinars_why_form_section {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
        }

        .webinars_why_form_section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #FF0000, #cc0000);
        }

        .webinars_why_form_title {
            font-family: 'Arial', sans-serif;
            font-size: 1.4rem;
            color: #333;
            margin-bottom: 30px;
            text-align: center;
            font-weight: 600;
        }

        .webinars_why_form_group {
            margin-bottom: 25px;
            position: relative;
        }

        .webinars_why_form_label {
            display: block;
            font-family: 'Arial', sans-serif;
            font-size: 0.95rem;
            color: #555;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .webinars_why_form_input {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            font-family: 'Arial', sans-serif;
            transition: all 0.3s ease;
            background: white;
        }

        .webinars_why_form_input:focus {
            outline: none;
            border-color: #FF0000;
            box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1);
            transform: translateY(-2px);
        }

        .webinars_why_form_textarea {
            resize: vertical;
            min-height: 120px;
            font-family: 'Arial', sans-serif;
        }

        .webinars_why_form_submit {
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, #FF0000, #cc0000);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
        }

        .webinars_why_form_submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
            background: linear-gradient(135deg, #cc0000, #FF0000);
        }

        .webinars_why_form_submit:active {
            transform: translateY(-1px);
        }

        .webinars_why_benefits_section {
            padding: 20px 0;
        }

        .webinars_why_main_heading {
            font-family: 'Arial', sans-serif;
            font-size: 1.3rem;
            color: #666;
            margin-bottom: 15px;
            text-align: center;
            font-weight: 500;
        }

        .webinars_why_heading {
            font-family: 'Arial', sans-serif;
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 40px;
            font-weight: bold;
            line-height: 1.2;
        }

        .webinars_why_benefits_list {
            list-style: none;
        }

        .webinars_why_benefit_item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
            padding: 15px 0;
            border-bottom: 1px solid #f0f0f0;
            transition: all 0.3s ease;
        }

        .webinars_why_benefit_item:hover {
            transform: translateX(10px);
            background: rgba(255, 0, 0, 0.02);
            padding-left: 15px;
            border-radius: 8px;
        }

        .webinars_why_benefit_item:last-child {
            border-bottom: none;
        }

        .webinars_why_benefit_icon {
            background: linear-gradient(135deg, #FF0000, #cc0000);
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            font-size: 0.9rem;
            flex-shrink: 0;
            box-shadow: 0 3px 10px rgba(255, 0, 0, 0.3);
        }

        .webinars_why_benefit_text {
            font-family: 'Arial', sans-serif;
            font-size: 1.1rem;
            color: #666;
            line-height: 1.4;
            flex: 1;
            margin-top: 2px;
        }

        .webinars_why_highlight {
            color: #FF0000;
            font-weight: 600;
        }

        .webinars_why_academy_intro {
            background: linear-gradient(135deg, rgba(255, 0, 0, 0.05), rgba(255, 0, 0, 0.02));
            padding: 25px;
            border-radius: 12px;
            margin-bottom: 35px;
            border-left: 4px solid #FF0000;
        }

        .webinars_why_academy_text {
            font-family: 'Arial', sans-serif;
            font-size: 1rem;
            color: #555;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .webinars_why_academy_highlight {
            font-family: 'Arial', sans-serif;
            font-size: 1.1rem;
            color: #FF0000;
            font-weight: bold;
            text-align: center;
            display: block;
        }

        /* Animations */
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .webinars_why_form_section {
            animation: slideInLeft 0.8s ease-out;
        }

        .webinars_why_benefits_section {
            animation: slideInRight 0.8s ease-out 0.3s both;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .webinars_why_container {
                gap: 40px;
            }
            
            .webinars_why_heading {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            .webinars_why {
                padding: 60px 15px;
            }
            
            .webinars_why_container {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            
            .webinars_why_form_section {
                padding: 30px 25px;
                order: 2;
            }
            
            .webinars_why_benefits_section {
                order: 1;
            }
            
            .webinars_why_heading {
                font-size: 2rem;
                text-align: center;
                margin-bottom: 30px;
            }
            
            .webinars_why_main_heading {
                font-size: 1.2rem;
            }
            
            .webinars_why_benefit_text {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .webinars_why {
                padding: 40px 10px;
            }
            
            .webinars_why_form_section {
                padding: 25px 20px;
            }
            
            .webinars_why_heading {
                font-size: 1.8rem;
            }
            
            .webinars_why_benefit_item:hover {
                transform: none;
                padding-left: 0;
            }
            
            .webinars_why_academy_intro {
                padding: 20px;
            }
        }

        /* Loading states */
        .webinars_why_form_submit.loading {
            position: relative;
            color: transparent;
        }

        .webinars_why_form_submit.loading::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            top: 50%;
            left: 50%;
            margin-left: -10px;
            margin-top: -10px;
            border: 2px solid transparent;
            border-top-color: white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }
        /* end why webinar section */

        /* webinar stats section */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .webinars_stats {
            background: #f5f5f5;
            padding: 80px 20px;
            position: relative;
            overflow: hidden;
        }

        .webinars_stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255,0,0,0.02) 0%, rgba(255,0,0,0.01) 100%);
            z-index: 1;
        }

        .webinars_stats_container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .webinars_stats_grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            align-items: stretch;
        }

        .webinars_stats_card {
            background: white;
            padding: 40px 20px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            min-height: 280px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-top: 4px solid transparent;
        }

        .webinars_stats_card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #FF0000, #cc0000);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .webinars_stats_card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .webinars_stats_card:hover::before {
            opacity: 1;
        }

        .webinars_stats_icon_wrapper {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            background: linear-gradient(135deg, rgba(255,0,0,0.1), rgba(255,0,0,0.05));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            position: relative;
        }

        .webinars_stats_card:hover .webinars_stats_icon_wrapper {
            background: linear-gradient(135deg, #FF0000, #cc0000);
            transform: scale(1.1);
        }

        .webinars_stats_icon {
            font-size: 2.2rem;
            color: #FF0000;
            transition: all 0.3s ease;
        }

        .webinars_stats_card:hover .webinars_stats_icon {
            color: white;
        }

        /* Custom icons for each card */
        .webinars_stats_card:nth-child(1) .webinars_stats_icon_wrapper {
            background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.05));
        }

        .webinars_stats_card:nth-child(1) .webinars_stats_icon {
            color: #4CAF50;
        }

        .webinars_stats_card:nth-child(1):hover .webinars_stats_icon_wrapper {
            background: linear-gradient(135deg, #4CAF50, #45a049);
        }

        .webinars_stats_card:nth-child(2) .webinars_stats_icon_wrapper {
            background: linear-gradient(135deg, rgba(33, 150, 243, 0.1), rgba(33, 150, 243, 0.05));
        }

        .webinars_stats_card:nth-child(2) .webinars_stats_icon {
            color: #2196F3;
        }

        .webinars_stats_card:nth-child(2):hover .webinars_stats_icon_wrapper {
            background: linear-gradient(135deg, #2196F3, #1976D2);
        }

        .webinars_stats_card:nth-child(3) .webinars_stats_icon_wrapper {
            background: linear-gradient(135deg, rgba(255, 152, 0, 0.1), rgba(255, 152, 0, 0.05));
        }

        .webinars_stats_card:nth-child(3) .webinars_stats_icon {
            color: #FF9800;
        }

        .webinars_stats_card:nth-child(3):hover .webinars_stats_icon_wrapper {
            background: linear-gradient(135deg, #FF9800, #F57C00);
        }

        .webinars_stats_card:nth-child(4) .webinars_stats_icon_wrapper {
            background: linear-gradient(135deg, rgba(156, 39, 176, 0.1), rgba(156, 39, 176, 0.05));
        }

        .webinars_stats_card:nth-child(4) .webinars_stats_icon {
            color: #9C27B0;
        }

        .webinars_stats_card:nth-child(4):hover .webinars_stats_icon_wrapper {
            background: linear-gradient(135deg, #9C27B0, #7B1FA2);
        }

        .webinars_stats_label {
            font-family: 'Arial', sans-serif;
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .webinars_stats_number {
            font-family: 'Arial', sans-serif;
            font-size: 2.2rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 10px;
            line-height: 1.2;
            transition: all 0.3s ease;
        }

        .webinars_stats_card:hover .webinars_stats_number {
            color: #FF0000;
            transform: scale(1.05);
        }

        .webinars_stats_subtitle {
            font-family: 'Arial', sans-serif;
            font-size: 0.9rem;
            color: #888;
            line-height: 1.4;
        }

        /* Animation classes */
        .webinars_stats_card.animate {
            animation: slideInUp 0.6s ease-out forwards;
            opacity: 0;
            transform: translateY(50px);
        }

        .webinars_stats_card.animate:nth-child(1) {
            animation-delay: 0.1s;
        }

        .webinars_stats_card.animate:nth-child(2) {
            animation-delay: 0.2s;
        }

        .webinars_stats_card.animate:nth-child(3) {
            animation-delay: 0.3s;
        }

        .webinars_stats_card.animate:nth-child(4) {
            animation-delay: 0.4s;
        }

        @keyframes slideInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes countUp {
            from {
                transform: translateY(20px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .webinars_stats_number.counting {
            animation: countUp 0.5s ease-out;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .webinars_stats_grid {
                gap: 25px;
            }
            
            .webinars_stats_card {
                padding: 35px 15px;
                min-height: 260px;
            }
            
            .webinars_stats_number {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .webinars_stats {
                padding: 60px 15px;
            }
            
            .webinars_stats_grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .webinars_stats_card {
                padding: 30px 15px;
                min-height: 240px;
            }
            
            .webinars_stats_icon_wrapper {
                width: 70px;
                height: 70px;
                margin-bottom: 20px;
            }
            
            .webinars_stats_icon {
                font-size: 2rem;
            }
            
            .webinars_stats_number {
                font-size: 1.8rem;
            }
            
            .webinars_stats_label {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .webinars_stats {
                padding: 50px 10px;
            }
            
            .webinars_stats_grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .webinars_stats_card {
                padding: 25px 15px;
                min-height: 220px;
            }
            
            .webinars_stats_icon_wrapper {
                width: 60px;
                height: 60px;
            }
            
            .webinars_stats_icon {
                font-size: 1.8rem;
            }
            
            .webinars_stats_number {
                font-size: 1.6rem;
            }
        }
        /* end webinar stats section */

        /* webinar pay section */
        .webinars_pay {
            background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
            padding: 60px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .webinars_pay::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
        }

        .webinars_pay_container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .webinars_pay_title {
            color: white;
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 40px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            line-height: 1.2;
            letter-spacing: -0.5px;
        }

        .webinars_pay_subtitle {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 10px;
            font-weight: 600;
            opacity: 0.95;
        }

        .webinars_pay_company {
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .webinars_pay_button {
            background: white;
            color: #333;
            border: none;
            padding: 18px 40px;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            display: inline-flex;
            align-items: center;
            gap: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
        }

        .webinars_pay_button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }

        .webinars_pay_button:hover::before {
            left: 100%;
        }

        .webinars_pay_button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
            background: #f8f8f8;
        }

        .webinars_pay_button:active {
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        }

        .webinars_pay_icon {
            font-size: 1.3rem;
            color: #FF0000;
        }

        .webinars_pay_button_text {
            position: relative;
            z-index: 2;
        }

        .webinars_pay_security {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            margin-top: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .webinars_pay_security i {
            color: #4CAF50;
        }

        /* Floating Elements */
        .webinars_pay_float {
            position: absolute;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        .webinars_pay_float:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .webinars_pay_float:nth-child(2) {
            top: 60%;
            right: 15%;
            animation-delay: 2s;
        }

        .webinars_pay_float:nth-child(3) {
            bottom: 20%;
            left: 20%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .webinars_pay {
                padding: 40px 15px;
            }

            .webinars_pay_title {
                font-size: 2.5rem;
                margin-bottom: 30px;
            }

            .webinars_pay_subtitle {
                font-size: 1.1rem;
            }

            .webinars_pay_company {
                font-size: 1.3rem;
                margin-bottom: 30px;
            }

            .webinars_pay_button {
                padding: 16px 30px;
                font-size: 1rem;
                width: 100%;
                max-width: 300px;
            }
        }

        @media (max-width: 480px) {
            .webinars_pay {
                padding: 30px 10px;
            }

            .webinars_pay_title {
                font-size: 2rem;
                line-height: 1.3;
            }

            .webinars_pay_subtitle {
                font-size: 1rem;
            }

            .webinars_pay_company {
                font-size: 1.2rem;
            }

            .webinars_pay_button {
                padding: 14px 25px;
                font-size: 0.95rem;
            }

            .webinars_pay_security {
                font-size: 0.8rem;
                flex-direction: column;
                gap: 5px;
            }
        }

        @media (max-width: 320px) {
            .webinars_pay_title {
                font-size: 1.8rem;
            }
            
            .webinars_pay_button {
                padding: 12px 20px;
                font-size: 0.9rem;
            }
        }

        /* Animation for page load */
        .webinars_pay_container {
            animation: slideInUp 0.8s ease-out;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Button pulse effect */
        .webinars_pay_button {
            animation: buttonPulse 2s infinite;
        }

        @keyframes buttonPulse {
            0% { box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); }
            50% { box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25); }
            100% { box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); }
        }
        /* end webinar pay section */

        /* webinar topics section */
        .webinars_topics {
            padding: 60px 20px;
            background-color: white;
            font-family: 'Arial', sans-serif;
        }

        .webinars_topics_container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .webinars_topics_title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: bold;
            color: black;
            margin-bottom: 50px;
            line-height: 1.2;
        }

        .webinars_topics_grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 25px;
            align-items: start;
        }

        .webinars_topics_card {
            background-color: #f8f9fa;
            border: 2px solid #e9ecef;
            border-radius: 50px;
            padding: 25px 30px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
        }

        .webinars_topics_card:hover {
            transform: translateY(-5px);
            border-color: #FF0000;
            box-shadow: 0 8px 25px rgba(255, 0, 0, 0.15);
        }

        .webinars_topics_card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .webinars_topics_card:hover::before {
            left: 100%;
        }

        .webinars_topics_icon {
            font-size: 2.5rem;
            color: #FF0000;
            margin-bottom: 15px;
            display: block;
        }

        .webinars_topics_text {
            font-size: 1.1rem;
            font-weight: 600;
            color: #333;
            line-height: 1.4;
            margin: 0;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .webinars_topics {
                padding: 40px 15px;
            }

            .webinars_topics_title {
                font-size: 2rem;
                margin-bottom: 30px;
            }

            .webinars_topics_grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .webinars_topics_card {
                padding: 20px 25px;
                border-radius: 35px;
            }

            .webinars_topics_icon {
                font-size: 2rem;
            }

            .webinars_topics_text {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .webinars_topics_title {
                font-size: 1.8rem;
            }

            .webinars_topics_card {
                padding: 18px 20px;
                border-radius: 30px;
            }

            .webinars_topics_text {
                font-size: 0.95rem;
            }
        }

        /* Animation for cards */
        .webinars_topics_card {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.6s ease forwards;
        }

        .webinars_topics_card:nth-child(1) { animation-delay: 0.1s; }
        .webinars_topics_card:nth-child(2) { animation-delay: 0.2s; }
        .webinars_topics_card:nth-child(3) { animation-delay: 0.3s; }
        .webinars_topics_card:nth-child(4) { animation-delay: 0.4s; }
        .webinars_topics_card:nth-child(5) { animation-delay: 0.5s; }
        .webinars_topics_card:nth-child(6) { animation-delay: 0.6s; }
        .webinars_topics_card:nth-child(7) { animation-delay: 0.7s; }
        .webinars_topics_card:nth-child(8) { animation-delay: 0.8s; }
        .webinars_topics_card:nth-child(9) { animation-delay: 0.9s; }
        .webinars_topics_card:nth-child(10) { animation-delay: 1.0s; }
        .webinars_topics_card:nth-child(11) { animation-delay: 1.1s; }
        .webinars_topics_card:nth-child(12) { animation-delay: 1.2s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        /* end webinar topics section */


        /* webinar join section */
      

        .webinars_join {
            background-color: white;
            padding: 0px 0px;
            text-align: center;
            /* max-width: 1200px; */
            /* margin: 0 auto; */
        }

        .webinars_join_container {
            /* max-width: 1200px; */
            /* margin: 20px auto 0 auto; */
            padding: 30px 20px 30px 20px;

            background-color: #d61a1aff;
        }

        .webinars_join_title {
            font-size: 3rem;
            font-weight: 800;
            color: white;
            margin-bottom: 40px;
            letter-spacing: -1px;
        }

        .webinars_join_list {
            list-style: none;
            text-align: left;
            display: inline-block;
        }

        .webinars_join_item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: 1.25rem;
            color: #000000ff;
            font-weight: 400;
        }

        .webinars_join_icon {
            width: 24px;
            height: 24px;
            background-color: #FF0000;
            border-radius: 50%;
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .webinars_join_icon::after {
            content: "✓";
            color: white;
            font-weight: bold;
            font-size: 14px;
        }

        .webinars_join_text {
            flex: 1;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .webinars_join {
                padding: 40px 15px;
            }

            .webinars_join_title {
                font-size: 2.2rem;
                margin-bottom: 30px;
            }

            .webinars_join_item {
                font-size: 1.1rem;
                margin-bottom: 18px;
            }

            .webinars_join_icon {
                width: 22px;
                height: 22px;
                margin-right: 12px;
            }
        }

        @media (max-width: 480px) {
            .webinars_join {
                padding: 30px 12px;
            }

            .webinars_join_title {
                font-size: 1.8rem;
                margin-bottom: 25px;
                line-height: 1.2;
            }

            .webinars_join_item {
                font-size: 1rem;
                margin-bottom: 15px;
                align-items: flex-start;
            }

            .webinars_join_icon {
                width: 20px;
                height: 20px;
                margin-right: 10px;
                margin-top: 2px;
            }

            .webinars_join_icon::after {
                font-size: 12px;
            }
        }

        @media (max-width: 320px) {
            .webinars_join_title {
                font-size: 1.6rem;
            }

            .webinars_join_item {
                font-size: 0.95rem;
            }
        }

        /* Animation for smooth loading */
        .webinars_join {
            animation: fadeInUp 0.8s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .webinars_join_item {
            animation: fadeInLeft 0.6s ease-out forwards;
            opacity: 0;
        }

        .webinars_join_item:nth-child(1) { animation-delay: 0.2s; }
        .webinars_join_item:nth-child(2) { animation-delay: 0.4s; }
        .webinars_join_item:nth-child(3) { animation-delay: 0.6s; }
        .webinars_join_item:nth-child(4) { animation-delay: 0.8s; }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        /* end webinar join section */
        /* webinar faq section */
        .webinars_faq {
            padding: 60px 0;
            background-color: white;
            font-family: 'Arial', sans-serif;
        }

        .webinars_faq .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .webinars_faq .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .webinars_faq .section-title h2 {
            font-size: 2.5rem;
            font-weight: bold;
            color: black;
            margin-bottom: 20px;
            position: relative;
        }

        .webinars_faq .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #FF0000;
        }

        .webinars_faq .faq-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .webinars_faq .faq-left {
            padding-right: 20px;
        }

        .webinars_faq .faq-heading {
            font-size: 2rem;
            font-weight: bold;
            color: black;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .webinars_faq .faq-description {
            color: #666;
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .webinars_faq .faq-item {
            margin-bottom: 15px;
            border: 2px solid #f0f0f0;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .webinars_faq .faq-item.active {
            border-color: #FF0000;
        }

        .webinars_faq .faq-question {
            background-color: #f8f9fa;
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: between;
            align-items: center;
            font-weight: 600;
            color: black;
            transition: all 0.3s ease;
            position: relative;
        }

        .webinars_faq .faq-question:hover {
            background-color: #FF0000;
            color: white;
        }

        .webinars_faq .faq-question .question-text {
            flex: 1;
            padding-right: 20px;
        }

        .webinars_faq .faq-question .faq-icon {
            font-size: 1.2rem;
            margin-right: 15px;
            color: #FF0000;
            transition: color 0.3s ease;
        }

        .webinars_faq .faq-question:hover .faq-icon {
            color: white;
        }

        .webinars_faq .faq-toggle {
            font-size: 1.5rem;
            transition: transform 0.3s ease;
            color: #FF0000;
        }

        .webinars_faq .faq-question:hover .faq-toggle {
            color: white;
        }

        .webinars_faq .faq-item.active .faq-toggle {
            transform: rotate(180deg);
        }

        .webinars_faq .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background-color: white;
        }

        .webinars_faq .faq-item.active .faq-answer {
            max-height: 200px;
        }

        .webinars_faq .faq-answer-content {
            padding: 20px;
            color: #333;
            line-height: 1.6;
        }

        .webinars_faq .faq-right {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .webinars_faq .faq-image {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            /* margin-right: 20px; */
            /* box-shadow: 0 10px 30px rgba(0,0,0,0.1); */
            transition: transform 0.3s ease;
        }

        .webinars_faq .faq-image:hover {
            transform: translateY(-5px);
        }

        /* FAQ Icons for different question types */
        .webinars_faq .icon-calendar { color: #FF0000; }
        .webinars_faq .icon-book { color: #FF0000; }
        .webinars_faq .icon-video { color: #FF0000; }
        .webinars_faq .icon-clipboard { color: #FF0000; }
        .webinars_faq .icon-user { color: #FF0000; }
        .webinars_faq .icon-certificate { color: #FF0000; }
        .webinars_faq .icon-store { color: #FF0000; }
        .webinars_faq .icon-record { color: #FF0000; }
        .webinars_faq .icon-support { color: #FF0000; }

        /* Responsive Design */
        @media (max-width: 768px) {
            .webinars_faq .container {
                padding: 0 15px;
            }

            .webinars_faq .section-title h2 {
                font-size: 2rem;
            }

            .webinars_faq .faq-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .webinars_faq .faq-heading {
                font-size: 1.5rem;
            }

            .webinars_faq .faq-description {
                font-size: 1rem;
            }

            .webinars_faq .faq-question {
                padding: 15px;
                font-size: 0.9rem;
            }

            .webinars_faq .faq-answer-content {
                padding: 15px;
                font-size: 0.9rem;
            }

            .webinars_faq .faq-right {
                order: -1;
            }
        }

        @media (max-width: 480px) {
            .webinars_faq {
                padding: 40px 0;
            }

            .webinars_faq .section-title h2 {
                font-size: 1.8rem;
            }

            .webinars_faq .faq-heading {
                font-size: 1.3rem;
            }

            .webinars_faq .faq-question {
                padding: 12px;
                flex-direction: column;
                align-items: flex-start;
            }

            .webinars_faq .faq-question .question-text {
                padding-right: 0;
                margin-bottom: 10px;
            }

            .webinars_faq .faq-toggle {
                position: absolute;
                right: 15px;
                top: 50%;
                transform: translateY(-50%);
            }
        }
        /* end webinar faq section */