/*--------------------------------------------------------------
	# General
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
	--main: #F85510;
	--hover: #6f24f4;
	--mainbg: #0E1528;
	--hoverbg: #c9b033;
	--button-color: #fff;
	--color-light: #fff;
	--color-dark: #000;
	--gradient: linear-gradient(to right, #f85510, #F7B733);
}

html {
	overflow-x: hidden;
}

body {
	font-family: 'Poppins', sans-serif;
	z-index: 99;
	overflow-x: hidden;
	background-color: var(--mainbg);
}

a {
	color: #f7b030;
	text-decoration: none;
	transition: 0.5s;
}

a:hover,
a:active,
a:focus {
	color: #f8234a;
	outline: none;
	text-decoration: none;
}

p {
	padding: 0;
	margin: 0 0 10px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 400;
	margin: 0 0 10px 0;
	padding: 0;
}

img {
	max-width: 100%
}

/*--------------------------------------------------------------
	# General Classes
--------------------------------------------------------------*/
.displaynone,
.d-none {
	display: none
}

.v-hidden {
	visibility: hidden;
}

.owl-nav {
	margin-top: 5px;
	text-align: center;
	display: block !important;
	font-size: 45px;
	font-weight: 400;
	color: #fff;
}

.owl-prev {
	position: absolute;
	top: 25%;
	left: -10px;
}

.owl-next {
	position: absolute;
	top: 25%;
	right: -10px;
}

.owl-dots {
	margin-top: 5px;
	text-align: center;
}

.owl-dot {
	display: inline-block;
	margin: 0 5px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #ddd;
}

.owl-dot.active {
	background-color: #43d7dd;
}

/*--------------------------------------------------------------
	# Preloader
--------------------------------------------------------------*/
#preloader {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 999;
	width: 100%;
	height: 100%;
	overflow: visible;
	background: #fff url("../img/preloader.svg") no-repeat center center;
}

/*--------------------------------------------------------------
	# Back to top button
--------------------------------------------------------------*/
.back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 9996;
	background: #fff0;
	width: 40px;
	height: 40px;
	border-radius: 50px;
	transition: all 0.4s;
	border: 1px solid var(--main);
}

.back-to-top i {
	font-size: 28px;
	color: var(--hover);
	line-height: 0;
}

.back-to-top:hover {
	background: #fff0;
	border: 1px solid var(--hover);
}

.back-to-top.active {
	visibility: visible;
	opacity: 1;
}

/*--------------------------------------------------------------
	# Header
--------------------------------------------------------------*/
#header {
	height: 70px;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	transition: all 0.5s;
	z-index: 999;
	border-bottom: 0px solid hsla(0, 0%, 100%, 0.1);
	background: #ffffff00;
}

#header.header-scrolled,
#header.header-inner {
	background: var(--mainbg);
	height: 70px;
}

#header #logo {
	color: #ffff;
}

#header #logo img {
	margin: 0;
	max-height: 80px;
	padding: 4px 0;
}

@media (max-width: 992px) {
	#header #logo img {
		max-height: 80px;
	}
}

/*--------------------------------------------------------------
	# Desktop Navigation Menu
--------------------------------------------------------------*/

.navbar {
	padding: 0;
}

.navbar ul {
	margin: 0;
	padding: 0;
	display: flex;
	list-style: none;
	align-items: center;
}

.navbar li {
	position: relative;
}

.navbar a,
.navbar a:focus {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--button-color);
	font-weight: 600;
	font-size: 17px;
	white-space: nowrap;
	transition: 0.3s;
	position: relative;
	padding: 6px 4px;
	margin-left: 20px;
	text-transform: capitalize;

}

.navbar a:hover,
.navbar li:hover>a {
	color: var(--hoverbg);
}

/* Dropdown fix */
#navbar .dropdown>ul {
	display: none;
	position: absolute;
	background: #fff;
	box-shadow: 0 0 30px rgba(127, 137, 161, 0.25);
	top: 100%;
	left: 0;
	z-index: 99;
	padding: 10px 0;
	height: auto;
}

#navbar .dropdown:hover>ul {
	display: block;
}

#navbar .dropdown ul li {
	min-width: 120px;
}

#navbar .dropdown ul li a {
	padding: 10px 0px;
	color: #333;
	display: block;
	font-size: 16px;
}
/* Responsive Adjustments */
@media (max-width: 768px) {
#navbar .dropdown:hover>ul {
    display: block;
    height: 210px;
}}
/*--------------------------------------------------------------
	# Mobile Navigation Menu
--------------------------------------------------------------*/

.mobile-nav-toggle {
	color: var(--button-color);
	font-size: 32px;
	cursor: pointer;
	background: var(--gradient);
	display: none;
	line-height: 0;
	transition: 0.5s;
}

@media (max-width: 991px) {
	.mobile-nav-toggle {
		display: block;
	}

	.navbar ul {
		display: none;
	}
}

.navbar-mobile {
	position: fixed;
	overflow: hidden;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.9);
	transition: 0.3s;
	z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
	position: absolute;
	top: 15px;
	right: 15px;
}

.navbar-mobile ul {
	display: block;
	position: absolute;
	top: 55px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	padding: 10px 0;
	background: var(--gradient);
	overflow-y: auto;
	transition: 0.3s;
}

.navbar-mobile>ul>li {
	padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
	visibility: hidden;
}

.navbar-mobile a,
.navbar-mobile a:focus {
	padding: 10px 20px;
	font-size: 15px;
	color: #fff;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
	color: var(--mainbg);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
	margin: 15px;
}

/*--------------------------------------------------------------
	# Button States
--------------------------------------------------------------*/
.default-button {
	color: #fff;
	background: #801df5;
	padding: 10px 30px;
	margin: 0 0 0 15px;
	border-radius: 15px 0;
	transition: all ease-in-out 0.3s;
	font-weight: 700 !important;
	line-height: 1;
	font-size: 16px;
	line-height: 22px;
	white-space: nowrap;
	text-transform: uppercase;
	border: none;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.default-button:hover,
.default-button:focus {
	background: var(--main);
	color: #fff;
}

.bt-button {
	background: var(--gradient);
	border: none !important;
	padding: 12px 22px !important;
	margin: 0 0 0 15px;
	border-radius: 5px;
	transition: all ease-in-out 0.3s;
	font-weight: 500 !important;
	line-height: 1;
	font-size: 16px;
	line-height: 22px;
	white-space: nowrap;
	text-transform: uppercase;
	border: 2px solid var(--main);
}

.bt-button:hover {
	background: linear-gradient(45deg, #ffc107, var(--hover));
	color: var(--color-light) !important;
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.model-close-button {
	color: var(--button-color);
	background: var(--gradient);
	padding: 7px 22px;
	border-radius: 0px;
	transition: all ease-in-out 0.3s;
	font-weight: 800;
	line-height: 1;
	font-size: 16px;
	line-height: 22px;
	white-space: nowrap;
	text-transform: uppercase;
	border: none;
	margin-left: 15px;
}

.model-close-button:hover,
.model-close-button:focus {
	color: #000;
	background: var(--gradient);
}



/*--------------------------------------------------------------
	# counter
--------------------------------------------------------------*/
#counter {
	padding: 60px 0 40px 0;
	/* background: url(../img/banner/counter-bg.png) top center no-repeat; */
	background-size: cover;
	position: relative;
}

#counter .count-num {
	font-weight: 600;
	font-size: 42px;
	letter-spacing: -1px;
	color: var(--button-color);
	text-align: center;
}

/*-------------------------------------------------------------
	# regions-covered Section   
--------------------------------------------------------------*/
#regions-covered {
	padding: 60px 0 40px 0;
}


#regions-covered .img {
	position: relative;
}

#regions-covered .percentage {
	position: absolute;
	font-size: 16px;
	font-weight: 600;
	text-align: center;
	left: 0;
	color: var(--color-light);
	width: 100%;
	bottom: -5px;
}

/* Map Container */
.map-container {
	position: relative;
}

/* Pin Design */
.pin {
	position: absolute;
	width: 15px;
	height: 15px;
	background: rgb(255, 221, 0);
	border-radius: 50%;
	box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.8);
	animation: blink 1.5s infinite alternate;
	font-size: 12px;
	color: #fff;
	text-align: center;
	line-height: 15px;
	font-weight: bold;
	padding: 2px 5px;
	transform: translate(-50%, -50%);
}

/* Blinking Animation */
@keyframes blink {
	0% {
		opacity: 1;
		transform: scale(1);
	}

	100% {
		opacity: 0.3;
		transform: scale(1.3);
	}
}


/*-------------------------------------------------------------
	# whyattend Section   
--------------------------------------------------------------*/
#whyattend {
	padding: 60px 0 40px 0;
	background: url(../img/banner/whyindia.png) top center no-repeat;
	background-size: cover;
	position: relative;
}

#whyattend .col-md-3 {
	background-color: #fff;
	padding: 40px 45px;
	box-shadow: 0px 3px 50px #00000029;
	margin: 0 15px;
}

#whyattend img {
	width: 30px;
}

#whyattend h3 {
	font-size: 24px;
	font-weight: 600;
	padding: 10px 0;
	margin: 0;
}

#whyattend p {
	font-size: 15px;
	color: #757095;
	padding: 0;
	margin: 0;
	line-height: 1.4;
}

#feactureddiscussion {
	padding: 60px 0 40px 0;
}

#feactureddiscussion .testimonial-item {
	padding: 60px 40px;
	background: #9119F5 0% 0% no-repeat padding-box;
	margin: 0 10px;
}

#feactureddiscussion .testimonial-item img {
	width: 40px;
}

#feactureddiscussion .testimonial-item p {
	color: #fff;
	padding: 10px 0;
	line-height: 1.4;
}

#feactureddiscussion .owl-carousel .owl-stage {
	display: flex;
}

#feactureddiscussion .article-items {
	display: flex;
	flex: 1 0 auto;
	height: 100%;
}

#feactureddiscussion .aticle-box {
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

#feactureddiscussion .owl-dots {
	display: none;
}

#feactureddiscussion .owl-nav {
	margin-top: 5px;
	text-align: center;
	display: block !important;
	font-size: 30px;
	font-weight: 400;
	color: #9119F5;
	position: absolute;
	top: 100%;
	left: 1%;
}

#feactureddiscussion .owl-prev span {
	border: 1px solid #9119F5;
	border-radius: 50%;
	padding: 0px 16px 5px;
	margin-right: 10px;
}

#feactureddiscussion .owl-next span {
	border: 1px solid #9119F5;
	border-radius: 50%;
	padding: 0px 16px 5px;
	margin-right: 10px;
}

/*-------------------------------------------------------------
	#Speaker Section
--------------------------------------------------------------*/
/*-------------------------------------------------------------
	# attend Section
--------------------------------------------------------------*/
#attend {
	padding: 60px 0 40px 0;
	z-index: 99;
	background: url(../img/banner/attendee.jpg) top center no-repeat;
	background-size: cover;
	position: relative;
	color: #fff;
}


#attend ul {
	margin-bottom: 0;
}

#attend ul li {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.3;
	margin-bottom: 5px;
	padding-left: 1px;
}

/*-------------------------------------------------------------
	# selectos-covered Section 
--------------------------------------------------------------*/
#selectos-covered {
	padding: 60px 0 40px 0;
	z-index: 99;
	text-align: center;
	/* background: url(../img/banner/sector-bg.jpg) top center no-repeat; */
	background-size: cover;
	position: relative;
	color: #fff;
}



#selectos-covered .outer-box {
	background-color: #eaf7fd;
	padding: 10px;
	margin-bottom: 30px;
}

#selectos-covered .outer-box img {
	width: 200px;
}

#selectos-covered h3 {
	font-weight: 600;
	font-size: 23px;
	padding: 10px 0;
	color: #020580;
}

/*-------------------------------------------------------------
	# voicetechin Section 
--------------------------------------------------------------*/

.voicetechin {
	padding: 0px 0 60px 0;
	z-index: 99;
	text-align: center;
	/* background: url(../img/banner/sector-bg.jpg) top center no-repeat; */
	background-size: cover;
	position: relative;
	color: #fff;
}

.voicetechin img {
	width: 100%;
	margin: 30px 0;
	z-index: 99 !important;
	cursor: pointer;
}



.voicetechin .owl-nav {
	margin-top: 5px;
	text-align: center;
	display: block !important;
	font-size: 90px;
	font-weight: 200;
	color: #fff;
}

.voicetechin .owl-prev {
	position: absolute;
	top: 30%;
	left: -30px;
}

.voicetechin .owl-next {
	position: absolute;
	top: 30%;
	right: -30px;
}

.voicetechin .owl-dots {
	margin-top: 5px;
	text-align: center;
}

.voicetechin .owl-dot {
	display: inline-block;
	margin: 0 5px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #ddd !important;
}

.voicetechin .owl-dot.active {
	background-color: #43d7dd !important;
}

/*--------------------------------------------------------------
	# mediac
--------------------------------------------------------------*/
#mediac {
	padding: 0 0 80px 0;
	z-index: 99;
	text-align: center;
	background: url('../img/banner/feature-section-1-bg.png') top center no-repeat;
	background-size: cover;
	position: relative;
	color: #000;
}



#mediac .count-num {
	font-weight: 600;
	font-size: 40px;
	letter-spacing: -1px;
	margin-top: 20px;
}

#mediac .smalltext {
	font-size: 20px;
	text-transform: uppercase;
	font-weight: 600;
}


/*--------------------------------------------------------------
	# supporters
--------------------------------------------------------------*/

#partners {
	background: #fff;
	padding: 40px 0;
	color: #000;
}

.section-header h2 {
	text-align: center;
	font-size: 3rem;
	margin-bottom: 60px !important;
	animation: fadeInDown 1s ease-in-out;
	font-weight: 700;
	text-align: center;
	margin: 30px 0 0 0;
	color: var(--color-light);
	text-transform: uppercase!important;
}

/*--------------------------------------------------------------
	# attending-companies
--------------------------------------------------------------*/
#attending-companies {
	background: #fff;
	padding: 50px 0;
}


#attending-companies .testimonial-item {
	padding: 0 20px
}

#attending-companies .owl-nav {
	margin-top: 5px;
	text-align: center;
}

#attending-companies .owl-dots {
	margin-top: 5px;
	text-align: center;
}

#attending-companies .owl-dot {
	display: inline-block;
	margin: 0 5px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #ddd !important;
}

#attending-companies .owl-dot.active {
	background-color: #43d7dd !important;
}


#thank-you-toast {
	position: relative !important;
}

#clients {
	padding: 60px 0;
	background-color: #fff;
}



#clients .our_client_logo {
	max-width: 80%;
	opacity: 0.9;
	transition: 0.3s;
	padding: 15px 4px;
	width: 90%;
}

/*--------------------------------------------------------------
	# vip-registration 
--------------------------------------------------------------*/

#vip-registration {
	padding: 100px 0 30px 0;
	/* background: linear-gradient(to right, #0a0941, #000); */
	min-height: 300px;
}



#vip-registration .section-header p {
	text-align: center;
	margin: auto;
	font-size: 19px;
	color: #fff;
	width: 90%;
	font-weight: 500;
	padding-bottom: 10px;
}

#vip-visitor-form {
	background-color: #fff;
	padding: 15px 15px;
	margin: 0 10px;
}

#vip-visitor-form label {
	font-weight: 600;
	font-size: 17px;
	color: #000;
}

#vip-visitor-form textarea {
	width: 100%;
	margin: 0;
}

@media (max-width:798px) {
	#vip-registration .section-header p {
		width: 90%;
	}
}

#vip-registration #vip-visitor-form .row {
	color: #000;
}

#vip-registration label {
	padding-top: 10px;
}

.form-check-input {
	margin-right: 10px;
}

#vip-registration .radio_color {
	color: #000;
	padding-right: 20px;
	margin-left: -10px;
}

#vip-registration .form-check-label {
	font-size: 16px !important;
	font-weight: 400 !important;
	margin-top: -30px !important;
	padding: 8px 0;
}

#vip-registration .finally .form-check-label {
	font-size: 18px !important;
	font-weight: 400 !important;
	margin-top: -8px !important;
	padding: 8px 0;
}

#vip-registration #vip-visitor-form .Heading {
	text-align: center;
	font-size: 22px;
}

#vip-registration .info {
	color: #000;
	padding: 0;
	margin: 0;
}

#vip-registration .meeting_logo {
	width: 35%;
	margin-top: -30px;
}

#vip-registration .vip-Msg {
	color: #fff;
	padding: 15px 0;
	margin: 0;
	text-align: center;
	align-items: center;
}

#vip-registration .vip-Msg h2 {
	text-transform: Uppercase;
	font-size: 40px;
	font-weight: 800;
}

#vip-registration .vip-Msg p {
	font-size: 18px;
}

#vip-registration .vip-Msg h5 {
	font-size: 20px;
}

.vip-sponsor-bio {
	color: #000;
}

/*--------------------------------------------------------------
	# attendee-registration 
--------------------------------------------------------------*/
#attendee-registration {
	padding: 100px 0 30px 0;
	background: linear-gradient(to right, #0a0941, #000);
	min-height: 300px;
}



#attendee-registration .section-header p {
	text-align: center;
	margin: auto;
	font-size: 19px;
	color: #fff;
	width: 90%;
	font-weight: 500;
	padding-bottom: 10px;
}

#attendee-registration-form {
	background-color: #fff;
	padding: 15px 15px;
	margin: 0 10px;
}

#attendee-registration-form label {
	font-weight: 400;
	font-size: 17px;
	color: #000;
}

#attendee-registration-form textarea {
	width: 100%;
	margin: 0;
}

@media (max-width:798px) {
	#attendee-registration .section-header p {
		width: 90%;
	}
}

#attendee-registration #attendee-registration-form .row {
	color: #000;
}

#attendee-registration label {
	padding-top: 10px;
}

.form-check-input {
	margin-right: 10px;
}

#attendee-registration .radio_color {
	color: #000;
	padding-right: 20px;
	margin-left: -10px;
}

#attendee-registration .form-check-label {
	font-size: 16px !important;
	font-weight: 400 !important;
	margin-top: -30px !important;
	padding: 8px 0;
}

#attendee-registration .finally .form-check-label {
	font-size: 18px !important;
	font-weight: 400 !important;
	margin-top: -8px !important;
	padding: 8px 0;
}

#attendee-registration #attendee-registration .Heading {
	text-align: center;
	font-size: 22px;
}

#attendee-registration .info {
	color: #000;
	padding: 0;
	margin: 0;
}

#attendee-registration .meeting_logo {
	width: 35%;
	margin-top: -30px;
}

#attendee-registration .vip-Msg {
	color: #000;
	padding: 30px 0;
	margin: 0;
}


/*--------------------------------------------------------------
	# faq
--------------------------------------------------------------*/

#faq {
	padding-top: 8%;
}

#faq.section-with-bg {
	background: linear-gradient(90deg, rgb(6 14 42) 0%, rgb(10 44 88) 47%, rgb(17 33 66) 100%);
}


#faq .text {
	padding-top: 30px;
	padding-bottom: 10px;
	font-size: 18px;
}

#faq ul li {
	padding-top: 10px;
	font-size: 18px;
	list-style-type: decimal;
}

#faq .card {
	border-radius: 0px;
}

.card-body {
	color: #000;
}

.card-header a {
	color: #000;
}

/*--------------------------------------------------------------
	# contact-page
--------------------------------------------------------------*/

.page-not-found {
	background: #181818;
	padding: 300px 0;
}

.page-not-found .heading {
	color: #fff;
	font-size: 40px;
	text-align: center;
}

.page-not-found .btn-danger {
	padding: 10px 30px;
}

.page-not-found .btn-danger a {
	color: #fff;
}

/*--------------------------------------------------------------
	# terms-conditions
--------------------------------------------------------------*/

#terms-conditions {
	padding-top: 8%;
	background: linear-gradient(90deg, rgb(6 14 42) 0%, rgb(10 44 88) 47%, rgb(17 33 66) 100%);
}



/*--------------------------------------------------------------
	# privacy-policy
--------------------------------------------------------------*/

#privacy-policy {
	padding-top: 8%;
}

#privacy-policy.section-with-bg {
	background: linear-gradient(90deg, rgb(6 14 42) 0%, rgb(10 44 88) 47%, rgb(17 33 66) 100%);
}


/*--------------------------------------------------------------
	# Footer
--------------------------------------------------------------*/
.dmopMx {
	display: none !important;
}

#footer {
	padding: 20px 0 20px 0;
	z-index: 99;
	/* background: url(../img/banner/feature-section-1-bg.png) top center no-repeat; */
	background-size: cover;
	position: relative;
	color: #ffffff;
}

/* #footer .footer-top {
	padding: 60px 0 30px 0;
} */

#footer .footer-top .footer-info {
	margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
	font-size: 26px;
	margin: 0 0 20px 0;
	padding: 2px 0 2px 0;
	line-height: 1;
	font-weight: 700;
	color: #fff;
}

#footer .footer-top .ucon-logo {
	width: 70%;
	margin-bottom: 10px;
}

#footer .footer-top .ucon-logo1 {
	width: 100%;
	margin-bottom: 10px;
	margin-left: -20px;
}

#footer .footer-top .footer-info p {
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 0;
	color: #fff;
}

#footer .footer-top .social-links a {
	display: inline-block;
	color: #eee;
	line-height: 1;
	margin-right: 4px;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	transition: 0.3s;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(45deg, #ffc107, var(--hover));
	color: var(--color-dark);
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

#footer .footer-top .social-links a i {
	line-height: 0;
	font-size: 18px;
	color: #fff;
}

#footer .footer-top .social-links a:hover {
	color: #fff;
}

#footer .footer-top .social-links a i:hover {
	color: #0a58ca;
}

#footer .footer-top h4 {
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	text-transform: uppercase;
	position: relative;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--main);
}

#footer .footer-top .footer-links {
	margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#footer .footer-top .footer-links p {
	line-height: 26px;
	color: #fff;
}

#footer .footer-top .footer-links ul i {
	padding-right: 5px;
	color: var(--main);
	font-size: 18px;
	font-weight: 500;
}

#footer .footer-top .footer-links ul li {

	padding: 10px 0;
}

#footer .footer-top .footer-links ul li:first-child {
	padding-top: 0;
}

#footer .footer-top .footer-links ul a {

	color: #eee;

}

#footer .footer-top .footer-links ul a:hover {
	color: #f9f9f9;
}

#footer .footer-top .footer-contact {
	margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
	line-height: 26px;
	color: #fff;
}

#footer .footer-top .footer-contact a {
	color: #fff;

}

#footer .cr {
	color: #fff;
}

@media(max-width:767px) {
	#home {
		margin-bottom: 0px;
	}

	#home .bg-img-sec {
		position: relative;
		height: 100%;
	}



	#home .home-container {
		/* padding: 70px; */
		position: relative;
		display: block !important;
		text-align: center;
	}

	#home .text-sec {
		padding-top: 0px;
	}

	#home .banner-logo {
		border: none;
		padding: 0;
		margin: 0;
		width: 100%;
	}

	#home .eventname {
		padding-top: 60px;
		font-size: 42px;
		font-weight: 800;
		margin-bottom: 0px;
	}

	#home .tagline {
		font-size: 40px;
		font-weight: 500;
		margin: 5px 0px;
	}

	#home .date {
		font-size: 40px;
		font-weight: 500;
		margin-top: 10px;
		margin-bottom: 10px;
		line-height: 1.4;
	}



	#home .d-flex a {
		display: table !important;
		margin: auto;
		min-width: 210px;
	}

	#home .register-button {
		padding: 12px 22px;
		font-weight: 800;
		font-size: 16px;
		line-height: 22px;
		white-space: nowrap;
	}

	#home .register-button:hover,
	#home .register-button:focus {
		color: var(--main);
		background-color: #fff;
	}

}

@media(max-width:767px) {
	.circle {
		width: 70px !important;
		height: 70px !important;

	}

	#timer-sec {
		margin: auto;
		padding: 0 0 10px 0;
		margin-top: -5px;
	}

	#timer-sec .timer-banner div {
		padding: 6px 0px;
	}

	#timer-sec .timer-banner #days,
	#timer-sec .timer-banner #hours,
	#timer-sec .timer-banner #minutes,
	#timer-sec .timer-banner #seconds {
		font-size: 30px;
	}

	#timer-sec .timer-banner #seconds {
		font-size: 25px;
	}

	#timer-sec .timer-banner span {
		font-size: 16px;
	}

	#timer-sec .about-btn {
		padding: 12px 60px;
		font-size: 10px;
		margin-left: 18px;
	}

	#timer-sec .col-md-5 {
		margin: 30px 0px;
	}

	.section-header {
		margin-bottom: 0px;
	}

	.summit_objective {
		padding: 50px 15px;
	}

	.summit_objective .section-header {
		margin-bottom: 30px;
	}

	.summit_objective .heading {
		font-size: 28px;
	}

	#program img {
		height: auto;
	}

	.summit_objective .robot-img {
		float: right;
		width: 60%;
	}

	.summit_objective .text {
		font-size: 14px;
		padding-right: 0;
		text-align: justify;
	}

	#counter {
		padding: 40px 0 0px 0;
	}

	#counter .left-text {
		padding: 30px;
	}


	#attend h1 {
		font-size: 27px;
	}

	.voicetechin img {
		margin: 5px 0;
		padding: 10px 60px;
	}

	.section-header h2 {
		font-size: 20px;
	}

	#clients {
		padding: 30px 0 30px 0;
	}

	#clients .row {
		padding: 20px 10px;
	}

	#clients .our_client_logo {
		width: 90%;
	}

	#clients .owl-nav {

		display: none !important;

	}

	#ranking .firstcharacter {
		font-size: 100px;
	}

	#ranking .firstcharacterb {
		font-size: 100px;
	}

	#ranking h6 {
		padding-bottom: 20px;
	}




	#init {
		padding: 0px;
	}

	#init .sec2 {
		padding-top: 0px;
	}

	#init .box {
		height: auto;
	}

	#init .about-btn {
		padding: 15px 14px;
		font-size: 15px;
	}

	#init .sec2 h1 {
		margin-top: 20px;
	}

	#sponsors {
		padding: 40px 0 0 0;
	}

	.voicetechin h6 {
		font-size: 20px;
		margin: 0;
	}

	.voicetechin h4 {
		font-size: 24px;
		margin: 0;
	}

	.voicetechin h5 {
		font-size: 26px;
	}

	.benifits {
		font-size: 10px;
		padding: 3px 8px;
	}

	.contact-page .address {
		padding: 16px 0 10px 0;
	}

	.contact-page label {
		font-size: 11px;
	}


	#contact-sec .col-md-6 {
		margin-bottom: 20px;
	}

	#vip-registration .finally .form-check-label {
		font-size: 13px !important;
		margin-top: -27px !important;
	}

	#faq,
	#terms-conditions,
	#privacy-policy {
		padding-top: 30%;
	}

	#services .border-right {
		border-right: none;
		border-bottom: 3px solid #ffff;
		padding-bottom: 15px;
	}

	.voicetechin .owl-nav {

		display: none !important;

	}
}


.mobile-only {
	display: none !important;
}

@media(max-width:767px) {
	.desktop-only {
		display: none;
	}

	.mobile-only {
		display: block !important;
	}
}

.displaydetails .table {
	border: 1px solid #fff;
	color: #fff;
	margin-top: 20px;
}

#in_visitor-sec,
#visitor-sec {
	position: relative;
	color: white;
	margin: auto;

}

/* Past Speakers  */

/* Past Speakers Carousel Styles */
.section-with-bg {
	padding: 80px 0;
	position: relative;
}

.oldspeaker-carousel .speaker_box {
	background: #fff;
	border-radius: 15px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	/* margin: 15px; */
	position: relative;
	transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);

}

.oldspeaker-carousel .speaker-img-container {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.oldspeaker-carousel .speaker-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.5s ease;
	border-bottom: 5px solid;
	border-image: linear-gradient(to right, #f85510, #F7B733) 1;
}

.oldspeaker-carousel .speaker-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--gradient);
	color: white;
	padding: 20px;
	transform: translatex(-100%);
	transition: transform 0.4s ease-in-out, background-color 0.3s ease-in-out;
	opacity: 0;
}

.oldspeaker-carousel .speaker_box:hover .speaker-img {
	transform: scale(1.05);
	filter: brightness(0.7);
}

.oldspeaker-carousel .speaker_box:hover .speaker-content {
	transform: translateY(0);
	opacity: 1;
}

.oldspeaker-carousel .details {
	padding: 20px 0 0 0;
	text-align: center;
}

.oldspeaker-carousel .details h3 {
	font-size: 1.75rem;
	margin-bottom: 10px;
	color: #fff;
	font-weight: 600;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.oldspeaker-carousel .details p {
	font-size: 1rem;
	color: #eee;
	padding: 0 10px;
}

.oldspeaker-carousel .company-logo img {
	max-height: 60px;
	width: auto;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}



/* Carousel Navigation Styles */
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
	background: var(--mainbg);
	border: none;
	font-size: 40px !important;
	color: var(--main);
}

.owl-carousel button.owl-dot {
	background: #f85d13 !important;
	border: none;
	font-size: 40px !important;
	color: var(--main);
}

/* Responsive Styles */
@media (max-width: 767px) {
	.oldspeaker-carousel .speaker_box {
		height: 350px;
	}

	.oldspeaker-carousel .details h3 {
		font-size: 1.5rem;
	}

	.oldspeaker-carousel .details p {
		font-size: 0.9rem;
	}

	.oldspeaker-carousel .company-logo img {
		max-height: 50px;
	}

}

/*---------------------------New Speakers----------------------------------- */
.speakers {
	padding: 80px 0;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.speaker_box {
	background: #fff;
	border-radius: 15px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	margin: 15px;
	position: relative;
}

.speaker-img {
	width: auto;
	height: auto;
	object-fit: cover;
	border-bottom: 5px solid;
	border-image: linear-gradient(to right, #f85510, #F7B733) 1;
}

.details {
	padding: 20px 0 0 0;
	text-align: center;
}

.details h3 {
	font-size: 1.5rem;
	margin-bottom: 10px;
	color: #333;
	font-weight: 600;
}

.details p {
	font-size: 1rem;
	color: #777;
	padding: 0 10px;

}

@media (min-width: 1400px) {
	.details p {
		padding: 0 20px;
	}

	.company-logo img {
		max-height: 100px;
	}
}

.company-logo img {
	max-height: 60px;
	width: auto;
}

.ribbon {
	position: absolute;
	top: 0px;
	right: 0px;
	width: auto;
	height: 100px;
	text-align: center;
	line-height: 45px;
	transform: translateY(-100%);
	transition: transform 0.4s ease-in-out, background-color 0.3s ease-in-out;
	z-index: 1;
	background: linear-gradient(45deg, #f85510, #F7B733);
	border-radius: 25px 0 0 25px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: space-around;
	padding: 0 10px;
}

.speaker_box:hover .ribbon {
	transform: translateX(0);
	background: linear-gradient(45deg, #F7B733, #f85510);
}

.ribbon a {
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.4s ease-in-out, transform 0.3s ease-in-out;
	transform: scale(0.9);
}

.ribbon a i {
	margin-right: 8px;
	font-size: 20px;
}

.ribbon a:hover {
	color: #ffdd57;
	text-shadow: 0 0 5px rgba(255, 221, 87, 0.8);
}

.speaker_box:hover .ribbon a {
	opacity: 1;
	transform: scale(1);
}

.ribbon span {
	display: none;
	margin-left: 5px;
}

.speaker_box:hover .ribbon span {
	display: inline;
}

/* Modal Styles */
.modal-backdrop.fade {
	opacity: 0 !important;
	z-index: 999;
}

@media (min-width: 1024px) {
	.modal-content {
		max-width: 100% !important;
		max-height: 100% !important;
	}
}

/* Responsive Styles */
@media (max-width: 767px) {
	.section-header h2 {
		font-size: 2rem;
	}

	.speaker_box {
		margin: 10px 0;
	}

	.details h3 {
		font-size: 1.5rem;
	}

	.details p {
		font-size: 0.9rem;
	}

	.company-logo img {
		max-height: 50px;
	}

	.ribbon {
		top: 10px;
		right: -60px;
		width: 180px;
		height: 35px;
		line-height: 35px;
	}
}

/* blog */

:root {
	--main: #F85510;
	--hover: #6f24f4;
	--mainbg: #0E1528;
	--hoverbg: #c9b033;
	--button-color: #fff;
	--color-light: #fff;
	--color-dark: #000;
	--gradient: linear-gradient(to right, #f85510, #F7B733);
	--card-gradient: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
	--text-primary: rgba(255, 255, 255, 0.9);
	--text-secondary: rgba(255, 255, 255, 0.8);
}

/* Base Styles */
.blog-hero,
.blog-listing-hero {
	margin: 8rem 0 4rem;
	padding: 4rem 0;
	background: var(--card-gradient);
	position: relative;
	overflow: hidden;
	/* text-align: center; */
}

.blog-hero-content {
	position: relative;
	z-index: 2;
}

.blog-title {
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 800;
	color: var(--color-light);
	margin-bottom: 1.5rem;
	text-transform: uppercase;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	animation: fadeInUp 1s ease;
}

.blog-meta {
	color: var(--text-secondary);
	font-size: 1.1rem;
	margin-bottom: 2rem;
	animation: fadeInUp 1s ease 0.2s forwards;
	opacity: 0;
}

.blog-container {
	background: var(--mainbg);
	padding: 4rem 0;
	position: relative;
}

.blog-content {
	max-width: 800px;
	margin: 0 auto;
	color: var(--text-primary);
	line-height: 1.8;
	font-size: 1.1rem;
	position: relative;
	z-index: 2;
}

/* Typography */
.blog-content h2,
.blog-content h3 {
	color: var(--color-light);
	margin: 2.5rem 0 1.5rem;
}

.blog-content h2 {
	font-size: 1.8rem;
	font-weight: 700;
	position: relative;
	padding-bottom: 10px;
}

.blog-content h2::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 80px;
	height: 3px;
	background: var(--gradient);
}

.blog-content h3 {
	font-size: 1.5rem;
	font-weight: 600;
}

/* Components */
.highlight-box {
	background: rgba(248, 85, 16, 0.1);
	border-left: 4px solid var(--main);
	padding: 1.5rem;
	margin: 2rem 0;
	border-radius: 0 5px 5px 0;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-box:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-section {
	background: var(--gradient);
	padding: 3rem;
	border-radius: 10px;
	margin: 4rem 0;
	text-align: center;
	position: relative;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(248, 85, 16, 0.3);
}



.cta-title {
	color: white;
	font-size: 1.8rem;
	margin-bottom: 1.5rem;
	position: relative;
}

.cta-button {
	background: var(--mainbg);
	color: white;
	border: 2px solid white;
	padding: 12px 30px;
	font-weight: 600;
	border-radius: 50px;
	transition: all 0.3s ease;
	display: inline-block;
	position: relative;
	overflow: hidden;
	z-index: 999;
}





.feature-list {
	list-style-type: none;
	padding: 0;
	margin: 2rem 0;
}

.feature-list li {
	padding: 0.8rem 0;
	position: relative;
	padding-left: 30px;
	transition: all 0.3s ease;
}

.feature-list li:hover {
	transform: translateX(10px);
}

.feature-list li::before {
	content: 'Ã¢Å“â€œ';
	color: var(--main);
	font-weight: bold;
	position: absolute;
	left: 0;
}

.blog-image {
	width: 100%;
	border-radius: 10px;
	margin: 2rem 0;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	transition: transform 0.3s ease;
}

.blog-image:hover {
	transform: scale(1.02);
}

/* Blog Cards */
.blog-card {
	border: none;
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.3s ease;
	height: 100%;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	background: var(--mainbg);
	color: var(--text-primary);
}

.blog-card.featured {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.blog-card-img {
	height: 200px;
	object-fit: cover;
	width: 100%;
}

.blog-card-body {
	padding: 1.5rem;
}

.blog-card-title {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--color-light);
	margin-bottom: 0.75rem;
}

.blog-card-excerpt {
	color: var(--text-secondary);
	margin-bottom: 1rem;
	font-size: 0.95rem;
	line-height: 1.6;
}

.blog-card-meta {
	font-size: 0.85rem;
	color: var(--text-secondary);
}

.blog-card-category {
	display: inline-block;
	background: var(--gradient);
	color: white;
	padding: 0.25rem 0.75rem;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}



/* Responsive Adjustments */
@media (max-width: 768px) {

	.blog-title {
		font-size: 2rem;
	}

	.blog-content {
		padding: 0 15px;
	}

	.cta-section {
		padding: 2rem 1rem;
	}

	.blog-hero,
	.blog-listing-hero {
		padding: 3rem 0;
		margin: 6rem 0 3rem;
	}

	.blog-card-img {
		height: 160px;
	}

	.blog-container {
		padding: 2rem 0;
	}
}

  /* --------- vip-registration  ------------------------------------------------------------- */
/* MAIN HEADER WRAPPER */
	.vip-header {
		position: relative;
		padding: 70px 20px 60px;
		text-align: center;
		overflow: hidden;
		z-index: 2;
	}

	/* BACKGROUND GLOW */
	.vip-glow {
		position: absolute;
		top: 50%;
		left: 50%;
		width: 480px;
		height: 480px;
		transform: translate(-50%, -50%);
		background: radial-gradient(circle, rgba(238, 42, 123, 0.35), transparent 70%);
		filter: blur(60px);
		z-index: -1;
	}

	/* FLOATING PARTICLES */
	.vip-particles::before,
	.vip-particles::after {
		content: "";
		position: absolute;
		width: 160px;
		height: 160px;
		border-radius: 50%;
		background: rgba(238, 42, 123, 0.15);
		filter: blur(40px);
		animation: floating 6s infinite ease-in-out;
		z-index: -1;
	}

	.vip-particles::after {
		width: 220px;
		height: 220px;
		background: rgba(146, 39, 143, 0.15);
		animation-duration: 9s;
	}

	@keyframes floating {
		0% {
			transform: translate(0, 0);
		}

		50% {
			transform: translate(40px, -40px);
		}

		100% {
			transform: translate(0, 0);
		}
	}

	/* MAIN TITLE */
	.vip-header h2 {
		font-size: 3rem;
		font-weight: 900;
		letter-spacing: 1px;
		background: var(--gradient);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		text-shadow: 0 0 30px rgba(238, 42, 123, 0.35), 0 0 50px rgba(146, 39, 143, 0.35);
		animation: glowPulse 4s infinite alternate;
	}

	/* 3D Glow Animation */
	@keyframes glowPulse {
		0% {
			text-shadow: 0 0 20px rgba(238, 42, 123, 0.3);
		}

		100% {
			text-shadow: 0 0 40px rgba(146, 39, 143, 0.45);
		}
	}

	/* SUBTEXTS */
	.vip-header .subtitle,
	.vip-header .subtext {
		color: #fff;
		font-size: 17px;
		opacity: 0.85;
		margin-bottom: 8px;
	}

	/* CONTACT */
	.vip-header .contact {
		color: #ffffff;
		font-size: 18px;
		font-weight: 700;
		margin-top: 18px;
	}

	.vip-header .contact i {
		color: var(--main);
		margin-right: 6px;
		font-size: 20px;
	}

	/* ANIMATED UNDERLINE */
	.vip-underline {
		margin: 25px auto 0;
		width: 0;
		height: 4px;
		background: var(--gradient);
		border-radius: 50px;
		box-shadow: 0 0 15px rgba(238, 42, 123, 0.8);
		animation: underlineGrow 1.6s forwards ease-out;
	}

	@keyframes underlineGrow {
		from {
			width: 0;
			opacity: 0;
		}

		to {
			width: 180px;
			opacity: 1;
		}
	}

	/* Sponsor card styles */
	.sponsor-card {
		transition: all 0.3s ease;
		border: 1px solid #dee2e6;
	}

	.sponsor-card:hover {
		border-color: #ee2a7b;
	}

	/* Style for disabled meeting fields */
	.meeting-date:disabled,
	.meeting-time:disabled {
		background-color: #f8f9fa;
		opacity: 0.6;
		cursor: not-allowed;
	}

	.info {
		color: #666;
		font-size: 14px;
		margin-bottom: 5px;
	}

	.Heading {
		font-weight: 600;
		color: #333;
		margin-bottom: 10px;
	}

	.radio-options {
		display: flex;
		gap: 20px;
		margin-top: 8px;
	}

	.radio-options input[type="radio"] {
		margin-right: 5px;
	}
