:root {
  --purple: #7B2D8B;
  --purple-dark: #5a1e67;
  --purple-light: #9b3dab;
  --green: #6DB33F;
  --green-dark: #4e8a2a;
  --green-light: #8fd160;
  --white: #ffffff;
  --gray-50: #f9f9fb;
  --gray-100: #f2f2f7;
  --gray-200: #e5e5ea;
  --gray-600: #636366;
  --gray-800: #1c1c1e;
  --text: #2d2d2d;
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(123, 45, 139, 0.10);
  --shadow-lg: 0 8px 40px rgba(123, 45, 139, 0.18);
  --transition: 0.3s ease;
}

@font-face {
  font-family: 'Hongkong';
  src: url('../Fonts/Fontspring-DEMO-hongkong-medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Hongkong';
  src: url('../Fonts/Fontspring-DEMO-hongkong-bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center {
  text-align: center;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-lg {
  padding: 15px 36px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-primary {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
}

.btn-primary:hover {
  background: var(--purple-dark);
  border-color: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123, 45, 139, 0.35);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: var(--purple);
}

.btn-white {
  background: #fff;
  color: var(--purple);
  border-color: #fff;
}

.btn-white:hover {
  background: var(--purple-light);
  color: #fff;
  border-color: var(--purple-light);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-outline-white:hover {
  background: #fff;
  color: var(--purple);
}

/* SECTION LABELS */
.section-label {
  display: inline-block;
  background: linear-gradient(135deg, #7B2D8B22, #6DB33F22);
  color: var(--purple);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid #7B2D8B33;
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.section-subtitle {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 0.5rem;
}

.highlight {
  color: var(--green);
}

/* TOP BAR EXACT */
.topbar-exact {
  background: #f8f0fa;
  color: var(--purple-dark);
  padding: 10px 0;
  font-size: 0.9rem;
  font-weight: 500;
}

.topbar-exact-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
  width: 100%;
}

.topbar-exact-left {
  display: flex;
  gap: 30px;
}

.topbar-exact-left a,
.topbar-exact-right a {
  color: var(--purple-dark);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-exact-left a:hover {
  color: #000;
}

.topbar-exact-left a i {
  color: var(--purple-dark);
  font-size: 1.1rem;
}

.topbar-exact-right {
  display: flex;
  gap: 10px;
}

.topbar-exact-right a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--purple-dark);
  color: #fff;
  justify-content: center;
}

.topbar-exact-right a:hover {
  background: #3b4998;
}


/* HEADER EXACT */
.header-exact {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.header-exact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  height: 90px;
  box-sizing: border-box;
}

.logo-exact img {
  height: 70px;
  width: auto;
}

.nav-exact {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

.nav-exact-list {
  display: flex;
  align-items: center;
  gap: 35px;
  margin: 0;
}

.nav-exact-list>li {
  padding: 25px 0;
}

.mobile-home-link {
  display: none;
}

.nav-exact-link {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--purple-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.nav-exact-link:hover,
.nav-exact-link.active {
  color: var(--green);
}

.nav-exact-link i {
  font-size: 16px;
}

.has-dropdown-exact {
  position: static !important;
}

.has-dropdown-exact .fa-chevron-down {
  font-size: 12px;
  color: var(--green);
}

.hamburger-exact {
  display: flex;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--purple-dark);
  cursor: pointer;
  padding: 5px;
}

/* MEGA MENU EXACT */
.mega-menu-exact {
  display: none;
  position: absolute;
  top: 90px;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  padding: 40px 10%;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  border-top: 3px solid var(--green);
  box-sizing: border-box;
  z-index: 1001;
}

.has-dropdown-exact:hover .mega-menu-exact {
  display: grid;
}

.mega-col-exact h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--purple-dark);
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #ddd;
}

.mega-col-exact ul li {
  margin-bottom: 15px;
}

.mega-col-exact ul li a {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #4a4a4a;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: var(--transition);
  font-weight: 400;
}

.mega-col-exact ul li a i {
  color: var(--green);
  font-size: 14px;
  margin-top: 3px;
}

.mega-col-exact ul li a:hover {
  color: var(--green);
}

.mega-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* HERO EXACT */
.hero-exact {
  position: relative;
  background-color: transparent;
  background-image: linear-gradient(90deg, #e6f4da 0%, #FFFFFF 100%);
  padding: 6rem 0 0 0;
  overflow: hidden;
}

.hero-exact-inner {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 2rem;
  align-items: end;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 50px;
}

.hero-exact-content {
  padding-bottom: 6rem;
}

.hero-exact-content h1 {
  font-family: "Hongkong", Sans-serif;
  font-size: 4.1rem;
  font-weight: 700;
  color: var(--e-global-color-secondary, var(--purple-dark));
  line-height: 1.3em;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}

.hero-exact-badges {
  display: flex;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.badge-care,
.badge-support {
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  padding: 6px 16px;
  border-radius: 6px;
  text-transform: uppercase;
}

.badge-care {
  background: var(--green);
}

.badge-support {
  background: #212b5e;
}

.inline-hero-img {
  display: inline-block;
  height: 65px;
  width: 130px;
  border-radius: 40px;
  object-fit: cover;
  vertical-align: middle;
  margin-left: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-exact-buttons {
  display: flex;
  gap: 1.5rem;
}

.hero-exact-buttons .btn-primary {
  background-color: var(--e-global-color-primary, var(--green));
  border-color: var(--e-global-color-primary, var(--green));
  border-radius: 5px;
  padding: 17px 30px;
}

.hero-exact-buttons .btn-outline-color {
  background: transparent;
  color: var(--e-global-color-primary, var(--green));
  border: 2px solid var(--e-global-color-primary, var(--green));
  border-radius: 5px;
  padding: 17px 30px;
}

.hero-exact-buttons .btn-outline-color:hover {
  background-color: var(--e-global-color-primary, var(--green));
  color: #fff;
}

.hero-exact-image-col {
  position: relative;
  display: flex;
}

.hero-exact-img-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: flex-end;
}

.main-hero-img {
  width: 100%;
  max-height: 650px;
  object-fit: contain;
  border-radius: 20px 20px 0 0;
  z-index: 2;
  position: relative;
  display: block;
}

.hero-exact-mission-card {
  position: absolute;
  bottom: 40px;
  left: -40px;
  background: #fff;
  padding: 2rem 2.5rem;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  width: 400px;
  z-index: 3;
  border-left: 8px solid var(--green);
}

.hero-exact-mission-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--purple-dark);
  margin-bottom: 0.75rem;
}

.hero-exact-mission-card p {
  font-size: 1rem;
  color: #4a4a4a;
  line-height: 1.6;
}

.hero-square {
  position: absolute;
  border: 4px solid rgba(109, 179, 63, 0.3);
  border-radius: 8px;
}

.hero-square-1 {
  width: 60px;
  height: 60px;
  top: -20px;
  right: 20px;
  z-index: 1;
}

.hero-square-2 {
  width: 80px;
  height: 80px;
  bottom: 100px;
  right: -30px;
  z-index: 1;
}

.hero-square-3 {
  width: 40px;
  height: 40px;
  bottom: -10px;
  left: 40%;
  z-index: 1;
  background: rgba(109, 179, 63, 0.1);
  border: none;
}

/* WHAT IS NDIS EXACT */
.ndis-exact-section {
  padding: 5rem 0;
  background: #fff;
}

.ndis-exact-inner {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 24px;
}

.ndis-exact-card {
  background: var(--purple);
  border-radius: 20px;
  padding: 2rem 3rem;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.ndis-exact-card h2 {
  color: var(--e-global-color-9c8e432, #fff);
  font-family: "Hongkong", Sans-serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 1px;
  word-spacing: 5px;
  margin-bottom: 1rem;
}

.ndis-exact-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #fff;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.ndis-exact-cta {
  margin-bottom: 0 !important;
  margin-top: 1rem;
}

.ndis-exact-cta a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.ndis-exact-cta a:hover {
  color: var(--green);
}

/* ABOUT EXACT */
.about-exact {
  padding: 6rem 0;
  background: #fff;
}

.about-exact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 50px;
}

.about-exact-content {
  padding-right: 2rem;
}

.about-exact-content h2 {
  font-family: 'Hongkong', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.about-intro {
  border-left: 4px solid var(--purple);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

.about-intro p {
  font-size: 1.05rem;
  color: #4a4a4a;
  font-weight: 500;
  line-height: 1.7;
  margin: 0;
}

.about-exact-content>p {
  font-size: 0.95rem;
  color: #4a4a4a;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-read-more {
  border-radius: 5px;
  padding: 15px 30px;
  background: var(--green);
  border: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
}

.about-read-more:hover {
  background: var(--green-dark);
  color: #fff;
}

.about-exact-image-wrapper {
  position: relative;
  display: flex;
  align-items: flex-end;
}

.main-about-img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  border-radius: 120px 0 0 120px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-quote-card {
  position: absolute;
  bottom: 0;
  left: -50px;
  background: linear-gradient(135deg, rgba(109, 179, 63, 0.9), rgba(78, 138, 42, 0.9));
  color: #fff;
  padding: 2.5rem 3rem;
  border-radius: 20px 20px 0 20px;
  width: 480px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.quote-icon {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1rem;
  text-align: center;
}

.about-quote-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

/* SERVICES EXACT */
.services-exact {
  padding: 6rem 0;
  background: #f9f9fb;
}

.services-exact-inner {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 50px;
}

.services-exact-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid #c2c2c2;
  padding-bottom: 1.5rem;
  margin-bottom: 3rem;
}

.services-header-left h2 {
  font-family: 'Hongkong', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 1rem;
}

.services-header-left p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--purple);
  margin: 0;
}

.btn-services {
  background: var(--green);
  border-radius: 5px;
  padding: 12px 25px;
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: var(--transition);
}

.btn-services:hover {
  background: var(--green-dark);
  color: #fff;
}

.services-exact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-exact-card {
  border-radius: 0px 20px 20px 20px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-exact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-card-top {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

.service-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.service-card-top h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0;
}

.service-card-bottom {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-bottom p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.service-exact-card .service-link {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

/* Specific Card Colors */
.card-yellow {
  background: #f8f0fa;
}

.card-yellow .service-icon,
.card-yellow h3 {
  color: var(--purple);
}

.card-yellow .service-card-bottom p,
.card-yellow .service-link {
  color: var(--purple);
}

.card-yellow .service-card-top {
  border-color: rgba(123, 45, 139, 0.2);
}

.card-white {
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card-white .service-icon,
.card-white h3 {
  color: var(--purple);
}

.card-white .service-card-bottom p {
  color: #4a4a4a;
}

.card-white .service-link {
  color: var(--green);
}

.card-white .service-card-top {
  border-color: rgba(0, 0, 0, 0.1);
}

.card-dark {
  background: var(--purple);
}

.card-dark .service-icon,
.card-dark h3 {
  color: #fff;
}

.card-dark .service-card-bottom p,
.card-dark .service-link {
  color: #fff;
}

.card-dark .service-card-top {
  border-color: rgba(255, 255, 255, 0.2);
}

.card-blue {
  background: var(--green);
}

.card-blue .service-icon,
.card-blue h3 {
  color: #fff;
}

.card-blue .service-card-bottom p,
.card-blue .service-link {
  color: #fff;
}

.card-blue .service-card-top {
  border-color: rgba(255, 255, 255, 0.2);
}

/* CTA Card */
.card-cta {
  padding: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.service-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(240, 240, 240, 0.85);
  z-index: 1;
}

.service-cta-content {
  position: relative;
  z-index: 2;
  padding: 3rem;
}

.service-cta-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 2rem;
  line-height: 1.4;
}


/* PARALLAX EXACT */
.parallax-exact {
  position: relative;
  padding: 10rem 0;
  background-image: url('../images/senior-man-on-the-wheelchair-in-the-garden-of-prof-8KXBWBB-2.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), 50% 100%, 0 calc(100% - 30px));
  padding-bottom: calc(10rem + 30px);
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
}

.parallax-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.parallax-content h2 {
  font-family: 'Hongkong', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1.4;
  -webkit-text-stroke: 1.5px #fff;
  text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.2);
  margin: 0;
  letter-spacing: 1px;
}

/* VALUES & MISSION EXACT */
.values-mv-exact {
  padding: 6rem 0;
  background: #fff;
}

.values-mv-exact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 50px;
  align-items: center;
}

/* Values List */
.values-exact-list h2 {
  font-family: 'Hongkong', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 2rem;
}

.values-exact-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.values-exact-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid #eaeaea;
}

.values-exact-list li:last-child {
  border-bottom: none;
}

.values-exact-list i {
  color: var(--green);
  font-size: 1.25rem;
  margin-top: 4px;
}

.values-exact-list p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  color: #4a4a4a;
  line-height: 1.6;
  margin: 0;
}

.values-exact-list p strong {
  color: var(--purple);
  font-weight: 700;
}

/* Mission & Vision Cards */
.mv-exact-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mv-exact-card {
  padding: 4rem 3.5rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mv-exact-card h3 {
  font-family: 'Hongkong', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #fff;
}

.mv-exact-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
}

.card-mission {
  background: var(--purple);
  border-radius: 40px;
}

.card-vision {
  background: var(--green);
  border-radius: 40px;
}



/* CONTACT EXACT */
.contact-exact {
  padding: 6rem 0;
  background: #fff;
}

.contact-exact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
  align-items: stretch;
}

.contact-exact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px 150px 150px 40px;
  min-height: 550px;
}

.contact-exact-form-card {
  background: #f8f0fa;
  border-radius: 150px 150px 40px 150px;
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-exact-form-card h2 {
  font-family: 'Hongkong', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 2.5rem;
  text-align: center;
}

.exact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.exact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.exact-form input,
.exact-form textarea {
  width: 100%;
  padding: 18px 20px;
  border: none;
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #333;
  background: #fff;
  outline: none;
}

.exact-form textarea {
  resize: vertical;
}

.exact-form .submit-btn {
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 15px 40px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.3s ease;
}

.exact-form .submit-btn:hover {
  background: var(--green-dark);
}

/* SIDE PANEL EXACT */
.side-panel-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.side-panel-overlay.open {
  opacity: 1;
  visibility: visible;
}

.side-panel-exact {
  position: fixed;
  top: 0;
  right: -500px;
  width: 100%;
  max-width: 450px;
  height: 100vh;
  background: #f0f8ff;
  z-index: 10001;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
  transition: right 0.4s ease;
  overflow-y: auto;
  padding: 50px 40px;
}

.side-panel-exact.open {
  right: 0;
}

.side-panel-close {
  position: absolute;
  top: 20px;
  right: 25px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--purple-dark);
  cursor: pointer;
}

.side-panel-content {
  margin-top: 30px;
}

.side-panel-label {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: var(--purple);
  margin-bottom: 15px;
  display: block;
}

.side-panel-content h2 {
  font-family: 'Hongkong', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--purple);
  line-height: 1.2;
  margin-bottom: 20px;
}

.side-panel-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #666;
  margin-bottom: 40px;
}

.side-panel-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.side-panel-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.side-panel-form input,
.side-panel-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #eaeaea;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  outline: none;
  background: #fff;
  transition: border 0.3s;
}

.side-panel-form input:focus,
.side-panel-form textarea:focus {
  border-color: var(--green);
}

.side-panel-form textarea {
  resize: vertical;
}

.side-panel-form .submit-btn {
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 12px 30px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  align-self: flex-start;
  margin-top: 10px;
  transition: background 0.3s;
}

.side-panel-form .submit-btn:hover {
  background: var(--green-dark);
}

/* PRE-FOOTER EXACT */
.pre-footer-exact {
  display: flex;
  flex-wrap: wrap;
}

.pre-footer-left,
.pre-footer-right {
  flex: 1;
  padding: 5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-width: 300px;
}

.pre-footer-left {
  background: var(--purple);
  color: #fff;
}

.pre-footer-left h2,
.pre-footer-right h2 {
  font-family: 'Hongkong', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #fff;
}

.pre-footer-buttons {
  display: flex;
  gap: 1rem;
}

.pre-footer-buttons .pre-btn-white {
  background: #fff;
  color: var(--purple);
  padding: 12px 30px;
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.pre-footer-buttons .pre-btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  padding: 12px 30px;
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.pre-footer-right {
  background: var(--green);
  color: #fff;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.contact-info-list li {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info-list i {
  font-size: 1.2rem;
}

/* FOOTER EXACT */
.footer-exact {
  background: #fff;
  padding-top: 5rem;
}

.footer-exact-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  max-width: 1500px;
  margin: 0 auto;
  padding-left: 3rem;
  padding-right: 3rem;
}

.footer-logo {
  height: 70px;
  margin-bottom: 1.5rem;
}

.footer-flags {
  display: flex;
  gap: 5px;
  margin-bottom: 1.5rem;
}

.footer-flags .flag {
  width: 30px;
  height: 20px;
  border-radius: 2px;
}

.aboriginal-flag {
  background: linear-gradient(to bottom, #000 50%, #cc0000 50%);
  position: relative;
}

.aboriginal-flag::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: #ffcc00;
  border-radius: 50%;
  top: 5px;
  left: 10px;
}

.torres-flag {
  background: linear-gradient(to bottom, #009933 33%, #000 33%, #000 66%, #009933 66%);
}

.pride-flag {
  background: linear-gradient(to bottom, red 16%, orange 16% 33%, yellow 33% 50%, green 50% 66%, blue 66% 83%, purple 83%);
}

.acknowledgement {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

/* NDIS Logos in Footer */
.footer-ndis-logos {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 1rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}

.footer-ndis-badge {
  height: 60px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  padding: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.footer-ndis-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.13);
}

/* Call Us Button in Footer */
.footer-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 14px rgba(109, 179, 63, 0.35);
  margin-top: 0.5rem;
}

.footer-call-btn i {
  font-size: 0.9rem;
}

.footer-call-btn:hover {
  background: var(--purple);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(106, 27, 154, 0.35);
  color: #fff;
}

.footer-exact h4 {
  font-family: 'Hongkong', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 1.5rem;
}

.footer-exact h4.mt-4 {
  margin-top: 2rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-links i {
  color: var(--purple);
  margin-top: 4px;
}

.footer-links a {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: #666;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--green);
}

.footer-social-exact {
  display: flex;
  gap: 10px;
}

.footer-social-exact a {
  width: 35px;
  height: 35px;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  transition: background 0.3s;
}

.footer-social-exact a:hover {
  background: var(--purple);
}

.footer-exact-bottom {
  background: #f8f0fa;
  padding: 1.5rem 0;
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1500px;
  margin: 0 auto;
  padding-left: 3rem;
  padding-right: 3rem;
}

.footer-bottom-flex p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: var(--purple);
  margin: 0;
}

.footer-bottom-flex .mmw {
  font-weight: 800;
  color: #d32f2f;
  margin: 0 4px;
}

/* FAB */
.fab-call {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 20px rgba(109, 179, 63, 0.5);
  z-index: 999;
  transition: var(--transition);
}

.fab-call:hover {
  background: var(--green-dark);
  transform: scale(1.1);
}

/* RESPONSIVE */
@media(max-width:1024px) {
  .services-exact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-mv-exact-inner,
  .contact-exact-inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .hero-content h1 {
    font-size: 2.6rem;
  }

  .topbar-exact-inner,
  .header-exact-inner {
    padding: 0 20px;
  }

  .nav-exact-list {
    gap: 15px;
  }

  .hero-exact-inner {
    grid-template-columns: 1fr;
    text-align: center;
    align-items: center;
  }

  .hero-exact-content {
    padding-bottom: 2rem;
  }

  .hero-exact-content h1 {
    font-size: 3.5rem;
  }

  .hero-exact-badges {
    justify-content: center;
  }

  .hero-exact-buttons {
    justify-content: center;
  }

  .main-hero-img {
    max-height: 400px;
    border-radius: 20px;
  }

  .hero-exact-mission-card {
    position: relative;
    left: 0;
    bottom: 0;
    width: 90%;
    margin: 0 auto;
    margin-top: -40px;
  }

  .about-exact-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0 20px;
  }

  .about-exact-content {
    padding-right: 0;
    margin-bottom: 3rem;
  }

  .about-intro {
    border-left: none;
    border-bottom: 4px solid var(--purple);
    padding-left: 0;
    padding-bottom: 1.5rem;
  }

  .about-quote-card {
    width: 90%;
    left: 5%;
    bottom: -30px;
  }

  .main-about-img {
    border-radius: 60px;
    height: 400px;
  }

  .footer-exact-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:1100px) {
  .topbar-exact-left a:first-child {
    display: none;
  }

  .nav-exact {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 998;
    padding-top: 100px;
    overflow-y: auto;
    box-sizing: border-box;
  }

  .nav-exact.open {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .nav-exact-list {
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin: 0;
    padding: 0 20px;
    align-items: stretch;
  }

  .nav-exact-link {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 1.1rem;
    font-weight: 500;
    width: 100%;
    justify-content: space-between;
  }

  .mega-menu-exact {
    display: none !important;
  }

  .has-dropdown-exact.open .mega-menu-exact {
    display: flex !important;
    flex-direction: column;
    position: static;
    box-shadow: none;
    padding: 10px 0 10px 20px;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
  }

  .has-dropdown-exact.open .mega-col-exact {
    width: 100%;
    margin-bottom: 15px;
    padding: 0;
    border-right: none;
  }

  .has-dropdown-exact.open .mega-img-col {
    display: none;
  }

  .hamburger-exact {
    display: flex !important;
    z-index: 1001;
  }

  .hamburger-exact.open {
    background: var(--purple);
    color: #fff;
    border-radius: 4px;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .desktop-home-icon {
    display: none;
  }

  .mobile-home-link {
    display: block;
  }

  .mobile-home-link .nav-exact-link {
    color: var(--purple-dark) !important;
  }

  .header-cta {
    display: none;
  }

  .hero-exact-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-exact-content {
    padding-bottom: 2rem;
  }

  .hero-exact-content h1 {
    font-size: 2.5rem;
  }

  .hero-exact-badges {
    justify-content: center;
  }

  .hero-exact-buttons {
    justify-content: center;
  }

  .hero-exact-image-col {
    margin-top: 2rem;
  }

  .main-hero-img {
    max-height: 300px;
    border-radius: 20px;
  }

  .hero-exact-mission-card {
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    margin-top: -30px;
    padding: 1.5rem;
  }

  .ndis-exact-inner {
    padding: 0 20px;
  }

  .ndis-exact-card {
    padding: 3rem 2rem;
  }

  .ndis-exact-card h2 {
    font-size: 2rem;
  }

  .about-exact-content h2 {
    font-size: 2.5rem;
  }

  .main-about-img {
    border-radius: 40px;
    height: 300px;
  }

  .about-quote-card {
    position: relative;
    width: 100%;
    left: 0;
    bottom: 0;
    margin-top: -30px;
    border-radius: 15px;
    padding: 1.5rem;
  }

  .about-inner,
  .mv-inner,
  .contact-exact-inner,
  .footer-exact-inner {
    grid-template-columns: 1fr;
  }

  .pre-footer-left,
  .pre-footer-right {
    min-width: 100%;
    padding: 3rem 1rem;
  }

  .parallax-content h2 {
    font-size: 2.5rem;
  }

  .contact-exact-form-card {
    padding: 3rem 2rem;
    border-radius: 60px 60px 20px 60px;
  }

  .contact-exact-image img {
    min-height: 350px;
    border-radius: 20px 60px 60px 20px;
  }

  .parallax-content h2 {
    font-size: 2.5rem;
  }

  .values-exact-list h2 {
    font-size: 2.5rem;
  }

  .mv-exact-card {
    padding: 3rem 2rem;
  }

  .mv-exact-card h3 {
    font-size: 2.2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-header h2 {
    font-size: 1.7rem;
  }

  .reach-cta h2 {
    font-size: 1.8rem;
  }

  .cta-strip-inner {
    flex-direction: column;
    text-align: center;
  }

  .about-exp-badge {
    right: 10px;
    bottom: -10px;
  }
}

@media(max-width:480px) {
  .services-exact-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .services-exact-grid {
    grid-template-columns: 1fr;
  }

  .services-header-left h2 {
    font-size: 2.2rem;
  }

  .services-exact-inner {
    padding: 0 20px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
  }

  .ndis-stats {
    grid-template-columns: 1fr 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .footer-exact-inner,
  .footer-bottom-flex {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-bottom-flex {
    flex-direction: column;
    text-align: center;
  }

  .exact-form .form-row,
  .side-panel-form .form-row {
    grid-template-columns: 1fr;
  }

  .side-panel-exact {
    padding: 30px 20px;
    max-width: 100%;
  }

  .contact-exact-form-card {
    padding: 2.5rem 1.5rem;
    border-radius: 40px 40px 15px 40px;
  }

  .contact-exact-image img {
    border-radius: 15px 40px 40px 15px;
    min-height: 250px;
  }
}

/* =========================================================
   PAGE BANNER EXACT
   ========================================================= */
.page-banner-exact {
  position: relative;
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  margin-top: 0;
}

.page-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background: linear-gradient(to right, rgba(37, 126, 171, 0.6) 0%, rgba(25, 162, 182, 0.6) 100%);*/
  z-index: 1;
}

.page-banner-overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  border-width: 20px 25px 0;
  border-style: solid;
  border-color: rgba(30, 144, 176, 0.9) transparent transparent transparent;
  /* mix of the gradient */
  z-index: 2;
}

.page-banner-content {
  position: relative;
  z-index: 2;
  text-align: left;
  width: 100%;
}

.page-banner-content h1 {
  font-family: 'Hongkong', sans-serif;
  font-size: 4rem;
  color: #ffffff;
  font-weight: 700;
  margin: 0;
}

/* =========================================================
   PAGE CONTENT EXACT
   ========================================================= */
.page-content-exact {
  padding: 80px 0;
  min-height: 400px;
}

.page-content-exact p {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .page-banner-exact {
    margin-top: 0;
    height: 250px;
  }

  .page-banner-content h1 {
    font-size: 2.5rem;
  }
}

/* =========================================================
   ABOUT PAGE CUSTOM TEMPLATE
   ========================================================= */
.about-page-wrapper {
  padding: 0;
}

.about-intro-section {
  padding: 80px 20px;
  background-color: #ffffff;
}

.about-intro-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.why-choose-us-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.why-choose-us-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: #fbfbfb;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.why-choose-img-col {
  flex: 0 0 45%;
  max-width: 45%;
  align-self: stretch;
  /* Make it stretch full height */
}

.why-choose-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why-choose-content-col {
  flex: 0 0 55%;
  max-width: 55%;
  padding: 50px 60px;
}

.why-choose-content-col h2 {
  font-family: 'Hongkong', sans-serif;
  font-size: 3rem;
  color: #32264E;
  /* Dark Purple from screenshot */
  margin-bottom: 30px;
  font-weight: 700;
}

.why-choose-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-choose-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.why-choose-list li i {
  color: #309bcf;
  /* Blue arrow from screenshot */
  font-size: 1.2rem;
  margin-right: 15px;
  margin-top: 5px;
}

.why-choose-list li span {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .why-choose-img-col {
    flex: 0 0 100%;
    max-width: 100%;
    height: 400px;
  }

  .why-choose-content-col {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 40px 30px;
  }
}

@media (max-width: 767px) {
  .page-banner-exact {
    height: 200px;
  }

  .page-banner-content h1 {
    font-size: 2rem;
  }

  .about-intro-section {
    padding: 40px 20px;
  }

  .about-intro-text {
    font-size: 1rem;
  }

  .why-choose-us-section {
    padding: 40px 0;
  }

  .why-choose-img-col {
    height: 250px;
  }

  .why-choose-content-col {
    padding: 30px 20px;
  }

  .why-choose-content-col h2 {
    font-size: 2.2rem;
  }
}

/* =========================================================
   NICHE FOCUS SECTION
   ========================================================= */
.niche-focus-section {
  padding: 90px 0;
  background: #f6f4fc;
}

.section-label {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7B2D8B;
  background: rgba(123, 45, 139, 0.08);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 18px;
}

.niche-focus-heading {
  font-family: 'Hongkong', sans-serif;
  font-size: 3rem;
  color: #32264E;
  font-weight: 700;
  margin-bottom: 16px;
}

.niche-focus-subheading {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  color: #555;
  max-width: 760px;
  line-height: 1.8;
  margin-bottom: 56px;
}

.niche-pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.niche-pillar-card {
  border-radius: 24px;
  padding: 50px 44px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.07);
}

.niche-mental {
  background: linear-gradient(145deg, #fdf8ff 0%, #ece4f7 100%);
  border-top: 5px solid #7B2D8B;
}

.niche-physical {
  background: linear-gradient(145deg, #f4fbff 0%, #d9eefc 100%);
  border-top: 5px solid #2da1d6;
}

.niche-pillar-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 24px;
}

.niche-mental .niche-pillar-icon {
  background: rgba(123, 45, 139, 0.12);
  color: #7B2D8B;
}

.niche-physical .niche-pillar-icon {
  background: rgba(45, 161, 214, 0.12);
  color: #2da1d6;
}

.niche-pillar-card h3 {
  font-family: 'Hongkong', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #32264E;
  margin-bottom: 16px;
}

.niche-pillar-card > p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.97rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 28px;
}

.niche-pillar-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
}

.niche-pillar-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}

.niche-mental .niche-pillar-list li i {
  color: #7B2D8B;
  margin-top: 3px;
  flex-shrink: 0;
}

.niche-physical .niche-pillar-list li i {
  color: #2da1d6;
  margin-top: 3px;
  flex-shrink: 0;
}

.niche-pillar-note {
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-style: italic;
  color: #777;
  border-top: 1px solid rgba(0,0,0,0.07);
  padding-top: 18px;
  margin-top: 10px;
  margin-bottom: 0 !important;
}

/* =========================================================
   INTERSECTION / MIND-BODY SECTION
   ========================================================= */
.intersection-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #2C1A47 0%, #32264E 50%, #1a3a5c 100%);
  color: #ffffff;
}

.intersection-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  align-items: center;
}

.intersection-icon-col {
  display: flex;
  justify-content: center;
}

.intersection-icon-ring {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  color: #c9a8e8;
  background: rgba(255,255,255,0.05);
  box-shadow: 0 0 60px rgba(123,45,139,0.25);
}

.intersection-content-col .light-label {
  color: #c9a8e8;
  background: rgba(255,255,255,0.1);
}

.intersection-content-col h2 {
  font-family: 'Hongkong', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.intersection-content-col p {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  margin-bottom: 18px;
}

.intersection-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 36px;
}

.i-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.i-stat-number {
  font-family: 'Hongkong', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #c9a8e8;
  line-height: 1;
}

.i-stat-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* =========================================================
   COMMITMENT SECTION
   ========================================================= */
.about-commitment-section {
  padding: 90px 0;
  background: #ffffff;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.commitment-card {
  background: #f8f7fc;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 4px solid transparent;
}

.commitment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  border-bottom-color: #7B2D8B;
}

.commitment-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(123,45,139,0.08);
  color: #7B2D8B;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  transition: background 0.3s ease;
}

.commitment-card:hover .commitment-icon {
  background: rgba(123,45,139,0.15);
}

.commitment-card h4 {
  font-family: 'Hongkong', sans-serif;
  font-size: 1.3rem;
  color: #32264E;
  font-weight: 700;
  margin-bottom: 12px;
}

.commitment-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.93rem;
  color: #666;
  line-height: 1.65;
  margin-bottom: 0;
}

/* --- Responsive: Niche + Intersection + Commitment --- */
@media (max-width: 991px) {
  .niche-pillars-grid {
    grid-template-columns: 1fr;
  }

  .intersection-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .intersection-icon-col {
    margin-bottom: 20px;
  }

  .intersection-stats {
    grid-template-columns: 1fr 1fr;
  }

  .commitment-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .niche-focus-section,
  .intersection-section,
  .about-commitment-section {
    padding: 50px 0;
  }

  .niche-focus-heading {
    font-size: 2.2rem;
  }

  .niche-pillar-card {
    padding: 36px 28px;
  }

  .intersection-content-col h2 {
    font-size: 1.9rem;
  }

  .intersection-stats {
    grid-template-columns: 1fr;
  }

  .commitment-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

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

/* =========================================================
   CUSTOM PHP FORM STYLING (REFERRALS)
   ========================================================= */
.referrals-page-wrapper {
  padding-bottom: 80px;
  padding-top: 40px;
}

.custom-form-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 50px 60px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.custom-section-title {
  font-family: 'Hongkong', sans-serif;
  font-size: 1.8rem;
  color: #7B2D8B;
  margin: 40px 0 20px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
}

.custom-form-wrapper h3:first-child {
  margin-top: 0;
}

.custom-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 0px;
}

.custom-form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.custom-form-group label,
.custom-p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 8px;
  font-weight: 500;
}

.custom-form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #444;
  background-color: #fcfcfc;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

textarea.custom-form-control {
  min-height: 120px;
  resize: vertical;
}

.custom-form-control:focus {
  border-color: #7B2D8B;
  outline: none;
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(123, 45, 139, 0.1);
}

.custom-checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 20px;
}

.custom-checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: #444;
  cursor: pointer;
}

.custom-checkbox-item input {
  width: 18px;
  height: 18px;
  accent-color: #7B2D8B;
}

.custom-radio-group {
  display: flex;
  gap: 20px;
}

.custom-radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 400;
}

.custom-radio-group input {
  width: 18px;
  height: 18px;
  accent-color: #7B2D8B;
}

.custom-file-upload-box {
  border: 2px dashed #ddd;
  padding: 30px;
  text-align: center;
  border-radius: 8px;
  background: #fafafa;
}

.custom-file-upload-box input {
  margin-bottom: 10px;
}

.custom-submit-wrapper {
  text-align: center;
  margin-top: 40px;
}

.custom-submit-wrapper button {
  width: auto;
  min-width: 250px;
  cursor: pointer;
}

.btn-repeater {
  margin-bottom: 20px;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 5px;
  color: #7B2D8B;
  border-color: #7B2D8B;
}

.btn-repeater:hover {
  background: #7B2D8B;
  color: #fff;
}

.repeater-item {
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

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

@media (max-width: 768px) {
  .custom-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .custom-checkbox-grid {
    grid-template-columns: 1fr;
  }

  .custom-form-wrapper {
    padding: 30px 20px;
  }
}

/* =========================================================
   CONTACT PAGE CUSTOM STYLING
   ========================================================= */
.contact-page-wrapper {
  padding-bottom: 80px;
}

.contact-details-section {
  padding: 80px 0 60px 0;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: center;
}

.contact-card {
  background: #ffffff;
  padding: 50px 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card.highlight-card {
  background: linear-gradient(135deg, #e0f4ff 0%, #f9fcff 100%);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transform: translateY(-5px);
}

.contact-card .icon-circle {
  font-size: 2.5rem;
  color: #2da1d6;
  margin-bottom: 20px;
}

.contact-card h3 {
  font-family: 'Hongkong', sans-serif;
  font-size: 1.8rem;
  color: #32264E;
  margin-bottom: 15px;
  font-weight: 700;
}

.contact-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.split-map-form-section {
  padding: 40px 0 80px 0;
}

.split-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.map-column {
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  min-height: 500px;
}

.form-column {
  background: #fcf7e8;
  padding: 60px 50px;
  border-radius: 20px;
}

@media (max-width: 991px) {
  .contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .split-layout-grid {
    grid-template-columns: 1fr;
  }

  .map-column {
    min-height: 400px;
  }

  .form-column {
    padding: 40px 30px;
  }
}

/* =========================================================
   SINGLE SERVICE PAGE CUSTOM STYLING
   ========================================================= */
.service-single-banner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-banner-title {
  font-size: 4rem;
  padding-top: 40px;
}

.banner-triangle-down {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 20px solid #fff;
  z-index: 5;
}

.service-layout-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: start;
}

.service-main-content {
  color: #4a4a4a;
  font-family: 'Poppins', sans-serif;
  line-height: 1.8;
}

.service-main-content h2,
.service-main-content h3 {
  font-family: 'Hongkong', sans-serif;
  color: var(--purple);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 700;
}

.service-text-content ul {
  list-style-type: disc;
  padding-left: 25px;
  margin-top: 15px;
  margin-bottom: 25px;
}

.service-text-content ul li {
  margin-bottom: 10px;
  line-height: 1.8;
}

.service-sidebar {
  position: sticky;
  top: 100px;
}

.other-services-widget {
  background: #1e364c;
  /* Dark blue from screenshot */
  border-radius: 12px;
  padding: 40px 30px;
  color: #fff;
}

.other-services-widget h3 {
  font-family: 'Hongkong', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 30px;
  color: #fff;
}

.other-services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.other-services-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px 0;
}

.other-services-list li:last-child {
  border-bottom: none;
}

.other-services-list a {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.other-services-list a:hover,
.other-services-list a.active-service {
  color: #f6a821;
}

.yellow-bullet {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #f6a821;
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .service-layout-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .service-banner-title {
    font-size: 2.5rem !important;
    padding-top: 20px !important;
    line-height: 1.2;
    padding-bottom: 3.5rem;
  }
}