:root {
	--bs-font-sans-serif: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	--bs-primary: #292A3A;
	--bs-primary-rgb: 41, 42, 58;
	--bs-secondary: #333549;
	--bs-secondary-rgb: 51, 53, 73;
	--bs-tertiary: #3F4257;
	--bs-tertiary-rgb: 63, 66, 87;
	--bs-white: #ffffff;
	--bs-gray: #3F4257;
	--bs-dark: #212529;
	--bs-border-color: #dee2e6;
	--bs-border-radius: 0.5rem;
	--bs-body-font-family: var(--bs-font-sans-serif);
	--bs-body-font-size: 1rem;
	--bs-body-font-weight: 400;
	--bs-body-line-height: 1.5;
	--bs-body-color: #212529;
	--bs-body-bg: #fff;
}

html {
	height: 100%;
	scroll-padding-top: calc(4.5rem - 1px);
}

.bg-card {
	background: rgba(63, 66, 87, 0.6);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: #FFFFFF;
	padding: 2rem 0.5rem;
	border-radius: 12px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.bg-card:hover {
	background: rgba(63, 66, 87, 0.9);
	transform: translateY(-10px) scale(1.05);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	border-color: rgba(255, 255, 255, 0.2);
}

.bg-card i {
	font-size: 2rem;
	color: #FFFFFF;
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

.bg-card:hover i {
	transform: rotate(360deg) scale(1.1);
	filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.6));
}

.bg-card .icon-name {
	opacity: 0;
	color: #FFFFFF;
	font-size: 1.2rem;
	position: absolute;
	bottom: 10px;
	transition: opacity 0.3s ease;
	font-weight: 500;
	letter-spacing: 0.5px;
}

.bg-card:hover .icon-name {
	opacity: 1;
}

.page-section {
	padding: 2rem 0;
}

.page-section .page-section-heading {
	font-size: 2.25rem;
	line-height: 2rem;
	color: var(--bs-primary);
}

@media (min-width: 992px) {
	.page-section .page-section-heading {
		font-size: 3rem;
		line-height: 2.5rem;
	}
}

.divider-custom {
	margin: 1.25rem 0 1.5rem;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.divider-custom .divider-custom-line {
	width: 100%;
	max-width: 7rem;
	height: 0.25rem;
	background-color: #FFFFFF;
	border-radius: 1rem;
	border-color: #FFFFFF;
}

.divider-custom .divider-custom-line:first-child {
	margin-right: 1rem;
}

.divider-custom .divider-custom-line:last-child {
	margin-left: 1rem;
}

.divider-custom .divider-custom-icon {
	color: #FFFFFF;
	font-size: 2rem;
}

.btn-social {
	border-radius: 100%;
	display: inline-flex;
	width: 3.25rem;
	height: 3.25rem;
	font-size: 1.25rem;
	justify-content: center;
	align-items: center;
}

.masthead {
	padding-top: 3rem;
	padding-bottom: 3rem;
	background-color: var(--bs-primary);
	color: var(--bs-white);
}

.masthead .masthead-heading {
	font-size: 2.75rem;
	line-height: 2.75rem;
}

.masthead .masthead-subheading {
	font-size: 1.25rem;
}

.masthead .masthead-avatar {
	width: 20rem;
}

@media (min-width: 992px) {
	.masthead {
		padding-top: 4rem;
		padding-bottom: 4rem;
	}

	.masthead .masthead-heading {
		font-size: 4rem;
		line-height: 3.5rem;
	}

	.masthead .masthead-subheading {
		font-size: 1.5rem;
	}
}

/* ===== Smooth Scroll Behavior ===== */
html {
	scroll-behavior: smooth;
}

/* ===== CTA Buttons ===== */
.btn-primary-custom {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border: none;
	padding: 12px 35px;
	border-radius: 50px;
	color: white;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
	text-decoration: none;
	display: inline-block;
	margin: 0.5rem;
}

.btn-primary-custom:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
	color: white;
	text-decoration: none;
}

.btn-outline-custom {
	background: transparent;
	border: 2px solid rgba(255, 255, 255, 0.8);
	padding: 12px 35px;
	border-radius: 50px;
	color: white;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	text-decoration: none;
	display: inline-block;
	margin: 0.5rem;
}

.btn-outline-custom:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: white;
	transform: translateY(-3px);
	color: white;
	text-decoration: none;
	box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* ===== Hero CTA Container ===== */
.hero-cta {
	margin-top: 2rem;
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* ===== Enhanced Social Buttons ===== */
.btn-social {
	border-radius: 100%;
	display: inline-flex;
	width: 3.25rem;
	height: 3.25rem;
	font-size: 1.25rem;
	justify-content: center;
	align-items: center;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-social:hover {
	transform: translateY(-5px) scale(1.1);
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.6);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* ===== Wave Divider ===== */
.wave-divider {
	position: relative;
	height: 100px;
	overflow: hidden;
}

.wave-divider svg {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 100px;
}

/* ===== Section Enhancements ===== */
.page-section {
	padding: 4rem 0;
	position: relative;
}

/* ===== Typography Improvements ===== */
.masthead-heading {
	font-weight: 700;
	letter-spacing: -0.5px;
}

.masthead-subheading {
	font-weight: 400;
	letter-spacing: 0.5px;
	line-height: 1.8;
}

.page-section-heading {
	font-weight: 700;
	letter-spacing: -1px;
}

/* ===== Improved Avatar Hover ===== */
.masthead-avatar {
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.masthead-avatar:hover {
	transform: translateY(-8px) scale(1.02);
	filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
}

/* ===== Link Hover Effects ===== */
a {
	transition: all 0.3s ease;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 768px) {

	.btn-primary-custom,
	.btn-outline-custom {
		padding: 10px 25px;
		font-size: 0.9rem;
	}

	.hero-cta {
		flex-direction: column;
		align-items: center;
	}

	.wave-divider {
		height: 50px;
	}

	.wave-divider svg {
		height: 50px;
	}
}