/* =================================
   NAVIGATION STYLES
   ================================= */

/* Main navigation styles */
.main-nav {
    /* background: #2c3e50; */
    padding: 1rem;
}

.main-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.main-nav li {
    position: relative;
}

.main-nav a.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.75rem 1rem;
    /* color: #ffffff; */
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.main-nav a.nav-link:hover {
    color: rgb(141 118 245 / var(--tw-text-opacity, 1));
    /* border-radius: 4px; */
}

.main-nav li.has-sub > a.nav-link::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-top-color: #2d2d2d;
    margin-left: 0.25rem;
    margin-top: 3px;
    transition: transform 0.2s ease;
}

.main-nav li.has-sub > a[aria-expanded="true"]::after {
    transform: rotate(180deg);
    margin-top: -3px;
}

/* Sub-menu styles */
.main-nav ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 50;
    min-width: 12rem;
    background: #ffffff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.main-nav ul.sub-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav ul.sub-menu li {
    display: block;
    width: 100%;
    margin-top: 1px;
}

.main-nav ul.sub-menu a.nav-link {
    /* color: #2c3e50; */
    color: #fff;
    background-color: rgb(141 118 245 / var(--tw-text-opacity, 1));
    padding: 0.75rem 1rem;
    width: 100%;
    display: block;
}

.main-nav ul.sub-menu a.nav-link:hover {
    background-color: #f8f9fa;
    color: rgb(141 118 245 / var(--tw-text-opacity, 1));
}

/* =================================
   HERO SECTION STYLES
   ================================= */

.bg-purple {
    background-color: rgb(141 118 245 / var(--tw-bg-opacity, 1));
    color: #fff;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    margin-bottom: 2rem;
}

.hero h1 strong {
    /* color: #ff8a50; */
    background-image: linear-gradient(to right, #ffac75, #ff8a50);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero span.pitch {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.hero .col-left p {
    font-weight: 300;
    font-size: 1.875rem;
    margin-bottom: 2.5rem;
    line-height: 2.25rem;
}

.hero li {
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.hero .col-right h3 {
    font-size: 1.5rem;
    line-height: 2rem;
}

.hero .col-right label {
    margin-bottom: 15px;
    position: relative;
    display: block;
    color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}

.hero .col-right .wpcf7-spinner {
    position: absolute;
    right: 0;
    bottom: 15px;
}

.hero .col-right .wpcf7-not-valid-tip {
    position: absolute;
    right: 0;
    font-size: 14px;
    top: 0;
}

.hero .col-right .wpcf7-form-control-wrap {
    position: static;
}

.hero .col-right .wpcf7-response-output {
    font-size: 14px;
    background: #ffb900;
    margin-top: 0;
}

/* =================================
   SERVICES SECTION STYLES
   ================================= */

.services-intro h2,
.services-intro h3 {
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 2.5rem;
    margin-bottom: 1rem;
}

.services-intro p {
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.service-content h3 {
    margin-bottom: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
    font-family: 'Open Sans', sans-serif;
}

.service-content p {
    margin-bottom: 1.5rem;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}

.service-content ul {
    margin-bottom: 1.5rem;
    display: block;
    clear: both;
}

.service-content li {
    position: relative;
    padding-left: 15px;
    font-size: 0.875rem;
    line-height: 1.25rem;
    margin-top: 7px;
}

.service-content li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    background: rgb(255 172 117 / var(--tw-bg-opacity, 1));
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
}

/* =================================
   CTA SECTION STYLES
   ================================= */

.cta-content_wrapper {
    color: #fff;
}

.cta-content_wrapper h2,
.cta-content_wrapper h3 {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 2.5rem;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 1.5rem;
}

.cta-content_wrapper p {
    font-size: 1.25rem;
    line-height: 1.75rem;
    margin-bottom: 2rem;
    padding: 0 12.5%;
}

/* =================================
   ABOUT SECTION STYLES
   ================================= */

.about-copy h2,
.about-copy h3 {
    font-size: 2.25rem;
    line-height: 2.5rem;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-copy p {
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
    margin-bottom: 1.5rem;
}

.about-copy li {
    padding-left: 25px;
    position: relative;
    color: rgb(55 65 81 / var(--tw-text-opacity, 1));
    margin-top: 15px;
}

.about-copy li:nth-child(odd)::before {
    content: "";
    width: 0.75rem;
    background: rgb(255 172 117 / var(--tw-bg-opacity, 1));
    height: 0.75rem;
    border-radius: 9999px;
    position: absolute;
    left: 0;
    top: 5px;
}

.about-copy li:nth-child(even)::before {
    content: "";
    width: 0.75rem;
    background: rgb(141 118 245 / var(--tw-bg-opacity, 1));
    height: 0.75rem;
    border-radius: 9999px;
    position: absolute;
    left: 0;
    top: 5px;
}


/* =================================
   NDIS services SECTION STYLES
   ================================= */
.ndis-services h2{
    font-size: 2.25rem;
    line-height: 2.5rem;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
    margin-bottom: 1.5rem;
    font-weight: 700;
}
.ndis-services h3 {
    font-size: 2rem;
    line-height: 2.25rem;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.ndis-services p{
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
    margin-bottom: 1.5rem;
}
.ndis-services ol{
	margin-bottom: 1.5rem;
	list-style:numeric;
	padding-left: 25px;
}
.ndis-services ul{
	margin-bottom: 1.5rem;
	list-style:disc;
	padding-left: 25px;
}
.ndis-services li{
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
    margin-left: 15px;
    position: relative;
    margin-top: 15px;
}

/* =================================
   WHY SECTION STYLES
   ================================= */

.why-section_intro h2,
.why-section_intro h3 {
    font-size: 2.25rem;
    line-height: 2.5rem;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.why-section_intro p {
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
    margin-bottom: 1.5rem;
}

/* =================================
   CONTACT SECTION STYLES
   ================================= */

.contact-intro h2,
.contact-intro h3 {
    font-size: 2.25rem;
    line-height: 2.5rem;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-intro p {
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
    margin-bottom: 1.5rem;
}

.contact-form {
    position: relative;
}

.contact-form p {
    /* margin-bottom: 1rem; */
    position: relative;
}

.contact-form .wpcf7-not-valid-tip {
    font-size: 14px;
    top: 0;
    right: 0;
}

.contact-form .wpcf7 form .wpcf7-response-output {
    margin-top: 10px;
}

.contact-form input[type="submit"] {
    background: rgb(141 118 245 / var(--tw-bg-opacity, 1));
}

.contact-form input[type="submit"]:hover {
    background: rgb(124 101 240 / var(--tw-bg-opacity, 1));
}

.contact-form .wpcf7-spinner {
    position: absolute;
    right: 0;
    top: 15px;
}

/* =================================
   VALUES SECTION STYLES
   ================================= */

.values-intro h2,
.values-intro h3 {
    font-size: 2.25rem;
    line-height: 2.5rem;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.values-intro p {
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
    margin-bottom: 1.5rem;
}

/* =================================
   TEAM SECTION STYLES
   ================================= */

.team-intro h2,
.team-intro h3 {
    font-size: 2.25rem;
    line-height: 2.5rem;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.team-intro p {
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
    margin-bottom: 1.5rem;
}

/* =================================
   GENERAL SECTION STYLES
   ================================= */

.section-intro h2,
.section-intro h3 {
    font-size: 2.25rem;
    line-height: 2.5rem;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.section-intro p {
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
    margin-bottom: 1.5rem;
}

.header-inside p {
    font-size: 1.25rem;
    line-height: 1.75rem;
    margin-bottom: 2rem;
}

/* =================================
   FOOTER AND WIDGET STYLES
   ================================= */

.icon-contact svg {
    width: 16px;
    height: 16px;
}

.widget_nav_menu ul li {
    margin-top: 15px;
}

.widget_nav_menu ul li a:hover {
    color: rgb(255 172 117 / var(--tw-text-opacity, 1));
}

.footer-newsletter {
    position: relative;
}

.footer-newsletter input[type="email"],
.footer-newsletter .wpcf7-form-control-wrap {
    width: 60%;
}

.footer-newsletter input[type="submit"] {
    background-color: rgb(141 118 245 / var(--tw-bg-opacity, 1));
}

.newsletter-form {
    position: relative;
}

.newsletter-form .wpcf7-spinner {
    position: absolute;
    top: 0;
    right: 0;
}

.newsletter-form .wpcf7-not-valid-tip {
    position: absolute;
    top: 30px;
    left: 0;
    font-size: 14px;
}

.footer-newsletter .wpcf7-response-output {
    font-size: 14px;
}

/* =================================
   UTILITY CLASSES
   ================================= */

.bg-black {
    background-color: #000;
}

/* =================================
   FEATURE LIST STYLES
   ================================= */

.feature-list p {
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
    margin-bottom: 1.5rem;
}

.feature-list h4 {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}

.feature-list ul {
    margin-top: 20px;
}

.feature-list li {
    position: relative;
    padding-left: 20px;
    font-size: 0.875rem;
    line-height: 1.5rem;
}

.feature-list li:before {
    position: absolute;
    content: "";
    left: 0;
    top: 5px;
    width: 10px;
    height: 10px;
    background: rgb(141 118 245 / var(--tw-text-opacity, 1));
    color: rgb(141 118 245 / var(--tw-text-opacity, 1));
}

/* =================================
   NURSE FORM STYLES
   ================================= */

textarea.message-hero {
    height: 120px;
    resize: none;
}

.nurse-form form {
    position: relative;
}

.nurse-form .wpcf7-spinner {
    position: absolute;
    right: 0;
    bottom: 10px;
}

.nurse-form .wpcf7 form.invalid .wpcf7-response-output,
.nurse-form .wpcf7 form.unaccepted .wpcf7-response-output,
.nurse-form .wpcf7 form.payment-required .wpcf7-response-output {
    color: #2d2d2d;
}

/* =================================
   EMERGENCY AND STEPS STYLES
   ================================= */

.emergency {
    background: rgb(254 242 242 / var(--tw-bg-opacity, 1));
}

.steps-block h3 {
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.75rem;
    margin-bottom: 0.75rem;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}

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

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
        line-height: 1.3;
    }

    .main-nav ul {
        flex-direction: column;
    }

    .main-nav ul.sub-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
        background: #34495e;
        box-shadow: none;
    }

    .main-nav ul.sub-menu.show {
        display: block;
    }

    .main-nav ul.sub-menu a.nav-link {
        color: #ffffff;
    }
}

/* ========== Offcanvas Mobile Navigation ========== */
/*--- HAMBURGER BUTTON ---*/
.mobile-nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-nav-toggle-bar { display: block; width: 28px; height: 3px; margin: 6px 0; background: #222; border-radius: 2px; transition: all 0.2s; }

/*--- MOBILE NAV OVERLAY ---*/
.mobile-nav-overlay {
    display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 99; transition: opacity 0.3s;
}
.mobile-nav-overlay.open { display: block; opacity: 1; }

/*--- MOBILE NAV OFFCANVAS ---*/
.mobile-nav {
    position: fixed; top: 0; right: 0; width: 80vw; max-width: 320px; height: 100vh;
    background: #fff; z-index: 100; box-shadow: 2px 0 10px rgba(0,0,0,0.12);
    transform: translateX(100%); transition: transform 0.3s cubic-bezier(.4,0,.2,1);
    display: flex; flex-direction: column; padding: 36px 20px 20px 20px;
}
.mobile-nav.open { transform: translateX(0); }

.mobile-nav-close {
    position: absolute; top: 14px; right: 18px; background: none; border: none; width: 32px; height: 32px;
    cursor: pointer; z-index: 110; display: flex; align-items: center; justify-content: center;
}
.nav-close-bar {
    position: absolute; left: 6px; width: 20px; height: 3px; background: #222; border-radius: 2px; transition: 0.2s;
}
.nav-close-bar-1 { top: 15px; transform: rotate(45deg); }
.nav-close-bar-2 { top: 15px; transform: rotate(-45deg); }

.mobile-menu { list-style: none; padding: 0; margin: 40px 0 0 0; }
.mobile-menu li { border-bottom:1px solid rgba(0,0,0,0.4); }
.mobile-menu a { font-size: 1.1rem; color: #222; text-decoration: none; padding: 6px 0; display: block; }
.mobile-menu li.has-sub > a:after { content: "\f107"; font-family:"FontAwesome"; font-size: 1em; float: right; }
.mobile-menu li ul.sub-menu li {padding-left:15px;}
.mobile-menu li ul.sub-menu li:last-child{ border-bottom:none;}
/*--- RESPONSIVE VISIBILITY ---*/
@media (max-width: 991px) {
    .main-nav { display: none; }
    .mobile-nav-toggle { display: block; }
    .header-contacts { display: none; }
}
@media (min-width: 992px) {
    .mobile-nav, .mobile-nav-toggle, .mobile-nav-overlay { display: none !important; }
    .main-nav { display: flex !important; }
    .header-contacts { display: flex !important; }
}

/**CUSTOM**/
.insideheader h2{
	margin-bottom:15px;
	font-weight:bold;
}
#topimage>div>.items-center{
	align-items:flex-start;
}
.faqs .ndis-services h3{
	padding-top:15px;
	border-top:1px solid rgba(0,0,0,0.15);
}