/* Imports */
/* 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;
	--primary: #032855;
	--secondary: #e55123;
	--navy-blue: #1d5ff6;
	--para: #1e1e1e;
	--gray: #d9d9d9;
	--shadow-sm: 0 12px 28px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.02);
	--shadow-hover: 0 25px 35px -12px rgba(0, 0, 0, 0.15);
	--transition-default: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

::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 */
.btnWrapper {
	display: flex;
	gap: 1rem;
}

.themeBtn {
	width: fit-content;
	display: block;
	background: var(--secondary);
	color: var(--white);
	border: none;
	border-radius: 0.5rem;
	font-size: 1rem;
	font-weight: 500;
	text-transform: capitalize;
	position: relative;
	padding: 0.75rem 2.35rem;
}

.themeBtn:hover {
	background: var(--primary);
}

.themeBtn--border {
	background: transparent;
	color: var(--black);
	padding: 0.65rem 2.25rem;
}

.themeBtn--border::before {
	content: "";
	position: absolute;
	inset: -2px;
	border-radius: 0.75rem;
	padding: 2px;
	background: var(--primary);
	mask:
		linear-gradient(#000 0 0) content-box,
		linear-gradient(#000 0 0);
	mask-composite: exclude;
}

.themeBtn--border:hover {
	background: var(--primary);
	color: var(--white);
}

.themeBtn--primary {
	background: var(--primary);
}

.themeBtn--secondary {
	background: var(--secondary);
}

.themeBtn--borderWhite {
	background: transparent;
	border: 2px solid var(--white);
	color: var(--white);
}

.themeBtn--borderWhite:hover {
	background: var(--white);
	color: var(--secondary);
}

/* ThemeBtn End */

/* Headings Start */

.secHeading {
	font-size: 3.5rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--secondary);
}

.heading {
	font-size: 2.75rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--primary);
}

:is(.secHeading, .heading) span {
	font-weight: bolder;
	color: var(--secondary);
}

.section-badge {
	display: inline-block;
	background: rgba(1, 166, 243, 0.12);
	color: var(--primary);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	padding: 0.4rem 1rem;
	border-radius: 40px;
	margin-bottom: 1rem;
	backdrop-filter: blur(2px);
}

.subHeading {
	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 {
	width: calc(100% - 3rem);
	position: absolute;
	top: 1.25rem;
	left: 50%;
	transform: translateX(-50%);
	background: var(--white);
	border-radius: 0.5rem;
	z-index: 999;
}

.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: 160px;
	margin: 0;
	padding: 0;
}

.header-main__logo>img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.header-main__nav {
	gap: 1rem;
}

.header-main__nav li:not(:nth-child(-n + 4)) {
	display: none;
}

.header-main__nav li a {
	color: var(--primary);
	font-size: 1rem;
	font-weight: 600;
	padding: 0;
	text-transform: capitalize;
}

.header-main__nav li a:hover {
	color: var(--secondary);
}

.header-main__btns {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-left: 2rem;
}

/* Dropdown Start */

.drop-down {
	position: relative;
}

.drop-down ul {
	width: 200px;
	background: var(--white);
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 999;
	padding: 1rem;
	border-radius: 0.5rem;
	box-shadow: 0 10px 20px 1px #00000030;
	display: none;
}

.drop-down ul li+li {
	margin-top: 0.5rem;
}

.drop-down:hover ul {
	display: block;
}

/* Dropdown End */

/* Header End */

/* Banner Start */

.banner {
	height: 900px;
	display: flex;
	align-items: center;
	background: url(../images/banner.jpeg) no-repeat center/cover;
	padding: 0;
}

.banner::before {
	content: '';
	background: #000000bb;
	position: absolute;
	inset: 0;
	z-index: 1;
}

.banner-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	inset: 0;
}

.banner-content {
	position: relative;
	z-index: 1;
}

.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 {
	height: 100%;
	background: var(--white);
	border-radius: 0.625rem;
	position: relative;
	text-align: center;
	box-shadow:
		0px 16px 35px 0px #1d35601a,
		0px 64px 64px 0px #1d356017,
		0px 143px 86px 0px #1d35600d,
		0px 255px 102px 0px #1d356003,
		0px 398px 111px 0px #1d356000;
	padding: 3rem 2rem 2rem;
	transition: all 0.3s ease-in-out;
}

.plans-card:hover {
	transform: scale(1.05);
}

.plans-card__listIcon-box {
	width: 165px;
	background: var(--primary);
	position: absolute;
	top: 100%;
	left: -4rem;
	box-shadow: 0 0 20px 1px #00000020;
	border-radius: 0.5rem;
	padding: 0.75rem;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-in-out;
}

.plans-card__listIcon-box p {
	font-size: 14px;
	color: var(--white);
	margin: 0;
}

.plans-card__listIcon:hover .plans-card__listIcon-box {
	opacity: 1;
	visibility: visible;
}

.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 #1d356042,
		0px 20px 20px 0px #1d35603b,
		0px 45px 27px 0px #1d356021,
		0px 80px 32px 0px #1d35600a,
		0px 125px 35px 0px #1d356000;
}

.plans-card .title {
	min-height: 60px;
	font-size: 1.55rem;
	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 .price del {
	font-size: 1.5rem;
	font-weight: 800;
	text-decoration: line-through !important;
	color: #00000060;
}

.plans-card .subTitle {
	font-size: 1rem;
	font-weight: bold;
	text-transform: capitalize;
	color: var(--primary);
	margin-bottom: 1rem;
}

.plans-card .para {
	font-weight: 800;
	text-transform: capitalize;
	color: var(--navy-blue);
}

.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__listIcon {
	color: var(--secondary);
	font-size: 1rem;
	position: relative;
}

.plans-card .themeBtn {
	text-transform: uppercase;
	box-shadow:
		0px 5px 11px 0px #1d356042,
		0px 20px 20px 0px #1d35603b,
		0px 45px 27px 0px #1d356021,
		0px 80px 32px 0px #1d35600a,
		0px 125px 35px 0px #1d356000;
}

.plans-card.plans-card--theme {
	box-shadow:
		0px 16px 35px 0px #e345271a,
		0px 64px 64px 0px #e3452717,
		0px 143px 86px 0px #e345270d,
		0px 255px 102px 0px #e3452703,
		0px 398px 111px 0px #e3452700;
}

.plans-card.plans-card--theme .badge {
	background: var(--secondary);
	box-shadow:
		0px 5px 11px 0px #e3452742,
		0px 20px 20px 0px #e345273b,
		0px 45px 27px 0px #e3452721,
		0px 80px 32px 0px #e345270a,
		0px 125px 35px 0px #e3452700;
}

.plans-card.plans-card--theme :is(.title, .subTitle) {
	color: var(--secondary);
}

.plans-card.plans-card--theme .themeBtn {
	box-shadow:
		0px 5px 11px 0px #e3452742,
		0px 20px 20px 0px #e345273b,
		0px 45px 27px 0px #e3452721,
		0px 80px 32px 0px #e345270a,
		0px 125px 35px 0px #e3452700;
}

.plans-card--custom {
	display: flex;
	align-items: center;
	justify-content: center;
}

.plans-card--custom .title {
	font-size: 2rem;
	font-weight: 800;
}

/* Plans End */

/* Steps Start */

.steps {
	background: linear-gradient(135deg, #f9fbfd 0%, #f1f5f9 100%);
}

/* subtle background decoration */
.steps::before {
	content: "";
	position: absolute;
	top: -20%;
	right: -10%;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle,
			rgba(1, 166, 243, 0.04) 0%,
			rgba(1, 166, 243, 0) 70%);
	border-radius: 50%;
	pointer-events: none;
}

.steps::after {
	content: "";
	position: absolute;
	bottom: -15%;
	left: -5%;
	width: 350px;
	height: 350px;
	background: radial-gradient(circle,
			rgba(44, 173, 67, 0.03) 0%,
			rgba(44, 173, 67, 0) 70%);
	border-radius: 50%;
	pointer-events: none;
}

.steps .container {
	position: relative;
	z-index: 2;
}

.steps-card {
	height: 100%;
	background: var(--white);
	border-radius: 2rem;
	text-align: center;
	transition: var(--transition-default);
	padding: 2.2rem 1.8rem 2rem;
	position: relative;
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	border: 1px solid rgba(217, 217, 217, 0.5);
	backdrop-filter: blur(0px);
	display: flex;
	flex-direction: column;
}

.steps-card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: var(--shadow-hover);
	border-color: rgba(1, 166, 243, 0.3);
}

/* icon wrapper */
.icon-wrapper {
	width: 70px;
	height: 70px;
	background: rgba(1, 166, 243, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.2rem;
	transition: var(--transition-default);
}

.icon-wrapper i {
	font-size: 2rem;
	color: var(--primary);
	transition: var(--transition-default);
}

.steps-card:hover .icon-wrapper {
	background: var(--primary);
	transform: scale(1.02);
}

.steps-card:hover .icon-wrapper i {
	color: var(--white);
}

/* number styling */
.steps-card .number {
	width: 90px;
	margin: 0 auto 0.75rem;
	background: linear-gradient(145deg, #f0f4fe, #ffffff);
	color: var(--primary);
	font-size: 2.3rem;
	font-weight: 800;
	border-radius: 60px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.2rem 0;
	border: 1px solid rgba(1, 166, 243, 0.25);
	letter-spacing: -0.5px;
}

.steps-card .title {
	font-size: 1.6rem;
	font-weight: 800;
	text-transform: uppercase;
	color: var(--primary);
	margin-bottom: 1rem;
	letter-spacing: -0.3px;
}

.steps-card p {
	margin: 0 0 1.2rem;
	font-size: 0.95rem;
	color: #334155;
	line-height: 1.5;
	flex: 1;
}

.card-footer-tag {
	display: inline-block;
	background: #f1f5f9;
	padding: 0.35rem 1rem;
	border-radius: 30px;
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: var(--primary);
	margin-top: 0.5rem;
	transition: var(--transition-default);
}

.steps-card:hover .card-footer-tag {
	background: rgba(1, 166, 243, 0.1);
	color: #0369a1;
}

/* ----- THEME CARD VARIANT (green) ----- */
.steps-card.steps-card--theme {
	background: linear-gradient(135deg, var(--white) 0%, #f9fff9 100%);
	border-color: rgba(44, 173, 67, 0.25);
}

.steps-card.steps-card--theme .number {
	background: linear-gradient(145deg, #eaf8ed, #ffffff);
	color: var(--secondary);
	border-color: rgba(44, 173, 67, 0.35);
}

.steps-card.steps-card--theme .title {
	color: var(--secondary);
}

.steps-card.steps-card--theme .icon-wrapper {
	background: rgba(44, 173, 67, 0.1);
}

.steps-card.steps-card--theme .icon-wrapper i {
	color: var(--secondary);
}

.steps-card.steps-card--theme:hover .icon-wrapper {
	background: var(--secondary);
}

.steps-card.steps-card--theme:hover .icon-wrapper i {
	color: var(--white);
}

.steps-card.steps-card--theme .card-footer-tag {
	color: var(--secondary);
	background: #edf7ef;
}

/* trust row */
.trust-row {
	margin-top: 3.5rem;
}

.trust-message {
	font-size: 0.85rem;
	color: #4b5563;
	background: rgba(255, 255, 255, 0.75);
	backdrop-filter: blur(4px);
	display: inline-block;
	padding: 0.6rem 1.6rem;
	border-radius: 60px;
	border: 1px solid rgba(217, 217, 217, 0.5);
}

.trust-message i {
	color: var(--secondary);
	margin-right: 0.5rem;
}

/* 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,
			#1d356050,
			var(--white),
			var(--white),
			#1d356050);
}

.why-card {
	text-align: center;
	position: relative;
	padding: 20px;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	z-index: 1;
}

.why-card:hover {
	transform: translateY(-10px);
}

.why-card__img {
	width: 100px;
	height: 100px;
	background: var(--white);
	border-radius: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: 0.3s;
	border: 1px solid rgba(0, 0, 0, 0.02);
	position: relative;
	z-index: 2;
}

.why-card__img img {
	max-width: 50%;
	height: auto;
}

.why-card__img::after {
	content: "";
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%) scaleX(0.8);
	width: 80%;
	height: 20px;
	background: radial-gradient(circle,
			rgba(var(--primary-color-rgb), 0.1) 0%,
			rgba(255, 255, 255, 0) 70%);
	border-radius: 50%;
	z-index: 1;
	filter: blur(5px);
	transition: 0.3s;
}

.why-card__content {
	position: relative;
	z-index: 2;
}

.why-card__content .title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--navy-blue);
	margin-bottom: 1rem;
	position: relative;
	padding-bottom: 10px;
}

.why-card__content .title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 30px;
	height: 2px;
	background-color: rgba(var(--primary-color-rgb), 0.2);

	border-radius: 1px;
}

.why-card__content p {
	font-size: 0.95rem;
	color: #555;
	line-height: 1.6;
	margin: 0;
	max-width: 90%;
	margin: 0 auto;
}

.why-card:hover .why-card__img {
	background: linear-gradient(135deg,
			var(--white) 0%,
			rgba(var(--primary-color-rgb), 0.03) 100%);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
	transform: rotate(-3deg) scale(1.05);
}

.why-card:hover .why-card__img::after {
	opacity: 1;
	bottom: -20px;
	background: radial-gradient(circle,
			rgba(var(--primary-color-rgb), 0.2) 0%,
			rgba(255, 255, 255, 0) 70%);
}

/* Why End */

/* Reviews Start */

.reviews {
	background-color: #f8fbff;
	/* Soft contrast from white sections */
	padding: 80px 0;
}

.reviews-card {
	background: var(--white);
	border-radius: 20px;
	padding: 2.5rem 2rem 2rem;
	/* Top padding extra for the floating image effect if needed */
	position: relative;
	box-shadow: 0 10px 30px rgba(1, 166, 243, 0.08);
	/* Very soft blue tinted shadow */
	border: 1px solid rgba(1, 166, 243, 0.1);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin: 10px;
	/* Space for shadows in swiper */
}

.reviews-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(1, 166, 243, 0.15);
}

.reviews-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1.5rem;
}

/* User Image - Removing the black border and adding a glow */
.reviews-card__topImg {
	width: 65px;
	height: 65px;
	background: var(--white);
	border: 3px solid #fff;
	border-radius: 100%;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	margin: 0;
	/* Aligning it properly */
}

.reviews-card__topImg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Stars Styling */
.reviews-card__topStars {
	color: #ffc107;
	font-size: 0.9rem;
	display: flex;
	gap: 2px;
}

/* Star stroke hatane se clean look aata hai */
.reviews-card__topStars i {
	-webkit-text-stroke: 0;
}

/* Review Text - Adding a quote icon feel or italic styling */
.reviews-card p {
	min-height: 110px;
	font-size: 1rem;
	line-height: 1.7;
	color: #4a5568;
	font-style: italic;
	margin-bottom: 1.5rem;
	position: relative;
}

/* Aesthetic Quote Mark */
.reviews-card p::before {
	content: '"';
	font-family: serif;
	position: absolute;
	top: -10px;
	left: -15px;
	font-size: 3rem;
	color: rgba(1, 166, 243, 0.1);
	line-height: 1;
}

/* User Name Styling */
.reviews-card .title {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--primary);
	/* Ziqtel Blue */
	letter-spacing: 0.5px;
	margin-top: auto;
	display: flex;
	align-items: center;
}

.reviews-card .title::before {
	content: '';
	width: 20px;
	height: 2px;
	background: var(--primary);
	display: inline-block;
	margin-right: 10px;
	border-radius: 2px;
}

/* Swiper Pagination Customization */
.reviewsSlider {
	padding: 20px 0 50px !important;
}

.reviewsSlider .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: #cbd5e0;
	opacity: 1;
}

.reviewsSlider .swiper-pagination-bullet-active {
	width: 30px;
	border-radius: 5px;
	background: var(--primary) !important;
	transition: all 0.3s ease;
}

/* Reviews End */

/* Faqs Start */

.faqs .accordion-item {
	border: 1px solid #e2e8f0;
	/* Soft gray border instead of primary */
	border-radius: 12px !important;
	/* Rounded corners */
	margin-bottom: 1rem;
	transition: all 0.3s ease;
	overflow: hidden;
	background: #fff;
}

/* Hover effect on item */
.faqs .accordion-item:hover {
	border-color: var(--primary);
	box-shadow: 0 4px 12px rgba(1, 166, 243, 0.08);
}

.faqs .accordion-button {
	padding: 1.25rem;
	font-size: 1.05rem;
	font-weight: 600;
	color: #2d3748;
	background: transparent;
	box-shadow: none !important;
}

/* Jab FAQ open ho */
.faqs .accordion-button:not(.collapsed) {
	color: var(--primary);
	background-color: #f0f9ff;
	/* Light blue tint when active */
	border-bottom: 1px solid #e2e8f0;
}

/* Custom Icon (Plus/Minus effect) */
.faqs .accordion-button::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232d3748'%3e%3cpath fill-rule='evenodd' d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2z'/%3e%3c/svg%3e");
	background-size: 1.25rem;
	transition: transform 0.3s ease;
}

.faqs .accordion-button:not(.collapsed)::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231d3560'%3e%3cpath fill-rule='evenodd' d='M2 8a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11A.5.5 0 0 1 2 8z'/%3e%3c/svg%3e");
	transform: rotate(180deg);
}

.faqs .accordion-body {
	padding: 1.25rem;
	color: #4a5568;
	line-height: 1.6;
	background: #fff;
	font-size: 0.95rem;
}

/* FAQ 10 specific styling for list items */
.faqs .accordion-body br+br {
	display: block;
	margin-top: 10px;
	content: "";
}

/* 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 {
	width: 100%;
	height: 450px;
	padding: 0;
}

.pagetitle::before {
	content: "";
	background: #00000050;
	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-form-section .para {
	text-transform: capitalize;
}

/* 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 .subHeading {
	margin-top: 2rem;
}

.about-content__list {
	margin-top: 1rem;
}

.about-content__listCol {
	display: flex;
	align-items: center;
}

.about-content__listCol .number {
	color: var(--primary);
	font-size: 1.25rem;
	font-weight: 700;
	margin: 0 0.5rem 0 0;
}

.about-content__listCol-img {
	display: flex;
	align-items: center;
	position: relative;
}

.about-content__listCol-img :is(.bottom-line, .top-line) {
	width: 1px;
	height: calc((100% - 8px) + 50px);
	background: var(--primary);
	position: absolute;
	bottom: 100%;
	left: 26%;
}

.about-content__listCol-img .left-line {
	width: 16px;
	height: 1px;
	background: var(--primary);
}

.about-content__listCol-img .bottom-line {
	bottom: auto;
	top: 100%;
}

.about-content__listCol-box {
	width: 80%;
	border: 1px solid var(--primary);
	border-radius: 1rem;
	padding: 1rem;
}

.about-content__listCol-box p {
	font-size: 1rem;
	font-weight: 500;
	margin: 0;
}

/* About Us End */

/* Float Btn Start */

.float-btn {
	width: 60px;
	aspect-ratio: 1;
	background: #25d366;
	color: var(--white);
	border-radius: 100%;
	font-size: 28px;
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	display: grid;
	place-items: center;
	z-index: 999999999;
}

/* Float Btn End */

/* Products Start */

.product-card {
	height: 100%;
	border: 2px solid #00000020;
	border-radius: 1rem;
	box-shadow: 0 0 20px 1px #00000020;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
}

.product-card__img {
	width: 100%;
	height: 300px;
	background: #00000010;
}

.product-card__img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.product-card__content {
	padding: 1.25rem;
}

.product-card__content .title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 0.5rem;
}

.product-card__content .price {
	font-size: 2rem;
	font-weight: 800;
	color: var(--navy-blue);
	margin-bottom: 0.5rem;
}

.product-card:hover {
	transform: scale(1.05) translateY(-5px);
}

/* Products End */

/* Buy Now Modal Start */

/* Modal Styles */
.custom-modal {
	border-radius: 15px;
	overflow: hidden;
	border: 2px solid var(--primary);
}

.custom-modal-header {
	background-color: var(--primary);
	color: var(--white);
	border-bottom: none;
}

.btn-close-custom {
	filter: invert(1);
	opacity: 1;
}

/* Modal Body */
.custom-modal-body {
	padding: 30px;
	background-color: var(--white);
}

/* Form Inputs */
.custom-input {
	border-radius: 8px;
	border: 1px solid var(--primary);
	padding: 8px 12px;
	color: var(--para);
}

/* Tagline */
.text-custom {
	color: var(--secondary);
	font-weight: 500;
	margin-top: 10px;
}

/* Buy Now Modal End */

/* Compatible Start */

.compatible-field+.compatible-field {
	margin-top: 2rem;
}

.compatible-field label {
	font-size: 1rem;
	font-weight: 500;
	margin-bottom: 0.5rem;
}

.compatible-field :is(input, .compatible-field__box) {
	width: 100%;
	color: var(--primary);
	border: none;
	border-radius: 1rem;
	outline: none;
	box-shadow:
		0 1px 3px 0 #1d356036,
		0 6px 6px 0 #1d35602e,
		0 13px 8px 0 #1d35601c,
		0 23px 9px 0 #1d356008,
		0 37px 10px 0 #1d356000;
	padding: 1rem;
}

.compatible-field input::placeholder {
	color: var(--primary);
}

.compatible-field__box p {
	font-style: italic;
	margin: 0;
}

.compatible-field__box ul {
	column-count: 2;
	margin-left: 1.25rem;
}

:is(.compatible-field__box, .compatible-content) ul li {
	list-style: disc;
}

.compatible-content .title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.compatible-content ul {
	margin-left: 1.25rem;
}

.compatible-content ul li+li {
	margin-top: 0.25rem;
}

/* Compatible End */

/* Checker Start */

.checker-box {
	border: 1px solid #dddddd;
	border-radius: 1rem;
	box-shadow: 0 0 20px 1px #00000020;
	padding: 2.25rem 1.5rem;
}

.checker-box+.checker-box {
	margin-top: 1rem;
}

.checker-box .title {
	color: var(--primary);
	font-size: 1.5rem;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 1rem;
}

.checker-box p {
	margin: 0;
}

/* Checker End */

/* Guide Start */
.guide .nav-tabs {
	border: none;
	justify-content: center;
	gap: 1rem;
	margin: 3rem 0 2rem;
}

.guide .nav-tabs .nav-link {
	font-size: 1rem;
	font-weight: 600;
	background: transparent;
	color: var(--primary);
	border: 2px solid var(--primary);
	border-radius: 0.5rem;
	padding: 0.75rem 1.5rem;
}

.guide .nav-tabs .nav-link.active {
	background: var(--primary);
	color: var(--white);
}

.guide-img {
	text-align: center;
}

.guide-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.guide-content__box {
	background: #fff;
	border: 2px solid transparent;
	border-radius: 0.75rem;
	cursor: pointer;
	padding: 1.5rem;
	transition: all 0.3s ease-in-out;
}

.guide-content__box.active {
	border-color: var(--primary);
}

.guide-content__box .title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--black);
	transition: all 300ms ease-in-out;
	margin-bottom: 0.25rem;
}

.guide-content__box.active .title {
	font-size: 1.5rem;
	color: var(--primary);
}

.guide-content__box p {
	margin: 0;
}

:is(.guideSlider1-next, .guideSlider2-next, .guideSlider3-next) {
	top: 5rem;
	left: 0;
}

:is(.guideSlider1-prev, .guideSlider2-prev, .guideSlider3-prev) {
	top: 2rem;
	left: 0;
}

:is( :is(.guideSlider1-next, .guideSlider2-next, .guideSlider3-next),
	:is(.guideSlider1-prev, .guideSlider2-prev, .guideSlider3-prev))::after {
	font-size: 2rem;
	font-weight: 900;
	color: var(--primary);
}

@media (min-width: 768px) {
	:is(.guideThumbs1, .guideThumbs2, .guideThumbs3) .swiper-wrapper {
		display: flex;
		flex-direction: column;
		gap: 1rem 0;
	}

	:is(.guideThumbs1, .guideThumbs2, .guideThumbs3) .swiper-slide {
		width: 100% !important;
		height: auto !important;
	}
}

/* Guide End */