@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url(https://db.onlinewebfonts.com/c/e956a479fdb7957b5e54aa49291bbc94?family=Zapf+Humanist+601+W03+Ul);


:root {
	--primary-color: #2cace4;
	--secondary-color: #1c9bd2;
	--accent-color: #06b6d4;
	--dark-color: #1e293b;
	--light-color: #f8fafc;
	--gradient-primary: linear-gradient(135deg, #2cace4 0%, #1c9bd2 100%);
	--gradient-secondary: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
	--gradient-accent: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
}

* {
	scroll-behavior: smooth;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	/* font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI',  Arial, sans-serif; */
	overflow-x: hidden;
	background-color: #000000;
}

.hero-section {
	position: relative;
	height: 100vh;
	background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
		url('./Images/hero-banner.jpg');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	display: flex;
	align-items: center;
	justify-content: start;
}

.vision-section-1 {
	position: relative;
	height: 100vh;
	background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
		url('./Images/vision-section-1.jpg');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	display: flex;
	align-items: center;
	justify-content: start;
}

.vision-section-2 {
	position: relative;
	height: 100vh;
	background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
		url('./Images/vision-section-2.jpg');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	display: flex;
	align-items: center;
	justify-content: start;
}

.aboutus-section {
	position: relative;
	background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
		url('./Images/aboutus-section.png');
	background-size: contain;
	background-position: right;
	background-attachment: fixed;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: start;
	padding: 2rem;
}

.our-inventurs-section {
	position: relative;
	background: linear-gradient(to right, rgba(5, 36, 23, 80%), #052417b3), url(./Images/our-inventurs-bg.png);
	background-size: 100%;
	background-position: center;
	background-attachment: fixed;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: start;
	padding: 4rem 2rem;

}

/* Navbar Styles */
.navbar-custom {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	padding: 1.5rem 2rem;
	z-index: 1000;
}

.navbar-toggler-custom {
	background: transparent;
	backdrop-filter: blur(10px);
	border: 1.5px solid white;
	border-radius: 50px;
	padding: 0.75rem 1.25rem;
	color: white;
	transition: all 0.3s ease;
}

.navbar-collapse {
	background: #000000;
	border-radius: 10px;
	margin-top: 10px;
}

.navbar-collapse ul {
	padding: 10px 20px 20px;
}

.navbar-collapse ul li {
	padding: 10px 0px;
	border-bottom: 1px solid #fff;
	margin-bottom: 1px;
}

.navbar-collapse ul li .nav-link,
.navbar-collapse ul li .nav-link.active {
	padding: 0;
	color: #fff;
	font-family: "Poppins", sans-serif;
	font-weight: 300;
}

.navbar-toggler-custom:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-2px);
}

.navbar-toggler-custom:focus {
	box-shadow: none;
}

.navbar-brand img {
	height: 50px;
	filter: brightness(0) invert(1);
}

.btn-contact {
	background: linear-gradient(135deg, #00b4d8, #0096c7);
	color: white;
	border: none;
	padding: 0.75rem 2rem;
	border-radius: 50px;
	font-weight: 600;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.btn-contact:hover {
	background: linear-gradient(135deg, #0096c7, #0077b6);
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(0, 180, 216, 0.4);
	color: white;
}

.btn-search {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	transition: all 0.3s ease;
}

.btn-search:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: rotate(90deg);
	color: white;
}

/* section-01 */
/* Hero Content */

.hero-content {
	text-align: start;
	color: white;
	z-index: 1;
	padding: 2rem;
}

.hero-title {
	font-size: clamp(3rem, 8vw, 6rem);
	font-family: "Zapf Humanist 601 W03 Demi";
	font-weight: lighter;
	line-height: 1;
	margin-bottom: 0rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Scroll Indicator */
.scroll-indicator {
	position: absolute;
	bottom: 10px;
	left: 47%;
	transform: translateX(-50%);
	text-align: center;
	color: white;
	animation: bounce 2s infinite;
}

.scroll-indicator i {
	display: block;
	/* background: transparent url('./Images/scrolldown.png') no-repeat;
    padding: 5px;
    background-size: 100%;
    background-position: center;
    width: 60px;
    height: 50px; */
}

/* .scroll-indicator i::before {
	content: none;
} */

.scroll-indicator span {
	font-size: 0.875rem;
	letter-spacing: 2px;
}

@keyframes bounce {

	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateX(-50%) translateY(0);
	}

	40% {
		transform: translateX(-50%) translateY(-10px);
	}

	60% {
		transform: translateX(-50%) translateY(-5px);
	}
}

/* Responsive */
@media (max-width: 768px) {
	.hero-title {
		font-size: clamp(2rem, 8vw, 4rem);
	}

	.navbar-custom {
		padding: 1rem;
	}

	.btn-contact {
		padding: 0.6rem 1.5rem;
		font-size: 0.875rem;
	}
}

input[type=search] {
	-webkit-appearance: textfield;
	-webkit-box-sizing: content-box;
	font-family: inherit;
	font-size: 100%;
}

input::-webkit-search-decoration,
input::-webkit-search-cancel-button {
	display: none;
}

input[type=search].main-search {
	background: transparent url('./Images/search.png') no-repeat;
	border: solid 2px #ffffff;
	padding: 5px 28px 10px 15px;
	width: 55px;
	background-size: 50px;
	background-position: center right;

	-webkit-border-radius: 10em;
	-moz-border-radius: 10em;
	border-radius: 10em;

	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	transition: all .5s;
}

#siteSearch input[type=search] {
	width: 15px;
	padding-left: 5px;
	color: #fff;
	cursor: pointer;
	outline-offset: 1px;
}

#siteSearch input[type=search]:hover {
	background-color: transparent;
}

#siteSearch input[type=search]:focus {
	width: 90%;
	padding-right: 32px;
	padding-left: 15px;
	color: #ffffff;
	background-color: transparent;
	cursor: auto;
}

#siteSearch input:-moz-placeholder {
	color: transparent;
}

#siteSearch input::-webkit-input-placeholder {
	color: transparent;
}

/* section-01 */
/* section-02 */

.vision-parallax-section {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	overflow: hidden;
	transition: opacity 0.6s ease;
	padding: 2rem;
}

.parallax-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 120%;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	z-index: 0;
}

.parallax-bg::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0);
}

/* #section2 .parallax-bg {
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="1920" height="1080"><rect fill="%23333" width="1920" height="1080"/><text x="960" y="540" font-size="48" fill="%23666" text-anchor="middle">Modern Luxury Home</text></svg>');
        }

        #section3 .parallax-bg {
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="1920" height="1080"><rect fill="%23444" width="1920" height="1080"/><text x="960" y="540" font-size="48" fill="%23777" text-anchor="middle">Luxury Celebration</text></svg>');
        } */

/* .content-wrapper {
	position: relative;
	z-index: 2;
	max-width: 1400px;
	width: 100%;
	padding: 40px;
} */

.vision-title {
	font-size: 5rem;
	font-family: "Zapf Humanist 601 W03 Demi";
	font-weight: lighter;
	line-height: 1;
	color: white;
	margin-bottom: 25px;
	text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.vision-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	color: white;
}

.vision-text {
	font-size: 14px;
	line-height: 20px;
	text-align: justify;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
	font-family: "Poppins", sans-serif;
	font-weight: 300;
}

.read-more-btn {
	position: absolute;
	bottom: 80px;
	right: 80px;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: linear-gradient(135deg, #00b4d8, #0096c7);
	color: white;
	border: none;
	font-size: 18px;
	font-weight: 600;
	font-family: "Poppins", sans-serif;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 8px 20px rgba(0, 114, 255, 0.4);
	z-index: 3;
}

.read-more-btn:hover {
	transform: scale(1.1);
	box-shadow: 0 12px 30px rgba(0, 114, 255, 0.6);
}

/* .scroll-indicator {
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	color: white;
	z-index: 3;
	animation: bounce 2s infinite;
} */

@keyframes bounce {

	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateX(-50%) translateY(0);
	}

	40% {
		transform: translateX(-50%) translateY(-10px);
	}

	60% {
		transform: translateX(-50%) translateY(-5px);
	}
}

/* section-02 */
/* section-03 */

.scroll-indicator svg {
	width: 30px;
	height: 30px;
	margin-top: 10px;
}

.back-btn {
	background: linear-gradient(135deg, #00b4d8, #0096c7);
	color: white;
	border: none;
	padding: 8px 40px;
	font-size: 18px;
	font-weight: 300;
	font-family: "Poppins", sans-serif;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 8px 20px rgba(0, 114, 255, 0.4);
	display: inline-flex;
	align-items: center;
	gap: 15px;
	position: relative;
}

.back-btn:hover {
	transform: translateX(-5px);
	box-shadow: 0 12px 30px rgba(0, 114, 255, 0.6);
}

/* .back-btn::before {
	content: '◀';
	font-size: 1.5rem;
}  */

.detail-content {
	padding: 60px 0px;
	margin: 0 auto;
}

.detail-title {
	font-size: 4rem;
	font-family: "Zapf Humanist 601 W03 Demi";
	font-weight: lighter;
	line-height: 1;
	margin-bottom: 0rem;
	color: #333;
	margin-bottom: 50px;
}

.detail-text {
	color: #444;
	column-count: 2;
	column-gap: 60px;
	font-size: 14px;
	line-height: 20px;
	text-align: justify;
	font-family: "Poppins", sans-serif;
	font-weight: 400;
}

.hidden {
	display: none;
}

@media (max-width: 768px) {
	.hero-title {
		font-size: 3rem;
	}

	.hero-content {
		grid-template-columns: 1fr;
	}

	.detail-text {
		column-count: 1;
	}

	.read-more-btn {
		width: 120px;
		height: 120px;
		font-size: 1.1rem;
		bottom: 40px;
		right: 40px;
	}

	.detail-title {
		font-size: 2.5rem;
	}
}

/* section-03 */
/* section-04 */

.about-title {
	font-size: clamp(2rem, 8vw, 5rem);
	font-family: "Zapf Humanist 601 W03 Demi";
	font-weight: lighter;
	margin-bottom: 60px;
	color: #ffffff;
}

@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.intro-text {
	font-size: 14px;
	line-height: 20px;
	text-align: justify;
	font-family: "Poppins", sans-serif;
	margin-bottom: 30px;
	color: #ffffff;
	font-weight: 300;
	animation: fadeInUp 1s ease 0.3s forwards;
}

.portfolio-section {
	margin-top: 40px;
}

.portfolio-item {
	background: rgba(255, 255, 255, 0.03);
	border-left: 3px solid #009cca;
	padding: 25px;
	margin-bottom: 30px;
	border-radius: 10px;
	backdrop-filter: blur(5px);
	transition: all 0.4s ease;
	opacity: 0;
	transform: translateX(-50px);
}

.portfolio-item:nth-child(1) {
	animation: slideInLeft 0.8s ease 0.5s forwards;
}

.portfolio-item:nth-child(2) {
	animation: slideInLeft 0.8s ease 0.7s forwards;
}

.portfolio-item:nth-child(3) {
	animation: slideInLeft 0.8s ease 0.9s forwards;
}

.portfolio-item:nth-child(4) {
	animation: slideInLeft 0.8s ease 1.1s forwards;
}

.portfolio-item:nth-child(5) {
	animation: slideInLeft 0.8s ease 1.3s forwards;
}

.portfolio-item:nth-child(6) {
	animation: slideInLeft 0.8s ease 1.5s forwards;
}

.portfolio-item:nth-child(7) {
	animation: slideInLeft 0.8s ease 1.7s forwards;
}

.portfolio-item:nth-child(8) {
	animation: slideInLeft 0.8s ease 1.9s forwards;
}

@keyframes slideInLeft {
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.portfolio-item:hover {
	background: rgba(255, 255, 255, 0.08);
	transform: translateX(10px);
	border-left-width: 5px;
}

.portfolio-item h3 {
	color: #009cca;
	font-size: 16px;
	line-height: 20px;
	font-family: "Poppins", sans-serif;
	margin-bottom: 15px;
	font-weight: 500;
}

.portfolio-item p {
	color: #ffffff;
	font-family: "Poppins", sans-serif;
	font-weight: 300;
	line-height: 1.7;
	font-size: 13px;
	margin: 0;
}

.closing-statement {
	margin-top: 40px;
	margin-bottom: 40px;
	/* padding: 30px;
	background: linear-gradient(135deg, rgba(110, 116, 201, 0.1) 0%, rgba(110, 134, 201, 0.05) 100%);
	border-radius: 15px;
	border: 1px solid rgba(110, 127, 201, 0.2);
	text-align: center;
	font-size: 1.15rem;
	line-height: 1.8;*/
	opacity: 0;
	animation: fadeInUp 1s ease 2.1s forwards;
}

.closing-statement p {
	color: #ffffff;
	font-family: "Poppins", sans-serif;
	font-weight: 300;
	line-height: 1.7;
	font-size: 14px;
	margin: 0;
}


/* section-05 */

.location-section .carousel-item {
	height: 100vh;
	position: relative;
}

.location-section .slide-content {
	height: 100%;
	display: flex;
	align-items: center;
	padding: 0 5%;
	position: relative;
	overflow: hidden;
}

.location-section .slide-1 {
	background: #000;
}

.location-section .slide-2 {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	color: #000;
}

.location-section .slide-3 {
	background: #000;
}

.location-section .text-content {
	flex: 1;
	z-index: 2;
	padding-right: 3rem;
}

.location-section .text-content h1 {
	font-size: 80px;
	font-family: "Zapf Humanist 601 W03 Demi";
	font-weight: lighter;
	margin-bottom: 2rem;
	line-height: 0.9;
}

.location-section .text-content h2 {
	font-size: 35px;
	font-weight: 400;
	margin-bottom: 1rem;
	font-family: "Poppins", sans-serif;
}

.location-section .text-content h3 {
	font-size: 18px;
	margin-bottom: 2.5rem;
	opacity: 0.8;
	font-family: "Poppins", sans-serif;
	font-weight: 300;
}

.location-section .text-content p {
	font-size: 15px;
	line-height: 1.3;
	font-weight: 200;
	max-width: 600px;
	font-family: "Poppins", sans-serif;
}

.location-section .image-content {
	flex: 1;
	position: relative;
	/* height: 80vh; */
	height: 550px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.location-section .map-outline {
	position: absolute;
	right: 8%;
	top: 22%;
	opacity: 1;
	width: 500px;
	height: 450px;
	z-index: 1;
	background-image: url(./Images/image-content-bg.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
}

.location-section .map-outline path {
	stroke: currentColor;
	stroke-width: 1;
	fill: none;
}

.location-section .image-group {
	position: relative;
	width: 100%;
	height: 100%;
}

.location-section .property-image {
	position: absolute;
	border-radius: 20px;
	object-fit: cover;
	box-shadow: 7px 8px 25px 2px rgba(0, 0, 0, 0.4);
}

.location-section .property-image.main {
	width: 280px;
	height: 420px;
	top: 0%;
	left: 20%;
	z-index: 3;
}

.location-section .property-image.secondary {
	width: 210px;
	height: 210px;
	bottom: 0%;
	right: 21%;
	z-index: 4;
}

.location-section .logo {
	position: absolute;
	top: 4rem;
	right: 8%;
	width: 100px;
	z-index: 10;
}

.location-section .carousel-control-prev,
.location-section .carousel-control-next {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.9);
	top: auto;
	bottom: 5%;
	opacity: 1;
}

.location-section .carousel-control-prev {
	left: 5%;
}

.location-section .carousel-control-next {
	left: calc(5% + 70px);
	right: auto;
}

.location-section .carousel-control-prev-icon,
.location-section .carousel-control-next-icon {
	filter: invert(1);
	width: 30px;
	height: 30px;
}

.location-section .slide-2 .carousel-control-prev,
.location-section .slide-2 .carousel-control-next {
	background: rgba(0, 0, 0, 0.8);
}

.location-section .slide-2 .carousel-control-prev-icon,
.location-section .slide-2 .carousel-control-next-icon {
	filter: invert(0);
}

.location-section .scroll-indicator {
	position: absolute;
	bottom: 2rem;
	left: 47%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	opacity: 0.6;
	z-index: 5;
}

.location-section .scroll-indicator svg {
	width: 30px;
	height: 30px;
	animation: bounce 2s infinite;
}

.location-section .scroll-indicator span {
	font-size: 0.8rem;
	margin-top: 0.5rem;
}

@keyframes bounce {

	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}

	40% {
		transform: translateY(-10px);
	}

	60% {
		transform: translateY(-5px);
	}
}

@media (max-width: 992px) {
	.location-section .slide-content {
		flex-direction: column;
		padding: 3rem 2rem;
	}

	.location-section .text-content {
		padding-right: 0;
		text-align: center;
		margin-bottom: 2rem;
	}

	.location-section .text-content h1 {
		font-size: 3rem;
	}

	.location-section .text-content h2 {
		font-size: 2rem;
	}

	.location-section .image-content {
		height: 50vh;
	}

	.location-section .property-image.main {
		width: 350px;
		height: 250px;
	}

	.location-section .property-image.secondary {
		width: 280px;
		height: 200px;
	}

	.location-section .map-outline {
		display: none;
	}

	.scroll-indicator {
		left: 0;
		right: 0;
	}
}

@media (max-width: 576px) {
	.location-section .text-content h1 {
		font-size: 2rem;
	}

	.location-section .text-content h2 {
		font-size: 1.5rem;
	}

	.location-section .property-image.main {
		width: 170px;
		height: 300px;
	}

	.location-section .property-image.secondary {
		width: 170px;
		height: 180px;
	}

	.location-section .carousel-control-prev,
	.location-section .carousel-control-next {
		width: 60px;
		height: 60px;
	}

	.location-section .logo {
		top: 1rem;
		right: 4%;
		width: 50px;
	}

	.vision-title {
		font-size: 3rem;
	}

	.vision-content {
		grid-template-columns: auto;
	}

	.our-inventurs-content .col {
		flex: auto;
		max-width: 50%;
		padding: 10px;
	}
}

/* section-05 */
/* section-06 */

.our-inventurs-content a img {
	transition: transform .2s;
}

.our-inventurs-content a:hover img {
	transform: scale(1.2);
}

.our-inventurs-title {
	font-size: clamp(2rem, 8vw, 2.5rem);
	font-family: "Zapf Humanist 601 W03 Demi";
	font-weight: lighter;
	line-height: 1;
	color: #ffffff;
	margin-bottom: 0rem;
	letter-spacing: 0.05em;
	animation: fadeInUp 1s ease-out;
}

/* section-06 */
/* section-07 */
.partner-section {
	min-height: 100vh;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

#section7 {
	background: linear-gradient(to bottom, #f5f5f5 0%, #f5f5f5 70%, #000000 70%, #000000 100%);
	transition: transform 0.8s ease-in-out;
}

#section7.slide-up {
	transform: translateY(-100vh);
}

#section8 {
	background: #000000;
	position: fixed;
	top: 100vh;
	left: 0;
	right: 0;
	transition: top 0.8s ease-in-out;
	z-index: 10;
}

#section8.active {
	top: 0;
}


.partner-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	justify-items: center;
}

.partner-image {
	position: relative;
	height: 600px;
	width: 400px;
	background: url('./Images/partner-bg.jpg');
	background-size: cover;
	background-position: center;
	border-radius: 0px;
	overflow: hidden;
}

.partner-image::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.partner-content h1 {
	font-size: 45px;
	font-family: "Zapf Humanist 601 W03 Demi";
	font-weight: lighter;
	line-height: 1;
	margin-bottom: 30px;
}

.partner-content h1 .brand {
	color: #00a8e8;
	font-weight: 400;
}

.partner-content .description {
	color: #00a8e8;
	font-size: 14px;
	line-height: 1.2;
	margin-bottom: 30px;
	font-family: "Poppins", sans-serif;
}

.partner-content .details {
	color: #333;
	font-size: 14px;
	line-height: 1.2;
	font-family: "Poppins", sans-serif;
	margin-bottom: 40px;
}

.partner-btn {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: linear-gradient(135deg, #00b4d8, #0096c7);
	color: white;
	border: none;
	padding: 0px;
	font-size: 16px;
	line-height: 1.2;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 500;
	font-family: "Poppins", sans-serif;
	box-shadow: 0 8px 20px rgba(0, 114, 255, 0.4);
}

.partner-btn:hover {
	box-shadow: 0 12px 30px rgba(0, 114, 255, 0.6);
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(0, 168, 232, 0.3);
}


.scroll-indicator svg {
	opacity: 0.6;
}

/* Form Section */
.form-container {
	max-width: 600px;
	width: 100%;
}

.form-container h2 {
	color: white;
	font-size: 45px;
	font-family: "Zapf Humanist 601 W03 Demi";
	font-weight: lighter;
	margin-bottom: 60px;
}

.form-group {
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 20px;
}

.form-group label {
	color: white;
	font-size: 15px;
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	min-width: 120px;
	text-align: left;
}

.form-group input,
.form-group select {
	flex: 1;
	padding: 6px 10px;
	border: none;
	border-radius: 4px;
	background: white;
	font-size: 14px;
	font-family: "Poppins", sans-serif;
}

.file-input-wrapper {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 10px;
}

.file-input-wrapper input[type="text"] {
	flex: 1;
}

.upload-btn {
	background: white;
	color: #333 !important;
	border: 1px solid #ccc;
	padding: 6px 30px;
	border-radius: 4px;
	cursor: pointer;
	white-space: nowrap;
}

.form-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 40px;
}

.submit-btn,
.cancel-btn {
	padding: 6px 45px;
	font-size: 1.1rem;
	border-radius: 25px;
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	cursor: pointer;
	border: 2px solid white;
	transition: all 0.3s ease;
}

.submit-btn {
	background: white;
	color: #0a0f1a;
}

.submit-btn:hover {
	background: #f0f0f0;
}

.cancel-btn {
	background: transparent;
	color: white;
}

.cancel-btn:hover {
	background: rgba(255, 255, 255, 0.1);
}

.footer-text {
	position: absolute;
	bottom: 30px;
	left: 0;
	right: 0;
	text-align: center;
	color: white;
	font-size: 1.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	gap: 20px;
}

.footer-text::before,
.footer-text::after {
	content: '';
	height: 2px;
	background: white;
	flex: 1;
	max-width: 300px;
}

@media (max-width: 992px) {
	.partner-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.partner-content h1 {
		font-size: 2.5rem;
		text-align: center;
	}

	.partner-image {
		height: 450px;
		width: 80%;
		margin-top: 40px;
	}

	#section7 {
		background: linear-gradient(to bottom, #f5f5f5 0%, #f5f5f5 70%, #ffffff 70%, #3b3b3b 100%);
	}
}

/* section-07 */
/* section-09 */
.mission-vison-section h1 {
	font-size: clamp(2rem, 8vw, 4rem);
	font-family: "Zapf Humanist 601 W03 Demi";
	font-weight: lighter;
	margin-bottom: 60px;
	color: #ffffff;
}

.mission-vison-section p {
	font-size: 14px;
	line-height: 20px;
	text-align: justify;
	font-family: "Poppins", sans-serif;
	margin-bottom: 0px;
	color: #ffffff;
	font-weight: 300;
	animation: fadeInUp 1s ease 0.3s forwards;
}

.mission-vison-section h1 .brand {
	color: #00a8e8;
}

.blue {
	color: #00a8e8 !important;
}

/* section-09 */
/* section-12 */
.leaders-section {
	padding: 2rem;
}

.leadership-title {
	color: white;
	font-size: 4rem;
	font-family: "Zapf Humanist 601 W03 Demi";
	font-weight: lighter;
	text-align: right;
	margin-bottom: 30px;
	letter-spacing: 2px;
}

.leaders-section .carousel {
	max-width: 1400px;
	margin: 0 auto;
}

.leaders-section .carousel-inner {
	border-radius: 20px;
	overflow: hidden;
}

.leaders-section .carousel-item {
	background: linear-gradient(135deg, #4a4a4a 0%, #2d2d2d 100%);
	min-height: 600px;
	padding: 50px;
}

.quote-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: left;
	height: 70vh;
}

.quote-content {
	max-width: 900px;
}

.quote-text {
	font-size: 4.5rem;
	line-height: 1.3;
	margin-bottom: 30px;
	font-weight: 700;
}

.quote-text .highlight {
	color: #4fc3f7;
}

.quote-author {
	font-size: 1.8rem;
	color: white;
	font-weight: 300;
}

.leader-slide {
	display: flex;
	align-items: center;
	gap: 50px;
}

.leader-image-container {
	flex-shrink: 0;
}

.leader-image {
	width: 320px;
	height: 450px;
	object-fit: cover;
	border-radius: 15px;
	/* background: #e0e0e0; */
}

.leader-name {
	font-size: 18px;
	line-height: 20px;
	text-align: justify;
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	color: white;
	margin-top: 20px;
	margin-bottom: 5px;
}

.leader-title {
	color: #ffffff;
	font-size: 13px;
	line-height: 20px;
	text-align: justify;
	font-family: "Poppins", sans-serif;
	font-weight: 200;
}

.leader-content {
	flex: 1;
	color: white;
}

.leader-content p {
	font-size: 12px;
	line-height: 20px;
	text-align: justify;
	font-family: "Poppins", sans-serif;
	margin-bottom: 15px;
	font-weight: 200;
}

.leader-quote {
	font-style: italic;
	font-size: 1.1rem;
	margin-top: 30px;
}

.leaders-section .carousel-control-prev,
.leaders-section .carousel-control-next {
	width: 80px;
}

.leaders-section .carousel-control-prev-icon,
.leaders-section .carousel-control-next-icon {
	width: 50px;
	height: 50px;
	background-color: rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	padding: 10px;
	background-size: 50%;
}

.leaders-section .carousel-indicators button {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	margin: 0 5px;
}

@media (max-width: 992px) {
	.leader-slide {
		flex-direction: column;
		text-align: center;
	}

	.leader-content p {
		text-align: left;
	}

	.quote-text {
		font-size: 2.5rem;
	}

	.leadership-title {
		font-size: 2rem;
		text-align: center;
	}
}

@media (max-width: 576px) {
	.leaders-section .carousel-item {
		padding: 30px 20px;
	}

	.quote-text {
		font-size: 1.8rem;
	}

	.leader-image {
		width: 250px;
		height: 350px;
	}
}

/* section-12 */

footer {
	background: linear-gradient(135deg, #000000 0%, #000000 100%);
	color: #fff;
	padding: 60px 0 0px;
	margin-top: auto;
}

.footer-title {
	color: white;
	font-size: 4rem;
	font-family: "Zapf Humanist 601 W03 Demi";
	font-weight: lighter;
	margin-bottom: 40px;
	letter-spacing: 1px;
}

.contact-card {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 15px;
	padding: 20px;
	margin-bottom: 0px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
}

.contact-card:hover {
	background: rgba(255, 255, 255, 0.08);
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-card h5 {
	color: #00a8e8;
	margin-bottom: 15px;
	font-size: 16px;
	font-family: "Poppins", sans-serif;
	font-weight: 500;
}

.contact-card p {
	margin-bottom: 8px;
	line-height: 1.6;
	font-size: 12px;
	font-family: "Poppins", sans-serif;
	font-weight: 400;
}

.contact-card strong {
	color: #fff;
	font-weight: 600;
}

.contact-card a {
	color: #00a8e8;
	text-decoration: none;
	transition: color 0.3s ease;
}

.contact-card a:hover {
	color: #0499d4;
}

.map-container {
	/* background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 15px; */
	padding: 20px;

	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.map-placeholder {
	width: 100%;
	height: 300px;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px dashed rgba(255, 255, 255, 0.2);
}

.map-placeholder i {
	font-size: 4rem;
	color: rgba(255, 255, 255, 0.3);
}

.footer-bottom {
	margin-top: 40px;
	padding-top: 14px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
	color: rgba(255, 255, 255, 0.6);
	font-weight: 200;
	font-size: 13px;
}

@media (max-width: 768px) {
	.footer-title {
		font-size: 2rem;
	}

	.contact-card {
		margin-bottom: 0px;
	}
}