:root {
	--primary: #0d6e7f;
	--secondary: #6b3fa0;
	--gold: #d59b2d;
	--success: #43a047;
	--dark: #15324b;
	--light: #f8fbfd;
	--white: #ffffff;
	--text: #555;
	--heading: #19324f;
	--border: #e8eef3;
	--shadow: 0 10px 35px rgba(0,0,0,.08);
	--radius: 18px;
	--transition: .35s;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Poppins',sans-serif;
	color: var(--text);
	background: #fff;
	overflow-x: hidden;
}

.heart-bar {
  width: 100%;
  max-width: 500px;
}

.pulse-line {
  fill: none;
  stroke: #5f3882;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  
  /* Creates a clean, single-point sweep effect */
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  
  animation: sweep 2s linear infinite;
}

@keyframes sweep {
  to {
    stroke-dashoffset: 0;
  }
}


.top-bar {
	background: linear-gradient(90deg,#0a5665,#0d6e7f);
	color: #fff;
	font-size: 14px;
	padding: 6px 0;
}

.top-contact {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
}

.top-contact li {
	display: flex;
	align-items: center;
	gap: 8px;
}

.top-contact i {
	color: #fff;
}

.ndis-top {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.ndis-top img {
	height: 28px;
}

.navbar {
	background: #fff;
	box-shadow: 0 2px 15px rgba(0,0,0,.06);
	transition: .3s;
}

.navbar-brand img {
	// height: 72px;
}

.navbar-nav {
	gap: 10px;
}

.nav-link {
	color: #24364d;
	font-weight: 500;
	padding: 6px 3px !important;
	transition: .3s;
	margin: 0 10px;
}

.nav-link:hover {
	color: var(--primary);
	// background: #eef8fa;
}

.nav-link.active {
	color: #284b77 !important;
	border-bottom: 3px solid #d49a56;
}

.dropdown-menu {
	border: none;
	border-radius: 15px;
	box-shadow: var(--shadow);
	padding: 15px;
}

.dropdown-item {
	border-radius: 8px;
	padding: 10px 15px;
}

.dropdown-item:hover {
	background: #eef8fa;
}

.hero-section {
	position: relative;
	overflow: hidden;
	background: radial-gradient(circle at top right,#f1fbff 0,#ffffff 60%);
}

.hero-subtitle {
	display: inline-block;
	padding: 10px 20px;
	border-radius: 40px;
	background: #eef8fa;
	color: var(--primary);
	font-weight: 600;
	margin-bottom: 25px;
}

.hero-section h1 {
	font-size: 66px;
	line-height: 0.9;
	margin-bottom: 25px;
}

.hero-section h1 span {
	color: var(--gold);
}

.hero-section p {
	font-size: 18px;
	max-width: 560px;
	margin-bottom: 35px;
}

.hero-bar {
	position: absolute;
	background-color: #ffffff;
	margin-top: -80px;
	margin-left: 130px;
	width: 500px;
	height: 60px;
	border-radius: 50px;
	padding: 5px 25px;
	box-shadow: 0px 5px 5px #999999;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.hero-bar-item {
	display: flex;
	gap: 10px;
	line-height: normal;
	font-size: 12px;
	align-items: center;
}

.hero-uline {
	background-color: #c47b24;
	height: 4px;
	width: 60px;
}
