@charset "UTF-8";

/*

Style   : MobApp CSS
Version : 1.0
Author  : Surjith S M
URI     : https://surjithctly.in/

Copyright © All rights Reserved 

*/


/*------------------------
[TABLE OF CONTENTS]
    
1. GLOBAL STYLES
2. NAVBAR
3. HERO
4. TABS
5. TESTIMONIALS
6. IMAGE GALLERY
7. PRICING
8. CALL TO ACTION
9. FOOTER

------------------------*/


/* GLOBAL
----------------------*/

body {
	font-family: 'Montserrat', sans-serif;
	position: relative;
}

a {
	color: #e38cb7;
}

a:hover,
a:focus {
	color: #d6619c;
}

/* Resource Filter Buttons */
.btn-group .btn-outline-primary.active {
	background-color: #e54595;
	border-color: #e54595;
	color: white;
}

.btn-group .btn-outline-primary {
	border-color: #e54595;
	color: #e54595;
	margin: 0;
	border-radius: 0;
}

.btn-group .btn-outline-primary:not(:last-child) {
	border-right: 0;
}

.btn-group .btn-outline-primary:first-child {
	border-top-left-radius: 0.25rem;
	border-bottom-left-radius: 0.25rem;
}

.btn-group .btn-outline-primary:last-child {
	border-top-right-radius: 0.25rem;
	border-bottom-right-radius: 0.25rem;
}

.btn-group .btn-outline-primary:hover {
	background-color: #ebe7ec;
	border-color: #e54595;
}

/* Product Preview Overlay */
.product-image-container {
	overflow: hidden;
	border-radius: 10px;
	display: inline-block;
	position: relative;
}

.product-image-container img {
	display: block;
}

.preview-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
	border-radius: 10px;
}

.product-image-container:hover .preview-overlay {
	opacity: 1;
}

.btn-preview {
	background-color:#7047eb;
	border: none;
	color: white;
	padding: 10px 20px;
	border-radius: 3px;
	font-weight: 600;
	transition: all 0.3s ease;
	letter-spacing: 1px;
}

.btn-preview:hover {
	background-color: #7047eb;
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(95, 95, 95, 0.4);
	color: white;
}

h1 {
	font-size: 60px;
	font-weight: 300;
	letter-spacing: -1px;
	margin-bottom: 1.5rem;
}

h2 {
	font-size: 60px;
	font-weight: 300;
	color: #633991;
	letter-spacing: -1px;
	margin-top: .75rem;
	margin-bottom: 0;
}

h3 {
	color: #633991;
	font-size: 33px;
	font-weight: 500;
}

h4 {
	font-size: 20px;
	font-weight: 500;
	color: #633991;
}

h5 {
	font-size: 28px;
	font-weight: 300;
	color: #633991;
	margin-bottom: 0.7rem;
}

p {
	color: #343434;
}

footer p {
	color: #959094;
}

p.lead {
	color: #e38cb7;
	margin-bottom: 2rem;
}

.text-primary {
	color: #e38cb7 !important;
}

.light-font {
	font-weight: 300;
}

.btn {
	font-size: 12px;
	font-weight: 400;
	padding: 0.375rem 1.35rem;
	transition: all 0.3s ease;
}

.btn-outline-light:hover {
	color: #d6619c;
}

.btn-primary {
	border-radius: 3px;
	background-image: -moz-linear-gradient(122deg, #e54595 0%, #fd378e 100%);
	background-image: -webkit-linear-gradient(122deg, #e54595 0%, #fd378e 100%);
	background-image: -ms-linear-gradient(122deg, #e54595 0%, #fd378e 100%);
	background-image: linear-gradient(122deg, #e54595 0%, #fd378e 100%);
	box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.2);
	font-weight: 500;
	padding: 0.6rem 2rem;
	border: 0;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:not([disabled]):not(.disabled).active,
.btn-primary:not([disabled]):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
	background-image: linear-gradient(122deg, #fd378e 0%, #e54595 100%);
	box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.3);
	color: #FFF;
}

.btn-success {
	box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.2);
}


.btn-light {
	border-radius: 3px;
	background: #FFF;
	box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.26);
	font-size: 14px;
	font-weight: 500;
	color: #633991;
	margin: 0.5rem;
	padding: 0.7rem 1.6rem;
	line-height: 1.8;
}

.btn-group-lg>.btn,
.btn-lg {
	padding: 0.8rem 1rem;
	font-size: 15px;
}

.custom-active {
	box-shadow: none !important;
	background-color: #e54595 !important;
	border-color: #e54595 !important;
	color: white !important;
}

.light-bg {
	background-color: #faf6fb;
}

.blue-bg {
	background-color: #1f204a;
}

.section {
	padding: 80px 0;
}

.section-title {
	text-align: center;
	margin-bottom: 3rem;
}

.section-title small {
	text-transform: uppercase;
	color: #998a9b;
}

@media (max-width:767px) {
	h1 {
		font-size: 40px;
	}

	h2 {
		font-size: 30px;
	}
}


/* NAVBAR
----------------------*/

.nav-menu {
	padding: 1rem 0;
	transition: all 0.3s ease;
}

.nav-menu.is-scrolling,
.nav-menu.menu-is-open {
	background-color: rgb(74, 13, 143);
	background: -moz-linear-gradient(135deg, rgb(74, 13, 143) 0%, rgb(250, 42, 143) 100%);
	background: -webkit-linear-gradient(135deg, rgb(74, 13, 143) 0%, rgb(250, 42, 143) 100%);
	background: linear-gradient(135deg, rgb(74, 13, 143) 0%, rgb(250, 42, 143) 100%);
	-webkit-box-shadow: 0px 5px 23px 0px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0px 5px 23px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 5px 23px 0px rgba(0, 0, 0, 0.1);
}

.nav-menu.is-scrolling {
	padding: 0;
}

.navbar-nav .nav-link {
	position: relative;
}

@media (min-width: 992px) {
	.navbar-expand-lg .navbar-nav .nav-link {
		padding-right: 1rem;
		padding-left: 1rem;
		font-size: 14px;
	}

	.navbar-nav>.nav-item>.nav-link.active:after {
		content: "";
		border-bottom: 2px solid #cd99d4;
		left: 1rem;
		right: 1rem;
		bottom: 5px;
		height: 1px;
		position: absolute;
	}
}

@media (max-width:991px) {
	.navbar-nav.is-scrolling {
		padding-bottom: 1rem;
	}

	.navbar-nav .nav-item {
		text-align: center;
	}
}


/* HERO
----------------------*/

header {
	padding: 100px 0 0;
	text-align: center;
	color: #FFF;
}

.bg-gradient {
	background-image: -moz-linear-gradient(135deg, rgba(60, 8, 118, 0.8) 0%, rgba(250, 0, 118, 0.8) 100%);
	background-image: -webkit-linear-gradient(135deg, rgba(60, 8, 118, 0.8) 0%, rgba(250, 0, 118, 0.8) 100%);
	background-image: -ms-linear-gradient(135deg, rgba(60, 8, 118, 0.8) 0%, rgba(250, 0, 118, 0.8) 100%);
	background-image: linear-gradient(135deg, rgba(60, 8, 118, 0.8) 0%, rgba(250, 0, 118, 0.8) 100%);
}

.tagline {
	font-size: 23px;
	font-weight: 300;
	color: #ffb8f6;
	max-width: 800px;
	margin: 0 auto;
}

.img-holder {
	height: 0;
	padding-bottom: 33%;
	overflow: hidden;
}

@media (max-width:1200px) {
	.img-holder {
		padding-bottom: 50%;
	}
}

@media (max-width:767px) {
	.tagline {
		font-size: 17px;
	}

	.img-holder {
		padding-bottom: 100%;
	}
}


/* FEATURES
----------------------*/

.gradient-fill:before {
	color: #fc73b4;
	background: -moz-linear-gradient(top, #9477b4 0%, #fc73b4 100%);
	background: -webkit-linear-gradient(top, #9477b4 0%, #fc73b4 100%);
	background: linear-gradient(to bottom, #9477b4 0%, #fc73b4 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.card.features {
	border: 0;
	border-radius: 3px;
	box-shadow: 0px 5px 7px 0px rgba(0, 0, 0, 0.04);
	transition: all 0.3s ease;
}

@media (max-width:991px) {
	.card.features {
		margin-bottom: 2rem;
	}

	[class^="col-"]:last-child .card.features {
		margin-bottom: 0;
	}
}

.card.features:before {
	content: "";
	position: absolute;
	width: 3px;
	color: #fc73b4;
	background: -moz-linear-gradient(top, #9477b4 0%, #fc73b4 100%);
	background: -webkit-linear-gradient(top, #9477b4 0%, #fc73b4 100%);
	background: linear-gradient(to bottom, #9477b4 0%, #fc73b4 100%);
	top: 0;
	bottom: 0;
	left: 0;
}

.card-text {
	font-size: 14px;
}

.card.features:hover {
	transform: translateY(-3px);
	-moz-box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.08);
	-webkit-box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.08);
	box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.08);
}

.box-icon {
	box-shadow: 0px 0px 43px 0px rgba(0, 0, 0, 0.14);
	padding: 10px;
	width: 70px;
	border-radius: 10px;
	margin-bottom: 1.5rem;
	background-color: #FFF;
}

.circle-icon {
	box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.07);
	padding: 10px;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	margin-bottom: 1.5rem;
	background-color: #FFF;
	color: #f5378e;
	font-size: 48px;
	text-align: center;
	line-height: 80px;
	font-weight: 300;
	transition: all 0.3s ease;
}

@media (max-width:992px) {
	.circle-icon {
		width: 70px;
		height: 70px;
		font-size: 28px;
		line-height: 50px;
	}
}

.ui-steps li:hover .circle-icon {
	background-image: -moz-linear-gradient(122deg, #e6388e 0%, #fb378e 100%);
	background-image: -webkit-linear-gradient(122deg, #e6388e 0%, #fb378e 100%);
	background-image: -ms-linear-gradient(122deg, #e6388e 0%, #fb378e 100%);
	background-image: linear-gradient(122deg, #e6388e 0%, #fb378e 100%);
	box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.09);
	color: #FFF;
}

.ui-steps li {
	padding: 15px 0;
}

.ui-steps li:not(:last-child) {
	border-bottom: 1px solid #f8e3f0;
}

.perspective-phone {
	position: relative;
	z-index: -1;
}

@media (min-width:992px) {
	.perspective-phone {
		margin-top: -150px;
	}
}


/*  TABS
----------------------*/

.tab-content {
	border-bottom-right-radius: 3px;
	border-bottom-left-radius: 3px;
	background-color: #FFF;
	box-shadow: 0px 5px 7px 0px rgba(0, 0, 0, 0.04);
	padding: 3rem;
}

@media (max-width:992px) {
	.tab-content {
		padding: 1.5rem;
	}
}

.tab-content p {
	line-height: 1.8;
}

.tab-content h2 {
	margin-bottom: 0.5rem;
}

.nav-tabs {
	border-bottom: 0;
}

.nav-tabs .nav-item .nav-link,
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
	padding: 1rem 1rem;
	border-color: #faf6fb #faf6fb #FFF;
	font-size: 19px;
	color: #b5a4c8;
	background: #f5eff7;
}

.nav-tabs .nav-link.active {
	background: #FFF;
	border-top-width: 3px;
	border-color: #ce75b4 #faf6fb #FFF;
	color: #633991;
}


/*  TESTIMONIALS
----------------------*/

.owl-carousel .owl-item img.client-img {
	width: 110px;
	margin: 30px auto;
	border-radius: 50%;
	box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.07);
}

.testimonials-single {
	text-align: center;
	max-width: 80%;
	margin: 0 auto;
}

.blockquote {
	color: #7a767a;
	font-weight: 300;
}

.owl-next.disabled,
.owl-prev.disabled {
	opacity: 0.5;
}

.owl-prev,
.owl-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.owl-prev {
	left: 0;
}

.owl-next {
	right: 0;
}

.owl-theme .owl-nav.disabled+.owl-dots {
	margin-top: 60px;
}

.owl-theme .owl-dots .owl-dot span {
	background: #e7d9eb;
	width: 35px;
	height: 8px;
	border-radius: 10px;
	transition: all 0.3s ease-in;
}

.owl-theme .owl-dots .owl-dot:hover span {
	background: #ff487e;
}

.owl-theme .owl-dots .owl-dot.active span {
	background: #ff487e;
	box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.07);
}


/*  IMAGE GALLERY
----------------------*/

.img-gallery .owl-item {
	box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.07);
	transform: scale(0.8);
	transition: all 0.3s ease-in;
}

.img-gallery .owl-item.center {
	transform: scale(1);
}


/*  PRICING
----------------------*/

@media (max-width:992px) {
	.card-deck {
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.card-deck .card {
		margin-bottom: 15px;
	}
}

.card.pricing {
	border: 1px solid #f1eef1;
}

.card.pricing.popular {
	border-top-width: 3px;
	border-color: #ce75b4 #faf6fb #FFF;
	box-shadow: 0px 12px 59px 0px rgba(36, 7, 31, 0.11);
	color: #633991;
}

.card.pricing .card-head {
	text-align: center;
	padding: 40px 0 20px;
}

.card.pricing .card-head .price {
	display: block;
	font-size: 40px;
	font-weight: 300;
	color: #633991;
	font-family: 'Rubik';
}

.card.pricing .card-head .price sub {
	bottom: 0;
	font-size: 55%;
}

.card.pricing .list-group-item {
	border: 0;
	text-align: center;
	color: #959094;
	padding: .5rem 1.25rem;
	font-size: .85rem;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.card.pricing .list-group-item del {
	color: #d9d3d8;
}

.card.pricing .card-body {
	padding: 1.75rem;
}


/*  CALL TO ACTION
----------------------*/

.call-to-action {
	text-align: center;
	color: #FFF;
	margin: 3rem 0;
}

.call-to-action .box-icon {
	margin-left: auto;
	margin-right: auto;
	border-radius: 5px;
	transform: scale(0.85);
	margin-bottom: 2.5rem;
}

.call-to-action h2 {
	color: #FFF;
}

.call-to-action .tagline {
	font-size: 16px;
	font-weight: 300;
	color: #ffb8f6;
	max-width: 650px;
	margin: 0 auto;
}

.modal-dialog {
	min-width: 100% !important;
}

.modal-dialog-centered {
	margin: auto !important;
	padding: 6px;
	display: flex;
	align-items: center;
	min-height: 100%;
}

.btn-light img {
	margin-right: 0.4rem;
	vertical-align: text-bottom;
}

.qr-code {
	width: 100%;
	padding: 10px;
}

.preview-container {
	aspect-ratio: 1;
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	width: 100%;
	max-width: 1200px;
}

.video-container {
	aspect-ratio: 1.776;
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	width: 100%;
	max-width: 1080px;
}

.preview-container iframe,
.video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.preview-container iframe,
.video-container iframe {
	pointer-events: auto;
	/* Enable pointer events */
}

/*  FOOTER
----------------------*/

.social-icons {
	text-align: right;
}

.social-icons a {
	background-color: #FFF;
	box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.05);
	width: 50px;
	height: 50px;
	display: inline-block;
	text-align: center;
	line-height: 50px;
	margin: 0 0.3rem;
	border-radius: 5px;
	color: #1f204a;
	transition: all 0.3s ease;
}

.social-icons a:hover {
	text-decoration: none;
	color: #ff487e;
}

.btn {
	cursor: pointer;
}

.custom-h1 {
	font-family: "Montserrat", sans-serif;
}

.custom-p {
	font-size: 1.2rem;
	font-weight: 300;
}

.custom-img {
	border-radius: 8px;
	box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.4);
}

.gallery-img {
	border-radius: 8px;
	box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}

.gradient-text-1 {
	background: -webkit-linear-gradient(45deg, #ff3a5b, #572ccd 80%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	font-family: "Montserrat", sans-serif;
}

.gradient-text-2 {
	background: -webkit-linear-gradient(45deg, #319bff, #cc00ff 80%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	font-family: "Montserrat", sans-serif;
}

.extension-card {
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none !important;
	flex: 1 1 calc(10% - 10px);
	max-width: calc(20% - 10px);
	min-width: 100px;
	box-sizing: border-box;
}

.extension-card:hover {
	transform: translateY(-3px);
}

@media (max-width: 768px) {
	.extension-card {
		flex: 1 1 calc(33.33% - 16px);
		max-width: calc(33.33% - 16px);
	}
}

@media (max-width: 576px) {
	.extension-card {
		flex: 1 1 100%;
		max-width: 100%;
	}
}

.extension-name {
	font-family: "Montserrat", sans-serif;
	background-color: #ffde59;
	color: #555;
	border-radius: 5px;
	padding: 5px;
	font-size: 1rem;
	white-space: nowrap;
}

.extension-type {
	font-family: "Montserrat", sans-serif;
	border-radius: 5px;
	padding: 5px;
	font-size: 0.85rem;
	color: white;
}

.free {
	text-transform: uppercase;
	background-color: #00bf63;
}

.paid {
	text-transform: uppercase;
	background-color: #ff5757;
}

.box-image {
	height: 60px;
}

.extension-box {
	align-items: center;
	height: 5rem;
}

@media (max-width:991px) {
	.social-icons {
		text-align: center;
		margin-top: 2rem;
	}
}

.container.d-flex {
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
}

.extension-image {
	margin-bottom: 16px;
	max-width: 120px;
}

.owl-carousel .owl-stage-outer {
	padding-top: 30px;
	padding-bottom: 30px;
}

/* Language Switcher Dropdown */
.dropdown-menu {
    border: none;
    box-shadow: 0px 5px 23px 0px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    padding: 10px 20px;
}

.dropdown-item:hover {
    background-color: #faf6fb;
    color: #e54595;
}

.dropdown-item.active, .dropdown-item:active {
    background-color: #e54595;
    color: #FFF;
}