/* Description: Master CSS file */

/*****************************************
Table Of Contents:
- General Styles
- Navigation
- Home
- Information
- Button
- Services
- Plans
- Testimonials
- Newsletter
- Back To Top Button
- Extra Pages
- Media Queries
******************************************/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Mono:wght@100..900&family=Quicksand:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Notable&display=swap');

.loc {
	font-family: sans-serif;
	font-weight: 400;
}

body {
	font-family: "Quicksand", sans-serif;
	font-weight: 500;
	font-style: normal;
}

:root {
	--primary: #1c262f;
	--primary-light: #212d37;
	--secondary: #0ee951;
	--tertiary: #00dabf;
	--gradient: linear-gradient(to right, #0ee951, #00dabf);
}

h1,
h2,
h3,
h4,
h6,
.q {
	font-family: "Quicksand", sans-serif;
	font-weight: 900;
	font-style: normal;
}

h1 {
	font-size: 60px;
	font-weight: 500;
}

button {
	font-family: sans-serif;
}

p,
ul,
h4 {
	margin: 0;
	padding: 0;
}

a {
	color: white;
	text-decoration: none;
}

li {
	list-style-type: none;
}

/* Section Background */
.about,
.aboutus,
.awards,
.speakers,
.services,
.plans,
.work,
.contact {
	/*height: 100vh;*/
	position: relative;
}


.awards,
.speakers {
	background: transparent;
}

.aboutus {
	background-color: #ffffff;
}

.contact,
.plans {
	background-color: transparent;
}

.services,
.work,
.footer {
	background-color: var(--primary);
}

.testimonial {
	background-color: #070d12;
	background-image:
		radial-gradient(ellipse at top right, rgba(0, 255, 255, 0.4), transparent 60%),
		radial-gradient(ellipse at bottom left, rgba(135, 206, 250, 0.3), transparent 60%);
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 10px;
}


.about,
.company,
.newsletter,
.location {
	background-color: #053c56db;
}

.bottom {
	background-color: black;
}

/* Gradient Border And Background On Icons */

.home_text,
.home .fas,
.information .fas,
.work .fas,
.services .fas,
.location .far,
.location .fas,
.testimonial-card .fas {
	padding: 15px 0;
	background: -webkit-gradient(linear,
			left top,
			left bottom,
			from(#75d2ff),
			to(#38f6ff));
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.plans .fas {
	padding: 15px 0;
	background: -webkit-gradient(linear,
			left top,
			left bottom,
			from(#024c71),
			to(#38f6ff));
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.navbar-nav a:hover,
.footer a:hover,
.footer .fab:hover {
	cursor: pointer;
	background: var(--gradient);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}


/**********************/
/*     Navigation     */
/**********************/
.navbar {
	font-weight: 500;
	font-size: 0.875rem;
	line-height: 0.875rem;
	background-color: #000000;
	box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.025);
}

.navbar .navbar-brand {
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
}

.navbar .logo-image img {
	width: 108px;
	height: 32px;
}

.navbar .logo-text {
	color: #fff;
	font-weight: 500;
	line-height: 1rem;
	font-size: 1.575rem;
	text-decoration: none;
}

.offcanvas-collapse {
	position: fixed;
	top: 3.75rem;
	bottom: 0;
	left: 100%;
	width: 100%;
	overflow-y: auto;
	visibility: hidden;
	padding-right: 1rem;
	padding-left: 1rem;
	background-color: var(--primary);
	transition: transform 0.2s ease-in-out, visibility 0.2s ease-in-out;
}

.offcanvas-collapse.open {
	visibility: visible;
	transform: translateX(-100%);
}

.navbar .navbar-nav {
	margin-top: 0.75rem;
	margin-bottom: 0.5rem;
}

.navbar .dropdown-menu {
	border: none;
	margin-top: 0.25rem;
	margin-bottom: 0.25rem;
	background-color: var(--primary);
}

.navbar .dropdown-item {
	color: #eee;
	font-weight: 500;
	font-size: 0.875rem;
	line-height: 0.875rem;
	padding-top: 0.625rem;
	text-decoration: none;
	padding-bottom: 0.625rem;
}

.navbar .dropdown-item:hover {
	background-color: var(--primary);
}

.navbar .dropdown-divider {
	width: 100%;
	height: 1px;
	border: none;
	margin: 0.5rem auto 0.5rem auto;
	background-color: var(--primary-light);
}

.navbar .nav-item .nav-link {
	color: #eee;
	text-decoration: none;
	padding-top: 0.625rem;
	padding-bottom: 0.625rem;
	transition: all 0.2s ease;
}

.navbar .fa-stack {
	width: 2em;
	font-size: 0.75rem;
	margin-right: 0.25rem;
}

.navbar .fa-stack-2x {
	background: -webkit-gradient(linear,
			left top,
			left bottom,
			from(#0ee951),
			to(#00dabf));
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: all 0.2s ease;
}

.navbar .fa-stack-1x {
	color: #ffffff;
	transition: all 0.2s ease;
}

.navbar .fa-stack:hover .fa-stack-2x {
	color: var(--primary);
}

.navbar .fa-stack:hover .fa-stack-1x {
	color: var(--primary);
}

.navbar .navbar-toggler {
	padding: 0;
	border: none;
	font-size: 1.25rem;
}

/*added*/
.ex-header {
	position: relative;
	padding-top: 8rem;
	padding-bottom: 4rem;
	background-color: #070d12;
	background-image:
		radial-gradient(ellipse at top right, rgba(0, 255, 255, 0.4), transparent 60%),
		radial-gradient(ellipse at bottom left, rgba(135, 206, 250, 0.3), transparent 60%);
	overflow: hidden;
	text-align: center;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	border-bottom-left-radius: 30px;
	border-bottom-right-radius: 30px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
		0 0 30px rgb(0 0 0 / 34%);
	transform: translateY(-10px);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 992px) {
	.ex-header::after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		width: 200%;
		height: 150px;
		background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 100" xmlns="http://www.w3.org/2000/svg"><path fill="%2300f0ff" fill-opacity="0.6" d="M0,40 C150,80 350,0 600,40 C850,80 1050,0 1200,40 L1200,100 L0,100 Z"></path></svg>') repeat-x;
		background-size: cover;
		animation: waveAnimation 2s linear infinite;
		filter: drop-shadow(0 0 10px #ffffff) drop-shadow(0 0 20px #00f0ff);
		pointer-events: none;
	}
}

@keyframes waveAnimation {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}


.header-overlay-awards {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.1);
	z-index: 1;
}

.ex-header .col-xl-10 {
	position: relative;
	z-index: 2;
}

.ex-header h1 {
	font-size: clamp(2.5rem, 10vw, 6rem);
	/* ✅ responsive font size */
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin: 0;
	position: relative;
	color: #f0f0f0;
	background: linear-gradient(to top, #eaeaea 0%, #ffffff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-shadow:
		1px 1px 0 #ffffff,
		2px 2px 0 #b3b3b3,
		3px 3px 0 #a1a1a1,
		4px 4px 0 #8f8f8f,
		5px 5px 0 #7c7c7c,
		6px 6px 0 #696969,
		7px 7px 0 #555555,
		8px 8px 25px rgba(0, 0, 0, 0.6);
	transition: transform 0.3s ease, text-shadow 0.3s ease;
}

/* 📱 Mobile adjustments */
@media (max-width: 768px) {
	.ex-header {
		padding-top: 6rem;
		padding-bottom: 3rem;
	}

	.ex-header h1 {
		letter-spacing: 2px;
		text-shadow:
			1px 1px 0 #a0a0a0,
			2px 2px 0 #8c8c8c,
			3px 3px 5px rgba(0, 0, 0, 0.5);
	}
}

/* 📱 Extra small devices */
@media (max-width: 480px) {
	.ex-header {
		padding-top: 5rem;
		padding-bottom: 2.5rem;
	}

	.ex-header h1 {
		font-size: 2.2rem;
		letter-spacing: 1px;
		text-shadow:
			1px 1px 0 #a0a0a0,
			2px 2px 0 #888888,
			3px 3px 5px rgba(0, 0, 0, 0.4);
	}
}

.navbar-logo {
	height: 40px;
	width: auto;
	display: block;
}

@media (max-width: 991.98px) {
	.navbar-logo {
		height: 40px;
	}
}

.navbar-logo1 {
	height: 55px;
	width: auto;
	display: block;
}

@media (max-width: 991.98px) {
	.navbar-logo1 {
		height: 40px;
	}
}


#navbar {
	transition: all 0.4s ease;
	background: transparent;
}

@media (min-width: 992px) {
	#navbar.navbar-scrolled {
		width: 92%;
		margin: 10px auto;
		border-radius: 50px;
		background: rgb(255, 255, 255);
		color: #000;
		box-shadow: 0 8px 25px rgb(0 0 0 / 32%);
		backdrop-filter: blur(8px);
		transition: all 0.4s ease;
	}

	#navbar.navbar-scrolled .navbar-logo .navbar-logo1 {
		transform: scale(0.9);
		transition: transform 0.4s ease;
	}

	#navbar.navbar-scrolled .nav-link {
		color: #000 !important;
		transition: color 0.4s ease;
	}

	#navbar.navbar-scrolled .nav-link.active,
	#navbar.navbar-scrolled .nav-link:hover {
		color: #0063cd !important;
	}
}

.home {
	position: relative;
	min-height: 100vh;
	overflow: hidden;
}

.bg-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
	filter: blur(5px);
    transform: scale(1.05);
}

.home .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(274deg, #0a0a0a9e 0%, #062a3bf0 100%);
	z-index: 1;
}

.home .container1 {
	position: relative;
	z-index: 2;
}

@media (max-width: 1200px) {
	.home {
		min-height: 60vh;
	}
}

@media (max-width: 992px) {
	.home {
		min-height: 60vh;
		padding: 60px 0;
	}

	.event-logo {
		max-width: 320px;
	}

	.para {
		font-size: 1rem;
	}
}

@media (max-width: 768px) {
	.home {
		min-height: 60vh;
		padding: 80px 0 60px;
		text-align: start;
	}

	.home .container1 {
		align-items: start;
	}

	.event-logo {
		max-width: 240px;
		margin: 0 auto 10px;
	}

	.para {
		font-size: 0.95rem;
		padding: 0 10px;
	}

	.btn {
		margin-top: 12px;
	}
}

@media (max-width: 576px) {
	.home {
		padding: 70px 0 50px;
	}

	.event-logo {
		max-width: 200px;
	}

	.para {
		font-size: 0.9rem;
	}
}

.hero-vertical-location {
	position: absolute;
	right: 15px;
	top: 15%;
	transform: translateY(-50%) rotate(270deg);
	transform-origin: right center;
	font-weight: 400;
	letter-spacing: 4px;
	font-size: 35px;
	color: transparent;               
	-webkit-text-stroke: 0.5px #ffffff;
	text-stroke: 15px #ffffff;       
	opacity: 0.8;
	z-index: 3;
	white-space: nowrap;
}

.hero-bottom-logo {
	position: absolute;
	bottom: 0px;
	right: 30px;
	z-index: 3;
	opacity: 0.6;
}

.hero-bottom-logo img {
	max-width: 420px;
	height: auto;
	display: block;
}

.background-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}

.video-overlay-awards {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(rgba(0, 0, 0, 0.5),
			rgba(0, 0, 50, 0.6));
	z-index: 1;
	mix-blend-mode: multiply;
}

.awards .container {
	position: relative;
	z-index: 2;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin: 0 auto;
}
.award-card {
	position: relative;
    text-align: left;
	color: #000000;
	backdrop-filter: blur(3px);
	margin-bottom: 40px;
}

.award-img {
    height: 120px;
    width: auto;
    margin-top: -60px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.award-img:hover{
    transform: scale(1.1);
}

.award-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    background: transparent;
    padding: 5px 10px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
        -2px 12px 25px rgb(84 84 84 / 68%), -1px 2px 2px rgba(255, 255, 255, 0.5);
    overflow: visible;
}
.award-card h3 {
	letter-spacing: 0.5px;
	font-size: 14px;
	color: #ffce48;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

@media (max-width: 1024px) {
	.benefits-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 600px) {
	.benefits-grid {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
}

.speaker-row {
    display: flex;
    gap: 25px;
    justify-content: space-around;
    align-items: stretch; 
    flex-wrap: wrap;
    padding: 40px 0;
}
.speaker-card {
	position: relative;
    overflow: hidden;
   background: linear-gradient(68deg, #54ced9, #000000 60%, #9efbff);
   width: 100%;
    max-width: 250px; 
    padding: 20px 25px 35px;
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: 0.3s ease;
	box-shadow: inset 0 15px 25px rgba(0, 0, 0, 0.35);
}

.speaker-card::before {
    content: "";
    position: absolute;
    bottom: -70px;
    left: -70px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle at center, #9efbff, transparent 70%);
    border-radius: 50%;
    opacity: 0.6;
}

.speaker-card::after {
    content: "";
    position: absolute;
    top: -120%;
    left: -60%;
    width: 50%;
    height: 220%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.15) 45%,
        rgba(255,255,255,0.35) 50%,
        rgba(255,255,255,0.15) 55%,
        rgba(255,255,255,0) 100%
    );
    transform: rotate(25deg);
}

.speaker-card:hover::after {
    left: 120%;
    transition: 0.8s ease;
}

.speaker-card:hover::before {
    transform: scale(1.15);
    transition: 0.4s ease;
}

.speaker-card:hover {
    transform: translateY(-8px);
    box-shadow: -10px 11px 4px rgba(0, 0, 0, 0.35);
}

.speaker-img {
    width: 170px;
    height: 170px;
    margin: 0 auto 25px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #fff;
}

.speaker-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
}

.speaker-card h6 {
    color: #ffffff;
}

.speaker-role {
    color: #98ffcc;
    line-height: 1.4;
    margin-bottom: 10px;
}

.speaker-company {
    color: #ffffff;
}

.card {
	padding: 20px;
	border-radius: 0;
	border: 2px solid white;
}

.awards {
	padding: 20px;
	border-radius: 0;
}

.awards .card:hover {
	border: 10px solid;
	transform: scale(1.01);
	border-image-slice: 1;
	border-width: 2px;
	border-image-source: var(--gradient);
	box-shadow: 5px 5px 0px 0px #19f7ff;
}

.speakers {
	padding: 20px;
	border-radius: 0;
}

.speakers .card:hover {
	border: 10px solid;
	transform: scale(1.01);
	border-image-slice: 1;
	border-width: 2px;
	border-image-source: var(--gradient);
	box-shadow: 5px 5px 0px 0px #19f7ff;
}

.custom-services-section {
	background: transparent;
	position: relative;
	color: #000;
}

.custom-services-header h2 {
	color: #000;
}

.custom-services-header .custom-subtitle {
	color: #007bff;
	letter-spacing: 2px;
}

.custom-services-header .custom-description {
	color: #555;
	max-width: 700px;
	margin: 0 auto;
	font-size: 15px;
}

.custom-service-section .col-lg-4,
.custom-service-section .col-md-6,
.custom-service-section .col-sm-6 {
    display: flex;
    height: 100%;
}

.custom-service-card {
    background: #fff;
    border-radius: 0px;
    padding: 1rem;
    position: relative;
    overflow: hidden;
    border: 1px solid #eee;
    transition: all 0.4s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.custom-service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../assets/images/rep.webp") center/cover no-repeat;
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: 0;
}

.custom-service-card:hover::before {
    opacity: 0.25;
}

.custom-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 123, 255, 0.15);
}

.custom-icon-wrapper {
    background: linear-gradient(to top, #0178a3ee, #02e9f5ee);
    width: 50px;
    height: 50px;
    margin: 0 auto 5px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.custom-service-card:hover .custom-icon-wrapper {
    background: #033469;
    transform: scale(1.1);
}

.custom-service-card h4,
.custom-service-card p {
    position: relative;
    z-index: 1;
}

.custom-service-card p {
    color: #555;
    font-size: 15px;
    flex-grow: 1;
}

.custom-service-card h4 {
    color: #000;
}

@media (max-width: 768px) {
    .custom-service-card {
        padding: 1.5rem;
    }

    .custom-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

.custom-partners-section {
	background-color: #ffffff;
}

.custom-partners-section h2 {
	color: #000;
}

.partner-tier h4 {
	font-weight: 600;
	color: #333;
}

.partner-logo {
	transition: all 0.4s ease;
	max-width: 100%;
}

.partner-logo:hover {
	transform: scale(1.05);
	filter: grayscale(0%);
	opacity: 1;
}

.top-tier .partner-logo {
	width: 250px;
}

.mid-tier .partner-logo {
	width: 250px;
}

.low-tier .partner-logo {
	width: 250px;
}

@media (max-width: 992px) {
	.top-tier .partner-logo {
		width: 200px;
	}

	.mid-tier .partner-logo {
		width: 200px;
	}

	.low-tier .partner-logo {
		width: 200px;
	}
}

@media (max-width: 768px) {
	.top-tier .partner-logo {
		width: 180px;
	}

	.mid-tier .partner-logo {
		width: 180px;
	}

	.low-tier .partner-logo {
		width: 180px;
	}
}

@media (max-width: 576px) {
	.top-tier .partner-logo {
		width: 150px;
	}

	.mid-tier .partner-logo {
		width: 150px;
	}

	.low-tier .partner-logo {
		width: 150px;
	}
}
.pricing-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    justify-content: center;
    margin-top: 40px;
}

.pricing-card {
	position: relative;
    overflow: hidden;
    /*flex: 0 0 calc(25% - 25px);
    max-width: calc(25% - 25px);*/
    background: linear-gradient(68deg, #54ced9, #000000 60%, #9efbff);
    border:2px #a1ffff solid;
    padding: 50px 30px;
    border-radius: 16px;
    box-shadow: inset 0 15px 25px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.8s ease;
}

.pricing-card::before {
    content: "";
    position: absolute;
    bottom: -70px;
    left: -70px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle at center, #9efbff, transparent 70%);
    border-radius: 50%;
    opacity: 0.6;
}

.pricing-card::after {
    content: "";
    position: absolute;
    top: -120%;
    left: -60%;
    width: 50%;
    height: 220%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.15) 45%,
        rgba(255,255,255,0.35) 50%,
        rgba(255,255,255,0.15) 55%,
        rgba(255,255,255,0) 100%
    );
    transform: rotate(25deg);
}

.pricing-card:hover::after {
    left: 120%;
    transition: 0.8s ease;
}

.pricing-card:hover::before {
    transform: scale(1.15);
    transition: 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: -10px 11px 4px rgba(0, 0, 0, 0.35);
}

.pricing-card h3 {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 30px;
}

.pricing-card h5 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 30px;
}

.pricing-card h2 {
    font-size: 30px;
    font-weight: 700;
    color: #98ffcc;
    margin-bottom: 25px;
}

.pricing-card p {
    color: #ffffff;
    margin-bottom: 25px;
}
@media (max-width: 1200px) {
    .pricing-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .pricing-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .pricing-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card {
        padding: 40px 40px;
        border-radius: 16px;
    }
}


.btn-price {
    background: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    display: inline-block;
    font-weight: 600;
    text-decoration: none;
    color: #003d66;
    border: 1px solid #cdeaff;
    transition: 0.3s ease;
}

.btn-price:hover {
    background: #003d66;
    color: #fff;
    border-radius: 0px;
}

.form-control-input {
	border: 1px solid #ccc;
	border-radius: 0px;
	padding: 12px 15px;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.form-control-input:focus {
	border-color: #000000;
	box-shadow: 0 0 5px rgba(0, 179, 255, 0.3);
	outline: none;
}

.animated-footer1 {
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.3),
		0 -5px 30px rgba(0, 0, 0, 0.3);
	background-color: #070d12;
	background-image:
		radial-gradient(ellipse at top right, rgba(0, 255, 255, 0.4), transparent 60%),
		radial-gradient(ellipse at bottom left, rgba(135, 206, 250, 0.3), transparent 60%);
	animation: breathe 6s ease-in-out infinite;

}


.animated-footer {
	border-top-left-radius: 30px;
	border-top-right-radius: 30px;
	box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.3),
		0 -5px 30px rgba(0, 0, 0, 0.3);
	background-color: #070d12;
	background-image:
		radial-gradient(ellipse at top right, rgba(0, 255, 255, 0.4), transparent 60%),
		radial-gradient(ellipse at bottom left, rgba(135, 206, 250, 0.3), transparent 60%);
	animation: breathe 6s ease-in-out infinite;
}

@keyframes breathe {
	0% {
		filter: brightness(1);
	}

	50% {
		filter: brightness(1.2);
	}

	100% {
		filter: brightness(1);
	}
}

.social-icon {
	width: 30px;
	height: 30px;
	transition: transform 0.3s, opacity 0.3s;
}

.social-icon:hover {
	transform: scale(1.2);
	opacity: 0.8;
}

@media (max-width: 576px) {
	.social-icon {
		width: 30px;
		height: 30px;
	}
}
.feature-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 7px 10px;
	background: rgba(255, 255, 255, 0.05);
	box-shadow: 5px 4px 0px 2px #000000;
	border: 1px #7c7c7c solid;
	transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
	cursor: pointer;
	position: relative;
	z-index: 1;
	margin-bottom: 10px;
}
.feature-item i {
	transition: transform 0.3s ease, color 0.3s ease;
}
.why-img{
	border:2px solid #00f0ff;
}

.hero-marquee {
	width: 100%;
	background: #000;
	overflow: hidden;
	white-space: nowrap;
	padding: 12px 0;
}

.marquee-content {
	display: inline-block;
	padding-left: 100%;
	animation: marquee 30s linear infinite;
	font-size: 18px;
	color: #fff;
	letter-spacing: 1px;
	font-weight: 300;
}

@keyframes marquee {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-100%);
	}
}

.hero-marquee:hover .marquee-content {
	animation-play-state: paused;
}

.para {
	width: 50%;
}

.para-light {
	opacity: 0.7;
}

.information .container-fluid .row div:first-child {
	background-color: var(--primary);
}

.information .container-fluid .row div:last-child {
	background-color: white;
}

.information .container-fluid .row div:nth-child(2) {
	background-color: #053c56db;
}

.btn {
	color: white;
	border-radius: 0;
	border-width: 2px;
	padding: 10px 30px;
	border-image-slice: 1;
	background-image: none;
	background: transparent;
	border-image-source: #38f6ff;
	box-shadow: 5px 5px 0px 0px #75d2ff;
}

.btn:hover {
	color: rgb(255, 247, 0);
	box-shadow: none;
	border-radius: 0;
	background: transparent;
	padding: 10px 30px;
	transform: translate(5px, 5px);
}

.btn-secondary {
	color: black;
	border-width: 2px;
	padding: 10px 30px;
	border-image-slice: 1;
	background-image: none;
	background: transparent;
	border-image-source: var(--gradient);
}

.btn-secondary:hover {
	color: black;
	padding: 10px 30px;
	background-image: var(--gradient);
}

.btn-tertiary {
	color: black;
	border-radius: 0;
	border-width: 2px;
	padding: 10px 30px;
	border-image-slice: 1;
	background-image: none;
	background: transparent;
	border-image-source: var(--gradient);
	box-shadow: 5px 5px 0px 0px var(--secondary);
}

.btn-tertiary:hover {
	color: black;
	box-shadow: none;
	border-radius: 0;
	padding: 10px 30px;
	transform: translate(5px, 5px);
}

.services {
	padding: 20px;
	border-radius: 0;
}

.services .card:hover {
	border: 10px solid;
	transform: scale(1.01);
	border-image-slice: 1;
	border-width: 2px;
	border-image-source: var(--gradient);
	box-shadow: 5px 5px 0px 0px #19f7ff;
}

.plans {
	padding: 20px;
}

.slider-1 {
	padding-top: 8.25rem;
	padding-bottom: 8.25rem;
}

.slider-1 .section-title {
	text-align: center;
}

.slider-1 .h2-heading {
	text-align: center;
	margin-bottom: 3rem;
}

.testimonial-card {
	text-align: center;
	border: 5px solid;
	border-image-slice: 1;
	border-image-source: linear-gradient(45deg, #01e6ac, #13f3ff, #53f7ff);
	box-shadow: 0 0 15px rgba(19, 243, 255, 0.5);
	border-radius: 10px;
	padding: 20px;
	transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
	box-shadow: 0 0 25px rgba(19, 243, 255, 0.8);
}


.slider-1 .slider-container {
	position: relative;
}

.slider-1 .swiper-container {
	width: 86%;
	position: static;
}

.slider-1 .swiper-button-prev,
.slider-1 .swiper-button-next {
	color: var(--primary);
}

.slider-1 .swiper-button-prev:focus,
.slider-1 .swiper-button-next:focus {
	outline: none;
}

.slider-1 .swiper-button-prev {
	left: -14px;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23707375'%2F%3E%3C%2Fsvg%3E");
	background-size: 18px 28px;
}

.slider-1 .swiper-button-next {
	right: -14px;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23707375'%2F%3E%3C%2Fsvg%3E");
	background-size: 18px 28px;
}

.slider-1 .card {
	border: none;
	position: relative;
	background-color: transparent;
}

.slider-1 .card-image {
	width: 80px;
	height: 80px;
	margin-left: auto;
	margin-right: auto;
	border-radius: 50%;
	margin-bottom: 1.25rem;
}

.slider-1 .card-body {
	padding: 0;
}

.slider-1 .testimonial-text {
	margin-bottom: 0.75rem;
}

.slider-1 .testimonial-author {
	margin-bottom: 0;
	color: #252c38;
}

.slider-1 .avatar {
	width: 70px;
	height: 70px;
	border-radius: 50%;
}

.navbar .dropdown .dropdown-menu {
	animation: fadeDropdown 0.2s;
}

@-webkit-keyframes fadeDropdown {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes fadeDropdown {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.form-control-input,
.form-control-textarea {
	width: 100%;
	appearance: none;
	border-radius: 4px;
	font-size: 0.875rem;
	line-height: 1.5rem;
	padding-left: 1.5rem;
	padding-top: 0.775rem;
	padding-bottom: 0.775rem;
}

#myBtn {
	z-index: 99;
	right: 20px;
	width: 52px;
	height: 52px;
	bottom: 20px;
	border: none;
	outline: none;
	display: none;
	position: fixed;
	cursor: pointer;
	border-radius: 50%;
	background-color: #323137;
}

#myBtn:hover {
	background-color: #1dd9ff;
}

#myBtn img {
	width: 18px;
	margin-left: 0.125rem;
	margin-bottom: 0.25rem;
}

.ex-basic-1 .list-unstyled .fas {
	font-size: 0.375rem;
	line-height: 1.625rem;
}

.ex-basic-1 .list-unstyled .flex-grow-1 {
	margin-left: 0.5rem;
}

.ex-basic-1 .text-box {
	padding: 1.25rem 1.25rem 0.5rem 1.25rem;
	background-color: #f7f9fd;
}

.ex-cards-1 .card {
	border: none;
	background-color: transparent;
}

.ex-cards-1 .card .fa-stack {
	width: 2em;
	font-size: 1.125rem;
}

.ex-cards-1 .card .fa-stack-2x {
	color: var(--secondary);
}

.ex-cards-1 .card .fa-stack-1x {
	width: 2em;
	color: #ffffff;
	font-weight: 700;
	line-height: 2.125rem;
}

.ex-cards-1 .card .list-unstyled .flex-grow-1 {
	margin-left: 2.25rem;
}

.ex-cards-1 .card .list-unstyled .flex-grow-1 h5 {
	margin-top: 0.125rem;
	margin-bottom: 0.5rem;
}

@media only screen and (max-width: 1024px) {

	.services,
	.work,
	.testimonial,
	.about,
	.aboutus,
	.contact,
	.plans {
		height: 100%;
	}
}

@media (min-width: 992px) {
	.slider-1 .swiper-container {
		width: 92%;
	}

	.slider-1 .swiper-button-prev {
		left: -16px;
		width: 22px;
		background-size: 22px 34px;
	}

	.slider-1 .swiper-button-next {
		right: -16px;
		width: 22px;
		background-size: 22px 34px;
	}

	.navbar {
		box-shadow: none;
		transition: all 0.2s;
		padding-top: 1rem;
		background-color: transparent;
	}

	.navbar.top-nav-collapse {
		padding-top: 0.75rem;
		padding-bottom: 0.75rem;
		background-color: #045166;
		box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.025);
		border-radius: 10px;
		margin-top: 10px;
	}

	.offcanvas-collapse {
		position: static;
		top: auto;
		bottom: auto;
		left: auto;
		width: auto;
		padding-right: 0;
		padding-left: 0;
		background-color: transparent;
		overflow-y: visible;
		visibility: visible;
	}

	.offcanvas-collapse.open {
		transform: none;
	}

	.navbar .navbar-nav {
		margin-top: 0;
		margin-bottom: 0;
	}

	.navbar .nav-item .nav-link {
		padding-right: 0.75rem;
		padding-left: 0.75rem;
	}

	.navbar .dropdown-menu {
		padding-top: 0.75rem;
		padding-bottom: 0.875rem;
		box-shadow: 0 3px 3px 1px rgba(0, 0, 0, 0.08);
	}

	.navbar .dropdown-divider {
		width: 90%;
	}

	.navbar .social-icons {
		margin-left: 0.5rem;
	}

	.navbar .fa-stack {
		margin-right: 0;
		margin-left: 0.25rem;
	}
}

@media only screen and (max-width: 540px) {
	h1 {
		font-size: 30px;
	}

	.para {
		width: 100%;
	}

	.swiper-container {
		width: 92%;
	}

	.swiper-button-prev {
		left: -16px;
		width: 22px;
		background-size: 22px 34px;
	}

	.swiper-button-next {
		right: -16px;
		width: 22px;
		background-size: 22px 34px;
	}
}

.letter-spacing {
    letter-spacing: 2px;
    text-transform: uppercase;
}


form select {
  width: 100%;
  padding: 18px 20px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  font-size: 15px;
  letter-spacing: 0.5px;
  outline: none;
}

form select {
  color: rgba(255, 255, 255, 0.6);
}

form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 16px;
  cursor: pointer;
}

form select option {
  color: #000;
}
