@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

:root {
  --blue: #1E5AA8;
  --blue-dark: #163F78;
  --red: #D32F2F;
  --yellow: #F9A825;
  --light-bg: #F3F6FC;
  --white: #ffffff;
}

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

body {
  font-family: Arial, sans-serif;
  color: #1f2933;
}

/* =========================================
   TOPBAR
========================================= */

.nla-topbar {
  background: var(--blue-dark);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px;
  font-size: 14px;
  flex-wrap: wrap;
  gap: 10px;
}

.topbar-right {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.topbar-contact {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.topbar-contact a {
  margin-left: 16px;
  white-space: nowrap;
  color: white;
  text-decoration: none;
}

.lang-switch {
  margin-top: 4px;
  font-size: 13px;
}

.lang-switch a {
  color: white;
  text-decoration: none;
  margin-left: 12px;
}

/* =========================================
   HEADER
========================================= */

.nla-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  padding: 16px 24px;
  flex-wrap: wrap;
  gap: 20px;
}

.nla-header img {
  height: 110px;
  max-width: 100%;
  margin-left: 0;
}

/* SEARCH BAR */

.search-bar {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 250px;
}

.search-bar input {
  width: 100%;
  max-width: 260px;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 30px;
  outline: none;
  margin-left: 0;
}

.search-bar button {
  background: var(--blue);
  width: 40px;
  height: 40px;
  border: none;
  color: white;
  margin-left: 8px;
  border-radius: 50%;
  cursor: pointer;
}

/* NAVIGATION */

.nla-nav > ul {
  display: flex;
  gap: 20px;
  list-style: none;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.nla-header li {
  margin-left: 0;
}

.nla-header a {
  text-decoration: none;
  color: var(--blue-dark);
  font-weight: 600;
  transition: 0.3s;
}

.nla-header a:hover {
  color: var(--red);
}

/* =========================================
   SUBMENU
========================================= */

.has-submenu {
  position: relative;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(249, 168, 37, 0.95);
  padding: 10px;
  min-width: 180px;
  list-style: none;
  z-index: 999;
  border-radius: 6px;
}

.submenu li {
  margin: 10px 0;
}

.has-submenu:hover .submenu {
  display: block;
}

/* =========================================
   HERO
========================================= */

.nla-hero {
  height: 60vh;
  background: url("home-hero.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  border-radius: 80px 0 80px 0;
  margin-bottom: 20px;
  overflow: hidden;
}

.nla-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(247, 80, 86, 0.68),
    rgba(11, 27, 197, 0.72)
  );
  border-radius: 80px 0 80px 0;
}

.hero-content {
  position: relative;
  color: white;
  max-width: 700px;
  text-align: center;
  z-index: 2;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 15px;
  line-height: 1.2;
}

.hero-content h1 span {
  color: var(--yellow);
}

.hero-content p {
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 1.6;
}

/* BUTTONS */

.btn-primary,
.hero-btn-secondary {
  display: inline-block;
  margin: 10px;
  padding: 12px 28px;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.3s;
}

.btn-primary {
  background: var(--red);
  color: white;
}

.btn-primary:hover {
  background: var(--blue);
}

.hero-btn-secondary {
  background: transparent;
  color: var(--yellow);
  border: 2px solid var(--yellow);
}

.hero-btn-secondary:hover {
  background: var(--yellow);
  color: black;
}

/* BADGE */

.ndis-badge {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 2;
}

.ndis-badge img {
  height: 110px;
  display: block;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 992px) {

  .nla-header {
    flex-direction: column;
    text-align: center;
  }

  .search-bar {
    width: 100%;
  }

  .nla-nav > ul {
    justify-content: center;
  }

  .nla-header img {
    height: 90px;
  }

  .nla-hero {
    height: auto;
    padding: 80px 20px;
    border-radius: 50px 0 50px 0;
  }

  .nla-hero::before {
    border-radius: 50px 0 50px 0;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .ndis-badge {
    position: static;
    margin-top: 30px;
    text-align: center;
  }

  .ndis-badge img {
    margin: auto;
    height: 90px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

  .nla-topbar {
    flex-direction: column;
    text-align: center;
  }

  .topbar-right {
    align-items: center;
  }

  .topbar-contact {
    justify-content: center;
  }

  .nla-header {
    padding: 12px;
  }

  .nla-header img {
    height: 70px;
  }

  .search-bar {
    width: 100%;
  }

  .search-bar input {
    max-width: 100%;
    font-size: 14px;
  }

  .search-bar button {
    width: 38px;
    height: 38px;
  }

  .nla-nav > ul {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .submenu {
    position: static;
    width: 100%;
  }

  .nla-hero {
    padding: 60px 16px;
    border-radius: 30px 0 30px 0;
    text-align: center;
  }

  .nla-hero::before {
    border-radius: 30px 0 30px 0;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .btn-primary,
  .hero-btn-secondary {
    width: 100%;
    max-width: 260px;
    display: block;
    margin: 10px auto;
  }

  .ndis-badge img {
    height: 75px;
  }
}


.why-nla {
  padding: 80px 24px;
  background: var(--light-bg);
  text-align: center;
  border-radius: 0 80px 0 80px;
  position: relative;
  overflow: hidden;
}

.why-nla::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 800px;
  bottom: 0;
  left: 0;
  background-image: radial-gradient(circle, rgba(116, 3, 3, 0.443) 2px, transparent 2px);
  background-size: 20px 20px;
}

.section-header {
  max-width: 900px;
  margin: 0 auto 56px;
}

.section-header h2 {
  font-size: 36px;
  color: var(--blue-dark);
  margin-bottom: 20px;
}

.section-header h2::after {
  content: "";
  width: 160px;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #38bdf8);
  display: block;
  margin: 15px auto 0;
  border-radius: 10px;
}

.section-header p {
  margin-bottom: 12px;
}

/* GRID */
.flip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* FLIP */
.flip-card {
  perspective: 1000px;
}

.flip-inner {
  height: 280px;
  transition: transform 0.7s ease;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}

.flip-front,
.flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 10px;
  overflow: hidden;
}

.flip-front {
  background: white;
}

.flip-front img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.flip-front h3 {
  padding: 16px;
  color: var(--blue-dark);
}

.flip-back {
  background: var(--blue-dark);
  color: white;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}



/* OUR SERVICES */
.home-our-services {
  padding: 80px 24px;
  background: white;
  text-align: center;
}

.home-services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.home-service-card {
  --angle: 0deg;

  border-radius: 20px;
  border: 3px solid transparent;

  background:
    linear-gradient(var(--light-bg), white) padding-box,
    conic-gradient(
      from var(--angle),
      #00f5ff,
      #8a2be2,
      #ff00c8,
      #00f5ff
    ) border-box;

  animation: spin 2s linear infinite;

  width: 350px;
  padding: 40px 24px;
}

@keyframes spin {
  to {
    --angle: 360deg;
  }
}

.home-service-card i {
  font-size: 36px;
  color: var(--blue);
  margin-bottom: 16px;
  animation: moveIcon 3s linear infinite;
}

@keyframes moveIcon {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}


.home-service-card i:hover {
  color: var(--yellow);
  transition: color 0.3s ease;
}

.home-service-card h3 {
  color: var(--blue-dark);
  font-size: 18px;
}

/* hover doux */
.home-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}


.community-story-section {
  padding: 100px 20px;
  background: var(--light-bg);
}

.community-story-container {
  max-width: 1200px;
  margin: auto;
}

.community-story-header {
  text-align: center;
  margin-bottom: 60px;
}

.community-story-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--blue-dark);
  position: relative;
  display: inline-block;
}

.community-story-header h2::after {
  content: "";
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #38bdf8);
  display: block;
  margin: 15px auto 0;
  border-radius: 10px;
}

.community-story-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 30px;
}

.community-story-carousel {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}

.community-story-video {
  flex: 0 0 calc(100% / 3 - 14px);
}

.community-story-video video {
  width: 100%;
  border-radius: 12px;
}

/* Flèches */
.story-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.7);
  color: white;
  border: none;
  padding: 12px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
}

.story-arrow.left {
  left: 10px;
}

.story-arrow.right {
  right: 10px;
}

@media (max-width: 900px) {
  .community-story-video {
    flex: 0 0 calc(100% / 2 - 10px);
  }
}

@media (max-width: 600px) {
  .community-story-video {
    flex: 0 0 100%;
  }
}

.community-story-text {
  flex: 1;
}

.community-story-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 20px;
}

.community-story-btn {
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(90deg, #2563eb, #38bdf8);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s ease;
}

.community-story-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
}

@media (max-width: 992px) {
  .community-story-wrapper {
    flex-direction: column;
  }

  .community-story-header h2 {
    font-size: 32px;
  }
}

/* TESTIMONIALS SECTION */
.testimonials {
  padding: 80px 24px;
  background: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 0 80px 0 80px;
}

.testimonials::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 700px;
  top: 0;
  right: 0;
  background-image: radial-gradient(circle, rgba(116, 3, 3, 0.443) 2px, transparent 2px);
  background-size: 20px 20px;
}


.testimonials h2 {
  font-size: 34px;
  margin-bottom: 48px;
  color: var(--blue-dark);
}

.testimonials h2:after {
  content: "";
  width: 260px;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #38bdf8);
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  margin-top: 25px;
}

/* SLIDER */
.testimonial-slider {
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s ease;
}

/* CARD */
.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--blue);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

/* état visible */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* IMAGE TOP */
.testimonial-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT */
.testimonial-content {
  padding: 28px 24px 32px;
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 18px;
  line-height: 1.6;
  color: var(--white);
}

.testimonial-content h4 {
  color: var(--yellow);
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 16px);
  }
}

@media (max-width: 600px) {
  .testimonial-card {
    flex: 0 0 100%;
  }
}

.our-entreprise {
  padding: 100px 24px;
  background: var(--light-bg);
  display: flex;
  justify-content: center;
}

.entreprise-content {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* === TEXTE EN COLONNE === */
.entreprise-content > h2,
.entreprise-content > p {
  flex-basis: 100%;
}

.entreprise-content {
  flex-wrap: wrap;
}

.entreprise-content h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 0px;
}

.entreprise-content h2::after {
  content: "";
  width: 360px;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #38bdf8);
  display: block;
  margin: 15px 0 0;
  border-radius: 10px;
}

.entreprise-content p {
  font-size: 17px;
  line-height: 1.9;
  color: #475569;
  max-width: 650px;
}

/* IMAGE A DROITE */
.entreprise-image {
  flex: 0 0 420px;
}

.entreprise-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  transition: 0.4s ease;
}

.entreprise-image img:hover {
  transform: scale(1.15);
}

@media (max-width: 992px) {
  .entreprise-content {
    flex-direction: column;
    text-align: center;
  }

  .entreprise-content p {
    max-width: 100%;
  }

  .entreprise-image img {
    max-width: 250px;
  }
}




.nbx-pro {
  --primary:#1f3c88;
  --light:#f4f6fb;
  --radius:14px;

  padding:80px 20px;
  background:var(--light);
  font-family:Arial, sans-serif;
}

.nbx-pro__container{
  max-width:1000px;
  margin:auto;
  background:#fff;
  padding:50px;
  border-radius:20px;
  box-shadow:0 15px 50px rgba(0,0,0,0.07);
}

.nbx-pro__title{
  text-align:center;
  margin-bottom:40px;
  font-size:32px;
  color:var(--primary);
}

.nbx-pro__step-title {
  font-size:24px;
  color:var(--blue);
  margin-bottom:20px;
}

.nbx-pro__step-disc {
  margin-bottom:30px;
  color:#555;
}

.nbx-pro__step-disc a {
  color: var(--primary);
  text-decoration: none;
}

.nbx-pro__step{
  display:none;
  margin-bottom:40px;
}

.nbx-pro__step.active{
  display:block;
}

.nbx-pro select,
.nbx-pro input{
  width:100%;
  padding:14px;
  margin-top:15px;
  border-radius:var(--radius);
  border:1px solid #ddd;
  font-size:15px;
}

.nbx-pro__results{
  margin-top:15px;
  border:1px solid #eee;
  border-radius:var(--radius);
  max-height:200px;
  overflow:auto;
}

.nbx-pro__results div{
  padding:12px;
  cursor:pointer;
  border-bottom:1px solid #f0f0f0;
}

.nbx-pro__results div:hover{
  background:#eef2ff;
}

.nbx-pro__selected-item{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px;
  border:1px solid #eee;
  border-radius:var(--radius);
  margin-top:10px;
}

.nbx-pro__selected-item input{
  width:80px;
  margin-left:10px;
}

.nbx-pro__remove{
  background:#e11d48;
  color:#fff;
  border:none;
  padding:6px 14px;
  border-radius:8px;
  cursor:pointer;
}

.nbx-pro__total-box{
  margin-top:30px;
  padding:20px;
  background:#eef2ff;
  border-radius:var(--radius);
  display:flex;
  justify-content:space-between;
  font-size:20px;
  font-weight:bold;
}


/* CTA SECTION */
.cta {
  padding: 80px 24px;
  background: linear-gradient(
    135deg,
    var(--blue-dark),
    var(--blue)
  );
  color: white;
  text-align: center;
  border-radius: 80px 80px 0 0;
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 38px;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 36px;
  line-height: 1.6;
}

/* BUTTONS */
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--yellow);
  color: var(--blue-dark);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: white;
}

.btn-outline {
  border: 2px solid white;
  color: white;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.btn-outline:hover {
  background: white;
  color: var(--blue-dark);
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .cta-content h2 {
    font-size: 30px;
  }

  .cta-content p {
    font-size: 16px;
  }
}


/* FOOTER */
.site-footer {
  background: var(--blue-dark);
  color: white;
  padding-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h4 {
  margin-bottom: 16px;
}

.footer-col p,
.footer-col li {
  font-size: 14px;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col a {
  color: white;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--yellow);
}

/* SOCIAL */
.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* FEEDBACK */
.feedback-section {
  background: #0f2f5a;
  padding: 60px 24px;
  text-align: center;
}

.feedback-section h3 {
  font-size: 28px;
  margin-bottom: 12px;
}

.feedback-section p {
  margin-bottom: 32px;
  font-size: 15px;
}

/* FORM */
.feedback-form {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.feedback-form input,
.feedback-form select,
.feedback-form textarea {
  padding: 14px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
}

.feedback-form button {
  background: var(--yellow);
  color: var(--blue-dark);
  border: none;
  padding: 14px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
}

.feedback-form button:hover {
  background: white;
}

/* BOTTOM */
.footer-bottom {
  background: #081f3f;
  padding: 16px;
  text-align: center;
  font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}
/* RTL SUPPORT */

html[dir="rtl"] {
  text-align: right;
}

html[dir="rtl"] nav ul {
  flex-direction: row-reverse;
}

html[dir="rtl"] .cta-buttons {
  justify-content: flex-end;
}
html[dir="rtl"] .topbar-right {
  align-items: flex-start;
}

.about-hero {
  height: 60vh;
  background: url("about-hero.jpeg") top/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 24px;
  border-radius: 80px 0 80px 0;
  margin-bottom: 20px;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(214, 21, 27, 0.861), rgba(11, 27, 197, 0.736));
  border-radius: 80px 0 80px 0;
}

.about-hero-content {
  position: relative;
  color: white;
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
}

.about-hero-content h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.about-hero-content h1 span {
  color: var(--yellow);
}

.about-info {
  padding: 80px 24px;
  background: var(--light-bg);
  text-align: center;
  border-radius: 0 80px 0 80px;
  position: relative;
  overflow: hidden;
}

.about-info::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 500px;
  bottom: 0;
  right: 0;
  background-image: radial-gradient(circle, rgba(116, 3, 3, 0.443) 2px, transparent 2px);
  background-size: 20px 20px;
}

.about-info-container {
  max-width: 900px;
  margin: 0 auto;
}


.about-info h2 {
  font-size: 36px;
  color: var(--blue-dark);
  margin-bottom: 20px;
}

.about-info p {
  margin-bottom: 16px;
  line-height: 1.6;
}

.about-mission {
  padding: 80px 24px;
  background: white;
  text-align: center;
}

.about-mission-content {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: center;
}

.about-mission-content h2 {
  font-size: 36px;
  color: var(--blue-dark);
  margin-bottom: 20px;
}

.about-mission-content p {
  line-height: 1.6;
}

.about-mission-content img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
}

.about-mission-text {
  width: 40%;
  text-align: left;
}


.about-vision {
  padding: 80px 24px;
  background: var(--light-bg);
  text-align: center;
  border-radius: 0 80px 0 80px;
  position: relative;
  overflow: hidden;
}

.about-vision::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 700px;
  top: 0;
  left: 0;
  background-image: radial-gradient(circle, rgba(116, 3, 3, 0.443) 2px, transparent 2px);
  background-size: 20px 20px;
}

.about-vision-content {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: center;
}

.about-vision-content h2 {
  font-size: 36px;
  color: var(--blue-dark);
  margin-bottom: 20px;
}

.about-vision-content p {
  line-height: 1.6;
}

.about-vision-content img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
}

.about-vision-text {
  width: 40%;
  text-align: left;
}

.why-nla-about {
  padding: 80px 24px;
  background: white;
  text-align: center;
  border-radius: 0 80px 0 80px;
  position: relative;
  overflow: hidden;
}

.section-header-about {
  max-width: 900px;
  margin: 0 auto 56px;
}

.section-header-about h2 {
  font-size: 36px;
  color: var(--blue-dark);
  margin-bottom: 20px;
}

.section-header-about p {
  margin-bottom: 12px;
}

/* GRID */
.flip-grid-about {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* FLIP */
.flip-card-about {
  perspective: 1000px;
}

.flip-inner-about {
  height: 280px;
  transition: transform 0.7s ease;
  transform-style: preserve-3d;
}

.flip-card-about:hover .flip-inner-about {
  transform: rotateY(180deg);
}

.flip-front-about,
.flip-back-about {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 10px;
  overflow: hidden;
}

.flip-front-about {
  background: var(--light-bg);
}

.flip-front-about img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.flip-front-about h3 {
  padding: 16px;
  color: var(--blue);
}

.flip-back-about {
  background: var(--blue-dark);
  color: var(--white);
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}


.about-team {
  padding: 80px 24px;
  background: var(--light-bg);
  text-align: center;
  border-radius: 0 80px 0 80px;
  position: relative;
  overflow: hidden;
}

.about-team::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 1000px;
  bottom: 0;
  right: 0;
  background-image: radial-gradient(circle, rgba(116, 3, 3, 0.443) 2px, transparent 2px);
  background-size: 20px 20px;
}

.about-team h2 {
  font-size: 36px;
  color: var(--blue-dark);
  margin-bottom: 40px;
}

.about-team p {
  max-width: 800px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.team-member {
  background: white;
  border-radius: 10px;
  padding: 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
  height: 350px;
}

.team-member:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.team-member img {
  width: 100%;
  height: 80%;
  object-fit: cover;
  margin-bottom: 16px;
}

.team-member h3 {
  color: var(--blue);
  margin-bottom: 8px;
}

.team-member p {
  font-size: 14px;
  color: #555;
}

.about-commitment {
  padding: 80px 24px;
  background: white;
  text-align: center;
}

.about-commitment h2 {
  font-size: 36px;
  color: var(--blue-dark);
  margin-bottom: 20px;
}

.about-commitment p {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-hero {
  height: 60vh;
  background: url("contact-hero.jpeg") center/cover no-repeat;
  position: relative;
  display: flex;
  padding: 0 24px;
  align-items: center;
  border-radius: 80px 0 80px 0;
  margin-bottom: 20px;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(247, 80, 86, 0.679), rgb(11, 27, 197));
  border-radius: 80px 0 80px 0;
}

.contact-hero h1 {
  display: inline-block;
  position: relative;
  color: white;
  font-size: 48px;
  margin: 0 auto;
  border-bottom: #F9A825 4px solid;
  padding-bottom: 10px;
}

.contact-hero h1 span {
  color: var(--yellow);
}

.contact-hero p {
  position: relative;
  color: white;
  font-size: 18px;
  margin-top: 15px;
  text-align: center;
}


.contact-hero-content {
  position: relative;
  text-align: center;
  width: 100%;
}

.contact-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
  z-index: 1;
}

.contact-cta-buttons .contact-btn-primary {
  background: var(--yellow);
  color: var(--blue-dark);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;

}

.contact-cta-buttons .contact-btn-primary:hover {
  background: white;
}

.contact-cta-buttons .contact-btn-outline {
  border: 2px solid white;
  color: white;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-cta-buttons .contact-btn-outline:hover {
  background: white;
  color: var(--blue-dark);
}


.contact-links {
   padding: 80px 24px;
  background: var(--light-bg);
  text-align: center;
  border-radius: 0 80px 0 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-links::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 800px;
  bottom: 0;
  left: 0;
  background-image: radial-gradient(circle, rgba(116, 3, 3, 0.443) 2px, transparent 2px);
  background-size: 20px 20px;
}

.contact-card {
  background: white;
  text-decoration: none;
  text-align: center;
  color: #333;
  width: 220px;
  padding: 30px 20px;
  border-radius: 12px;
  transition: 0.3s ease;
}

.contact-card i {
  font-size: 40px;
  color: var(--blue);
  margin-bottom: 15px;
}

.contact-card h3 {
  color: var(--blue);
  font-size: 18px;
  font-weight: 600;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}


.contact-location-section {
  padding: 80px 20px;
  background: white;
}

.contact-location-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  order: 2;
}

.contact-location-info h2 {
  color: var(--blue-dark);
  font-size: 32px;
  margin-bottom: 15px;
}

.contact-location-info p {
  margin-bottom: 15px;
  color: #555;
}

.contact-location-details {
  margin: 20px 0;
}

.contact-location-btn {
  display: inline-block;
  background: var(--blue);
  color: white;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.contact-location-btn:hover {
  background: #034aae;
}

.contact-location-map iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 12px;
}

.contact-feedback-cta {
  padding: 80px 20px;
  background: white;
  text-align: center;
}


.contact-feedback-cta h3 {
  font-size: 32px;
  margin-bottom: 15px;
  color: var(--blue);
}


.contact-feedback-cta p {
  margin-bottom: 30px;
  font-size: 16px;
}

.feedback-btn {
  background: var(--yellow);
  color: var(--blue-dark);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.feedback-btn:hover {
  background: white;
}

.ndis-enquiry {
  padding: 80px 24px;
  background: var(--light-bg);
  text-align: center;
  border-radius: 0 80px 0 80px;
  position: relative;
  overflow: hidden;
}

.ndis-enquiry::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 1200px;
  bottom: 0;
  right: 0;
  background-image: radial-gradient(circle, rgba(116, 3, 3, 0.443) 2px, transparent 2px);
  background-size: 20px 20px;
}

.ndis-enquiry h2 {
  text-align:center;
  font-size:34px;
  margin-bottom:40px;
  color:var(--blue-dark);
}

.ndis-enquiry p {
  text-align:center;
  max-width:800px;
  margin:0 auto 60px;
  color:#555;
  line-height:1.6;
}


.ndis-container {
  max-width:900px;
  margin:auto;
  background:white;
  padding:45px;
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
}



.ndis-form fieldset {
  border:none;
  margin-bottom:25px;
}

.ndis-form legend {
  font-size:20px;
  font-weight:600;
  margin-bottom:15px;
}

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

.form-group {
  margin-bottom:15px;
}

.form-group.full-width {
  grid-column:span 2;
}

.form-group textarea {
  resize:vertical;
  min-height:100px;
}

.form-group select {
  width: 100%;
  padding: 14px;
  font-size: 15px;
  line-height: 1.5;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: white;
}


.form-group label {
  display:block;
  margin-bottom:6px;
  font-size:14px;
  font-weight:500;
}

.ndis-form input,
.ndis-form select,
.ndis-form textarea {
  width:100%;
  padding:12px;
  border: 1px solid #ccc;
  border-radius:6px;
}


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

.ndis-submit {
  background: var(--blue);
  color:white;
  padding:14px 26px;
  border:none;
  border-radius:6px;
  cursor:pointer;
}

.ndis-submit:hover {
  background: #034aae;
}


.feedback-hero {
  height: 60vh;
  background: url("coordination-hero.JPEG") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 24px;
  border-radius: 80px 0 80px 0;
  margin-bottom: 20px;
}

.feedback-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(214, 21, 27, 0.861), rgba(11, 27, 197, 0.736));
  border-radius: 80px 0 80px 0;
}

.feedback-hero-content {
  position: relative;
  color: white;
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
}

.feedback-hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.feedback-hero-content h1 span {
  color: var(--yellow);
}

.feedback-hero-content p {
  font-size: 20px;
}

.feedback-intro {
  background: #ffffff;
  padding: 60px 24px;
  text-align: center;
}

.feedback-intro h2 {
  font-size: 32px;
  color: var(--blue-dark);
  margin-bottom: 20px;
}

.feedback-intro p {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.feedback-about {
  background: #f9f9f9;
  padding: 60px 24px;
  text-align: center;
}

.feedback-about h2 {
  font-size: 32px;
  color: var(--blue-dark);
  margin-bottom: 20px;
}

.feedback-about ul {
  list-style: none;
  max-width: 600px;
  margin-left: 650px;
  text-align: left;
  padding: 0;

}

.feedback-about li {
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.6;
  position: relative;
  padding-left: 24px;
}

.feedback-about li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--blue);
}

.feedback-instruction {
  background: #ffffff;
  padding: 60px 24px;
  text-align: center;
}

.feedback-instruction h2 {
  font-size: 32px;
  color: var(--blue-dark);
  margin-bottom: 20px;
}

.feedback-instruction p {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.nla-fb-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  font-size: 14px;
  color: #333;
}

.nla-fb-checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--blue);
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.nla-fb-checkbox input[type="checkbox"]:checked {
  background: var(--blue);
}

.nla-fb-checkbox input[type="checkbox"]:checked::after {
  content: "✔";
  color: white;
  font-size: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.nla-fb-checkbox label {
  cursor: pointer;
  line-height: 1.4;
}



.feedback-next-steps {
  background: #ffffff;
  padding: 60px 24px;
  text-align: center;
}

.feedback-next-steps h2 {
  font-size: 32px;
  color: var(--blue-dark);
  margin-bottom: 20px;
}

.feedback-next-steps p {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.feedback-need-help {
  background: #f9f9f9;
  padding: 60px 24px;
  text-align: center;
}

.feedback-need-help h2 {
  font-size: 32px;
  color: var(--blue-dark);
  margin-bottom: 20px;
}

.feedback-need-help p {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.feedback-contact-btn {
  display: inline-block;
  background: var(--blue);
  color: white;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
  margin-top: 20px;
}

.feedback-contact-btn:hover {
  background: #034aae;
}

.nla-referral-form-hero {
  height: 60vh;
  background: url("coordination-hero.JPEG") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 24px;
  border-radius: 80px 0 80px 0;
  margin-bottom: 20px;
}

.nla-referral-form-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(214, 21, 27, 0.861), rgba(11, 27, 197, 0.736));
  border-radius: 80px 0 80px 0;
}

.nla-referral-form-hero-content {
  position: relative;
  color: white;
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
  z-index: 1;
}

.nla-referral-form-hero-content h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.nla-referral-form-hero-content h1 span {
  color: var(--yellow);
}

.nla-referral-form-hero-content p {
  font-size: 18px;
  margin-top: 15px;
}

.nla-referral-form {
  max-width:1000px;
  margin:80px auto;
  padding:0 20px;
  font-family:Arial,sans-serif;
}

/* cards */
.nla-referral-card {
  background:#ffffff;
  padding:40px;
  border-radius:18px;
  margin-bottom:35px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  border-left: #F9A825 6px solid;
}

.nla-referral-title {
  color: var(--blue-dark);
  font-size:24px;
  margin-bottom:25px;
}

/* grid */
.nla-referral-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:20px;
}

.nla-referral-group {
  display:flex;
  flex-direction:column;
}

.nla-referral-full {
  grid-column:1/-1;
}

/* labels */
.nla-referral-label {
  font-weight:600;
  margin-bottom:6px;
  font-size:14px;
}

/* inputs */
.nla-referral-input,
.nla-referral-textarea {
  padding:14px;
  border-radius:10px;
  border:1px solid #ddd;
  background:#fafafa;
  font-size:15px;
  transition:0.25s;
}

.nla-referral-textarea {
  min-height:120px;
  resize:vertical;
}

.nla-referral-input:focus,
.nla-referral-textarea:focus {
  outline:none;
  border-color:#f9a825;
  background:white;
  box-shadow:0 0 0 3px rgba(249,168,37,0.15);
}

/* radios */
.nla-referral-radio-group {
  margin-top:25px;
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

/* checkbox grid */
.nla-referral-checkbox-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:15px;
}

.nla-referral-checkbox-grid label {
  display:flex;
  gap:10px;
  padding:14px;
  background:#f7f7f7;
  border-radius:10px;
  cursor:pointer;
  transition:0.2s;
}

.nla-referral-checkbox-grid label:hover {
  background:#fff3cd;
}

/* submit */
.nla-referral-submit {
  width:100%;
  padding:18px;
  border:none;
  border-radius:14px;
  font-size:18px;
  font-weight:bold;
  color:white;
  background:linear-gradient(135deg,#f9a825,#ffcc00);
  cursor:pointer;
  transition:0.3s;
}

.nla-referral-submit:hover {
  transform:translateY(-2px);
  box-shadow:0 12px 25px rgba(0,0,0,0.15);
}

/* mobile */
@media(max-width:768px){
  .nla-referral-card {
    padding:25px;
  }
}

.service-hero-container {
  width: 90%;
  max-width: 700px;
  margin: auto;
  color: var(--white);
  z-index: 1;
  text-align: center;
}

.services-hero {
  height: 60vh;
  background: url("service-hero.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  padding: 0 24px;
  align-items: center;
  border-radius: 80px 0 80px 0;
  margin-bottom: 20px;
}


.services-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(214, 21, 27, 0.861), rgba(11, 27, 197, 0.736));
  border-radius: 80px 0 80px 0;
}

.services-hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.services-hero h1 span {
  color: var(--yellow);
}

.services-hero p {
  font-size: 18px;
  margin-top: 15px;
}


.services-intro{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  width: 1200px;
  max-width: 90%;
  margin: 0 auto 80px;
}

.services-text{
  flex:1;
}

.services-intro-image{
  flex:1;
  max-width:500px;
  width:100%;
  border-radius:12px;
}

.services-intro-image:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.services-intro h2 {
  font-size: 38px;
  color: var(--blue-dark);
  margin-bottom: 20px;
}

.services-intro p {
  max-width: 800px;
  margin: 0 auto;
  color: var(--dark-text);
}


.services-section {
  padding: 110px 24px;
  background: linear-gradient(to bottom, #f8fafc, #eef6ff);
}

.services-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.services-header {
  text-align: center;
  margin-bottom: 70px;
}

.services-tag {
  display: inline-block;
  background: #e0f2fe;
  color: #0284c7;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.services-header h2 {
  font-size: 38px;
  margin-bottom: 15px;
  color: var(--blue-dark);
}

.services-header p {
  max-width: 650px;
  margin: auto;
  color: #64748b;
  line-height: 1.6;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARD */
.service-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
   --angle: 0deg;

  border: 1px solid transparent;

  background:
    conic-gradient(
      from var(--angle),
      #00f5ff,
      #8a2be2,
      #ff00c8,
      #00f5ff
    ) border-box;

  animation: spin 3s linear infinite;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.service-icon {
  font-size: 28px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 5px;
  color: var(--yellow);
}

.service-card h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #0284c7;
  font-weight: 500;
}

.service-card p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 25px;
}

.service-btn {
  text-decoration: none;
  font-weight: 600;
  color: #0ea5e9;
  transition: 0.3s ease;
}

.service-btn:hover {
  color: #0284c7;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-header h2 {
    font-size: 30px;
  }
}


.why-services {
  padding: 100px 24px;
  background: #ffffff;
  position: relative;
}

.why-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.why-header .why-tag {
  display: inline-block;
  background: #e0f2fe;
  color: #0284c7;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.why-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: var(--blue-dark);
}

.why-header p {
  max-width: 650px;
  margin: 0 auto 60px auto;
  color: #64748b;
  line-height: 1.6;
}

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

.why-card {
  background: #f8fafc;
  padding: 35px 25px;
  border-radius: 20px;
  transition: 0.3s ease;
  border: 1px solid transparent;
}

.why-card:hover {
  transform: translateY(-8px);
  background: #ffffff;
  border-color: #e0f2fe;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.why-icon {
  margin-bottom: 20px;
}

.why-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--yellow);
}

.why-card p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.5;
}

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

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

  .why-header h2 {
    font-size: 28px;
  }
}

.nla-sc-container{
max-width:1150px;
margin:auto;
padding:80px 20px;
}

/* HERO */

.nla-sc-hero{
  height:60vh;
  background:url("coordination-hero.JPEG") center/cover no-repeat;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 24px;
  text-align:center;
  border-radius:80px 0 80px 0;
  margin-bottom:20px;
  overflow:hidden;
}

.nla-sc-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to right, rgba(214,21,27,0.86), rgba(11,27,197,0.74));
  border-radius:80px 0 80px 0;
  z-index: index 1;
}

/* CONTENU HERO */

.nla-sc-hero-content{
  position:relative;
  z-index:2;
  max-width:700px;
  margin:auto;
  color:white;
}

.nla-sc-title{
  font-size:48px;
  margin-bottom:20px;
}

.nla-sc-title span{
  color:var(--yellow);
}

.nla-sc-hero-text{
  max-width:600px;
  margin:auto;
  margin-bottom:35px;
  color:#eaf0ff;
  line-height:1.6;
}

/* BUTTONS */

.nla-sc-btn-primary{
background:#0d245b;
color:white;
padding:14px 28px;
border-radius:12px;
text-decoration:none;
font-weight:600;
transition:0.3s;
display:inline-block;
}

.nla-sc-btn-primary:hover{
background:#1f53c5;
transform:translateY(-2px);
}

.nla-sc-btn-secondary{
border:2px solid white;
padding:12px 24px;
border-radius:12px;
color:white;
text-decoration:none;
margin-left:15px;
}

.nla-sc-btn-large{
padding:18px 40px;
font-size:18px;
}

/* SECTION INTRO */

.nla-sc-intro{
  padding:80px 20px;
}

.nla-sc-container{
  max-width:1150px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

/* TEXT */

.nla-sc-intro-text h2{
  color: var(--blue-dark);
  font-size:38px;
  margin-bottom:20px;
}

.nla-sc-intro-text p{
  font-size:17px;
  line-height:1.7;
  color:#555;
}

/* IMAGE */

.nla-sc-intro-image img{
  width:100%;
  border-radius:20px;
  box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

/* MOBILE */

@media(max-width:900px){

.nla-sc-container{
  grid-template-columns:1fr;
  text-align:center;
}

}

.nla-sc-service{
padding:60px 20px;
}

.nla-sc-service-container{
max-width:1400px;
margin:auto;
padding:0 20px;
}

/* GRID */

.nla-sc-service-grid{
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap: 50px;
margin-left: 150px;
}

/* IMAGE */

.nla-sc-service-image img{
width:90%;
height: 450px;
border-radius:22px;
box-shadow:0 20px 40px rgba(0,0,0,0.15);
transition:0.4s;
}

.nla-sc-service-image img:hover{
transform:scale(1.03);
}

.nla-sc-service-content h3 {
color: var(--blue);
font-size: 22px;
margin-bottom: 15px;
}
/* TEXT */

.nla-sc-service-title{
color:var(--blue-dark);
font-size:38px;
margin-bottom:25px;
}

.nla-sc-service-description {
font-size:17px;
line-height:1.7;
color:#555;
}

/* FEATURES */

.nla-sc-service-features{
margin-bottom:25px;
}

.nla-sc-service-feature{
display:flex;
align-items:center;
margin-bottom:16px;
}

.nla-sc-icon{
font-size:22px;
margin-right:12px;
}



/* SERVICES */
.nla-sc-service-alt {
background: var(--light-bg);
}

.nla-sc-service-grid {
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
width: 1400px;
max-width: 90%;
}

.nla-sc-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:start;
}

.nla-sc-image img { 
  margin: 0 auto;
width:60%;
border-radius:20px;
box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.nla-sc-features{
margin:30px 0;
}

.nla-sc-feature{
display:flex;
align-items:flex-start;
margin-bottom:15px;
}

.nla-sc-feature span{
font-size:24px;
margin-right:12px;
}



.nla-ah{
padding:100px 20px;
background:#f7f9ff00;
}

.nla-ah-container{
max-width:1200px;
margin:auto;
}

/* INTRO */

.nla-ah-intro{
text-align:center;
max-width:700px;
margin:auto;
margin-bottom:30px;
}

.nla-ah-intro h2{
  color: var(--blue-dark);
font-size: 34px;
margin-bottom:15px;
}

.nla-ah-intro p{
color:#555;
line-height:1.7;
}

/* SERVICE */

.nla-ah-service{
text-align: center;
}

.nla-ah-service::after {
content: "";
display: block;
width: 100%;
height: 1px;
background: #ddd;
margin: 30px auto 0 auto;
}


.nla-ah-service h3 {
font-size:32px;
color: var(--blue-dark);
}

.nla-ah-service-header{
margin-bottom:30px;
}

.nla-ah-service-header h3{
font-size:28px;
margin-bottom:10px;
}

.nla-ah-service-header p{
color:#000;
}

/* CARDS */

.nla-ah-cards{
display:grid;
grid-template-columns:repeat(3 ,1fr);
gap:25px;
}

/* MINI CARDS */

.nla-ah-mini-card{
background:white;
padding:22px;
border-radius:16px;
box-shadow:0 10px 25px rgba(0,0,0,0.07);
display:flex;
flex-direction: column;
align-items:center;
gap:12px;
transition:0.3s;
}

.nla-ah-mini-card p {
font-size:18px;
color:#555;
font-weight: 300;
}

.nla-ah-mini-card img {
width: 100%;
height: 220px;
object-fit: cover;
border-radius: 12px;
}

.nla-ah-mini-card:hover{
transform:translateY(-4px);
}

.nla-ah-mini-card span{
font-size:22px;
}

/* MOBILE */

@media(max-width:900px){

.nla-ah-cards{
grid-template-columns:1fr;
}

}



.nla-nursing-hero {
height: 60vh;
background: url("coordination-hero.JPEG") center/cover no-repeat;
position: relative;
display: flex;
align-items: center;
justify-content: center;
padding: 0 24px;
text-align: center;
border-radius: 80px 0 80px 0;
margin-bottom: 20px;
overflow: hidden;
z-index: 1;
}

.nla-nursing-hero::before {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(to right, rgba(214, 21, 27, 0.861), rgba(11, 27, 197, 0.736));
border-radius: 80px 0 80px 0;
}

.nla-nursing-hero-content {
position: relative;
color: white;
max-width: 700px;
text-align: center;
z-index: 2;
}

.nla-nursing-hero-content h1 {
font-size: 42px;
margin-bottom: 20px;
}

.nla-nursing-hero-content h1 span {
color: var(--yellow);
}

.nla-nursing-hero-content p {
font-size: 18px;
margin-top: 15px;
margin-bottom: 30px;
}

.nla-nursing-container {
max-width: 1150px;
margin: auto;
padding: 20px 20px;
}

.nla-nursing-intro{
max-width:1100px;
margin:auto;
text-align:center;
line-height:1.7;
font-size:17px;
color:#444;
}

/* TITLES */

.nla-nursing-section-title{
text-align:center;
color: var(--blue-dark);
font-size:38px;
margin-bottom:20px;
}

/* GRID */

.nla-nursing-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
margin-top:40px;
}

/* CARDS */

.nla-nursing-card{
background:#fff;
padding:30px;
border-radius:16px;
box-shadow:0 12px 28px rgba(0,0,0,0.08);
text-align:center;
transition:all 0.3s ease;
}

.nla-nursing-card:hover{
transform:translateY(-8px);
box-shadow:0 18px 35px rgba(0,0,0,0.12);
}

.nla-nursing-card img{
width:65px;
margin-bottom:15px;
}

.nla-nursing-card h3{
  color: var(--yellow);
  font-size:20px;
  margin-bottom:10px;
}

.nla-nursing-card p{
font-size:15px;
color:#555;
line-height:1.6;
}

/* NOTE BOX */

.nla-nursing-note{
margin-top:40px;
background:#f4f7ff;
padding:25px;
border-left:5px solid #2a6df4;
border-radius:10px;
font-size:16px;
color:#444;
}

/* CTA */

.nla-nursing-cta{
background:#2a6df4;
color:#fff;
text-align:center;
padding:80px 20px;
margin-top:60px;
}

.nla-nursing-cta h2{
font-size:32px;
margin-bottom:15px;
}

.nla-nursing-cta p{
font-size:18px;
margin-bottom:25px;
}

.nla-nursing-btn{
display:inline-block;
background:#fff;
color:#2a6df4;
padding:14px 28px;
border-radius:12px;
font-weight:600;
text-decoration:none;
transition:0.3s;
}

.nla-nursing-btn:hover{
background:#e9efff;
}

/* MOBILE */

@media(max-width:768px){

.nla-nursing-hero h1{
font-size:32px;
}

.nla-nursing-section-title{
font-size:28px;
}
}


/* WHY */

.nla-sc-why{
background:#f6f8ff;
padding:100px 20px;
text-align:center;
}

.nla-sc-why-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
margin-top:40px;
}

.nla-sc-why-card{
background:white;
padding:35px;
border-radius:18px;
box-shadow:0 15px 35px rgba(0,0,0,0.08);
transition:0.3s;
}

.nla-sc-why-card:hover{
transform:translateY(-6px);
}

.nla-sc-icon{
font-size:36px;
margin-bottom:10px;
}

/* TESTIMONIALS */

.nla-sc-testimonial-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:30px;
margin-top:40px;
}

.nla-sc-testimonial{
background:white;
padding:35px;
border-radius:18px;
box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

.nla-sc-testimonial span{
display:block;
margin-top:15px;
font-weight:600;
}

/* CTA */

.nla-sc-cta{
background:#2a6df4;
color:white;
text-align:center;
padding:100px 20px;
}

.nla-sc-cta p{
color:#e7ecff;
margin-bottom:30px;
}


.support-coordination {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #eef6ff 100%);
  position: relative;
  overflow: hidden;
}

.support-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT SIDE */
.support-tag {
  display: inline-block;
  background: #e0f2fe;
  color: #0284c7;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 15px;
  font-weight: 600;
}

.support-left h2 {
  font-size: 38px;
  margin-bottom: 10px;
  color: var(--blue-dark);
}

.support-left h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--blue);
  font-weight: 500;
}

.support-intro {
  margin-bottom: 30px;
  line-height: 1.6;
  color: #64748b;
}

.support-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #0ea5e9;
  color: white;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.support-btn:hover {
  background: #0284c7;
  transform: translateY(-3px);
}

/* RIGHT SIDE */
.support-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.support-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.support-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.support-card .icon {
  font-size: 28px;
  margin-bottom: 15px;
}

.support-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--yellow);
}

.support-card p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .support-container {
    grid-template-columns: 1fr;
  }

  .support-right {
    grid-template-columns: 1fr;
  }

  .support-left h2 {
    font-size: 30px;
  }
}


.services-cta {
  text-align: center;
  padding: 80px 20px;
  background: #0d47a1;
  color: #ffffff;
}

.service-cta-buttons {
  margin-top: 25px;
}

.cta-btn {
  display: inline-block;
  margin: 10px;
  padding: 12px 22px;
  background: white;
  color: #0d47a1;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
}

.cta-btn.secondary {
  background: #ff7043;
  color: white;
}

.cta-btn.outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}
.cta-btn:hover {
  opacity: 0.9;
}


.ndis-calc-hero {
  height: 60vh;
  background: url("ndis-calc-image.webp") center/cover no-repeat;
  position: relative;
  display: flex;
  padding: 0 24px;
  align-items: center;
  border-radius: 80px 0 80px 0;
  margin-bottom: 20px;
}

.ndis-calc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(247, 80, 86, 0.679), rgb(11, 27, 197));
  border-radius: 80px 0 80px 0;
}

.ndis-calc-hero-content {
  position: relative;
  color: white;
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
  z-index: 1;
}

.ndis-calc-hero-content h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.ndis-calc-hero-content h1 span {
  color: var(--yellow);
}

.ndis-calc-hero-content p {
  font-size: 18px;
  margin-top: 15px;
}

.nbx-wrapper {
  display: flex;
  gap: 50px;
  justify-content: center;
  padding: 80px 20px;
  flex-wrap: wrap;
}

.nbx-card,
.nbx-chart-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  width: 420px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  animation: fadeUp 0.8s ease;
}

.nbx-card input,
.nbx-card select {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 1px solid #ddd;
}

.nbx-card button {
  width: 100%;
  padding: 14px;
  background: #2a6df4;
  border: none;
  color: white;
  border-radius: 12px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.nbx-card button:hover {
  background: #1f3c88;
  transform: translateY(-3px);
}

#nbx-results {
  margin-top: 20px;
  background: #f4f7fc;
  padding: 20px;
  border-radius: 12px;
}

@keyframes fadeUp {
  from { opacity:0; transform:translateY(30px); }
  to { opacity:1; transform:translateY(0); }
}



.feedback-section {
  padding: 80px 20px;
  background: #f9fafc;
}

.feedback-container {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.feedback-header {
  text-align: center;
  margin-bottom: 40px;
}

.feedback-header h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.feedback-header p {
  max-width: 600px;
  margin: auto;
  color: #555;
}

.feedback-form {
  display: grid;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  border: #bdb0b0 1px solid;
  border-radius: 12px;
  padding: 20px;
}

label {
  margin-bottom: 6px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 15px;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #00796b;
}

.submit-btn {
  background: #00796b;
  color: white;
  padding: 16px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #005f56;
}

.checkbox-group {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.privacy-note {
  font-size: 14px;
  color: #777;
  text-align: center;
}


.form-group.checkbox-group {
  border: none;
  padding: 0;
}


.nla-feedback-section {
  padding: 110px 24px;
  background: linear-gradient(to bottom, #f8fafc, #eef6ff);
}

.nla-feedback-wrapper {
  max-width: 1100px;
  margin: auto;
}

/* HERO */
.nla-feedback-hero {
  text-align: center;
  margin-bottom: 70px;
}

.nla-feedback-badge {
  display: inline-block;
  background: #e0f2fe;
  color: #0284c7;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.nla-feedback-title {
  font-size: 36px;
  margin-bottom: 20px;
  color: #1e293b;
}

/* ================================
   GLOBAL CONTAINER
================================ */

.nla-fb-container {
  max-width: 1150px;
  margin: auto;
  padding: 0 24px;
}


section {
  padding: 100px 0;
}

/* ================================
   HERO
================================ */

.nla-fb-hero {
  background: linear-gradient(135deg, #f8fafc 0%, #eef6ff 100%);
  text-align: center;
}

.nla-fb-badge {
  display: inline-block;
  background: #e0f2fe;
  color: var(--blue);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.nla-fb-hero h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: var(--blue-dark);
}

.nla-fb-hero p {
  max-width: 750px;
  margin: auto;
  color: #64748b;
  line-height: 1.7;
  font-size: 17px;
}

/* ================================
   TOPICS GRID
================================ */

.nla-fb-topics h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 34px;
  color: var(--blue-dark);
}

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

.nla-fb-topic-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 22px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  transition: 0.35s ease;
}

.nla-fb-topic-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.nla-fb-topic-card h4 {
  margin-bottom: 10px;
  color: #0284c7;
}

.nla-fb-topic-card p {
  color: #64748b;
  line-height: 1.6;
}

/* ================================
   INSTRUCTIONS
================================ */

.nla-fb-instructions {
  background: #f8fafc;
  text-align: center;
}

.nla-fb-instructions h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--blue-dark);
}

.nla-fb-instructions p {
  max-width: 700px;
  margin: auto;
  color: #64748b;
  line-height: 1.6;
}

/* ================================
   FORM SECTION
================================ */

.nla-fb-form-section {
  background: linear-gradient(to bottom, #ffffff, #f8fafc);
}

.nla-fb-form-wrapper {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  padding: 60px;
  border-radius: 28px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.06);
}

.nla-fb-form-header {
  text-align: center;
  margin-bottom: 50px;
}

.nla-fb-form-header h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: var(--blue-dark);
}

.nla-fb-form-header p {
  color: #64748b;
}

.nla-fb-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.nla-fb-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.nla-fb-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #334155;
}

.nla-fb-field input,
.nla-fb-field select,
.nla-fb-field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  font-size: 15px;
  transition: 0.3s ease;
}

.nla-fb-field input:focus,
.nla-fb-field select:focus,
.nla-fb-field textarea:focus {
  outline: none;
  border-color: #0ea5e9;
  box-shadow: 0 0 0 3px rgba(14,165,233,0.15);
}

.nla-fb-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nla-fb-submit {
  padding: 16px;
  border: none;
  border-radius: 40px;
  background: linear-gradient(90deg, #0ea5e9, #22c55e);
  color: white;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

.nla-fb-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.nla-fb-privacy {
  text-align: center;
  font-size: 14px;
  color: #64748b;
}

/* ================================
   PROCESS SECTION
================================ */

.nla-fb-process {
  background: #eef6ff;
  text-align: center;
}

.nla-fb-process h2 {
  font-size: 34px;
  margin-bottom: 60px;
  color: var(--blue-dark);
}

.nla-fb-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.nla-fb-step {
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.nla-fb-step span {
  display: inline-block;
  font-size: 22px;
  font-weight: bold;
  color: #0ea5e9;
  margin-bottom: 15px;
}

.nla-fb-step h4 {
  margin-bottom: 10px;
  color: #1e293b;
}

.nla-fb-step p {
  color: #64748b;
}

.nla-fb-external {
  max-width: 900px;
  margin: auto;
  color: #1d2125;
  line-height: 1.4;
}


.nla-feedback-info-section {
  padding: 100px 24px;
  background: linear-gradient(to bottom, #f9fbfd, #eef4f8);
}

.nla-feedback-info-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* Intro */
.nla-feedback-intro {
  text-align: center;
  margin-bottom: 70px;
}

.nla-feedback-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 20px;
}

.nla-feedback-description {
  max-width: 750px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.7;
  color: #5f6c7b;
}

/* Grid */
.nla-feedback-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

/* Cards */
.nla-feedback-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.nla-feedback-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.nla-feedback-card h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #0d6efd;
}

.nla-feedback-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #5f6c7b;
  margin-bottom: 16px;
}

.nla-feedback-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nla-feedback-contact-list li {
  font-size: 15px;
  margin-bottom: 12px;
  color: #4a5568;
}

/* Highlight Help Card */
.nla-feedback-help {
  background: #0d6efd;
  color: white;
}

.nla-feedback-help h3,
.nla-feedback-help p,
.nla-feedback-help li {
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .nla-feedback-title {
    font-size: 28px;
  }

  .nla-feedback-card {
    padding: 28px;
  }
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 1024px) {
  .nla-fb-topics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nla-fb-process-grid {
    grid-template-columns: 1fr;
  }

  .nla-fb-grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  section {
    padding: 70px 0;
  }

  .nla-fb-hero h1 {
    font-size: 30px;
  }

  .nla-fb-form-wrapper {
    padding: 40px 25px;
  }
}
