.wpcf7 .screen-reader-response {
	position: absolute;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	word-wrap: normal !important;
}

.wpcf7 form .wpcf7-response-output {
	margin: 2em 0.5em 1em;
	padding: 0.2em 1em;
	border: 2px solid #00a0d2;
	/* Blue */
}

.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
	display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
	border-color: #46b450;
	/* Green */
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
	border-color: #dc3232;
	/* Red */
}

.wpcf7 form.spam .wpcf7-response-output {
	border-color: #f56e28;
	/* Orange */
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
	border-color: #ffb900;
	/* Yellow */
}

.wpcf7-form-control-wrap {
	position: relative;
}

.wpcf7-not-valid-tip {
	color: #dc3232;
	/* Red */
	font-size: 1em;
	font-weight: normal;
	display: block;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
	position: relative;
	top: -2ex;
	left: 1em;
	z-index: 100;
	border: 1px solid #dc3232;
	background: #fff;
	padding: .2em .8em;
	width: 24em;
}

.wpcf7-list-item {
	display: inline-block;
	margin: 0 0 0 1em;
}

.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
	content: " ";
}

.wpcf7-spinner {
	visibility: hidden;
	display: inline-block;
	background-color: #23282d;
	/* Dark Gray 800 */
	opacity: 0.75;
	width: 24px;
	height: 24px;
	border: none;
	border-radius: 100%;
	padding: 0;
	margin: 0 24px;
	position: relative;
}

form.submitting .wpcf7-spinner {
	visibility: visible;
}

.wpcf7-spinner::before {
	content: '';
	position: absolute;
	background-color: #fbfbfc;
	/* Light Gray 100 */
	top: 4px;
	left: 4px;
	width: 6px;
	height: 6px;
	border: none;
	border-radius: 100%;
	transform-origin: 8px 8px;
	animation-name: spin;
	animation-duration: 1000ms;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

@media (prefers-reduced-motion: reduce) {
	.wpcf7-spinner::before {
		animation-name: blink;
		animation-duration: 2000ms;
	}
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

@keyframes blink {
	from {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

.wpcf7 input[type="file"] {
	cursor: pointer;
}

.wpcf7 input[type="file"]:disabled {
	cursor: default;
}

.wpcf7 .wpcf7-submit:disabled {
	cursor: not-allowed;
}

.wpcf7 input[type="url"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
	direction: ltr;
}

.wpcf7-reflection>output {
	display: list-item;
	list-style: none;
}

.wpcf7-reflection>output[hidden] {
	display: none;
}



/* course blade css */

.course-card {
	background: #fff;
	border-radius: 15px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	margin-bottom: 30px;
	transition: transform 0.3s;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.course-card:hover {
	transform: translateY(-5px);
}

.course-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 15px;
}

.course-details ul {
	padding-left: 1.2rem;
	text-align: left;
}

.course-details ul li {
	margin-bottom: 6px;
}

.purchase-btn {
	background-color: #000;
	color: #fff;
	border-radius: 30px;
	padding: 10px 25px;
	transition: 0.3s;
	font-weight: 500;
	margin-bottom: 43px
}

.purchase-btn:hover {
	background-color: #444;
	color: #fff;
}

.card-logo {
	/* width: 200px; */
	/* height: 200px; */
	object-fit: contain;
	/* border-radius: 50%; */
	border: 2px solid #000;
	padding: 5px;
	/* reduced from 10px to 5px */
	background-color: #000;
	margin: 10px auto 5px;
	transition: transform 0.3s;
	display: block;
}

.card-logo:hover {
	transform: scale(1.05);
}


/* event  booking  model  css */

/* Custom styles for the modal dialog */
.custom-event-modal {
	max-width: 70%;
	border-radius: 15px;
	padding: 1rem;
	 margin: auto;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Optional: override content styling inside the modal */
.custom-event-modal .modal-content {
	padding: 20px;
}

/* You can also style other elements uniquely */
.custom-event-modal .mkdf-ps-info-title {
	color: #333;
	font-weight: bold;
	text-transform: uppercase;
}


/* course card  ribbon css */

.ribbon {
	width: 150px;
	height: 150px;
	overflow: hidden;
	position: absolute;
	top: -10px;
	left: -10px;
}

.ribbon span {
	position: absolute;
	display: block;
	width: 200px;
	padding: 10px 0;
	background-color: #87152b;
	/* Change to your preferred color */
	color: #fff;
	text-align: center;
	font-weight: bold;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	top: 30px;
	left: -45px;
	box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
}

.ribbon_online {
	width: 150px;
	height: 150px;
	overflow: hidden;
	position: absolute;
	top: -10px;
	left: -10px;
}

.ribbon_online span {
	position: absolute;
	display: block;
	width: 200px;
	padding: 10px 0;
	background-color: #238715;
	/* Change to your preferred color */
	color: #fff;
	text-align: center;
	font-weight: bold;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	top: 30px;
	left: -45px;
	box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
}




/* left  bootom  fixed */

#chat {
	position: fixed;
	bottom: 20px;
	left: 3px;
	z-index: 9999;
}

#chatbot-icon {
	position: relative;
	width: 60px;
	height: 60px;

	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 2;
	background-color: white;
}

.rotating-bg {
	position: absolute;
	width: 30px;
	height: 30px;
	background-image: url("/Images/favicon.png");
	background-size: cover;
	z-index: 1;
}

#chatbot-icon img {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	object-fit: cover;
	z-index: 3;
}

@keyframes rotate-bg {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

@keyframes slideInFromLeft {
    from {
        transform: translateX(-200px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

#chatbot {
    position: absolute;
    bottom: 4px;
    left: 62px;
    display: block;
    background: #ffffff;
    border-radius: 10px;
    padding: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    width: 165px;
    z-index: 1;
}
#chatbot-bar {
	text-align: center;
	font-size: 14px;
}

#chatbot-close {
	float: right;
	background: transparent;
	border: none;
	font-weight: bold;
	font-size: 14px;
	cursor: pointer;
}

#chatbot.slide-in {
    animation: slideInFromLeft 0.5s ease-out;
}

#chatbot-image.blank {
	opacity: 0;
}



/*----------------------------------------*/
/* lottie-player animation css
/*----------------------------------------*/
.lottie-player {
    position: fixed;
    right: 20px;
    bottom: 13px;
    height: 50px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    /* box-shadow: inset 0 0 0 2px rgba(0, 0, 0, .2); */
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
}

.lottie-player {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


@media screen  and (max-width:425px){
	.custom-event-modal{
	max-width: 100%;
    border-radius: 15px;
    padding: 1rem;
    margin: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
	}
}



/* loader  css */
 
#loader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* So logo stacks vertically above/below spinner */
}
 
.loader-icon-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
}
 
.spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    border: 10px solid #f3f3f3;
    border-top: 10px solid #000000;
    border-radius: 50%;
    animation: spin 2s linear infinite;
    transform: translate(-50%, -50%);
    z-index: 1;
}
 
.loader-icon {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}
 
@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
 
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}


#muteButton {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #333;
    color: #fff;
    font-size: 24px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, transform 0.2s;
 
}
 
 
video {
    max-width: 100%;
    height: auto;
    /* display: block; */
    margin: 0 auto;
}
 
 
@media screen and (max-width:425px) {
 
    #muteButton {
        position: relative;
        top: -16%;
        left: 10px;
        transform: translateY(-50%);
        z-index: 1000;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: #333;
        color: #fff;
        font-size: 24px;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: background-color 0.3s, transform 0.2s;
        pointer-events: auto;
    }
 
 
 
    #rev_slider_9_1_forcefullwidth {
        position: relative;
        width: 100%;
        height: 265px;
        display: block;
        overflow: visible;
        max-width: none !important;
    }
 
 
    #videoBanner {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        width: 100%;
        /* height: auto; */
        position: relative;
    }
 
    video {
        max-width: 100%;
        height: auto;
        /* display: block; */
        margin: 0 auto;
    }
}
 
 
@media screen and (max-width: 767px) {
 
    #videoBanner {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        width: 100%;
        /* height: auto; */
        position: relative;
    }
 
    video {
        max-width: 100%;
        height: auto;
        /* display: block;   */
        margin-top: 83px;
    }
 
}
 