/* Hero Section */
.hero {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 80vh;
	text-align: center;
	animation: fadeIn 2.5s ease-in-out;
	/* background-color: #fdfdfd; */
}


.hero h1 {
	font-size: 6rem;
	max-width: 90%;
	color: var(--bs-body-color);
	font-weight: 300;
}

/* Keyframes */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Scroll Reveal */
.scroll-reveal>* {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.revealed>* {
	opacity: 1;
	transform: translateY(0);
}

/* Layout & Typography */
.section {
	padding: 4rem 2rem;
	max-width: 1100px;
	margin: auto;
}

#title {
	font-size: 4vw;
}

.hero {
	position: relative;
	height: 100vh;
	width: 100%;
	overflow: hidden;
}

.hero-video {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	object-fit: cover;
	z-index: 0;
}

.hero-gradient-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	height: 30vh;
	width: 100%;
	z-index: 1;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #f8c5c5 100%);
	pointer-events: none;
}

.hero-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	width: 100%;
	padding: 0 1rem;
}

.hero-fade {
	font-size: 4rem;
	font-weight: 300;
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 2s ease-in-out, transform 2s ease-in-out;
	color: rgba(255, 255, 255, 0.8);
	cursor: pointer;
}

.hero.revealed .hero-fade {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 768px) {
	.hero-fade {
		font-size: 2rem;
	}
}

.group-fade-section {
	/* background: var(--bs-linear-gradient); */
	background: linear-gradient(to bottom, #f8c5c5 0%, #ffffff 100%);
}

.img-fluid {
	width: 10vw;
	max-width: 100%;
	height: 10vw;
}

/* [data-bs-theme=light].img-fluid .img-fluid2 #logo {
	filter: invert(0);
} */

/* [data-bs-theme=dark] .img-fluid .img-fluid2 #logo {
	filter: invert(1);
} */

.img-fluid2 {
	/* width: 30vw; */
	max-width: 100%;
}



.swiper {
	width: 1000px;
	height: 150px;
}

.testimonial-swiper {
	height: 300px;
	overflow: hidden;
	overflow-x: hidden;
}

.brand-swiper {
    overflow-x: hidden;
    max-width: 100%;
}

.brand-swiper .swiper-wrapper {
    display: flex;
    align-items: center;
}

.brand-swiper .swiper-slide {
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-wrapper {
	padding: 50px 0;
}

.swiper-slide {
	/* padding: 10px 10px; */
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: 60px;
}


.swiper-slide img {
	height: 70px;
	width: auto;
	max-width: 300px;
	object-fit: cover;
	margin: 0 auto;
}

.swiper-slide p {
	margin: 0 auto;
}

.section h2 {
	font-size: 3vw;
	/* border-bottom: 4px solid black; */
	padding-bottom: 0.5rem;
	margin-bottom: 2rem;
}

/* .section p {
	font-size: 2.5vw;
	line-height: 1.8;
	margin-bottom: 1.2rem;
} */

.boxed {
	border: 2px solid black;
	border-radius: 20px;
	padding: 1.8rem 2rem;
	max-width: 650px;
	text-align: right;
	margin: 2rem 0 auto auto;
	font-size: 3rem;
}

/* Two-Column Content */
.two-col {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
}

.left-col,
.right-col {
	flex: 1 1 45%;
}

img .bodyicon {
	/* width: 220px; */
	height: auto;
	display: block;
	margin: auto;
}

.italic {
	font-style: italic;
	text-align: center;
	color: #444;
	margin: 1.5rem 0;
	font-size: 1.2rem;
}

/* Responsive Fixes */
@media (max-width: 768px) {
	.hero h1 {
		font-size: 3rem;
	}

	.section h2 {
		font-size: 2rem;
	}

	.section p,
	.boxed {
		font-size: 1.1rem;
		text-align: left;
	}

	.two-col {
		flex-direction: column;
	}


	.benefits-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		gap: 2rem;
		margin-top: 2rem;
	}

	.benefits-grid p {
		font-size: 1.1rem;
		line-height: 1.6;
		margin-bottom: 0.5rem;
	}

	.benefits-grid .italic {
		font-style: italic;
		font-weight: 500;
		color: #444;
	}

	.brands-logos {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 2rem;
		margin-top: 3rem;
	}

	.brands-logos img {
		max-width: 300px;
		width: 100%;
		height: auto;
		filter: grayscale(0%);
		transition: transform 0.4s ease, opacity 0.4s ease;
	}

	.brands-logos img:hover {
		transform: scale(1.05);
		opacity: 0.9;
	}
}

.join-form {
	max-width: 700px;
	margin: 2rem auto;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}


.box input.form-control2 {
	height: 20%;
	width: 100%;
	font-size: 1rem;
	padding: 0.75rem;
}

.form-control2 {
	line-height: 5rem;
}


.form-row {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	padding: 0 4px;
	column-count: 2;
}

.input {
	border: 2px solid black;
	padding: 1rem;
	font-style: italic;
	font-size: 1rem;
	flex: 1;
	min-width: 100px;
	box-sizing: border-box;

}

.input.large {
	flex: 2;
	height: 100px;
}

/* Colors from image */
.red {
	background-color: #f26666;
	border-bottom-right-radius: 20px;
	border-top-left-radius: 20px;
}

.orange {
	background-color: #f28d66;
	border-bottom-left-radius: 20px;
	border-top-right-radius: 20px;
}

.orange2 {
	background-color: #eca34f;
	border-top-right-radius: 20px;
	height: 100%;
}

.yellow {
	background-color: #f3e96b;
	border-top-left-radius: 20px;
}

.green {
	background-color: #b2f266;
	border-bottom-right-radius: 20px;
}

.teal {
	background-color: #66f2da;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	border-top-right-radius: 20px;

}

.blue {
	background-color: #66dff2;
	border-top-right-radius: 20px;
	border-top-left-radius: 20px;
}

.document-item input[type="file"] {
	border: none;
	background-color: #66dff2;
	color: var(--bs-body-bg);
	padding: 0.4rem 0.6rem;
	/* border-radius: 12px; */
	font-size: 0.95rem;
	cursor: pointer;
}

.document-item input[type="file"]::file-selector-button {
	background-color: var(--bs-body-bg);
}

input.real-file-input {
	display: none;
}

/* File Upload Styling */
.file-upload {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-right: 20px;
	position: relative;
	cursor: pointer;
}

.file-upload input[type="file"] {
	opacity: 0;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
}

.file-upload input[type="file"]::file-selector-button {
	background-color: var(--bs-body-color);
}

.file-upload .plus {
	font-size: 1.5rem;
	margin-left: auto;
}

/* Submit Button */
.submit-button {
	margin-top: 1rem;
	background-color: #f6ebeb;
	border: 2px solid black;
	padding: 0.7rem 2rem;
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
	font-size: 1.5rem;
	cursor: pointer;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.5rem 2rem;
	margin-top: 2rem;
}

.benefits-grid div {
	text-align: left;
}

.benefits-grid p {
	margin: 0.4rem 0;
	font-size: 1.1rem;
	line-height: 1.6;
}

.benefits-grid .italic {
	font-style: italic;
	font-weight: 500;
	color: #444;
}

/* Responsive for mobile */
@media (max-width: 992px) {
	.benefits-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 576px) {
	.benefits-grid {
		grid-template-columns: 1fr;
	}
}

h2 {
	text-align: center;
}

.boxed {
	background-color: #f1efef;
	border: 2px solid #ccc;
	border-radius: 16px;
	padding: 2rem;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.back-to-top-animated {
	width: 170px;
	height: 56px;
	overflow: hidden;
	/* Already here – this is good */
	border: none;
	color: #ffffff;
	background: none;
	position: relative;
	padding-bottom: 2em;
	cursor: pointer;
	display: inline-block;
	/* Add this */
}


.back-to-top-animated>.text,
.back-to-top-animated>.clone,
.back-to-top-animated>svg {
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
}

.back-to-top-animated:before {
	content: "";
	position: absolute;
	height: 2px;
	bottom: 0;
	left: 0;
	width: 100%;
	transform: scaleX(0);
	transform-origin: bottom right;
	background: currentColor;
	transition: transform 0.25s ease-out;
}

.back-to-top-animated:hover:before {
	transform: scaleX(1);
	transform-origin: bottom left;
}

.back-to-top-animated .clone>*,
.back-to-top-animated .text>* {
	opacity: 1;
	font-size: 1.3rem;
	transition: 0.2s;
	margin-left: 4px;
}

.back-to-top-animated .clone>* {
	transform: translateY(60px);
	opacity: 0;
}

.back-to-top-animated:hover .clone>* {
	opacity: 1;
	transform: translateY(0px);
	transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.back-to-top-animated:hover .text>* {
	opacity: 1;
	transform: translateY(-60px);
	transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.back-to-top-animated:hover .clone> :nth-child(1) {
	transition-delay: 0.15s;
}

.back-to-top-animated:hover .clone> :nth-child(2) {
	transition-delay: 0.2s;
}

.back-to-top-animated:hover .clone> :nth-child(3) {
	transition-delay: 0.25s;
}

.back-to-top-animated:hover .clone> :nth-child(4) {
	transition-delay: 0.3s;
}

.back-to-top-animated svg {
	width: 20px;
	right: 0;
	top: 50%;
	transform: translateY(-50%) rotate(-50deg);
	transition: 0.2s ease-out;
	position: absolute;
}

.back-to-top-animated:hover svg {
	transform: translateY(-50%) rotate(-90deg);
}

/* .form-button-container {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	gap: 2rem;
	flex-wrap: wrap;
} */


.footer-modern {
	background: linear-gradient(to bottom, #0d1b1e, #111111e1);
	color: #fff;
	font-family: 'Segoe UI', sans-serif;
	padding-top: 6rem;
	padding-bottom: 5rem;
	position: relative;
	overflow: hidden;
	/* Make sure SVG doesn't push outside */
	z-index: 0;
	min-height: 300px;
	/* Ensures it stands tall */
}

.footer-modern .footer-bg-svg {
	position: absolute;
	bottom: 0;
	/* anchors it at the bottom */
	left: 0;
	width: 100%;
	height: auto;
	z-index: 0;
	opacity: 0.2;
	pointer-events: none;
}

.footer-modern .container {
	position: relative;
	z-index: 2;
	/* sits above the background SVG */
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 2rem;
}

.footer-links {
	flex: 1 1 200px;
	min-width: 180px;
}

.footer-links h5 a,
.footer-links a {
	color: #fff;
	text-decoration: none;
	font-size: 100%;
}

.footer-links a:hover {
	text-decoration: underline;
}

/* .footer-button-container {
	align-self: flex-start;
	margin-left: auto;
	z-index: 2;
} */

@media (min-width: 768px) {
	.testimonial-swiper {
		display: flex;
		justify-content: center;
	}

	.testimonial-swiper .swiper-wrapper {
		max-width: 900px;
	}

	.brand-swiper {
		max-width: 1000px;
		margin-left: auto;
		margin-right: auto;
	}
}

/* Optional: Make sure footer content stacks well on small screens */
@media (max-width: 768px) {
	.footer-modern .container {
		/* flex-direction: column; */
		align-items: stretch;
		gap: 1.5rem;
		font-size: 2vw;
		justify-content: space-between;
	}

	.footer-links {
		flex: 1 1 auto;
		min-width: 0;
		/* width: 100%; */
	}

	.footer-button-container {
		align-self: center;
		margin-top: 2rem;
	}
}

.footer-modern .footer-bg-svg {
	bottom: auto;
	top: 0;
	transform: rotate(180deg);
}

@media (min-width: 480px) {
	.w- {
		width: 900px;
	}
}