/* 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
******************************************/


/**************************/
/*     General Styles     */
/**************************/
:root {
	--primary: #1c262f;
	--primary-light: #212d37;
	--secondary: #0ee951;
	--tertiary: #00dabf;
	--gradient: linear-gradient(to right, #0ee951, #00dabf);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Poppins", sans-serif;
}

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 */
.home,
.about,
.services,
.plans,
.work,
.contact {
	/*height: 110vh; */
	position: relative;
}

.services,
.work,
.contact,
.testimonial,
.footer {
  	background-color: var(--primary);
}

.about,
.plans,
.company,
.newsletter,
.location {
  	background-color: var(--primary-light);
}

.bottom {
  	background-color: black;
}

/* Gradient Border And Background On Icons */
.home_text,
.home .fas,
.plans .far,
.information .fas,
.work .fas,
.services .fas,
.location .far,
.location .fas {
	padding: 15px 0;
	background: -webkit-gradient(
		linear,
		left top,
		left bottom,
		from(#0ee951),
		to(#00dabf)
	);
	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: var(--primary);
	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: 64px;
	height: 64px;
	object-fit: contain;
	display: block;
}

.navbar .logo-text {
	color: #fff;
	font-weight: 500;
	line-height: 1rem;
	font-size: 1.575rem;
	text-decoration: none;
}

.offcanvas-collapse {
	position: fixed;
	top: 5.5rem; /* keeps the mobile menu below the square M4 Network logo */
	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;
}


/****************/
/*     Home     */
/****************/
.home {
	background-image: url(../images/home.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.para {
  	width: 50%;
}

.para-light {
  	opacity: 0.7;
}


/***********************/
/*     Information     */
/***********************/
.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: var(--primary-light);
}


/******************/
/*     Button     */
/******************/
.btn {
	color: white;
	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:hover {
	color: white;
	box-shadow: none;
	border-radius: 0;
	padding: 10px 30px;
	transform: translate(5px, 5px);
}

/* Email - Newsletter Button */
.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);
}

/* Other Pages Button */
.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     */
/********************/
.services .card {
	padding: 20px;
	border-radius: 0;
	border: 2px solid white;
}

.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 #0ee951;
}


/*****************/
/*     Plans     */
/*****************/
.plans .card {
	padding: 20px;
	border: 2px solid white;
}


/************************/
/*     Testimonials     */
/************************/
.slider-1 {
	padding-top: 8.25rem;
	padding-bottom: 8.5rem;
}

.slider-1 .section-title {
  	text-align: center;
}

.slider-1 .h2-heading {
	text-align: center;
	margin-bottom: 3rem;
}

.testimonial-card {
	border: 10px solid;
	border-image-slice: 1;
	border-width: 3px;
	border-image-source: var(--gradient);
}

.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 {
	/* even if you can't see it chrome you can see it on mobile device */
	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%;
}

/* Dropdown Menu */
.navbar .dropdown .dropdown-menu {
  	animation: fadeDropdown 0.2s; /* required for the fade animation */
}

@-webkit-keyframes fadeDropdown {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes fadeDropdown {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}


/**********************/
/*     Newsletter     */
/**********************/
.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;
}


/******************************/
/*     Back To Top Button     */
/******************************/
#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: #0f0f11;
}

#myBtn img {
	width: 18px;
	margin-left: 0.125rem;
	margin-bottom: 0.25rem;
}


/***********************/
/*     Extra Pages     */
/***********************/
.ex-header {
	padding-top: 8.5rem;
	padding-bottom: 4rem;
	background-color: var(--primary);
}

.ex-header h1 {
  	color: #fff;
}

.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 Queries     */
/*************************/
@media only screen and (max-width: 1024px) {
	.services,
	.work,
	.testimonial,
	.about,
	.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;
	}

	/* Navigation */
	.navbar {
		box-shadow: none;
		transition: all 0.2s;
		padding-top: 1.75rem;
		background-color: transparent;
	}

	.navbar.top-nav-collapse {
		padding-top: 0.5rem;
		padding-bottom: 0.5rem;
		background-color: var(--primary);
		box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.025);
	}

	.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;
	}
}


/********************************/
/*     Premium Theme System     */
/********************************/
:root,
[data-theme="dark"] {
	--primary: #07110d;
	--primary-light: #0f1d17;
	--secondary: #9cef4d;
	--tertiary: #2ed6a3;
	--gradient: linear-gradient(135deg, #9cef4d 0%, #2ed6a3 58%, #73f4ff 100%);
	--page-bg: #07110d;
	--section-bg: #0b1712;
	--section-alt: #111f18;
	--surface: rgba(255, 255, 255, 0.07);
	--surface-strong: rgba(255, 255, 255, 0.12);
	--surface-solid: #14241c;
	--text: #f3fff3;
	--text-muted: rgba(243, 255, 243, 0.72);
	--text-inverse: #07110d;
	--border: rgba(190, 255, 156, 0.2);
	--shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.28);
	--shadow-strong: 0 28px 80px rgba(0, 0, 0, 0.38);
	--nav-bg: rgba(7, 17, 13, 0.76);
	--nav-border: rgba(255, 255, 255, 0.12);
	--hero-overlay: linear-gradient(90deg, rgba(3, 12, 8, 0.94) 0%, rgba(7, 17, 13, 0.78) 46%, rgba(7, 17, 13, 0.38) 100%);
	--hero-glow: radial-gradient(circle at 18% 36%, rgba(156, 239, 77, 0.22), transparent 30%), radial-gradient(circle at 75% 15%, rgba(46, 214, 163, 0.16), transparent 30%);
}

[data-theme="light"] {
	--primary: #f6fbf3;
	--primary-light: #edf7e8;
	--secondary: #3c9f25;
	--tertiary: #008b72;
	--gradient: linear-gradient(135deg, #5bbb2f 0%, #0c9a73 58%, #16a9b7 100%);
	--page-bg: #f7fbf3;
	--section-bg: #ffffff;
	--section-alt: #eef7e9;
	--surface: rgba(255, 255, 255, 0.82);
	--surface-strong: rgba(255, 255, 255, 0.95);
	--surface-solid: #ffffff;
	--text: #142018;
	--text-muted: rgba(20, 32, 24, 0.68);
	--text-inverse: #ffffff;
	--border: rgba(24, 94, 51, 0.16);
	--shadow-soft: 0 18px 42px rgba(38, 86, 44, 0.12);
	--shadow-strong: 0 30px 80px rgba(38, 86, 44, 0.18);
	--nav-bg: rgba(255, 255, 255, 0.82);
	--nav-border: rgba(24, 94, 51, 0.12);
	--hero-overlay: linear-gradient(90deg, rgba(6, 20, 12, 0.86) 0%, rgba(11, 32, 18, 0.68) 47%, rgba(12, 34, 19, 0.24) 100%);
	--hero-glow: radial-gradient(circle at 18% 36%, rgba(156, 239, 77, 0.24), transparent 30%), radial-gradient(circle at 75% 15%, rgba(46, 214, 163, 0.18), transparent 30%);
}

html {
	scroll-behavior: smooth;
}

body {
	color: var(--text);
	background: var(--page-bg);
	transition: background-color 0.25s ease, color 0.25s ease;
}

a {
	color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--text);
	letter-spacing: 0;
}

h1 {
	font-weight: 700;
	line-height: 1.08;
}

h2 {
	font-weight: 700;
}

.text-light,
.text-dark {
	color: var(--text) !important;
}

.para {
	max-width: 680px;
}

.para-light {
	color: var(--text-muted);
	opacity: 1;
}

.home,
.services,
.plans,
.work,
.about,
.contact,
.location {
	overflow: hidden;
}

.services,
.work,
.contact,
.testimonial,
.footer {
	background: var(--section-bg);
}

.about,
.plans,
.company,
.newsletter,
.location {
	background: var(--section-alt);
}

.bottom {
	color: var(--text-muted);
	background: #050805;
	border-top: 1px solid var(--border);
}

[data-theme="light"] .bottom {
	background: #142018;
	color: rgba(255, 255, 255, 0.78);
}

.home {
	min-height: 100vh;
	isolation: isolate;
	background-position: center;
}

.home::before,
.home::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.home::before {
	z-index: -2;
	background: var(--hero-overlay);
}

.home::after {
	z-index: -1;
	background: var(--hero-glow);
}

.home .container {
	padding-top: 8rem !important;
}

.home h1,
.home p,
.home .d-flex {
	color: #ffffff;
}

.headline {
	max-width: 850px;
	text-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
}

.navbar {
	padding-top: 0.6rem;
	padding-bottom: 0.6rem;
	background: var(--nav-bg);
	border-bottom: 1px solid var(--nav-border);
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
}

.navbar.top-nav-collapse {
	background: var(--nav-bg);
	border-bottom-color: var(--nav-border);
	box-shadow: var(--shadow-soft);
}

.navbar .logo-image img {
	width: 58px;
	height: 58px;
	border-radius: 16px;
	}

.navbar .nav-item .nav-link,
.navbar .dropdown-item {
	color: var(--text);
	border-radius: 999px;
}

.navbar .nav-item .nav-link {
	margin: 0 0.08rem;
	padding: 0.72rem 0.82rem;
}

.navbar .nav-item .nav-link.active,
.navbar .nav-item .nav-link:hover,
.navbar .dropdown-item:hover {
	color: var(--text-inverse);
	background: var(--gradient);
	-webkit-text-fill-color: currentColor;
	box-shadow: 0 8px 22px rgba(46, 214, 163, 0.18);
}

.navbar .dropdown-menu {
	padding: 0.75rem;
	background: var(--surface-strong);
	border: 1px solid var(--border);
	border-radius: 18px;
	box-shadow: var(--shadow-soft);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
}

.navbar .dropdown-divider {
	background-color: var(--border);
}

.navbar .navbar-toggler {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--surface);
	border: 1px solid var(--border);
}

[data-theme="light"] .navbar-dark .navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2820, 32, 24, 0.86%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.theme-switch-item {
	display: flex;
	align-items: center;
	margin-left: 0.35rem;
}

.theme-toggle {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	min-height: 42px;
	padding: 0.35rem 0.75rem;
	color: var(--text);
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 999px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
	transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.theme-toggle:hover {
	transform: translateY(-1px);
	border-color: rgba(156, 239, 77, 0.55);
	background: var(--surface-strong);
}

.theme-toggle-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	color: var(--text-inverse);
	background: var(--gradient);
	border-radius: 50%;
	font-size: 0.9rem;
	line-height: 1;
}

.theme-toggle-text {
	font-size: 0.82rem;
	font-weight: 700;
}

.information .container-fluid .row {
	background: var(--section-bg);
}

.information .container-fluid .row > div {
	color: var(--text) !important;
	background: var(--surface-solid) !important;
	border-right: 1px solid var(--border);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.information .container-fluid .row > div:nth-child(2) {
	background: var(--section-alt) !important;
}

.information .container-fluid .row > div:last-child {
	border-right: 0;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	color: var(--text-inverse);
	background: var(--gradient);
	border: 0;
	border-radius: 999px;
	box-shadow: 0 16px 34px rgba(46, 214, 163, 0.22);
	font-weight: 700;
	line-height: 1.25;
	white-space: normal;
	transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn p {
	margin-left: 0.25rem;
}

.btn:hover {
	color: var(--text-inverse);
	transform: translateY(-2px);
	box-shadow: 0 22px 44px rgba(46, 214, 163, 0.28);
	filter: saturate(1.08);
}

.services .card,
.plans .card,
.testimonial-card {
	height: 100%;
	color: var(--text);
	background: var(--surface) !important;
	border: 1px solid var(--border);
	border-radius: 20px;
	box-shadow: var(--shadow-soft);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.services .card {
	min-height: 180px;
}

.plans .card {
	min-height: 100%;
}

.services .card:hover,
.plans .card:hover {
	transform: translateY(-6px);
	border: 1px solid rgba(156, 239, 77, 0.48);
	box-shadow: var(--shadow-strong);
}

.plans .card h4:last-of-type {
	margin-top: 0.5rem;
	color: var(--secondary);
	font-size: 1.6rem;
}

.plans .block {
	padding: 0.35rem 0;
	color: var(--text-muted);
}

.work img,
.about img {
	border-radius: 24px;
	box-shadow: var(--shadow-strong);
	border: 1px solid var(--border);
}

.work .row.g-5 > div {
	padding: 1.2rem;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 18px;
	box-shadow: var(--shadow-soft);
}

.contact {
	min-height: 320px;
}

.location .row > div {
	margin-top: 0.75rem;
	margin-bottom: 0.75rem;
}

.location .row > div > .p-2 {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 64px;
	height: 64px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 18px;
}

#myBtn {
	background: var(--gradient);
	box-shadow: 0 14px 32px rgba(46, 214, 163, 0.28);
}

#myBtn:hover {
	background: var(--gradient);
	filter: brightness(1.08);
}

@media (min-width: 992px) {
	.navbar {
		padding-top: 0.75rem;
		background: var(--nav-bg);
	}

	.navbar.top-nav-collapse {
		padding-top: 0.5rem;
	}
}

@media only screen and (max-width: 991px) {
	.offcanvas-collapse {
		top: 5.25rem;
		background: var(--nav-bg);
		border-top: 1px solid var(--nav-border);
		backdrop-filter: blur(18px);
		-webkit-backdrop-filter: blur(18px);
	}

	.navbar .nav-item .nav-link {
		margin: 0.15rem 0;
	}

	.theme-switch-item {
		margin: 0.75rem 0 1rem;
	}

	.theme-toggle {
		width: 100%;
		justify-content: center;
	}
}

@media only screen and (max-width: 540px) {
	.home .container {
		padding-top: 7rem !important;
	}

	.headline {
		font-size: 34px;
	}

	.btn {
		width: 100%;
	}
}

/* Premium information feature cards */
.information {
	background: var(--section-bg);
	padding: clamp(1rem, 2.8vw, 2.5rem) 0;
}

.information .container-fluid {
	padding: 0 clamp(1rem, 4vw, 4.5rem);
}

.information .container-fluid .row {
	--bs-gutter-x: 1.25rem;
	--bs-gutter-y: 1.25rem;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(0.75rem, 1.5vw, 1.25rem);
	margin: 0;
}

.information .information-card {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 188px;
	width: 100%;
	max-width: none;
	flex: none;
	overflow: hidden;
	background: var(--surface-solid) !important;
	border: 1px solid var(--border) !important;
	border-right: 1px solid var(--border) !important;
	border-radius: 1.25rem;
	box-shadow: var(--shadow-soft);
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.information .information-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--gradient);
}

.information .information-card:hover {
	transform: translateY(-5px);
	border-color: rgba(46, 214, 163, 0.65) !important;
	box-shadow: var(--shadow-strong);
}

.information .information-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	padding: 0 !important;
	margin-bottom: 0.85rem;
	border-radius: 18px;
	background: var(--gradient) !important;
	background-clip: border-box !important;
	-webkit-background-clip: border-box !important;
	-webkit-text-fill-color: var(--text-inverse) !important;
	color: var(--text-inverse) !important;
	font-size: 1.65rem !important;
	box-shadow: 0 12px 24px rgba(46, 214, 163, 0.22);
}

.information .information-card h4 {
	margin: 0;
	font-size: clamp(1.05rem, 1.6vw, 1.35rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--text) !important;
}

.information .information-card .para-light {
	display: none;
}

@media only screen and (max-width: 991px) {
	.information .container-fluid .row {
		grid-template-columns: 1fr;
	}

	.information .information-card {
		min-height: 170px;
	}
}

@media only screen and (max-width: 540px) {
	.information {
		padding: 0.5rem 0;
	}

	.information .container-fluid {
		padding: 0 0.85rem;
	}

	.information .information-card {
		min-height: 156px;
		padding: 1.4rem 1rem !important;
	}
}
