/* Imports */
/* Icons */
@import url("https://site-assets.fontawesome.com/releases/v6.0.0/css/all.css");
/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
	--white: #fff;
	--black: #000;
	--theme-color: #A71E22;
	--primary: #1997C3;
	--secondary: #0F1632;
	--navy-blue: #1D5FF6;
	--para: #1E1E1E;
	--gray: #D9D9D9;
}

::selection {
	background-color: var(--secondary);
	color: var(--white);
}

/* General Styling */
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	text-decoration: none !important;
	list-style-type: none;
	font-family: "Open Sans", sans-serif;
	overflow-wrap: break-word;
}

html {
	scroll-behavior: smooth;
}


body {
	overflow-x: clip;
}

a,
button {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	display: inline-block;
}

ul,
ol,
dl,
address,
label,
figure {
	margin-bottom: 0;
	padding: 0;
}

p {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: var(--para);
}

section {
	position: relative;
	padding: 5rem 0;
	overflow-x: clip;
}

/* Lenis Start */

html.lenis,
html.lenis body {
	height: auto;
}

.lenis.lenis-smooth {
	scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
	overscroll-behavior: contain;
}

.lenis.lenis-stopped {
	overflow: hidden;
}

.lenis.lenis-smooth iframe {
	pointer-events: none;
}

/* Lenis End */

/* ThemeBtn Start */

.themeBtn {
	width: fit-content;
	display: block;
	background: linear-gradient(45deg, var(--primary), var(--secondary));
	color: var(--white);
	border: none;
	border-radius: 100px;
	font-size: 1rem;
	font-weight: 500;
	text-transform: capitalize;
	position: relative;
	padding: 0.75rem 2.35rem;
}

.themeBtn:hover {
	background: var(--secondary);
}

.themeBtn--border {
	background: transparent;
	color: var(--black);
	padding: 0.65rem 2.25rem;
}

.themeBtn--border::before {
	content: "";
	position: absolute;
	inset: -2px;
	border-radius: 100px;
	padding: 2px;
	background: linear-gradient(45deg, var(--primary), var(--secondary));
	mask:
		linear-gradient(#000 0 0) content-box,
		linear-gradient(#000 0 0);
	mask-composite: exclude;
}

.themeBtn--border:hover {
	background: linear-gradient(45deg, var(--primary), var(--secondary));
	color: var(--white);
}

.themeBtn--primary {
	background: var(--primary);
}

.themeBtn--theme {
	background: var(--theme-color);
}

/* ThemeBtn End */

/* Headings Start */

.heading {
	font-size: 2.75rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--secondary);
}

.heading span {
	font-weight: bolder;
	color: var(--primary);
}

.secHeading {
	font-size: 1.75rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--secondary);
}

.para {
	font-size: 1.25rem;
	font-weight: 500;
	text-transform: uppercase;
}

/* Headings End */

/* Header Start */

.header-topWrapper {
	background: linear-gradient(45deg, var(--primary), var(--secondary));
	padding: 0.75rem 0;
}

.header-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header-top__list {
	display: flex;
	gap: 2rem;
}

.header-top__listSelect {
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.header-top__listSelect i {
	color: var(--white);
}

.header-top__listSelect select {
	background: no-repeat;
	border: none;
	color: var(--white);
}

.header-top__list li a {
	color: var(--white);
	font-size: 1rem;
	font-weight: 500;
	line-height: 1;
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
}

.header-main {
	padding: 1rem 0;
}

.header-main__logo {
	width: 120px;
}

.header-main__logo>img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.header-main__nav {
	gap: 2rem;
}

.header-main__nav li:not(:nth-child(-n+4)) {
	display: none;
}

.header-main__nav li a {
	color: var(--black);
	font-size: 1rem;
	font-weight: 500;
	padding: 0;
	text-transform: capitalize;
}

.header-main__nav li a:hover {
	color: var(--primary);
}

.header-main__btns {
	display: flex;
	align-items: center;
	gap: 2rem;
	margin-left: 2rem;
}

/* Header End */

/* Banner Start */

.banner {
	background: var(--black);
	padding: 10rem 0;
}

.banner::before {
	content: '';
	background: linear-gradient(-90deg, #000000 45%, #000000aa);
	position: absolute;
	inset: 0;
}

:is(.banner-content, .banner-img) {
	position: relative;
}

.banner-img img {
	width: 100%;
}

.banner-content h1 {
	color: var(--white);
	margin: 0;
}

.banner-content p {
	font-size: 1.5625rem;
	font-weight: 500;
	line-height: 1.2;
	color: var(--white);
	margin: 1rem 0 1.5rem;
}

/* Banner End */

/* Upper Banner Start */

.upper-banner__img {
	text-align: center;
}

/* Upper Banner End */

/* Plans Start */

.plans .nav-tabs {
	width: fit-content;
	border-radius: 0.6875rem;
	box-shadow: inset 0 0 20px 1px #00000040;
	margin: 0 auto 4rem;
	padding: 0.375rem;
}

.plans .nav-tabs .nav-link {
	font-size: 1rem;
	font-weight: 500;
	color: var(--primary);
	border-radius: 0.5rem;
	padding: 0.65rem 2rem;
}

.plans .nav-tabs .nav-link.active {
	background: var(--primary);
	color: var(--white);
}

.plans-card {
	background: var(--white);
	border-radius: 0.625rem;
	position: relative;
	text-align: center;
	box-shadow: 0px 16px 35px 0px #1997C31A, 0px 64px 64px 0px #1997C317, 0px 143px 86px 0px #1997C30D, 0px 255px 102px 0px #1997C303, 0px 398px 111px 0px #1997C300;
	padding: 3rem;
	transition: all 0.3s ease-in-out;
}

.plans-card:hover {
	transform: scale(1.05);
}

.plans-card .badge {
	background: var(--primary);
	font-size: 0.9375rem;
	font-weight: 400;
	text-transform: uppercase;
	border-radius: 100px;
	position: absolute;
	top: -1.25rem;
	left: 50%;
	transform: translateX(-50%);
	padding: 0.75rem 1rem;
	box-shadow: 0px 5px 11px 0px #1997C342, 0px 20px 20px 0px #1997C33B, 0px 45px 27px 0px #1997C321, 0px 80px 32px 0px #1997C30A, 0px 125px 35px 0px #1997C300;
}

.plans-card .title {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--primary);
	text-transform: uppercase;
	margin-bottom: 0.25rem;
}

.plans-card .price {
	font-size: 2rem;
	font-weight: 800;
	color: var(--navy-blue);
	margin-bottom: 1rem;
}

.plans-card .subTitle {
	font-size: 1rem;
	font-weight: bold;
	text-transform: uppercase;
	color: var(--primary);
	margin-bottom: 1rem;
}

.plans-card__list {
	text-align: left;
	margin: 1.5rem 0;
}

.plans-card__list li {
	font-size: 0.875rem;
	display: flex;
	align-items: start;
	gap: 0.5rem;
}

.plans-card__list li img {
	margin-top: 0.5rem;
}

.plans-card__list li+li {
	margin-top: 1rem;
}

.plans-card .themeBtn {
	text-transform: uppercase;
	box-shadow: 0px 5px 11px 0px #1997C342, 0px 20px 20px 0px #1997C33B, 0px 45px 27px 0px #1997C321, 0px 80px 32px 0px #1997C30A, 0px 125px 35px 0px #1997C300;
}

.plans-card.plans-card--theme {
	box-shadow: 0px 16px 35px 0px #8203031A, 0px 64px 64px 0px #82030317, 0px 143px 86px 0px #8203030D, 0px 255px 102px 0px #82030303, 0px 398px 111px 0px #82030300;
}

.plans-card.plans-card--theme .badge {
	background: var(--theme-color);
	box-shadow: 0px 5px 11px 0px #A71E2242, 0px 20px 20px 0px #A71E223B, 0px 45px 27px 0px #A71E2221, 0px 80px 32px 0px #A71E220A, 0px 125px 35px 0px #A71E2200;
}

.plans-card.plans-card--theme :is(.title, .subTitle) {
	color: var(--theme-color);
}

.plans-card.plans-card--theme .themeBtn {
	box-shadow: 0px 5px 11px 0px #A71E2242, 0px 20px 20px 0px #A71E223B, 0px 45px 27px 0px #A71E2221, 0px 80px 32px 0px #A71E220A, 0px 125px 35px 0px #A71E2200;
}

/* Plans End */

/* Steps Start */

.steps-card {
	height: 100%;
	background: linear-gradient(130deg, var(--white) 70%, var(--primary) 130%);
	border: 1px solid var(--gray);
	border-radius: 0.9375rem;
	text-align: center;
	transition: all 0.3s ease-in-out;
	padding: 3rem;
}

.steps-card:hover {
	transform: scale(1.05) translateY(-5px);
}

.steps-card .number {
	width: 106px;
	aspect-ratio: 1;
	background: var(--primary);
	color: var(--white);
	border-radius: 100%;
	font-size: 3rem;
	font-weight: bold;
	display: grid;
	place-items: center;
	margin: 0 auto 1rem;
}

.steps-card .title {
	font-size: 1.5rem;
	font-weight: 800;
	text-transform: uppercase;
	color: var(--primary);
	margin-bottom: 1rem;
}

.steps-card p {
	margin: 0;
}

.steps-card.steps-card--theme {
	background: linear-gradient(130deg, var(--white) 70%, var(--theme-color) 130%);
}

.steps-card.steps-card--theme .number {
	background: var(--theme-color);
}

.steps-card.steps-card--theme .title {
	color: var(--theme-color);
}

/* Steps End */

/* Connectivity Start */

.connectivity {
	background: url(../images/world-map.png) no-repeat center/contain;
}

.connectivity-card {
	background: var(--white);
	border: 1.5px solid var(--gray);
	border-radius: 0.9375rem;
	padding: 1.5rem;
	display: flex;
	align-items: center;
	gap: 2rem;
	transition: all 300ms ease-in-out;
}

.connectivity-card:hover {
	box-shadow: 0 0 20px 1px #00000020;
}

.connectivity-card__img {
	min-width: 136px;
	aspect-ratio: 1;
	background: var(--primary);
	display: grid;
	place-items: center;
	border-radius: 100%;
}

.connectivity-card__img img {
	width: 40%;
}

.connectivity-card__content .title {
	font-size: 1.5rem;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--primary);
	margin-bottom: 1rem;
}

.connectivity-card__content p {
	margin: 0;
}

/* Connectivity End */

/* Why Start */

.why {
	background: linear-gradient(90deg, #1997C350, var(--white), var(--white), #1997C350);
}

.why-card {
	text-align: center;
	transition: all 0.3s ease-in-out;
}

.why-card:hover {
	transform: translateY(-10px);
}

.why-card__img {
	width: 97px;
	aspect-ratio: 1;
	border: 3px solid var(--primary);
	border-radius: 1rem;
	display: grid;
	place-items: center;
	margin: 0 auto 0.5rem;
}

.why-card__content .title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 0.5rem;
}

/* Why End */

/* Reviews Start */

.reviews-card {
	background: #1997C342;
	border-radius: 0.9375rem;
	padding: 1.5rem;
}

.reviews-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.reviews-card__topStars {
	color: #FFD000;
	-webkit-text-stroke: 1px var(--secondary);
}

.reviews-card p {
	height: 90px;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin: 1rem 0;
}

.reviews-card .title {
	font-size: 1.25rem;
	font-weight: 700;
	text-transform: uppercase;
}

.reviewsSlider {
	padding-bottom: 3rem;
}

.reviewsSlider-pagination.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
	bottom: 0;
}

.reviewsSlider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: var(--secondary);
}

/* Reviews End */

/* Faqs Start */

.faqs .accordion-item {
	border: 1px solid var(--primary);
	border-radius: 0.75rem;
	overflow: hidden;
}

.faqs .accordion-item+.accordion-item {
	margin-top: 1rem;
}

.faqs .accordion-button:not(.collapsed) {
	background: #1997C342;
}

.faqs .accordion-body p {
	margin: 0;
}

/* Faqs End */

/* Footer Start */

.footer {
	background: var(--primary);
	padding-top: 3rem;
}

.footer-linksWrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem 0;
}

.footer-links {
	display: flex;
	gap: 3rem;
	flex-wrap: wrap;
}

.footer-links li a {
	color: var(--white);
	font-size: 1rem;
	font-weight: 500;
	text-transform: uppercase;
}

.footer-links li a i {
	font-size: 1.5rem;
}

.footer-content {
	height: 100%;
	position: relative;
	padding: 0.5rem 3rem;
}

.footer-content::before {
	content: '';
	width: 100%;
	height: 100%;
	border-left: 1px solid var(--white);
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.footer-content--right::after {
	content: '';
	width: 100%;
	height: 100%;
	border-right: 1px solid var(--white);
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.footer-content .title {
	font-size: 1.125rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--white);
	margin-bottom: 1rem;
}

.footer-content__list li+li {
	margin-top: 0.5rem;
}

.footer-content__list li a {
	font-size: 1rem;
	font-weight: 500;
	color: var(--white);
}

.footer-content__list li a:hover {
	color: var(--secondary);
}

.footer-copyright {
	border-top: 1px solid var(--white);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 3rem;
	padding: 1rem 0;
}

.footer-copyright__logo {
	width: 150px;
}

.footer-copyright__logo img {
	width: 100%;
}

.footer-copyright p {
	font-weight: 700;
	text-transform: uppercase;
	color: var(--white);
	margin: 0;
}

/* Footer End */


/* Pagetitle Start */

.pagetitle {
	padding: 0;
}

.pagetitle::before {
	content: '';
	background: #00000090;
	position: absolute;
	inset: 0;
}

:is(.pagetitle-img, .pagetitle-img img) {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pagetitle-content {
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.pagetitle-content .heading {
	color: var(--white);
	text-shadow: 0 0 20px var(--black);
	margin: 0;
}

/* Pagetitle End */

/* Privacy Policy Start */

/* Sidebar */

.privacy-sidebar {
	background: #f4f5f7;
	border-radius: 12px;
	padding: 1rem;
	position: sticky;
	top: 100px;
}

.privacy-sidebar ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.privacy-sidebar li {
	margin-bottom: 0.8rem;
}

.privacy-sidebar a {
	text-decoration: none;
	color: #555;
	display: block;
	padding: 0.4rem 0.75rem;
	border-left: 3px solid transparent;
	display: flex;
	gap: 0.5rem;
	transition: all 0.2s ease;
}

.privacy-sidebar a:hover {
	color: #0d6efd;
	background: #eef3ff;
	border-left-color: #0d6efd;
}

.privacy-sidebar a.active,
.privacy-sidebar a.current {
	color: #0d6efd;
	font-weight: 600;
	background: #e9f1ff;
	border-left-color: #0d6efd;
}

/* Content */

.privacy-content {
	background: #fff;
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.privacy-content section {
	padding: 3rem 0 0;
}

.privacy-content p,
.privacy-content li {
	color: #444;
	line-height: 1.7;
}

.privacy-content ul {
	padding-left: 1.2rem;
}

.privacy-content ul li {
	list-style: disc;
}

.privacy-content ul ul {
	margin: 1rem 0;
}

.privacy-content ul ul li {
	list-style: circle;
}

.privacy-content ul+ :is(ul, p) {
	margin-top: 1rem;
}

/* Privacy Policy End */

/* Contact Us Start */

.contact-form-section {
	padding: 80px 0;
	background-color: var(--white);
}

.form-control {
	border-radius: 8px;
	padding: 12px;
	border: 1px solid var(--gray);
}

.form-control:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 0.25rem rgba(25, 151, 195, 0.25);
}

textarea.form-control {
	min-height: 150px;
}

.map-container {
	height: 400px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Contact Us End */

/* About Us Start */
.about-img {
	width: 100%;
	height: 600px;
	border-radius: 1rem;
	box-shadow: 0 0 20px 1px #00000050;
	overflow: hidden;
}

.about-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-content .secHeading {
	margin-top: 2rem;
}

/* About Us End */