/* Landing pages */

/* Basics */


::selection {
  color: white;
  background: #0073e6;
}


body {
	font-family: 'Montserrat', sans-serif;
	color: #4D4D4D;
	font-size: 1rem;
	cursor: default;
}

a {
	color: #3D5769;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	line-height: 140%;
}

h2 {
	font-size: 1.875rem;
}


@media (min-width: 1200px) {

	.container,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl {
		max-width: 1250px;
	}
}


/* Header */

header {
	font-size: 1rem;
}

header .box_logo {
	margin-bottom: 0;
}

/* Sections */

section {
	padding: 80px 0px;
}

@media (min-width: 576px) {
	section {
		padding: 90px 0;
	}
}


@media (min-width: 1200px) {
	section {
		padding: 120px 0;
	}
}


.section_alert {
	background-color: #F2EB70;
	padding: 32px 0px 32px 0px;
}

.section_alert h2 {
	font-weight: 600;
	font-size: 1.125rem;
	margin-bottom: 4px;
}

.section_alert p {
	font-size: 1rem;
	margin-bottom: 0px;
}


.section_hero {
  position: relative;
  background: radial-gradient(
    50% 59.68% at 50% 49.97%,
    rgba(96, 193, 200, 0.2) 0%,
    rgba(62, 219, 207, 0.1) 93.27%
  );
  overflow: hidden;
	padding: 120px 0;
}

.section_hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(images/background_hero.png) no-repeat center / cover;
  opacity: 0.6; 
  z-index: 0;
}

.section_hero > * {
  position: relative;
  z-index: 1;
}



.section_hero h1 span {
	color: #30BBB2;
}

.section_hero blockquote {
	padding: 0px;
}

.section_hero p {
	font-size: 1.25rem;
	color: #7F7F7F;
	font-weight: 500;
	margin-bottom: 40px;
}


@media (min-width: 1200px) {

	/* Only apply on large screens */
	.section_hero {
		min-height: 70vh;
	}
}


.section_hero h1 {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

@media (min-width: 576px) {
	.section_hero h1 {
		font-size: 2.75rem;
		margin-bottom: 0.875rem;
	}
}


/* --- IDLE BREATHING ANIMATION --- */
@keyframes breathingStack {
	0% {
		transform: rotateY(-20deg) rotateX(12deg) rotateZ(2deg) translateY(0px);
	}

	50% {
		transform: rotateY(-18deg) rotateX(13.5deg) rotateZ(2.5deg) translateY(-8px);
	}

	100% {
		transform: rotateY(-20deg) rotateX(12deg) rotateZ(2deg) translateY(0px);
	}
}

.stack-scene {
	perspective: 1200px;
	width: 100%;
	max-width: 400px;
	aspect-ratio: 1.414 / 1;
	margin: 0 auto;
	cursor: pointer;
	user-select: none;
	-webkit-user-select: none;
}

.stack-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	transform-style: preserve-3d;
	/* Initial transform matches start of keyframes */
	transform: rotateY(-20deg) rotateX(12deg) rotateZ(2deg);
	animation: breathingStack 6s ease-in-out infinite;
	transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Stop breathing when user interacts with mouse */
.stack-scene:hover .stack-wrapper {
	animation-play-state: paused;
}

.stack-shadow {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 8px;
	background: transparent;
	box-shadow: 15px 25px 40px rgba(61, 87, 105, 0.15);
	transform: translateZ(-15px);
	transition: box-shadow 0.6s ease, transform 0.2s ease-out;
	z-index: 0;
}

.stack-layer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 8px;
	background-color: #fff;
	border: 1px solid #e2e8f0;
	box-shadow: -4px 6px 15px rgba(61, 87, 105, 0.08);
	overflow: hidden;
	will-change: transform, opacity;
	transform-origin: center right;
}

.stack-layer img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	pointer-events: none;
}

.glare {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 60%);
	opacity: 0;
	z-index: 3;
	pointer-events: none;
	mix-blend-mode: overlay;
	transition: opacity 0.5s ease;
}

.stack-scene:hover .glare {
	opacity: 0.6;
}

@media (max-width: 991.98px) {
	.hero-section {
		padding: 6rem 0 4rem;
		text-align: center;
	}

	.hero-title {
		font-size: 2.25rem;
		line-height: 1.2;
	}

	.hero-subtitle {
		padding: 0 1rem;
	}

	.btn-group-custom {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 0.75rem;
	}

	.btn-build,
	.btn-sample {
		width: 100%;
		max-width: 280px;
	}

	.stack-scene {
		margin-top: 4rem;
		width: 85%;
		max-width: 320px;
	}

	/* Simpler float for mobile */
	.stack-wrapper {
		animation: none !important;
		transform: rotateY(-5deg) rotateX(5deg) scale(1) !important;
	}

	.no-wrap {
		white-space: normal;
	}
}


.section_evidence {}


.box_evidence {
	text-align: center;
	padding: 30px 20px;
	background: #FFFFFF;
	box-shadow: 0px 0px 30px rgba(51, 60, 77, 0.0784314);
	border-radius: 8px;
	border-bottom: 6px solid transparent;
	background: linear-gradient(white, white) padding-box, linear-gradient(to right, #6385C3, #40CBCE) border-box;
	border-left: 1px solid #e0e0e0;
	border-right: 1px solid #e0e0e0;
	border-top: 1px solid #e0e0e0;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
	will-change: transform;
}

.box_evidence:hover {
	transform: translateY(-6px) scale(1.025);
	box-shadow: 0px 18px 44px rgba(51, 60, 77, 0.18);
}

.box_evidence h4 {
	font-size: 1.125rem;
}

.box_evidence p {
	font-size: 1rem;
	margin: 0;
}


.section_pricing {
	background-color: #EEFCFB;
}

.section_pricing .btn {
	width: 100%;
}

.box_pricing {
	padding: 20px 20px;
	background-color: #ffffff;
	border: 1px solid rgba(0, 0, 0, .12);
	border-radius: 8px;
	height: auto;
	opacity: 0.9;
	transition: all .2s ease-out;
	user-select: none;
	box-shadow: none;
	width: 100%;
	 transition: all 0.3s ease;
}

.box_pricing:hover {
	opacity: 1;
	transform: scale(1.04);
	box-shadow: 0px 2px 6px 2px rgba(0, 0, 0, 0.12), 0px 1px 2px rgba(0, 0, 0, 0.12);
	 transition: all 0.3s ease;
}

.box_pricing p {
	font-size: 0.875rem;
	margin-bottom: 0px;
}


.box_pricing p strong {
	font-size: 1rem;
}

.box_pricing img {
	margin-right: 20px;
	height: 48px;
	width: 48px;
}


@media (min-width: 1200px) {
	.box_pricing {
		height: 140px;
	}
}


.box_pricing_large {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	padding: 32px 28px;
	background: #FFFFFF;
	box-shadow: 0px 2px 6px 2px rgba(0, 0, 0, 0.15), 0px 1px 2px rgba(0, 0, 0, 0.3);
	border-radius: 24px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box_pricing_large:hover {
	transform: translateY(-4px) scale(1.025);
	box-shadow: 0px 12px 32px 4px rgba(0, 0, 0, 0.16), 0px 6px 12px rgba(0, 0, 0, 0.2);
}


.box_pricing_large p a {
	color: #3D5769;
	font-size: 0.875rem;
}

.box_pricing_large span br {
	display: none;
}

.box_pricing_large .badge-light {
	background-color: #e9f8f7;
	padding: 4px 8px;
	color: #647786;
	margin-right: 6px;
	font-weight: 500;
}

.text_price {
	color: #4d4d4d;
	font-size: 2.125rem;
	font-weight: 700;
}

.text_price span {
	font-size: 1.25rem;
	color: #7f7f7f;

	margin-left: 4px;
}

.box_pricing_large_green {
	border: 2px solid #7ad6d9;
}


.section_testimonial {
	background-color: #fff;
}


.carousel-indicators.testimonials-indicators {
  position: static;
  margin-top: 1rem;
}


.testimonials-indicators li {
  background-color: #E0E0E0;
  opacity: 1;
	
	
	width: 34px;
  height: 6px;
  margin: 0 4px;
  border: 0;
  border-radius: 4px;
  opacity: 1;
  transition: width 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
	
}

.testimonials-indicators li.active {
  background-color: #62A793 !important;
}


.section_testimonial .fa {
  color: #FFD966;
}



.section_testimonial h3 {
	font-weight: 500;
	color: #3B685B;
	font-size: 20px;
	margin-bottom: 20px;
}

.section_testimonial h4 {
	font-weight: 700;
	color: #3B685B;
	font-size: 18px;
	margin-bottom: 16px;
}


@media (min-width: 1200px) {

	.section_testimonial h3 {
		font-size: 26px;
	}

	.section_testimonial h4 {
		font-size: 18px;
	}

}

.section_testimonial .carousel .carousel-inner {
  padding: 0.5rem;
}

.section_testimonial .carousel .carousel-item {
	height: auto;
	background-color: #f3f8f7;
	border-radius: 20px;
	padding: 44px;
	border-bottom: 4px solid #62A793;
box-shadow: 0px 2px 6px 2px rgba(0, 0, 0, 0.15), 0px 1px 2px rgba(0, 0, 0, 0.3);
	background-image: url('images/icon_speech_left.svg'), url('images/icon_speech_right.svg');
	background-position: left 25px top 25px, right 25px bottom 25px;
	background-repeat: no-repeat, no-repeat;


}

@media (min-width: 1200px) {

	/* Only apply on large screens */
	.section_testimonial .carousel .carousel-item {
		height: 360px;
	}
}


.section_cta {
	background: radial-gradient(40.03% 143.92% at 50% 50%, #4A6B82 0%, #3D5769 100%);
}

.section_cta h2,
.section_cta p {
	color: #fff;
}

.section_cta h2 {
	font-size: 2rem;
	font-weight: 700;
}

.section_cta p {
	font-size: 1.25rem;
	font-weight: 600;
}


.section_accordion h2 {
	border-left: 6px solid #3EDBCF;
	padding-left: 15px;
	color: #3D5769;
	font-size: 1.75rem;
}

.section_accordion h6 {
	font-weight: 700;
	font-size: 1rem;
}

.section_accordion p {
	font-weight: 500;
	font-size: 1rem;
}

.fa_accordion {
	color: #4D4D4D;
}


.section_trusted {
	padding: 40px 0px 20px 0px;
}


.section_trusted {
	background-color: #fff;
}


.section_pricing .card_right {
	color: #fff;
	background-color: #51627C;
	padding-top: 10px;
}


.section_pricing .card_left {
	border-color: #7AD6D9;
	border-width: 2px;
	padding-top: 10px;
}

.section_push {
	height: 55px;
	padding: 0px;

}


.section_text_and_image h2 {
	font-size: 1.5rem
}

@media (min-width: 576px) {
	.section_text_and_image h2 {
		font-size: 1.875rem;
	}
}


@media (min-width: 576px) {
	.section_push {
		height: 75px;
	}
}


/* Lists */

.box_pricing_large ul {
	list-style: none;
	padding-left: 2rem;
	font-size: 0.8rem;
}

.box_pricing_large ul {
	font-size: 0.9rem;
	font-weight: 500;
}

.box_pricing_large ul li::before {
	width: 2em;
	margin-left: -2em;

}

.box_pricing_large ul li::before {
	content: url(images/icon_arrow_right.svg);
	display: inline-block;
	width: 2em;
	margin-left: -2em;
	padding-top: 3px;
	position: relative;
	top: 6px;
}

box_pricing_large li {
	margin-bottom: 0px;
}


ul.list_block {
	list-style-type: none;
	padding-left: 0px;
}

ul.list_block li {
	background-color: #f5f5f5;
	margin-bottom: 3px;
	padding: 8px 8px;
}

ul.list_block li:before {
	margin: 0px;
	content: unset;
}

ul.list_footer_logos {
	list-style-type: none;
	padding-left: 0px;
}

ul.list_footer_logos li {
	display: inline-block !important;
}

/* Buttons */

/* --- CUSTOM BUTTON OVERRIDES --- */

.btn-primary,
.btn-secondary {
	font-weight: 700;
	text-transform: capitalize;
	padding: 14px 30px;
	border-radius: 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	line-height: 1.2;
	text-decoration: none;
	transition:
		transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
		box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
		background-color 0.3s ease,
		border-color 0.3s ease,
		color 0.3s ease;
	will-change: transform;
	letter-spacing: 0.5px;
}

/* Primary */

.btn-primary {
	background-color: #3e4b5b !important;
	border-color: #3e4b5b !important;
	color: #ffffff !important;
	box-shadow: 0 4px 10px rgba(62, 75, 91, 0.18);
}

.btn-primary:hover {
	background-color: #2c3e50 !important;
	border-color: #2c3e50 !important;
	color: #ffffff !important;
	text-decoration: none;
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 12px 28px rgba(62, 75, 91, 0.28);
}

.btn-primary:focus,
.btn-primary.focus {
	outline: none !important;
	box-shadow:
		0 0 0 4px rgba(62, 75, 91, 0.28),
		0 10px 24px rgba(62, 75, 91, 0.24) !important;
	transform: translateY(-2px);
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active {
	background-color: #1a252f !important;
	border-color: #1a252f !important;
	box-shadow: inset 0 3px 7px rgba(0, 0, 0, 0.28) !important;
	transform: translateY(1px) scale(0.98);
	transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.btn-primary:disabled,
.btn-primary.disabled {
	background-color: rgba(62, 75, 91, 0.55) !important;
	border-color: rgba(62, 75, 91, 0.15) !important;
	color: rgba(255, 255, 255, 0.55) !important;
	cursor: not-allowed;
	box-shadow: none !important;
	transform: none !important;
	opacity: 1;
}

/* Secondary */

.btn-secondary {
	background-color: #ffffff !important;
	border: 1px solid #3e4b5b !important;
	color: #3e4b5b !important;
	box-shadow: 0 4px 10px rgba(62, 75, 91, 0.12);
}

.btn-secondary:hover {
	background-color: #f7f8f9 !important;
	border-color: #3e4b5b !important;
	color: #3e4b5b !important;
	text-decoration: none;
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 12px 28px rgba(62, 75, 91, 0.18);
}

.btn-secondary:focus,
.btn-secondary.focus {
	outline: none !important;
	box-shadow:
		0 0 0 4px rgba(62, 75, 91, 0.18),
		0 10px 24px rgba(62, 75, 91, 0.14) !important;
	transform: translateY(-2px);
}

.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled).active {
	background-color: #eef1f4 !important;
	border-color: #3e4b5b !important;
	color: #3e4b5b !important;
	box-shadow: inset 0 3px 7px rgba(0, 0, 0, 0.12) !important;
	transform: translateY(1px) scale(0.98);
	transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.btn-secondary:disabled,
.btn-secondary.disabled {
	background-color: #d1d5db !important;
	border-color: #9ca3af !important;
	color: #6b7280 !important;
	cursor: not-allowed;
	box-shadow: none !important;
	transform: none !important;
	opacity: 1;
}


a.btn-success {
	background-color: #7AD6D9;
	border: none;
	font-size: 1rem;
	color: #3D5769;
	font-weight: 600;
	padding: 12px 18px;
	letter-spacing: 1px;
	border-bottom: 0px !important;
}

a.btn-success:hover,
a.btn-success:focus,
a.btn-success:active {
	background-color: #3D5769;
	border-color: #3D5769;
	color: #fff;
}


.btn_full_width {
	width: 100%;
}


/* Header */

header {
	background-color: #fff;
	position: fixed;
	width: 100%;
	height: 55px;
	z-index: 999;
	padding: 10px 0px;
	height: auto;
}

@media (min-width: 576px) {
	header {
		padding: 15px 0px;
		
	}
}


/* Modal */

.modal {
	z-index: 9999;
}

/* Footer */

footer {
	background-color: #fff;
	padding: 40px 0px;
}

footer p {
	color: #4D4D4D;
	font-size: 0.8rem;
	line-height: 110%;
}

footer .text_terms {
	font-size: 0.7rem;
}


footer h5 a,
.landing_footer h5 a:hover {
	color: #4D4D4D;
	font-weight: 600;
	font-size: 0.85rem;
}

footer hr {
	height: 1px;
}


/* Backgrounds */

.background_grey {
	background-color: #F9F9F9;
}


/* Accordion */

/* Container and Card Cleanup */
.accordion .card {
    border: none;
    margin-bottom: 0;
    border-radius: 0;
    overflow: hidden;
	    border-bottom: 1px solid rgba(0, 0, 0, .12) !important;
}

/* The Header Button */
.accordion .card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    padding: 16px 20px;
    width: 100%;
    text-decoration: none !important; /* Remove Bootstrap button underline */
       border-bottom: 1px solid rgba(0, 0, 0, .12);
    opacity: 0.82;
    transition: all 0.3s ease;
	
}

.accordion .card-header:hover {
    opacity: 1;
    background-color: #DEF5F7;
}

/* Typography */
.accordion h6 {
    margin: 0;
    color: #333;
    font-weight: 600;
}

/* Icon Animation Logic */
.accordion .fa_accordion {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
    color: #555;
}

/* When the button does NOT have .collapsed (meaning it IS open), 
   rotate the plus icon 45 degrees to look like an 'X' or 135 for a stylized close.
   If you prefer a chevron, use rotate(180deg).
*/
.accordion .card-header:not(.collapsed) .fa_accordion {
    transform: rotate(45deg);
    color: #7ad6d9; 
}

/* Optional: Subtle background change for the header when open */
.accordion .card-header:not(.collapsed) {
     background-color: #DEF5F7;
    opacity: 1;
}

/* Body Styling */
.accordion .card-body {
    background: #EFFAFB;
    padding: 20px;
    color: #444;
}


.landing_box_accordion {
	padding: 0px 20px;

}

@media (min-width: 990px) {
	.landing_box_accordion {
		padding: 0 200px;
	}
}


/* Boxes */

.box_price {
	width: 150px;
	float: right
}

.box_icon {
	padding: 10px 0px;
	border-bottom: 2px solid #eee;

}

.box_icon_left {
	width: 54px;
	margin-right: 15px;
}


.box_centred_then_left {
	text-align: center;
}

@media (min-width: 770px) {
	.box_centred_then_left {
		text-align: left
	}
}


/* Text */

.text_weight_regular {
	font-weight: 400;
}

.text_large::first-line {
	font-variant: unset;
}

.text_bold {
	font-weight: 700;
}

.text_blue,
.text_blue a,
a.text_blue {
	color: #3D5769 !important;
}

.text_black {
	color: rgba(0, 0, 0, 0.8);
}

.text_green {
	color: #265928;
}

.text_underline {
	text-decoration: underline;
}

.text_block_mobile {
	display: block;
	clear: both;
}

@media (min-width: 576px) {
	.text_block_mobile {
		display: unset;
		clear: unset;
	}
}


.text_uppercase {
	text-transform: uppercase;
}

.text_tiny {
	font-size: 0.875rem !important;
}


/* Images */

.image_edge_right img {
	border-top-left-radius: 15px;
	border-bottom-left-radius: 15px;
}

.image_edge_left img {
	border-top-right-radius: 15px;
	border-bottom-right-radius: 15px;
}


@media (min-width: 1200px) {

	/* Only apply on large screens */
	.image_edge_right {
		position: relative;
		right: calc((100vw - 1140px) / -2);
		/* 1140px is the max-width of .container in Bootstrap 4.5 */

	}
}

@media (min-width: 1200px) {
	.image_edge_left {
		position: relative;
		left: calc((100vw - 1140px) / -2);
		/* Push out to the left */
	}
}


.section_text_and_image {
	position: relative;
	display: flex;
	align-items: center;
	/* vertically center the text block */
	min-height: auto;
	/* ensure enough height for the image */
}


.image_right_edge {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);

}

.image_left_edge {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);

}

.image_large_left {
	max-width: 500px;
	/* adjust for your design */
	height: auto;
	border-top-right-radius: 15px;
	border-bottom-right-radius: 15px;
}

.image_large_right {
	max-width: 500px;
	/* adjust for your design */
	height: auto;
	border-top-left-radius: 15px;
	border-bottom-left-radius: 15px;
}

@media (min-width: 1500px) {
	.display_xl {
		display: block !important;
	}

	.section_text_and_image {

		min-height: 600px;
	}
}