/* ===================================================================
   BEYOND LIMITS - NDIS SERVICES STYLESHEET
   ===================================================================
   
   Table of Contents:
   1. CSS Custom Properties (Variables)
   2. Base Styles & Typography
   3. Layout Components
   4. Navigation & Header
   5. Hero Section
   6. Cards & Content Blocks
   7. Forms & Interactive Elements
   8. Animations & Effects
   9. Footer
   10. Responsive Design
   
   ================================================================= */

/* ===================================================================
   1. CSS CUSTOM PROPERTIES (VARIABLES)
   ================================================================= */
:root {
    /* Primary Brand Colors */
    --primary-purple: #7d3f98;
    --primary-purple-dark: #582a6a;
    --primary-purple-darker: #512b7e;
    --secondary-purple: #93308f;
    --accent-purple: #9b59b6;
    --light-purple: #d7b4f0;
    --lightest-purple: #f5ebfd;
    
    /* Gradient Colors */
    --gradient-primary: linear-gradient(135deg, #7d3f98 0%, #512b7e 100%);
    --gradient-secondary: linear-gradient(150deg, #882d84, #612d7a);
    --gradient-bg: linear-gradient(180deg, #fff0f7 0%, #fff 100%);
    
    /* Neutral Colors */
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    
    /* Semantic Colors */
    --success: #8cc63f;
    --warning: #ffc107;
    --danger: #dc3545;
    --info: #17a2b8;
    
    /* Typography */
    --font-family-base: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-family-headings: 'Poppins', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 5rem;
    
    /* Border Radius */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 15px;
    --border-radius-xl: 20px;
    --border-radius-pill: 50px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(125, 63, 152, 0.1);
    --shadow-md: 0 4px 15px rgba(125, 63, 152, 0.15);
    --shadow-lg: 0 8px 25px rgba(125, 63, 152, 0.2);
    --shadow-xl: 0 15px 35px rgba(125, 63, 152, 0.25);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===================================================================
   2. BASE STYLES & TYPOGRAPHY
   ================================================================= */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-base);
    background: var(--gradient-bg);
    color: var(--gray-900);
    width: 100%;
    overflow-x: hidden;
    line-height: 1.6;
    margin: 0;
    padding: 0; 
}

/* Modern Interactive Elements */
.btn-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: 1000;
    font-size: 18px;
}

.btn-back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* Enhanced Typography */
.typed-text {
    color: var(--primary-purple);
    font-weight: 700;
    display: inline-block;
    min-width: 300px; /* This ensures container width stays consistent */
}

.typing-cursor {
    color: var(--primary-purple);
    animation: blink 1s infinite;
    display: inline-block;
    margin-left: 2px;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Interactive Cards and Content */
.content-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(125, 63, 152, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(125, 63, 152, 0.05);
    display: flex;
    flex-direction: column;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(125, 63, 152, 0.05) 0%, rgba(147, 48, 143, 0.05) 100%);
    clip-path: circle(0% at 50% 50%);
    transition: all 0.5s ease-out;
    z-index: 0;
}

.content-card:hover::before {
    clip-path: circle(150% at 50% 50%);
}

.content-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(125, 63, 152, 0.15);
    border-color: rgba(125, 63, 152, 0.2);
}

.content-card h3 {
    color: var(--primary-purple);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.content-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    border-radius: 2px;
    transition: all 0.4s ease;
}

.content-card:hover h3::after {
    width: 80px;
}

.content-card p {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.content-card .card-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(125, 63, 152, 0.1);
    position: relative;
    z-index: 1;
}

.content-card .card-stats {
    display: flex;
    gap: 1.5rem;
}

.content-card .stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.content-card .stat-item i {
    color: var(--primary-purple);
    font-size: 1rem;
}

.content-card .card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
    position: relative;
    z-index: 1;
}

.content-card .tag {
    background: rgba(125, 63, 152, 0.1);
    color: var(--primary-purple);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.content-card:hover .tag {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
}

.content-card .card-action {
    margin-top: 1.5rem;
    position: relative;
    z-index: 1;
}

.content-card .btn-card {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.content-card .btn-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(125, 63, 152, 0.2);
}

.content-card .btn-card i {
    transition: transform 0.3s ease;
}

.content-card .btn-card:hover i {
    transform: translateX(5px);
}

.content-card .card-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.content-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.content-card:hover .card-image img {
    transform: scale(1.1);
}

.content-card .card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(125, 63, 152, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    backdrop-filter: blur(5px);
}

/* Card Grid Layout */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(125, 63, 152, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(125, 63, 152, 0.1);
    transform: translateX(5px);
}

.trust-item i {
    color: var(--primary-purple);
    font-size: 1.2rem;
}

.trust-item span {
    font-weight: 600;
    color: var(--text-dark);
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
}

.image-container img {
    width: 100%; 
    object-fit: cover;
    transition: all 0.5s ease; 
    animation: bounce 4s infinite;
}

.image-container:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(125, 63, 152, 0.2) 0%, rgba(125, 63, 152, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(125, 63, 152, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(125, 63, 152, 0.1);
    transform: translateX(5px);
}

.feature-item i {
    color: var(--primary-purple);
    font-size: 1.5rem;
    padding: 10px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(125, 63, 152, 0.1);
}

.feature-item div {
    flex: 1;
}

.feature-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
}

.btn-cta-enhanced {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(125, 63, 152, 0.2);
}

.btn-cta-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(125, 63, 152, 0.3);
    color: white;
}

.btn-cta-enhanced i {
    transition: transform 0.3s ease;
}

.btn-cta-enhanced:hover i {
    transform: translateX(5px);
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-headings);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--primary-purple);
}

h1 { font-size: 4.5rem; }
h2 { font-size: 3rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.2rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

a {
    color: var(--primary-purple);
    text-decoration: none;
    transition: var(--transition-base);
}

a:hover {
    color: var(--primary-purple-dark);
}

/* Utility Classes */
.text-primary { color: var(--primary-purple) !important; }
.bg-primary { background-color: var(--primary-purple) !important; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right !important; }

/* ===================================================================
   3. LAYOUT COMPONENTS
   ================================================================= */

/* Container and Grid Systems */
.section-wrapper {
    padding:120px 0;
    background: linear-gradient(to bottom, #f6edfb 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.section-wrapper h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.section-wrapper h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    border-radius: 2px;
}

.content-container {
    margin-bottom: 3rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    padding: 0 4rem;
}

.column {
    flex: 1 1 48%;
    border-radius: var(--border-radius-md);
    padding: 4rem;
    text-align: left;
}

.column h3 {
    color: var(--primary-purple);
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 700;
}

.column p {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.6;
}

.column-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-sm);
    margin-bottom: 20px;
    object-fit: cover;
}

/* ===================================================================
   4. NAVIGATION & HEADER
   ================================================================= */

/* Navbar Base Styles */
.navbar {
    transition: all var(--transition-base);
    padding: 1rem 0;
    z-index: 1030;
    width: 100%;
    min-height: 10vh;
    left: 0;
    right: 0;
}

/* Transparent Navbar (Initial State) */
.navbar-transparent {
    background-color: #ffffff !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    border: none !important;
}

.navbar-transparent .navbar-brand img {
    filter: brightness(1) drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.navbar-transparent .nav-link {
    color: var(--gray-800) !important;
    text-shadow: 0 1px 2px rgba(255,255,255,0.8);
    font-weight: 600;
}

.navbar-transparent .contact-phone .nav-link {
    background-image: var(--gradient-secondary);
    color: var(--white) !important;
    text-shadow: none;
}

/* Scrolled Navbar (Fixed State with Background) */
 
.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(125, 63, 152, 0.1) !important;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(125, 63, 152, 0.05); 
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-scrolled.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar-scrolled .navbar-brand img {
    filter: none;
    transform: scale(0.9);
    transition: var(--transition-base);
}

.navbar-scrolled .nav-link {
    color: #3f2b54 !important;
    text-shadow: none;
}

.navbar-scrolled .contact-phone .nav-link {
    background-image: var(--gradient-secondary);
    color: var(--white) !important;
}

/* Navbar Brand */
.navbar-brand img {
    max-height: 100px;
    transition: var(--transition-base);
}

.navbar > .container-fluid {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    width: 100%;
    margin: 0;
}

.navbar .nav-link {
    font-size: 1.3rem;
    font-weight: 600;
    color: #3f2b54;
    padding: 10px 20px !important;
    transition: var(--transition-base);
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--primary-purple);
    text-decoration: none;
}

/* Dropdown Menu Styles */
.navbar .dropdown-menu {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 8px 0;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(125, 63, 152, 0.1);
    min-width: 320px;
    margin-top: 12px;
    backdrop-filter: blur(10px);
    animation: dropdownFadeIn 0.3s ease;
}

.navbar .dropdown-menu-large {
    min-width: 650px;
    padding: 15px;
}

.dropdown-header {
    font-weight: 600;
    color: var(--primary-purple);
    font-size: 1.1rem;
    padding: 12px 16px;
    margin-bottom: 5px;
}

.dropdown-divider {
    margin: 10px 0;
    border-color: var(--gray-200);
}

.location-grid {
    padding: 0 10px;
}

.location-grid .dropdown-item {
    padding: 6px 15px;
    font-size: 0.95rem;
    border-bottom: none;
}

/* Dropdown Icons */
.dropdown-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    flex-shrink: 0;
}

.dropdown-icon:hover {
    background: linear-gradient(135deg, #9c5cb8, #b876d1);
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

/* Dropdown Item Styling */
.navbar .dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    margin: 2px 8px;
    background-color: transparent;
    border-radius: var(--border-radius-sm);
    color: var(--primary-purple);
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.2;
    text-decoration: none;
    transition: var(--transition-base);
}

.navbar .dropdown-menu .dropdown-item:hover {
    background-color: #f8f4fb;
    color: #4a2960;
    transform: translateX(5px);
    text-decoration: none;
}

.navbar .dropdown-menu .dropdown-item:hover .dropdown-icon {
    background: linear-gradient(135deg, #b876d1, #d49ce8);
    transform: scale(1.15) rotate(5deg);
}

/* Nested Dropdown Styles */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -10px;
    margin-left: 0;
}

.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

.dropdown-item.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.5em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid transparent;
    border-right: 0;
    border-bottom: 0.3em solid transparent;
    border-left: 0.3em solid;
}

/* Mobile Navigation Toggle */
.navbar-toggler {
    border: none;
    padding: 6px 10px;
    border-radius: var(--border-radius-sm);
    background-color: rgba(125, 63, 152, 0.1);
    transition: var(--transition-base);
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: 2px solid var(--primary-purple);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28125, 63, 152, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Menu Collapse */
.navbar-collapse {
   /* background-color: var(--white);*/
    border-radius: var(--border-radius-md);
    /*  box-shadow: var(--shadow-lg);*/
    margin-top: 10px;
    padding: 20px;
}

.navbar-transparent .navbar-collapse {
    background-color: rgb(255 255 255 / 0%);
    backdrop-filter: blur(10px);
    box-shadow: none;
}

/* Contact Phone Button */
.contact-phone .nav-link {
    background-image: var(--gradient-secondary);
    color: var(--white) !important;
    padding: 12px 20px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 15px;
    font-weight: 600;
    font-size: 1.3rem;
    text-decoration: none;
    max-width: 220px;
    transition: var(--transition-base);
}

.contact-phone .nav-link:hover {
    background-image: repeating-linear-gradient(-150deg, #882d84, #612d7a);
    color: var(--white) !important;
}

.contact-phone .icon img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.contact-phone .phone-text {
    line-height: 1.2;
    white-space: nowrap;
}

/* Refer  Button */

.btn-refer .nav-link {
    background-color: #97cf46;
    color: var(--white) !important;
    padding: 12px 20px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 15px;
    font-weight: 600;
    font-size: 1.3rem;
    text-decoration: none;
    max-width: 220px;
    transition: var(--transition-base);
}

.btn-refer .nav-link:hover {
    background-image: repeating-linear-gradient(-150deg, #97cf46, #abe556);
    color: var(--white) !important;
}
 

.btn-refer .phone-text {
    line-height: 1.2;
    white-space: nowrap;
}

/* ===================================================================
   5. HERO SECTION
   ================================================================= */
.hero-section-main {
    padding-top: 5rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f0ff 0%, #fff 50%, #f8f0ff 100%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; 
    
    
}
 
.hero-img {
    height: 90vh; 
    margin-bottom: -10vh;
 
}

.hero-image-container-main {
    position: relative;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius-pill);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary-purple);
    animation: float-card 6s ease-in-out infinite;
}

.floating-card:first-child {
    top: 30%;
    right: 2%;
    animation-delay: 0s;
}

.floating-card:last-child {
    bottom: 30%;
    left: -15%;
    animation-delay: 3s;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0px) rotate(-2deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.floating-card i {
    font-size: 1.2rem;
    color: var(--primary-purple);
}

.hero-text {
    padding-right: var(--spacing-xxl) !important;
    padding-left: var(--spacing-xxl) !important;
    background-image: url(../img/sydney-map-svg.svg);
    background-size: inherit;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    height: 80vh;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 8s ease infinite;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-text .specialist {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(125, 63, 152, 0.2);
    transform: translateY(0);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.specialist:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.specialist:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(125, 63, 152, 0.3);
}

.specialist:hover:before {
    opacity: 1;
    animation: shine 1.5s infinite;
}

@keyframes shine {
    0% { transform: rotate(45deg) translateX(-100%); }
    100% { transform: rotate(45deg) translateX(100%); }
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    font-weight: 400;
}

.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.hero-cta-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-cta-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(125, 63, 152, 0.3);
}

.hero-cta-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(125, 63, 152, 0.4);
}

.hero-cta-buttons .btn-outline-primary {
    border: 2px solid var(--primary-purple);
    color: var(--primary-purple);
    background: transparent;
}

.hero-cta-buttons .btn-outline-primary:hover {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

.hero-badge-main {
    margin-top: 1rem;
    max-width: 250px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.hero-badge-main:hover {
    opacity: 1;
    transform: scale(1.05);
}

.image-container {
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(125, 63, 152, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all var(--transition-base);
    cursor: pointer;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.overlay-content i {
    font-size: 3rem;
    animation: pulse 2s infinite;
}

.about-overlay-content i {
    font-size: 1rem;
    animation: pulse 2s infinite;
    margin-bottom: 0;
}
.overlay-content span {
    font-size: 1.2rem;
    font-weight: 600;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}


/* ===================================================================
   6.2. Refer Card 
   ================================================================= */

.refer-card {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #852d83 0%, #642d7b 100%);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(60, 0, 80, 0.08);
    padding: 0;
    margin: 40px auto; 
    min-height: 160px;
    overflow: hidden;
}

.refer-card-image {
    flex: 0 0 180px;
    height: 160px;
    overflow: hidden;
    border-top-left-radius: 18px;
    border-bottom-left-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center; 
}

.refer-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 18px;
    border-bottom-left-radius: 18px;
}

.refer-card-content {
    flex: 1 1 auto;
    padding: 0 32px;
    color: #fff;
}

.refer-card-content h2 {
    margin: 0 0 8px 0;
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
}

.refer-card-content strong {
    font-weight: 800;
}

.refer-card-content p {
    margin: 0;
    font-size: 1.1rem;
    opacity: 0.95;
}

.refer-card-action {
    flex: 0 0 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.refer-btn {
    background: #ff2250;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(60, 0, 80, 0.12);
    transition: background 0.2s;
}

.refer-btn:hover {
    background: #d9003c;
}

.refer-card-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.refer-now-btn {
    background-color: #97cf46;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(40, 167, 69, 0.2);
}

.refer-now-btn:hover {
    background-color: #7cbc1f;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgb(111 167 40 / 30%);
}

/* ===================================================================
   6. CARDS & CONTENT BLOCKS
   ================================================================= */

/* Service Cards */
.services .card {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
}

.services .card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.services .card-img-top {
    height: 180px;
    object-fit: cover;
}

.services .card-title {
    color: var(--primary-purple);
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 10px;
}

/* Feature Cards */
.feature-icon,
.feature-icon2 {
    background: var(--white);
    border-radius: var(--border-radius-md);
    padding: 25px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    cursor: pointer;
}

.feature-icon {
    padding: 65px 20px;
    min-width: 300px;
}

.feature-icon:hover,
.feature-icon2:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon img,
.feature-icon2 img {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
}

.feature-icon h4,
.feature-icon2 h4 {
    font-size: 1.5rem;
    color: var(--primary-purple);
    margin: 10px;
}

.feature-icon p,
.feature-icon2 p {
    font-size: 1rem;
    color: var(--gray-600);
    margin: 4px 0 0;
}

/* Feature Section Layouts */
.feature-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 40px;
    background: linear-gradient(to bottom, #f6edfb 0%, #ffffff 100%);
}

.feature-left {
    display: flex;
    flex-direction: row;
    gap: 30px;
    padding: 0px;
    align-items: center;
    justify-content: center;
}

.feature-right {
    background: var(--white);
    border-radius: var(--border-radius-md);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: 30px;
}

.feature-right .text {
    max-width: 480px;
}

.feature-right .text h2 {
    font-size: 32px;
    color: var(--primary-purple);
    font-weight: 700;
    margin-bottom: 20px;
}

.feature-right .text h3 {
    color: var(--success);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.feature-right .text p {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.6;
}

.feature-right img {
    max-width: 160px;
    border-radius: 50%; 
}

.feature-right2 {
    background: var(--white);
    border-radius: var(--border-radius-md);
    padding: 20px 40px;
    box-shadow: var(--shadow-lg);
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    align-items: center;
}

.feature-right2 .text {
    max-width: auto;
    text-align: left;
}

.feature-right2 .text h2 {
    font-size: 1.5rem;
    color: var(--primary-purple);
    font-weight: 500;
    margin-bottom: 10px;
}

.feature-right2 img {
    width: 60px;
    height: auto;
}

/* Stats Box */
.stats-box {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.stats-box i {
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 10px;
}

.stats-box h3 {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--primary-purple-dark);
}

/* Team Member Cards */
.team-member {
    text-align: center;
}

.team-member img {
    border-radius: 50%;
    max-width: 150px;
    margin-bottom: 10px;
    border: 4px solid var(--primary-purple);
}

.team-member h5 {
    font-weight: 700;
    color: var(--primary-purple-dark);
    margin-bottom: 0;
}

/* Core Values */
.core-values {
    background-color: var(--primary-purple);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    color: var(--white);
    max-width: 900px;
    margin: 60px auto;
}

.core-values h6 {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.core-values p {
    font-size: 0.9rem;
}

/* Service Grids */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 20px;
    margin: 30px auto;
    justify-content: center;
    max-width: 1600px;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Height Utilities */
.min-h-370 {
    min-height: 400px !important;
    margin-bottom: 1.5rem;
}

.min-h-320 {
    min-height: 340px !important;
    margin-bottom: 1.5rem;
}

/* Note Styles */
.note {
    background-color: #f5ebfd;
    color: #6a2a75;
    padding: 20px;
    border-radius: var(--border-radius-md);
}

/* Promise Box */
.promise-box {
    background: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    max-width: 800px;
    margin: 0 auto;
}

/* ===================================================================
   7. BUTTONS & INTERACTIVE ELEMENTS
   ================================================================= */

/* Primary Buttons */
.btn-purple {
    background-color: var(--primary-purple);
    color: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 8px 20px;
    font-weight: 600;
    transition: var(--transition-base);
    border: none;
}

.btn-purple:hover {
    background-color: var(--primary-purple-dark);
    color: var(--white);
}

.btn-discover {
    background-color: var(--primary-purple);
    color: var(--white);
    font-weight: 600;
    border-radius: var(--border-radius-xl);
    padding: 7px 18px;
    font-size: 0.95rem;
    border: none;
}

.btn-discover:hover {
    background-color: var(--primary-purple-dark);
    color: var(--white);
}

.btn-contact {
    background-color: var(--primary-purple);
    border-radius: var(--border-radius-xl);
    padding: 10px 25px;
    font-weight: 700;
    color: var(--white);
    border: none;
    transition: var(--transition-base);
}

.btn-contact:hover {
    background-color: var(--primary-purple-dark);
}

/* CTA Buttons */
.cta-button a {
    background-color: var(--primary-purple);
    color: var(--white);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    display: inline-block;
    transition: var(--transition-base);
}

.cta-button a:hover {
    background-color: #532a6e;
}

.btn-cta-enhanced {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(125, 63, 152, 0.2);
}

.btn-cta-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(125, 63, 152, 0.3);
    color: white;
}

.btn-cta-enhanced i {
    transition: transform 0.3s ease;
}

.btn-cta-enhanced:hover i {
    transform: translateX(5px);
}

.cta-button-goals {
    background: #e63985;
    color: var(--white);
    border: none;
    padding: 10px 30px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    border-radius: 25px;
    transition: var(--transition-base);
    display: inline-block;
    text-decoration: none;
}

.cta-button-goals:hover {
    background: #d12b76;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

/* Area Buttons */
.areas-buttons {
    text-align: center;
    margin-top: 20px;
}

.areas-buttons .btn {
    background-color: var(--light-purple);
    border: none;
    margin: 3px;
    padding: 8px 16px;
    border-radius: var(--border-radius-lg);
    color: var(--primary-purple-dark);
    font-weight: 600;
    transition: var(--transition-base);
}

.areas-buttons .btn:hover {
    background-color: var(--primary-purple);
    color: var(--white);
}

/* ===================================================================
   8. FORMS
   ================================================================= */

/* Assistance Form Section */
.assistance-section {
    margin: 0;
    padding: 0;
}

.assistance-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 100px;
}

.assistance-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--white);
}

.assistance-header p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    font-size: 14px;
}

.phone-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: var(--border-radius-sm);
    display: inline-block;
}

.phone-icon {
    font-size: 18px;
    margin-right: 5px;
}

.email-box {
    margin-top: 10px;
}

.assistance-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background: var(--white);
    margin: -40px auto 40px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius-sm);
}

.assistance-form {
    flex: 1 1 60%;
    margin: 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.assistance-form input,
.assistance-form textarea,
.assistance-form select {
    padding: 30px 0px;
    border: none;
    border-bottom: 1px solid #93308f87;
    outline: none;
    font-size: 14px;
    background: transparent;
    transition: var(--transition-base);
}

.assistance-form input:focus,
.assistance-form textarea:focus,
.assistance-form select:focus {
    border-bottom: 1px solid var(--secondary-purple);
}

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

.assistance-form button {
    background: var(--secondary-purple);
    color: var(--white);
    border: none;
    padding: 14px;
    font-weight: bold;
    font-size: 14px;
    margin-top: 6.5rem;
    cursor: pointer;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-base);
}

.assistance-form button:hover {
    background: #7a2376;
}

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

.assistance-locations {
    flex: 1 1 400px;
    margin: 10px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    font-size: 14px;
}

.assistance-locations .location {
    background: #fafafa;
    padding: 12px;
    border-left: 4px solid var(--secondary-purple);
    border-radius: 4px;
}

/* ===================================================================
   9. ANIMATIONS & EFFECTS
   ================================================================= */

/* Keyframe Animations */
@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes float-bubble {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(30px) scale(1.05);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.9);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(0.9);
    }
}

/* Animation Classes */
.bouncing-img,
.bouncing-img2 {
    border-radius: 16px;
    animation: bounce 2s infinite;
}

.bouncing-img {
    width: 200px;
    height: auto;
}

.call-icon-animation {
    animation: pulse-ring 2s ease infinite;
    display: inline-block;
}

/* ===================================================================
   10. TESTIMONIALS
   ================================================================= */

/* Enhanced Testimonial Section */

 /* 3D Testimonial Section */
 .testimonial-section {
    background: linear-gradient(to bottom, #f6edfb 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    perspective: 1200px;
    padding: 120px 0;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(125, 63, 152, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(155, 89, 182, 0.02) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%237d3f98' fill-opacity='0.01'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3Ccircle cx='0' cy='30' r='1'/%3E%3Ccircle cx='60' cy='30' r='1'/%3E%3Ccircle cx='30' cy='0' r='1'/%3E%3Ccircle cx='30' cy='60' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: subtleFloat 20s ease-in-out infinite;
}

@keyframes subtleFloat {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-10px) translateX(5px); }
}

.testimonial-3d-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    position: relative;
    height: 600px;
    transform-style: preserve-3d;
}

.testimonial-3d-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 450px; 
    transform: translate(-50%, -50%);
    z-index: 2;
    border-radius: 50%;
    animation: centerGlow 4s ease-in-out infinite alternate;
}

@keyframes centerGlow {
    0% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    100% { 
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

.testimonial-card-3d {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 
        0 20px 60px rgba(125, 63, 152, 0.1),
        0 8px 25px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 2px solid transparent;
    position: relative;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    cursor: pointer;
}

/* Ensure transforms are not overridden by JavaScript */
.testimonial-center {
    transform: translateZ(60px) scale(1.05) !important;
}

.testimonial-left {
    transform: translateZ(-80px) scale(0.65) !important;
}

.testimonial-right {
    transform: translateZ(-80px) scale(0.65) !important;
}

.testimonial-center:hover {
    transform: translateZ(80px) scale(1.08) !important;
}

.testimonial-card-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px; 
    border-radius: 30px 30px 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
    z-index: 1;
}

.testimonial-center:hover::before {
    transform: scaleX(1);
}

/* Disable border animation on side cards */
.testimonial-side::before {
    display: none;
}

/* Center Card - Main Focus */
.testimonial-center {
    width: 500px;
    height: 400px;
    max-height: 400px;
    z-index: 5;
    opacity: 1;
    filter: none;
    box-shadow: 
        0 30px 60px rgba(125, 63, 152, 0.15),
        0 12px 30px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 0 0 1px rgba(125, 63, 152, 0.1);
    display: flex;
    flex-direction: column;
}

.testimonial-center:hover {
    border: 2px solid #7d3f98;
    box-shadow: 
        0 50px 100px rgba(125, 63, 152, 0.25),
        0 20px 40px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 0 0 1px rgba(125, 63, 152, 0.1);
}

/* Side Cards - Supporting */
.testimonial-side {
    width: 280px;
    height: 300px;
    max-height: 300px;
    opacity: 0.3;
    z-index: 1;
    filter: blur(1.5px);
    pointer-events: none; /* Disable hover interactions */
    cursor: default;
    display: flex;
    flex-direction: column;
}

/* Card Content Styling */
.testimonial-header-3d {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    flex-shrink: 0;
}

.testimonial-center .testimonial-header-3d {
    margin-bottom: 25px;
}

.testimonial-avatar-3d {
    border-radius: 50%;
    border: 3px solid transparent;
    background: linear-gradient(45deg, #7d3f98, #9b59b6) padding-box,
                linear-gradient(45deg, #7d3f98, #9b59b6, #c471ed) border-box;
    padding: 2px;
    margin-right: 15px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-center .testimonial-avatar-3d {
    width: 80px;
    height: 80px;
    padding: 3px;
    margin-right: 20px;
}

.testimonial-side .testimonial-avatar-3d {
    width: 60px;
    height: 60px;
}

.testimonial-avatar-3d::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.testimonial-card-3d:hover .testimonial-avatar-3d::before {
    opacity: 1;
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.testimonial-avatar-3d img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.testimonial-card-3d:hover .testimonial-avatar-3d img {
    transform: scale(1.1);
}

.testimonial-info-3d {
    flex-grow: 1;
    min-width: 0;
}

.testimonial-info-3d h5 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 5px;
    transition: all 0.3s ease;
    line-height: 1.2;
}

.testimonial-center .testimonial-info-3d h5 {
    font-size: 1.3rem;
}

.testimonial-side .testimonial-info-3d h5 {
    font-size: 1.1rem;
}

.testimonial-info-3d p {
    color: #64748b;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    line-height: 1.3;
}

.testimonial-center .testimonial-info-3d p {
    font-size: 0.95rem;
}

.testimonial-side .testimonial-info-3d p {
    font-size: 0.85rem;
}

.testimonial-card-3d:hover .testimonial-info-3d h5 {
    color: #7d3f98;
}

.testimonial-card-3d:hover .testimonial-info-3d p {
    color: #475569;
}

.stars-3d {
    display: flex;
    gap: 2px;
}

.stars-3d i {
    color: #ffc107;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(255, 193, 7, 0.3));
}

.testimonial-center .stars-3d i {
    font-size: 1.2rem;
    gap: 3px;
}

.testimonial-side .stars-3d i {
    font-size: 1rem;
}

.testimonial-card-3d:hover .stars-3d i {
    transform: scale(1.2);
    animation: starPulse 1.5s ease-in-out infinite alternate;
}

@keyframes starPulse {
    0% { filter: drop-shadow(0 2px 4px rgba(255, 193, 7, 0.3)); }
    100% { filter: drop-shadow(0 4px 8px rgba(255, 193, 7, 0.6)); }
}

.testimonial-quote-3d {
    position: relative;
    line-height: 1.6;
    color: #4a5568;
    font-style: italic;
    margin-top: 15px;
    padding: 15px 0;
    transition: all 0.3s ease;
    flex-grow: 1;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.testimonial-center .testimonial-quote-3d {
    font-size: 1.1rem;
    margin-top: 20px;
    padding: 20px 0;
    line-height: 1.7;
}

.testimonial-side .testimonial-quote-3d {
    font-size: 0.9rem;
    line-height: 1.5;
}

.testimonial-quote-3d::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: -8px;
    color: rgba(125, 63, 152, 0.1);
    font-family: serif;
    line-height: 1;
    transition: all 0.3s ease;
}

.testimonial-center .testimonial-quote-3d::before {
    font-size: 70px;
    top: -20px;
    left: -10px;
}

.testimonial-side .testimonial-quote-3d::before {
    font-size: 50px;
    top: -10px;
    left: -5px;
}

.testimonial-card-3d:hover .testimonial-quote-3d::before {
    color: rgba(125, 63, 152, 0.2);
    transform: scale(1.1);
}

.testimonial-card-3d:hover .testimonial-quote-3d {
    color: #2d3748;
}

/* Floating Elements */
.testimonial-float-element {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, rgba(125, 63, 152, 0.1), rgba(155, 89, 182, 0.05));
    border-radius: 50%;
    animation: floatUp 8s ease-in-out infinite;
}

.testimonial-float-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.testimonial-float-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    width: 15px;
    height: 15px;
}

.testimonial-float-element:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
    width: 25px;
    height: 25px;
}

@keyframes floatUp {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.8;
    }
}

/* Navigation Dots */
.testimonial-nav-3d {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
}

.nav-dot-3d {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(125, 63, 152, 0.3);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.nav-dot-3d::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(45deg, #7d3f98, #9b59b6);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.nav-dot-3d.active::before,
.nav-dot-3d:hover::before {
    width: 100%;
    height: 100%;
}

.nav-dot-3d.active {
    background: linear-gradient(45deg, #7d3f98, #9b59b6);
    box-shadow: 0 4px 15px rgba(125, 63, 152, 0.4);
}

/* ===================================================================
   11. FOOTER
   ================================================================= */
.footer-purple {
    background: linear-gradient(135deg, var(--primary-purple-darker) 0%, #3a1d5a 100%);
    color: var(--white);
    font-family: var(--font-family-headings);
    font-size: 14px;
    position: relative;
    overflow: hidden;
    padding-top: 2rem;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
}

.footer-purple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary-purple), var(--secondary-purple), var(--primary-purple));
    background-size: 200% 100%;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.footer-top {
    padding: 40px 20px;
}

.footer-contact-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: var(--border-radius-lg);
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    transform: translateY(0);
}

.footer-contact-bar:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 0.1);
}

.footer-logo {
    max-height: 80px;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-contact-text {
    flex: 1;
    margin: 0 20px;
    color: var(--white);
}
.footer-contact-text a, .footer-column p a { 
    color: var(--white);
}
.footer-contact-text a:hover, .footer-column p a:hover {  
    opacity: 0.8;
}

.footer-contact-text .small {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.footer-contact-text p {
    margin: 4px 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-social-icons {
    display: flex;
    align-items: center;
}

.footer-social-icons a {
    color: var(--white);
    margin-left: 15px;
    position: relative;
    transition: transform 0.3s ease;
}

.footer-social-icons a:hover {
    transform: translateY(-3px);
}

.footer-social-icons a i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social-icons a:hover i {
    background: var(--white);
    color: var(--primary-purple);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.footer-social-icons a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--white);
    transition: transform 0.3s ease;
}

.footer-social-icons a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.footer-column {
    padding: 10px;
}

.footer-column h4 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-purple);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.footer-column:hover h4::after {
    width: 100%;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.footer-column ul li:hover {
    transform: translateX(5px);
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    position: relative;
}

.footer-column ul li a:hover {
    color: var(--white);
}

.footer-column ul li a::before {
    content: '›';
    margin-right: 8px;
    color: var(--secondary-purple);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.footer-column ul li a:hover::before {
    transform: translateX(3px);
}

.footer-icon {
    width: 16px;
    vertical-align: middle;
    margin-right: 8px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-column ul li:hover .footer-icon {
    opacity: 1;
}

.footer-hours-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.footer-hours-box:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.footer-hours-box table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 5px;
    font-family: var(--font-family-headings);
    color: var(--white);
    font-size: 14px;
}

.footer-hours-box td {
    padding: 8px 10px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.footer-hours-box tr:hover td {
    background: rgba(255, 255, 255, 0.05);
}

.footer-hours-box td:first-child {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-acknowledgement h5 {
    font-size: 14px;
    color: var(--white);
    margin-bottom: 5px;
    font-weight: 600;
}

.footer-acknowledgement p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    max-width: 800px;
    margin: 0 auto 10px;
    line-height: 1.6;
}

.footer-flags {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
}

.footer-flags img {
    width: 80px;
    margin-bottom: 10px;
    border-radius: 4px;
    transition: transform 0.3s ease;
    filter: grayscale(20%);
}

.footer-flags img:hover {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.footer-copy a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.footer-copy a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--white);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.footer-copy a:hover {
    color: var(--white);
}

.footer-copy a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: 1000;
    font-size: 18px;
}

.btn-back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ===================================================================
   12. SPECIAL COMPONENTS
   ================================================================= */

/* Mission Vision */
.mission-vision {
    text-align: center;
    margin: 60px auto;
    max-width: 600px;
    font-size: 0.9rem;
    color: var(--gray-700);
}

/* Video Section */
.video-section {
    max-width: 900px;
    margin: 40px auto;
    text-align: left;
}

.video-section h4 {
    color: var(--primary-purple);
    font-weight: 700;
    margin-bottom: 15px;
}

.video-section iframe {
    width: 100%;
    height: 315px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

/* Image Background Section */
.image-bg-section {
    background-image: url('https://images.unsplash.com/photo-1580582935308-0bff1b0f3a48?auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    padding: 120px 20px;
    color: var(--white);
    text-align: center;
    font-weight: 700;
    font-size: 1.3rem;
    line-height: 1.3;
}

/* Areas Map */
.areas-map {
    max-width: 700px;
    margin: 0 auto 40px;
    position: relative;
}

.areas-map img {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: var(--border-radius-lg);
}

/* Partners */
.partners img {
    max-height: 60px;
    margin: 10px 15px;
    filter: grayscale(100%);
    transition: var(--transition-base);
    cursor: pointer;
}

.partners img:hover {
    filter: none;
}

/* CTA Box Goals */
.cta-box-goals {
    background: linear-gradient(rgb(136 45 132 / 86%), rgb(81 43 126)), url(../img/scs.webp);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #882d84;
    padding: 20px;
    border-radius: var(--border-radius-md);
    text-align: center;
    color: var(--white);
    max-width: 320px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.cta-image-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 10px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--white);
}

.cta-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-box-goals h4 {
    font-size: 22px;
    margin: 10px 0 8px;
    font-weight: normal;
    line-height: 1.3;
    color: var(--white);
}

.cta-box-goals h4 span {
    display: block;
}

.cta-box-goals h4 strong {
    font-weight: bold;
}

.cta-box-goals p {
    font-size: 14px;
    margin-bottom: 15px;
    padding: 0 10px;
}

.ndis-badge {
    width: 120px;
    height: auto;
    background-color: var(--white);
    padding: 5px;
    border-radius: var(--border-radius-sm);
    display: block;
    margin: 20px auto 0;
}

/* ===================================================================
   13. RESPONSIVE DESIGN
   ================================================================= */

/* Mobile First Approach - Tablet */
@media (max-width: 992px) {
    /* Navbar tablet adjustments */
    .navbar > .container-fluid {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .feature-section {
        flex-direction: column;
        align-items: center;
        padding: 40px 20px;
        gap: 40px;
    }

    .feature-right {
        flex-direction: column;
        text-align: center;
        margin-left: 0;
        width: 100%;
        max-width: 600px;
    }

    .feature-right .text {
        max-width: 100%;
    }
    
    .feature-left {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }
    
    .feature-icon {
        min-width: 250px;
        flex: 1 1 250px;
        padding: 40px 20px;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    /* Typography Adjustments */
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .section-wrapper h2,
    .section-wrapper2 h2 {
        font-size: 2rem;
    }
    
    /* Feature Section Mobile Adjustments */
    .feature-section {
        padding: 30px 15px;
    }
    
    .feature-left {
        flex-direction: column;
        gap: 20px;
    }
    
    .feature-icon {
        min-width: 100%;
        width: 100%;
        padding: 30px 20px;
    }
    
    .feature-right {
        padding: 30px 20px;
    }
    
    .feature-right img {
        max-width: 120px;
    }
    
    .feature-right .text h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .feature-right .text h3 {
        font-size: 16px;
    }
    
    .feature-right .text p {
        font-size: 14px;
    }
    
    /* Layout Adjustments */
    .content-container {
        flex-direction: column;
    }

    .column {
        flex: 1 1 100%;
        padding: 2rem;
    }
    
    .hero-text {
        padding-right: var(--spacing-lg) !important;
        padding-left: var(--spacing-lg) !important;
    }
    
    /* Body Padding Adjustment for Mobile */
    body {
        padding-top: 100px;
    }
    
    /* Navigation Mobile Styles */
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar > .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .navbar-brand img {
        max-height: 80px;
    }
    
    .navbar-scrolled {
        padding: 0.3rem 0;
    }
    
    .navbar-scrolled .navbar-brand img {
        max-height: 70px;
        transform: scale(1);
    }
    
    .navbar-collapse {
        margin-top: 15px;
        padding: 15px;
        max-height: 70vh;
        overflow-y: auto;
    }
    
    .navbar .dropdown-menu {
        min-width: 100%;
        position: static !important;
        transform: none !important;
        box-shadow: none;
        border: 1px solid var(--gray-200);
        border-radius: var(--border-radius-sm);
        margin: 5px 0;
    }
    
    .navbar .dropdown-menu-large {
        min-width: 100%;
        padding: 10px;
    }
    
    .location-grid {
        display: block;
    }
    
    .location-grid .col-md-4 {
        width: 100%;
        margin-bottom: 5px;
    }
    
    .contact-phone .nav-link {
        font-size: 1rem;
        padding: 10px 15px;
        margin: 10px 0;
        justify-content: center;
        max-width: 100%;
    }

    .contact-phone .icon img {
        width: 28px;
        height: 28px;
    }
    
    /* Mobile Menu Items */
    .navbar-nav .nav-item {
        margin: 3px 0;
    }
    
    .navbar-nav .nav-link {
        padding: 12px 16px !important;
        border-radius: var(--border-radius-sm);
        transition: var(--transition-base);
    }
    
    .navbar-nav .nav-link:hover {
        background-color: var(--lightest-purple);
        color: var(--primary-purple) !important;
    }
    
    /* Forms */
    .assistance-header {
        padding: 60px 20px;
    }
    
    .assistance-header h2 {
        font-size: 2rem;
    }
    
    /* Footer */
    .footer-contact-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-columns {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-column {
        flex: 1 1 100%;
        margin-bottom: 20px;
    }
    
    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Testimonials */
    .quote-icon-left {
        transform: translateX(-120px);
        font-size: 3rem;
    }
    
    .quote-icon-right {
        transform: translateX(120px);
        font-size: 3rem;
    }
    
    .testimonial-section {
        padding: 60px 0;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    /* Body padding for smaller screens */
    body {
        padding-top: 80px;
    }
    
    /* Feature Section Small Mobile Adjustments */
    .feature-section {
        padding: 20px 10px;
    }
    
    .feature-icon {
        padding: 25px 15px;
    }
    
    .feature-icon img {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon h4 {
        font-size: 1.2rem;
    }
    
    .feature-right {
        padding: 25px 15px;
    }
    
    /* Navigation adjustments for small screens */
    .navbar {
        padding: 0.3rem 0;
    }
    
    .navbar > .container-fluid {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .navbar-brand img {
        max-height: 60px;
    }
    
    .navbar-scrolled .navbar-brand img {
        max-height: 55px;
    }
    
    .navbar-collapse {
        margin-top: 10px;
        padding: 10px;
        max-height: 60vh;
        border-radius: var(--border-radius-sm);
    }
    
    .contact-phone .nav-link {
        font-size: 0.9rem;
        padding: 8px 12px;
        gap: 8px;
    }
    
    .contact-phone .icon img {
        width: 24px;
        height: 24px;
    }
    
    .navbar .dropdown-menu {
        font-size: 0.9rem;
    }
    
    .dropdown-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    /* Layout adjustments */
    .section-wrapper,
    .section-wrapper2 {
        padding: var(--spacing-xl) var(--spacing-md);
    }
    
    .assistance-header {
        padding: 40px var(--spacing-md);
    }
    
    .column {
        padding: var(--spacing-lg);
    }
    
    .cta-box-goals {
        max-width: 280px;
    }
}

/* Large Screens */
@media (min-width: 1400px) {
    .navbar > .container-fluid {
        max-width: 100%;
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

/* ===================================================================
   14. ACCESSIBILITY & FOCUS STATES
   ================================================================= */

/* Focus States */

input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--primary-purple);
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-purple: #000;
        --primary-purple-dark: #000;
        --gray-600: #000;
    }
    
    .btn-purple,
    .btn-discover,
    .btn-contact {
        border: 2px solid var(--gray-900);
    }
}

/* Enhanced Mobile Responsiveness for New Elements */
@media (max-width: 768px) {
    .hero-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .floating-card {
        display: none;
    }

    .trust-indicators {
        gap: 0.5rem;
    }

    .trust-item {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .features-list {
        gap: 1rem;
    }

    .feature-item {
        padding: 0.75rem;
        flex-direction: column;
        text-align: center;
    }

    .feature-item i {
        margin-bottom: 0.5rem;
        margin-top: 0;
    }

    .hero-particles {
        display: none;
    }

    .content-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .btn-cta-enhanced {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        text-align: center;
    }

    .hero-badge {
        max-width: 150px;
        margin: 1rem auto;
        display: block;
    }

    .overlay-content {
        padding: 1rem;
    }

    .overlay-content i {
        font-size: 2rem;
    }
}

/* ===================================================================
   ENHANCED INTERACTIVE COMPONENTS
   ================================================================= */

/* Enhanced Service Cards */
.service-card-enhanced {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(125, 63, 152, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    border: 1px solid rgba(125, 63, 152, 0.1);
}

.service-card-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(125, 63, 152, 0.15);
}

.service-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(125, 63, 152, 0.1) 0%, rgba(125, 63, 152, 0.05) 100%);
    clip-path: circle(0% at 50% 50%);
    transition: all 0.5s ease-out;
}

.service-card-enhanced:hover::before {
    clip-path: circle(150% at 50% 50%);
}

.service-icon-wrapper {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(125, 63, 152, 0.1) 0%, rgba(125, 63, 152, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.4s ease;
}

.service-card-enhanced:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(125, 63, 152, 0.2) 0%, rgba(125, 63, 152, 0.1) 100%);
}

.service-icon-wrapper img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: all 0.4s ease;
}

.service-card-enhanced:hover .service-icon-wrapper img {
    transform: scale(1.1);
}

.service-card-enhanced h4 {
    color: var(--primary-purple);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 1rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.service-card-enhanced h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    border-radius: 2px;
    transition: all 0.4s ease;
}

.service-card-enhanced:hover h4::after {
    width: 80px;
}

.service-card-enhanced p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: auto;
}

.feature-tag {
    background: rgba(125, 63, 152, 0.1);
    color: var(--primary-purple);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.service-card-enhanced:hover .feature-tag {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-3px);
}

.feature-tag i {
    font-size: 0.8rem;
}

.progress-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-purple), transparent);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.service-card-enhanced:hover .progress-line {
    transform: scaleY(1);
}

.number-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.service-card-enhanced:hover .number-badge {
    transform: rotate(360deg);
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-card-enhanced {
        padding: 2rem;
    }
    
    .service-icon-wrapper {
        width: 100px;
        height: 100px;
    }
    
    .service-icon-wrapper img {
        width: 50px;
        height: 50px;
    }
}

/* Services Overview Section */
.services-overview {
    background: linear-gradient(to bottom, #f6edfb 0%, #ffffff 100%);
    padding: 80px 0;
}

.heart-collage {
    position: relative;
    margin-bottom: 30px;
}

.heart-shape {
    transition: transform 0.3s ease; 
    width: 100%;

}

.heart-shape:hover {
    transform: translateY(-10px);
}

.brand-overlay {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.brand-overlay img {
    width: 100px;
    height: auto;
}

.badge-purple {
    background-color: rgba(125, 63, 152, 0.1);
    color: #7d3f98;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title {
    color: #7d3f98;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.service-intro p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    border: 1px solid rgba(125, 63, 152, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    flex-direction: column;
    align-content: center; 
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(125, 63, 152, 0.1);
    border-color: #7d3f98;
}

.service-icon {
    width: 100px;
    height: 100px;
    background: rgba(125, 63, 152, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.service-details h3 {
    color: #7d3f98;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-details p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.info-box {
    background: rgba(125, 63, 152, 0.05);
    border-left: 4px solid #7d3f98;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-box i {
    color: #7d3f98;
    font-size: 1.5rem;
}

.info-box p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .services-overview {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 767px) {
    .services-overview {
        padding: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-icon { 
    }
    
    .service-icon img {
        
    }
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #7d3f98 0%, #512b7e 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loader {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255,255,255,0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    color: white;
    margin-top: 20px;
    font-size: 18px;
    font-weight: 500;
}

/* Enhanced C.A.R.E.s Section */
.care-values-section {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.care-values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%237d3f98' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2V6h4V4H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.section-badge {
    background: rgba(125, 63, 152, 0.1);
    color: #7d3f98;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        rgba(125, 63, 152, 0) 0%,
        rgba(125, 63, 152, 0.1) 50%,
        rgba(125, 63, 152, 0) 100%
    );
    animation: shimmerBadge 3s linear infinite;
    transform-origin: 0 0;
    pointer-events: none;
}

@keyframes shimmerBadge {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.care-values-section h2 {
    color: #7d3f98;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.care-values-section .lead {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.care-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    position: relative;
    z-index: 1;
    perspective: 1000px;
}

.care-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border: 1px solid rgba(125, 63, 152, 0.05);
    overflow: hidden;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.care-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(125, 63, 152, 0.05) 0%,
        rgba(155, 89, 182, 0.05) 50%,
        rgba(125, 63, 152, 0.05) 100%
    );
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.care-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #7d3f98, #9b59b6);
    transition: width 0.4s ease;
}

.care-card:hover {
    transform: translateY(-8px);
    border-color: rgba(125, 63, 152, 0.12);
    box-shadow: 0 15px 30px rgba(125, 63, 152, 0.08);
}

.care-card:hover::before {
    opacity: 1;
}

.care-card:hover::after {
    width: 100%;
}

.care-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 2rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.care-icon svg {
    width: 100%;
    height: 100%;
    fill: #7d3f98;
    transition: all 0.4s ease;
}

.care-card:hover .care-icon {
    transform: translateY(-4px);
}

.care-card:hover .care-icon svg {
    fill: #9b59b6;
}

.care-card h3 {
    color: #7d3f98;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
    position: relative;
}

.care-card:hover h3 {
    color: #9b59b6;
}

.care-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.care-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.care-features li {
    display: flex;
    align-items: center;
    color: #555;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.care-features li::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(125, 63, 152, 0.05) 0%,
        rgba(125, 63, 152, 0.02) 100%
    );
    transition: left 0.3s ease;
}

.care-features li i {
    color: #7d3f98;
    margin-right: 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.care-card:hover .care-features li {
    transform: translateX(6px);
}

.care-card:hover .care-features li::before {
    left: 0;
}

.care-card:hover .care-features li i {
    color: #9b59b6;
    transform: scale(1.1);
}

.care-card:hover .care-features li:nth-child(1) { transition-delay: 0.05s; }
.care-card:hover .care-features li:nth-child(2) { transition-delay: 0.1s; }
.care-card:hover .care-features li:nth-child(3) { transition-delay: 0.15s; }

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Progress Section */
.commitment-section {
    margin-top: 5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.commitment-section h3 {
    color: #7d3f98;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.commitment-section p {
    color: #666;
    margin-bottom: 3rem;
}

.progress-container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(125, 63, 152, 0.05);
}

.progress-item {
    margin-bottom: 2rem;
}

.progress-item:last-child {
    margin-bottom: 0;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: #444;
    font-weight: 500;
}

.progress {
    height: 8px;
    background: rgba(125, 63, 152, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    background: linear-gradient(90deg, #7d3f98, #9b59b6);
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.3) 50%,
        rgba(255,255,255,0) 100%
    );
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Enhanced Contact Section */
.assistance-section {
    padding: 80px 0; 
    position: relative;
    overflow: hidden; 
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.assistance-header {
    text-align: center;
    margin-bottom: 50px;
}

.assistance-header h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.assistance-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.assistance-content {
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
}

.assistance-form {
    padding: 40px;
    background: #ffffff;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #7d3f98;
    box-shadow: 0 0 0 3px rgba(125, 63, 152, 0.1);
    outline: none;
}

.form-group textarea {
    height: 120px;
    resize: none;
}

.submit-btn-enhanced {
    width: 100%;
    padding: 14px 24px;
    background: #7d3f98;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn-enhanced:hover {
    background: #512b7e;
    transform: translateY(-2px);
}

.contact-card {
    background: #f8f9fa;
    padding: 40px;
    color: #333;
}

.contact-card-header {
    margin-bottom: 25px;
}

.contact-card-header h2 {
    color: #7d3f98;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    margin-bottom: 10px;
}

.contact-subtitle {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
    opacity: 0.9;
}

.contact-items {
    display: grid;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item .icon {
    width: 40px;
    height: 40px;
    background: rgba(125, 63, 152, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7d3f98;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .icon {
    background: #7d3f98;
    color: #ffffff;
    transform: scale(1.1);
}

.contact-item .details {
    flex: 1;
}

.contact-item strong {
    display: block;
    color: #333;
    margin-bottom: 4px;
    font-size: 1rem;
}

.contact-value {
    color: #666;
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.contact-value a {
    color: #7d3f98;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value a:hover {
    color: #512b7e;
}

.contact-item small {
    display: block;
    color: #888;
    font-size: 0.85rem;
}

/* Social Contact Box Styles */
.social-contact-box {
    margin-top: 20px;
    padding: 20px;
    background: rgba(125, 63, 152, 0.03);
    border: 2px dashed rgba(125, 63, 152, 0.2);
    border-radius: 12px;
    text-align: center;
}

.social-contact-box h5 {
    color: #7d3f98;
    font-size: 0.95rem;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-icons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(125, 63, 152, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7d3f98;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #7d3f98;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 1;
}

.social-icon i {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-icon:hover::before {
    transform: translateY(0);
}

.social-icon:hover i {
    color: #ffffff;
    transform: scale(1.1);
}


/* Services */

   /* Hero Section Modern Styling */
   .hero-section {
    padding: 100px 0 120px;
    background: linear-gradient(135deg, #7d3f98 0%, #9b59b6 50%, #e74c3c 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-floating-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
    animation: float 8s ease-in-out infinite alternate;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
    animation-duration: 8s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: 10%;
    animation-duration: 10s;
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 20%;
    left: 20%;
    animation-duration: 7s;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-20px) rotate(5deg); }
}

.hero-wave-top, .hero-wave-bottom {
    position: absolute;
    width: 100%;
    height: 150px;
    z-index: 2;
}

.hero-wave-top {
    top: 0;
}

.hero-wave-bottom {
    bottom: -2px;
}

.hero-title {
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 3;    
    color: #ffffff;
    
}

.hero-subtitle {
    animation: fadeInUp 1s ease-out 0.3s both;
    position: relative;
    z-index: 3;
}

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

/* Enhanced Interactive Services Sidebar */
.services-sidebar {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fc 100%);
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(125, 63, 152, 0.12);
    overflow: hidden;
    position: sticky;
    top: 100px;
    border: 1px solid rgba(125, 63, 152, 0.1);
}

.sidebar-header {
    background: linear-gradient(135deg, #7d3f98 0%, #9b59b6 100%);
    color: white;
    padding: 25px 20px;
    position: relative;
    overflow: hidden;
}

.sidebar-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: rotate(45deg);
}

.sidebar-header h5 {
    margin: 0;
    font-weight: 700;
    font-size: 1.3rem;
    position: relative;
    z-index: 2;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);

}

.sidebar-header i {
    position: relative;
    z-index: 2;
}

.services-sidebar .nav-link {
    border-radius: 0;
    margin: 0;
    padding: 16px 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    border-left: 3px solid transparent;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: transparent;
    color: #4a5568;
    font-weight: 500;
    border-bottom: 1px solid rgba(125, 63, 152, 0.05);
}

.services-sidebar .nav-link:last-child {
    border-bottom: none;
}

.services-sidebar .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, rgba(125, 63, 152, 0.08), rgba(155, 89, 182, 0.05));
    transition: width 0.4s ease;
}

.services-sidebar .nav-link::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 15px;
    width: 6px;
    height: 6px;
    background: #7d3f98;
    border-radius: 50%;
    transform: translateY(-50%) scale(0);
    transition: transform 0.3s ease;
}

.services-sidebar .nav-link:hover::before {
    width: 100%;
}

.services-sidebar .nav-link:hover::after {
    transform: translateY(-50%) scale(1);
}

.services-sidebar .nav-link:hover {
    background: transparent;
    transform: translateX(8px);
    border-left-color: #7d3f98;
    color: #7d3f98;
    font-weight: 600;
}

.services-sidebar .nav-link.active {
    background: linear-gradient(90deg, rgba(125, 63, 152, 0.15), rgba(155, 89, 182, 0.08));
    color: #7d3f98;
    border-left-color: #7d3f98;
    transform: translateX(5px);
    font-weight: 700;
    position: relative;
}

.services-sidebar .nav-link.active::after {
    transform: translateY(-50%) scale(1);
    background: #7d3f98;
    box-shadow: 0 0 10px rgba(125, 63, 152, 0.5);
}

.services-sidebar .nav-link i {
    margin-right: 15px;
    font-size: 16px;
    transition: all 0.3s ease;
    width: 20px;
    text-align: center;
    opacity: 0.8;
}

.services-sidebar .nav-link:hover i,
.services-sidebar .nav-link.active i {
    transform: scale(1.2);
    opacity: 1;
}

.services-sidebar .nav-link.active i {
    color: #7d3f98;
}

/* Modern Service Content Cards */
.service-content {
    background: white;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(125, 63, 152, 0.1);
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #7d3f98, #9b59b6, #e74c3c);
}

.service-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(125, 63, 152, 0.2);
}

/* Enhanced Interactive Feature Cards with Images */
.feature-card {
    background: white;
    border-radius: 20px;
    margin-bottom: 30px;
    border: none;
    box-shadow: 0 10px 30px rgba(125, 63, 152, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #7d3f98, #9b59b6, #c471ed);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    z-index: 3;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(125, 63, 152, 0.15);
}

.feature-image {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fc 0%, #e9ecef 100%);
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    transform: scale(1);
}

.feature-card:hover .feature-image img {
    transform: scale(1.08);
}

.feature-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(125, 63, 152, 0.1), rgba(155, 89, 182, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover .feature-image::after {
    opacity: 1;
}

.feature-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Enhanced Typography */
.feature-content h5 {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    line-height: 1.3;
}

.feature-card:hover .feature-content h5 {
    color: #7d3f98;
}

.feature-content p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.feature-card:hover .feature-content p {
    color: #475569;
}

/* Service Badge */
.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 12px;
    height: 12px;
    background: linear-gradient(45deg, #7d3f98, #9b59b6);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
    z-index: 4;
}

.feature-card:hover .service-badge {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 15px rgba(125, 63, 152, 0.5);
}

/* Number indicator */
.feature-number {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #7d3f98;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #7d3f98;
    opacity: 0;
    transform: scale(0) rotate(-180deg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 4;
    backdrop-filter: blur(10px);
}

.feature-card:hover .feature-number {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    background: #7d3f98;
    color: white;
    box-shadow: 0 5px 15px rgba(125, 63, 152, 0.3);
}

/* Advanced Get Started Section */
.get-started-section {
    background: linear-gradient(135deg, #f8f9fc 0%, #c3b8ff59 50%, #f1f3f8 100%);
    position: relative;
    padding: 100px 0;
}

.get-started-bg-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(125, 63, 152, 0.05), rgba(155, 89, 182, 0.03));
    animation: floatShape 15s ease-in-out infinite;
}

.get-started-bg-shape.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
    animation-delay: 0s;
}

.get-started-bg-shape.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -30px;
    animation-delay: 5s;
}

.get-started-bg-shape.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(10px) rotate(-3deg); }
    75% { transform: translateY(-15px) rotate(2deg); }
}

.section-badge {
    background: linear-gradient(45deg, rgba(125, 63, 152, 0.1), rgba(155, 89, 182, 0.15));
    color: #7d3f98;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid rgba(125, 63, 152, 0.2);
    position: relative;
    overflow: hidden;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(125, 63, 152, 0.1), transparent);
    transition: left 2s ease;
}

.section-badge:hover::before {
    left: 100%;
}

.steps-container {
    position: relative;
    margin-top: 60px;
}

/* Additional decorative dotted elements */

.steps-container::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 12.5%;
    right: 12.5%;
    height: 0px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 60'%3E%3Cpath d='M0,30 Q200,10 400,30 T800,30' stroke='%235a2d6b' stroke-width='4' fill='none' stroke-dasharray='8,6' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat;
    background-size: 100% 100%;
    z-index: 1;
    opacity: 0.5;
    animation: flowingDots 3s ease-in-out infinite;
}

@keyframes flowingDots {
    0%, 100% { 
        opacity: 0.5;
        transform: translateX(0);
    }
    50% { 
        opacity: 0.8;
        transform: translateX(-5px);
    }
}

.step-card {
    background: white;
    border-radius: 25px;
    padding: 40px 25px;
    text-align: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(125, 63, 152, 0.08);
    border: 2px solid transparent;
    overflow: hidden;
    height: 100%;
    cursor: pointer;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7d3f98, #9b59b6, #c471ed);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.step-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(125, 63, 152, 0.2);
    border-color: rgba(125, 63, 152, 0.2);
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-connector {
    position: absolute;
    top: 70px;
    right: -60px;
    width: 120px;
    height: 40px;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.step-connector::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 40'%3E%3Cpath d='M0,20 Q30,5 60,20 T120,20' stroke='%234a1f5a' stroke-width='3' fill='none' stroke-dasharray='6,4' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat;
    background-size: 100% 100%;
    transform: translateY(-50%);
}

.step-card:hover .step-connector {
    opacity: 0.9;
    animation: connectorPulse 2s ease-in-out infinite;
}

@keyframes connectorPulse {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 1; }
}

.step-card:last-child .step-connector {
    display: none;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7d3f98 0%, #9b59b6 50%, #c471ed 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    transition: all 0.5s ease;
    z-index: 3;
    box-shadow: 0 10px 25px rgba(125, 63, 152, 0.3);
}

.step-number::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #7d3f98, #9b59b6, #c471ed, #e74c3c);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.step-card:hover .step-number::before {
    opacity: 1;
}

.step-number span {
    color: white;
    font-size: 28px;
    font-weight: 900;
    position: relative;
    z-index: 2;
}

.step-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 3px solid rgba(125, 63, 152, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(1);
    animation: stepPulse 2s ease-in-out infinite;
}

@keyframes stepPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.6);
        opacity: 0;
    }
}

.step-card:hover .step-pulse {
    animation-duration: 1s;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, rgba(125, 63, 152, 0.1), rgba(155, 89, 182, 0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    border: 2px solid rgba(125, 63, 152, 0.1);
}

.step-icon i {
    font-size: 24px;
    color: #7d3f98;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    background: linear-gradient(45deg, rgba(125, 63, 152, 0.2), rgba(155, 89, 182, 0.1));
    border-color: rgba(125, 63, 152, 0.3);
    transform: scale(1.1) rotate(5deg);
}

.step-card:hover .step-icon i {
    color: #9b59b6;
    transform: scale(1.2);
}

.step-content h4 {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.step-content h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #7d3f98, #9b59b6);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width 0.4s ease;
}

.step-card:hover .step-content h4 {
    color: #7d3f98;
}

.step-card:hover .step-content h4::after {
    width: 60px;
}

.step-content p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
    transition: all 0.3s ease;
}

.step-card:hover .step-content p {
    color: #475569;
}

.step-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(125, 63, 152, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.step-card:hover .step-hover-effect {
    opacity: 1;
}

/* Progress Animation */
@keyframes progressGlow {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

.progress-bar {
    transition: width 1.5s ease-in-out;
    width: 0;
}

.care-progress {
    margin: 1.5rem 0;
    position: relative;
}

.progress-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--primary);
}

.progress-bar-modern {
    height: 10px;
    background-color: rgba(125, 63, 152, 0.1);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.progress-fill {
    position: absolute;
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 10px;
    transition: width 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: 0;
    box-shadow: 0 0 10px rgba(125, 63, 152, 0.5);
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 30px;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 100%);
    animation: progressGlow 1.5s infinite;
}

.progress-text {
    position: absolute;
    right: 0;
    top: -25px;
    font-weight: 700;
    color: var(--primary);
}
.steps-container {
    counter-reset: step-counter;
}

.step-card {
    counter-increment: step-counter;
}

.step-card::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #7d3f98, #9b59b6);
    border-radius: 50%;
    transform: translateX(-50%) scale(0);
    transition: transform 0.5s ease 0.2s;
    z-index: 4;
}

.step-card:hover::after {
    transform: translateX(-50%) scale(1);
}

/* Enhanced Button */
.btn-modern.btn-lg {
    background: linear-gradient(135deg, #7d3f98 0%, #9b59b6 50%, #c471ed 100%);
    border: none;
    border-radius: 50px;
    padding: 18px 40px;
    font-weight: 600;
    font-size: 1.1rem; 
    text-transform: capitalize;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(125, 63, 152, 0.3);
    transition: all 0.4s ease;
}

.btn-modern.btn-lg::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.btn-modern.btn-lg:hover::before {
    left: 100%;
}

.btn-modern.btn-lg:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 40px rgba(125, 63, 152, 0.4);
    background: linear-gradient(135deg, #9b59b6 0%, #c471ed 50%, #e74c3c 100%);
}

/* Modern Button Styling */
.btn-modern-outline {
    background: transparent;
    border: 2px solid #b36ad0;
    color: #ffffff;
    padding: 13px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}
.btn-modern-outline:hover {
    background: var(--primary-purple);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}


.btn-modern {
    background: linear-gradient(45deg, #7d3f98, #9b59b6);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 13px 28px;
    font-weight: 600;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-transform: capitalize;
    letter-spacing: 1px;
    font-size: 1rem;
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-modern:hover::before {
    left: 100%;
}

.btn-modern:hover {
    background: linear-gradient(45deg, #9b59b6, #e74c3c);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(125, 63, 152, 0.3);
    color: white;
}

 
@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}
 




/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, #7d3f98 0%, #9b59b6 50%, #e74c3c 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

/* ===================================================================
   MODERN ABOUT PAGE STYLES
   ================================================================= */

/* Hero Section Modern */
.hero-section-modern {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff0f7 50%, #f5ebfd 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(125, 63, 152, 0.1), rgba(147, 48, 143, 0.05));
    animation: float 6s ease-in-out infinite;
}

.floating-shape.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.floating-shape.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 5%;
    animation-delay: 2s;
}

.floating-shape.shape-3 {
    width: 100px;
    height: 100px;
    top: 30%;
    left: 20%;
    animation-delay: 4s;
}

.floating-shape.shape-4 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    right: 30%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%237d3f98" opacity="0.3"/><circle cx="80" cy="40" r="1.5" fill="%23932d84" opacity="0.4"/><circle cx="40" cy="80" r="1" fill="%237d3f98" opacity="0.2"/></svg>') repeat;
    animation: particles 20s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes particles {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    padding: 0 var(--spacing-md);
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4.5rem);
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
}

.hero-cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.hero-badge-modern {
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.badge-content {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(125, 63, 152, 0.3);
    position: relative;
    overflow: hidden;
}

.badge-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.8s;
}

.hero-badge-modern:hover .badge-content::before {
    left: 100%;
}

.pulse-icon {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.hero-title-modern {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--gray-900);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle-modern {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--gray-600);
    margin-bottom: 3rem;
}

.hero-stats {
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(125, 63, 152, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(125, 63, 152, 0.1);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(125, 63, 152, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 500;
}

.hero-cta-modern {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary-modern,
.btn-outline-modern {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--primary-purple);
}

.btn-primary-modern {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: white;
}

.btn-outline-modern {
    background: transparent;
    color: var(--primary-purple);
}

.btn-primary-modern:hover,
.btn-outline-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(125, 63, 152, 0.3);
}

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

.btn-primary-modern i,
.btn-outline-modern i {
    transition: transform 0.3s ease;
}

.btn-primary-modern:hover i,
.btn-outline-modern:hover i {
    transform: translateX(5px);
}

.hero-image-modern {
    position: relative;
    z-index: 2;
}

.image-container-modern {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
   
    transition: transform 0.3s ease;
}

.main-image:hover {
    transform: scale(1.02);
}

.floating-element {
    position: absolute;
    background: white;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(125, 63, 152, 0.15);
    animation: floatElement 4s ease-in-out infinite;
    z-index: 3;
}

.floating-element.element-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.floating-element.element-2 {
    bottom: 30%;
    left: -15%;
    animation-delay: 1s;
}

.floating-element.element-3 {
    top: 50%;
    right: -5%;
    animation-delay: 2s;
}

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

.element-content {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-purple);
    font-weight: 600;
    font-size: 0.9rem;
}

.element-content i {
    font-size: 1.2rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--gray-600);
    z-index: 2;
}

.scroll-icon {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-purple);
    border-radius: 15px;
    margin: 0 auto 10px;
    position: relative;
}

.scroll-dot {
    width: 6px;
    height: 6px;
    background: var(--primary-purple);
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

/* Mission Section Modern */
.mission-section-modern {
    background: linear-gradient(180deg, #fff 0%, #f8f9ff 100%);
    position: relative;
    padding: 120px 0;
}

.section-badge-modern {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 2rem;
}

.badge-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    border-radius: 2px;
}

.section-badge-modern span {
    color: var(--primary-purple);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.mission-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--gray-900);
    line-height: 1.2;
}

.mission-description {
    font-size: 1.2rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 3rem;
}

.mission-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mission-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(125, 63, 152, 0.08); 
    border: 1px solid rgba(125, 63, 152, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.4s ease !important;
}

.mission-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(125, 63, 152, 0.15);
    border-color: rgba(125, 63, 152, 0.2); cursor: pointer;
}

.mission-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(125, 63, 152, 0.1) 0%, rgba(125, 63, 152, 0.05) 100%);
    color: var(--primary-purple); 
    border: 2px solid rgba(125, 63, 152, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.4s ease;
    border: 2px solid rgba(125, 63, 152, 0.1);
}
.mission-card:hover .mission-card-icon {
    background: linear-gradient(45deg, rgba(125, 63, 152, 0.2), rgba(155, 89, 182, 0.1));
    border-color: rgba(125, 63, 152, 0.3);
    transform: scale(1.1) rotate(5deg);
   
}
.mission-card-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.mission-card-content p {
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0;
}

.mission-cta {
    margin-top: 2rem;
}

.mission-image-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.mission-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.mission-image:hover {
    transform: scale(1.05);
}

.image-overlay-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 10px 15px;
    box-shadow: 0 5px 20px rgba(125, 63, 152, 0.15);
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(125, 63, 152, 0.1);
    backdrop-filter: blur(5px);
    z-index: 2;
    max-width: 140px;
    animation: floatOverlay 3s ease-in-out infinite;
}

@keyframes floatOverlay {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.image-overlay-element:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(125, 63, 152, 0.25);
    border-color: rgba(125, 63, 152, 0.3);
}

.image-overlay-element.element-1 {
    top: 15%;
    left: -20px;
    animation-delay: 0s;
}

.image-overlay-element.element-2 {
    top: 45%;
    right: -20px;
    animation-delay: 1s;
}

.image-overlay-element.element-3 {
    bottom: 15%;
    left: 15%;
    animation-delay: 2s;
}

.overlay-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.overlay-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.overlay-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 50%);
    top: -50%;
    left: -50%;
    transform: rotate(45deg);
}

.overlay-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.overlay-text strong {
    font-size: 16px;
    color: var(--primary-purple);
    font-weight: 700;
}

.overlay-text span {
    font-size: 12px;
    color: var(--gray-700);
    font-weight: 500;
}

.background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.background-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(125, 63, 152, 0.05), rgba(147, 48, 143, 0.03));
}

.background-shapes .shape.shape-1 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 10%;
    animation: float 8s ease-in-out infinite;
}

.background-shapes .shape.shape-2 {
    width: 100px;
    height: 100px;
    bottom: 30%;
    left: 5%;
    animation: float 6s ease-in-out infinite reverse;
}

.background-shapes .shape.shape-3 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 30%;
    animation: float 10s ease-in-out infinite;
    animation-delay: 2s;
}

/* Why Choose Us Modern */
.why-choose-modern {
    /* background: linear-gradient(180deg, #f8f9ff 0%, #fff 100%); */
    background: linear-gradient(to bottom, #f6edfb 0%, #ffffff 100%);
    padding: 120px 0;
    position: relative;
}

.section-header {
    margin-bottom: 4rem;
}

.section-badge-centered {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.section-title-modern {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.features-grid-modern {
    margin-bottom: 4rem;
}

.feature-card-modern {
    height: 100%;
    position: relative;
    perspective: 1000px;
}

.feature-card-inner {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(125, 63, 152, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(125, 63, 152, 0.05);
    align-items: center;
    text-align: center;
}

.feature-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(125, 63, 152, 0.02), rgba(147, 48, 143, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card-modern:hover .feature-card-inner {
    transform: translateY(-10px) rotateX(2deg);
    box-shadow: 0 25px 50px rgba(125, 63, 152, 0.2);
    border-color: rgba(125, 63, 152, 0.2);
}

.feature-card-modern:hover .feature-card-inner::before {
    opacity: 1;
}

.feature-icon-modern {
    position: relative;
    margin-bottom: 2rem;
    width: 80px;
    height: 80px;
}

.icon-background {
    color: var(--primary-purple);
    font-size: 2rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, rgba(125, 63, 152, 0.1), rgba(155, 89, 182, 0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    border: 2px solid rgba(125, 63, 152, 0.1);
}

.icon-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    border: 2px solid var(--primary-purple);
    border-radius: 20px;
    opacity: 0;
    animation: iconPulse 3s infinite;
}

@keyframes iconPulse {
    0% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 0.3; }
    100% { transform: scale(1.2); opacity: 0; }
}

.feature-card-modern:hover .icon-background {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgb(228 168 255 / 30%);
}

.feature-content-modern {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.feature-content-modern h5 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.feature-card-modern:hover .feature-content-modern h5 {
    color: var(--primary-purple);
}

.feature-content-modern p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

.feature-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(125, 63, 152, 0.1);
    color: var(--primary-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.feature-card-modern:hover .feature-number {
    background: var(--primary-purple);
    color: white;
    transform: scale(1.1);
}

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

.cta-text {
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

/* CARE Values Section Modern */
.care-values-section-modern {
    /* background: linear-gradient(180deg, #fff 0%, #f8f9ff 50%, #fff0f7 100%); */
    background: linear-gradient(to bottom, #f6edfb 0%, #ffffff 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.care-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.care-bg-elements .bg-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(125, 63, 152, 0.05), rgba(147, 48, 143, 0.08));
    animation: float 12s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(125, 63, 152, 0.1);
}

.care-bg-elements .bg-shape.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.care-bg-elements .bg-shape.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 10%;
    animation-delay: 4s;
}

.care-bg-elements .bg-shape.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    animation-delay: 8s;
}

.care-bg-elements .bg-shape.shape-4 {
    width: 120px;
    height: 120px;
    bottom: 15%;
    right: 15%;
    animation-delay: 6s;
}

.care-bg-elements .bg-shape.shape-5 {
    width: 80px;
    height: 80px;
    top: 30%;
    left: 20%;
    animation-delay: 10s;
}

.care-header {
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.care-badge-modern {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.care-badge-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmerBadge 3s infinite;
}

@keyframes shimmerBadge {
    0% { left: -100%; }
    100% { left: 100%; }
}

.care-title-modern {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.care-subtitle {
    font-size: 1.3rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.care-cards-grid {
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.care-card-modern {
    background: white;
    border-radius: 25px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 15px 40px rgba(125, 63, 152, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(125, 63, 152, 0.05);
}

.care-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(125, 63, 152, 0.02), rgba(147, 48, 143, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.care-card-modern:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(125, 63, 152, 0.2);
    border-color: rgba(125, 63, 152, 0.2);
}

.care-card-modern:hover::before {
    opacity: 1;
}

.care-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.care-icon-modern {
    position: relative;
    width: 70px;
    height: 70px;
}

.care-icon-img {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    transition: transform 0.3s ease;
     
}

.care-card-modern:hover .care-icon-img {
    transform: scale(1.1) rotate(5deg);
}
 
.care-card-modern:hover .icon-glow {
    opacity: 0.2;
}

.care-letter-badge {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(125, 63, 152, 0.15);
    transition: all 0.3s ease;
}

.care-card-modern:hover .care-letter-badge {
    color: rgba(125, 63, 152, 0.3);
    transform: scale(1.1) rotate(5deg);
}

.care-card-content {
    position: relative;
    z-index: 2;
}

.care-card-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.care-card-modern:hover .care-card-content h3 {
    color: var(--primary-purple);
}

.care-card-content p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.care-progress {
    margin-bottom: 2rem;
}

.progress-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 10px;
    font-weight: 500;
}

.progress-bar-modern {
    width: 100%;
    height: 8px;
    background: rgba(125, 63, 152, 0.1);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    border-radius: 4px;
    width: 0%;
    transition: width 2s ease-out;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

.progress-text {
    position: absolute;
    right: 0;
    top: -25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-purple);
}

.care-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.care-features .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.care-features .feature-item i {
    color: var(--primary-purple);
    font-size: 0.8rem;
}

.values-impact-section {
    background: white;
    padding: 60px 40px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(125, 63, 152, 0.1);
    position: relative;
    z-index: 1;
    background-image: linear-gradient(135deg, rgba(125, 63, 152, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
    border: 1px solid rgba(125, 63, 152, 0.05);
}

.impact-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.impact-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    border-radius: 2px;
}

.impact-stats .stat-card {
    background: linear-gradient(135deg, #ffffff, #f8f9ff);
    color: var(--gray-800);
    padding: 25px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(125, 63, 152, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid rgba(125, 63, 152, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.impact-stats .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(125, 63, 152, 0.15);
    background: linear-gradient(135deg, #f8f9ff, #f6edfb);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    position: relative;
    box-shadow: 0 10px 20px rgba(125, 63, 152, 0.2);
}

.stat-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    opacity: 0.3;
    animation: pulse 2s infinite;
}

.stat-icon i {
    color: white;
    font-size: 1.5rem;
    z-index:1;
}

.impact-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.impact-stats .stat-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 500;
}

.impact-cta {
    margin-top: 2rem;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* ===================================================================
   ALLIED HEALTH - PODIATRIST PAGE STYLES
   ================================================================= */

/* ===================================================================
   ALLIED HEALTH PAGE WRAPPER
   ================================================================= */
.allied-health {
    overflow-x: hidden;
    position: relative;
}

/* ===================================================================
   HERO SECTION - MODERN DESIGN
   ================================================================= */
.allied-health .hero-section {
    background: linear-gradient(135deg, #f8f9fc 0%, #ffffff 50%, #f1f3f8 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

/* Hero Content Styling */
.hero-content {
    position: relative;
    z-index: 3;
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    background: linear-gradient(135deg, #ffffff, #ffffffb3);
    color: #7d3f98;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(125, 63, 152, 0.2);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(125, 63, 152, 0.3);
}

.hero-badge i {
    margin-right: 8px;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700; 
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary-purple), #9b59b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: 1.2rem; 
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 500px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hero-cta {
    background: linear-gradient(135deg, var(--primary-purple), #9b59b6);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(125, 63, 152, 0.2);
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(125, 63, 152, 0.3);
    color: white;
    text-decoration: none;
}

.hero-cta-secondary {
    background: transparent;
    border: 2px solid var(--primary-purple);
    color: var(--primary-purple);
    padding: 13px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.hero-cta-secondary:hover {
    background: var(--primary-purple);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Hero Image Section */
.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image-container {
    position: relative;
    border-radius: 20px; 
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hero-image-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.hero-image-container img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

/* Hero Stats */
.hero-stats {
    position: absolute;
    bottom: -20px;
    left: 20px;
    right: 20px;
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-around;
    animation: slideInUp 0.8s ease-out 0.5s both;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-purple), #9b59b6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: white;
    font-size: 16px;
}

.stat-text {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    background: linear-gradient(135deg, var(--primary-purple), #9b59b6);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.float-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.float-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.float-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

/* ===================================================================
   MODERN SERVICES SECTION
   ================================================================= */
.modern-services-section {
    padding: 80px 0;
    background: white;
    position: relative;
}

/* Services Header */
.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-badge {
    background: linear-gradient(135deg, rgba(125, 63, 152, 0.1), rgba(155, 89, 182, 0.1));
    border: 1px solid rgba(125, 63, 152, 0.2);
    color: var(--primary-purple);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #7d3f98;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Modern Services Grid */
.modern-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.modern-service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #f1f5f9;
}

.modern-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-purple), #9b59b6);
    transition: left 0.5s ease;
}

.modern-service-card:hover::before {
    left: 0;
}

.modern-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(125, 63, 152, 0.15);
}

/* Service Card Header */
.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.service-icon-modern {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-purple), #9b59b6);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
}

.modern-service-card:hover .service-icon-modern {
    transform: scale(1.1) rotate(5deg);
}

.service-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e2e8f0;
    transition: all 0.3s ease;
}

.modern-service-card:hover .service-number {
    color: var(--primary-purple);
}

/* Service Content */
.service-content-modern {
    position: relative;
}

.service-title-modern {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.modern-service-card:hover .service-title-modern {
    color: var(--primary-purple);
}

.service-desc-modern {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Service Features */
.service-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.service-feature {
    background: rgba(125, 63, 152, 0.1);
    color: var(--primary-purple);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

/* Service Link */
.modern-service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.modern-service-link:hover {
    color: var(--primary-purple-dark);
    text-decoration: none;
    gap: 12px;
}

/* ===================================================================
   EXPERTISE SECTION
   ================================================================= */
 

/* Modern Assessment Section */
.modern-assessment-section {
    margin-bottom: 60px;
}

.assessment-container {
    background: white;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.assessment-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, var(--primary-purple), #9b59b6);
}

/* Assessment Header */
.assessment-header {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    align-items: center;
}

.header-content {
    padding-right: 20px;
}

.modern-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.modern-description {
    color: #64748b;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Header Image */
.header-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.assessment-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.image-frame:hover .assessment-image {
    transform: scale(1.05);
}

/* Image Badge */
.image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    border-radius: 15px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-purple), #9b59b6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.badge-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.badge-title {
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
}

.badge-subtitle {
    font-size: 12px;
    color: #64748b;
}

/* Assessment Features Grid */
.assessment-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.modern-feature-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.modern-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-purple), #9b59b6);
    transition: left 0.5s ease;
}

.modern-feature-card:hover::before {
    left: 0;
}

.modern-feature-card:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(125, 63, 152, 0.1);
}

/* Feature Header */
.feature-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.modern-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-purple), #9b59b6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
}

.modern-feature-card:hover .modern-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.feature-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Feature Tags */
.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.modern-tag {
    background: rgba(125, 63, 152, 0.1);
    color: var(--primary-purple);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

/* ===================================================================
   CONDITIONS SECTION
   ================================================================= */

.condition-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

.condition-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-purple), #9b59b6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.condition-card:hover::before {
    transform: scaleX(1);
}

.condition-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(125, 63, 152, 0.15);
}

.condition-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-purple), #9b59b6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.condition-card:hover .condition-icon {
    transform: scale(1.1) rotate(5deg);
}

.condition-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.condition-card:hover h3 {
    color: var(--primary-purple);
}

.condition-card p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* ===================================================================
   TEAM SECTION & WHY CHOOSE SECTION
   ================================================================= */
 

.light-purple-bg {
    background: linear-gradient(135deg, #f8f9fc 0%, #ffffff 50%, #f1f3f8 100%);
}

/* Why Choose Grid */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.why-choose-card {
    background: white;
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(125, 63, 152, 0.02), rgba(155, 89, 182, 0.02));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-choose-card:hover .card-background {
    opacity: 1;
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(125, 63, 152, 0.15);
}

/* Why Choose Icon */
.why-choose-icon {
    position: relative;
    margin-bottom: 25px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-purple), #9b59b6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.icon-pulse {
    position: absolute;
    top: 49.9%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: rgba(125, 63, 152, 0.2);
    border-radius: 50%;
    animation: pulse 2s infinite;
    opacity: 0;
}

.why-choose-card:hover .icon-pulse {
    opacity: 1;
}

.why-choose-card:hover .icon-circle {
    transform: scale(1.1);
}

/* Why Choose Content */
.why-choose-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.why-choose-card:hover .why-choose-content h4 {
    color: var(--primary-purple);
}

.why-choose-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Feature Highlights */
.feature-highlights {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #64748b;
}

.highlight-item i {
    color: var(--primary-purple);
    font-size: 12px;
}

.sydney-highlights > .highlight-item i {
    color: var(--primary-purple);
    font-size: 1.2rem;
}
.sydney-highlights > .highlight-item:hover .highlight-icon i { 
    color: white;
    transform: scale(1.1);
}

/* ===================================================================
   ACCESS SECTION
   ================================================================= */
 

.access-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.access-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(125, 63, 152, 0.1);
}

.access-card h3 {
    color: var(--primary-purple);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.access-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Benefits List */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: #64748b;
    border-bottom: 1px solid #f1f5f9;
}

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

.benefits-list li i {
    color: var(--primary-purple);
    font-size: 16px;
    width: 20px;
}

/* ===================================================================
   OTHER SERVICES SECTION
   ================================================================= */
 

/* Services Navigation Grid */
.services-navigation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.service-nav-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

.service-nav-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-purple), #9b59b6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-nav-card:hover::before {
    transform: scaleX(1);
}

.service-nav-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(125, 63, 152, 0.15);
}

/* Service Icons with Different Colors */
.service-icon { 
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}
.service-icon.podiatry {
    background: linear-gradient(135deg, #3c5fe7, #1e4b8c)
}

.service-icon.physiotherapy {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.service-icon.speech {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.service-icon.dietitian {
    background: linear-gradient(135deg, #27ae60, #229954);
}

.service-icon.psychology {
    background: linear-gradient(135deg, #f39c12, #d68910);
}

.service-icon.occupational {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.service-nav-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-nav-card:hover .service-title {
    color: var(--primary-purple);
}

/* Service Link */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--primary-purple-dark);
    text-decoration: none;
    gap: 12px;
}

/* ===================================================================
   CTA SECTION
   ================================================================= */
.cta-section {
    background: linear-gradient(135deg, var(--primary-purple), #9b59b6);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.cta-button-animated {
    background: white;
    color: var(--primary-purple);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cta-button-animated:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    color: var(--primary-purple);
    text-decoration: none;
}

.cta-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Tablet Styles */
@media (max-width: 991px) {
    .allied-health .hero-section {
        padding: 100px 0 60px;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .assessment-header {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .header-content {
        padding-right: 0;
    }
    
    .assessment-container {
        padding: 40px 30px;
    }
    
    .modern-services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .services-navigation-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .allied-health .hero-section {
        padding: 80px 0 40px;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-cta,
    .hero-cta-secondary {
        text-align: center;
        justify-content: center;
    }
    
    .hero-stats {
        position: static;
        margin-top: 30px;
        border-radius: 15px;
        animation: none;
    }
    
    .floating-element {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .modern-title {
        font-size: 1.6rem;
    }
    
    .assessment-container {
        padding: 30px 20px;
    }
    
    .assessment-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .modern-feature-card {
        padding: 25px 20px;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-choose-card {
        padding: 30px 25px;
    }
    
    .services-navigation-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-nav-card {
        padding: 25px 20px;
    }
    
    .condition-card {
        padding: 25px 20px;
    }
    
    .access-card {
        padding: 30px 25px;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .modern-title {
        font-size: 1.4rem;
    }
    
    .hero-cta,
    .hero-cta-secondary {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-item {
        display: flex;
        align-items: center;
        gap: 10px;
        text-align: left;
    }
    
    .modern-service-card,
    .modern-feature-card,
    .why-choose-card,
    .condition-card,
    .access-card,
    .service-nav-card {
        padding: 20px 15px;
    }
}



/* Areas of Expertise */
 /* Hero Section Modern Styling */
 .hero-section-wave {
    padding: 80px 0 150px;
    background: linear-gradient(135deg, #7d3f98 0%, #9b59b6 50%, #e74c3c 100%);
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-floating-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
    animation-name: float;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
    animation-duration: 8s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: 10%;
    animation-duration: 10s;
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 20%;
    left: 20%;
    animation-duration: 7s;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-20px) rotate(5deg); }
}

.hero-wave-top, .hero-wave-bottom {
    position: absolute;
    width: 100%;
    height: 150px;
    z-index: -1;
}

.hero-wave-top {
    top: 0;
}

.hero-wave-bottom {
    bottom: -2px;
    left: 0;
}

.hero-wave-top svg, .hero-wave-bottom svg {
    width: 100%;
    height: 100%;
}

.hero-title {
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    animation: fadeInUp 1s ease-out 0.2s;
    animation-fill-mode: both;
}

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

/* CTA Box Styling */


.cta-button-goals {
    display: inline-block;
    background: #7d3f98;
    color: white;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button-goals:hover {
    background: #9b59b6;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(125, 63, 152, 0.3);
}

.call-icon-animation {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Clean Hero Section Styles */
.hero-section-wave .text-white {
    color: white !important;
}

.hero-section-wave .text-light {
    color: rgba(255, 255, 255, 0.9) !important;
}

.hero-section-wave .btn-warning {
    background: linear-gradient(135deg, #7d3f98 0%, #9b59b6 100%);
    border: none;
    color: white;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 50px;
}

.hero-section-wave .btn-warning::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.hero-section-wave .btn-warning:hover::before {
    left: 100%;
}

.hero-section-wave .btn-warning:hover {
    background: linear-gradient(135deg, #6a2c87 0%, #8e44ad 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(125, 63, 152, 0.4);
    color: white;
}

.hero-section-wave .btn-outline-light {
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
    transition: all 0.3s ease;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.hero-section-wave .btn-outline-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.5s ease;
}

.hero-section-wave .btn-outline-light:hover::before {
    left: 100%;
}

.hero-section-wave .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: white;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Footer CTA Button */
.btn-cta-footer {
    background: white;
    color: #7d3f98;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    padding: 15px 30px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.btn-cta-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #7d3f98 0%, #9b59b6 100%);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-cta-footer:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(125, 63, 152, 0.3);
}

.btn-cta-footer:hover::before {
    width: 100%;
}

.btn-cta-footer:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(125, 63, 152, 0.2);
}

.btn-cta-footer i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.btn-cta-footer:hover i {
    transform: translateX(3px);
}

/* Feature Section Layouts */
.feature-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 40px;
    background: linear-gradient(to bottom, #f6edfb 0%, #ffffff 100%);
}

.feature-left {
    display: flex;
    flex-direction: row;
    gap: 30px;
    padding: 0px;
    align-items: center;
    justify-content: center;
}

.feature-right {
    background: var(--white);
    border-radius: var(--border-radius-md);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: 30px;
}

@media (max-width: 992px) {
    /* Navbar tablet adjustments */
    .navbar > .container-fluid {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .feature-section {
        flex-direction: column;
        align-items: center;
        padding: 40px 20px;
        gap: 40px;
    }

    .feature-right {
        flex-direction: column;
        text-align: center;
        margin-left: 0;
        width: 100%;
        max-width: 600px;
    }

    .feature-right .text {
        max-width: 100%;
    }
    
    .feature-left {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }
    
    .feature-icon {
        min-width: 250px;
        flex: 1 1 250px;
        padding: 40px 20px;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    /* Typography Adjustments */
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .section-wrapper h2,
    .section-wrapper2 h2 {
        font-size: 2rem;
    }
    
    /* Feature Section Mobile Adjustments */
    .feature-section {
        padding: 30px 15px;
    }
    
    .feature-left {
        flex-direction: column;
        gap: 20px;
    }
    
    .feature-icon {
        min-width: 100%;
        width: 100%;
        padding: 30px 20px;
    }
    
    .feature-right {
        padding: 30px 20px;
    }
    
    .feature-right img {
        max-width: 120px;
    }
    
    .feature-right .text h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .feature-right .text h3 {
        font-size: 16px;
    }
    
    .feature-right .text p {
        font-size: 14px;
    }
    
    /* Layout Adjustments */
    .content-container {
        flex-direction: column;
    }

    .column {
        flex: 1 1 100%;
        padding: 2rem;
    }
    
    .hero-text {
        padding-right: var(--spacing-lg) !important;
        padding-left: var(--spacing-lg) !important;
    }
    
    /* Body Padding Adjustment for Mobile */
    body {
        padding-top: 100px;
    }
    
    /* Navigation Mobile Styles */
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar > .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .navbar-brand img {
        max-height: 80px;
    }
    
    .navbar-scrolled {
        padding: 0.3rem 0;
    }
    
    .navbar-scrolled .navbar-brand img {
        max-height: 70px;
        transform: scale(1);
    }
    
    .navbar-collapse {
        margin-top: 15px;
        padding: 15px;
        max-height: 70vh;
        overflow-y: auto;
    }
    
    .navbar .dropdown-menu {
        min-width: 100%;
        position: static !important;
        transform: none !important;
        box-shadow: none;
        border: 1px solid var(--gray-200);
        border-radius: var(--border-radius-sm);
        margin: 5px 0;
    }
    
    .navbar .dropdown-menu-large {
        min-width: 100%;
        padding: 10px;
    }
    
    .location-grid {
        display: block;
    }
    
    .location-grid .col-md-4 {
        width: 100%;
        margin-bottom: 5px;
    }
    
    .contact-phone .nav-link {
        font-size: 1rem;
        padding: 10px 15px;
        margin: 10px 0;
        justify-content: center;
        max-width: 100%;
    }

    .contact-phone .icon img {
        width: 28px;
        height: 28px;
    }
    
    /* Mobile Menu Items */
    .navbar-nav .nav-item {
        margin: 3px 0;
    }
    
    .navbar-nav .nav-link {
        padding: 12px 16px !important;
        border-radius: var(--border-radius-sm);
        transition: var(--transition-base);
    }
    
    .navbar-nav .nav-link:hover {
        background-color: var(--lightest-purple);
        color: var(--primary-purple) !important;
    }
    
    /* Forms */
    .assistance-header {
        padding: 60px 20px;
    }
    
    .assistance-header h2 {
        font-size: 2rem;
    }
    
    /* Footer */
    .footer-contact-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-columns {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-column {
        flex: 1 1 100%;
        margin-bottom: 20px;
    }
    
    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Testimonials */
    .quote-icon-left {
        transform: translateX(-120px);
        font-size: 3rem;
    }
    
    .quote-icon-right {
        transform: translateX(120px);
        font-size: 3rem;
    }
    
    .testimonial-section {
        padding: 60px 0;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    /* Body padding for smaller screens */
    body {
        padding-top: 0px;
    }
    
    /* Feature Section Small Mobile Adjustments */
    .feature-section {
        padding: 20px 10px;
    }
    
    .feature-icon {
        padding: 25px 15px;
    }
    
    .feature-icon img {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon h4 {
        font-size: 1.2rem;
    }
    
    .feature-right {
        padding: 25px 15px;
    }
    
    /* Navigation adjustments for small screens */
    .navbar {
        padding: 0.3rem 0;
    }
    
    .navbar > .container-fluid {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .navbar-brand img {
        max-height: 60px;
    }
    
    .navbar-scrolled .navbar-brand img {
        max-height: 55px;
    }
    
    .navbar-collapse {
        margin-top: 10px;
        padding: 10px;
        max-height: 60vh;
        border-radius: var(--border-radius-sm);
    }
    
    .contact-phone .nav-link {
        font-size: 0.9rem;
        padding: 8px 12px;
        gap: 8px;
    }
    
    .contact-phone .icon img {
        width: 24px;
        height: 24px;
    }
    
    .navbar .dropdown-menu {
        font-size: 0.9rem;
    }
    
    .dropdown-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    /* Layout adjustments */
    .section-wrapper,
    .section-wrapper2 {
        padding: var(--spacing-xl) var(--spacing-md);
    }
    
    .assistance-header {
        padding: 40px var(--spacing-md);
    }
    
    .column {
        padding: var(--spacing-lg);
    }
    
    .cta-box-goals {
        max-width: 280px;
    }
}

.highlight-text {
    color: #ffd65b; 
}



/* ===================================================================
   BEYOND LIMITS - HEALTH SERVICES ENHANCED STYLESHEET
   ===================================================================
   
   Modern UI/UX enhancements for health-related pages
   
   ================================================================= */
       
   
/* Enhanced Content Header */
.content-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
  }
  
  .content-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(125, 63, 152, 0.2);
  }
  
  /* Enhanced Info Card */
  .info-card {
    background: rgba(125, 63, 152, 0.05);
    border-left: 4px solid var(--primary-purple);
    padding: 1.5rem;
    border-radius: 0 12px 12px 0;
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
  }
  
  .info-card:hover {
    background: rgba(125, 63, 152, 0.08);
    transform: translateX(5px);
  }
  
  .info-icon {
    color: var(--primary-purple);
    font-size: 1.5rem;
    margin-right: 1rem;
  }
  
  .info-content p {
    margin-bottom: 0;
  }
  
  /* Enhanced Service Features */
  .area-service-features {
    margin: 3rem 0;
  }
  
  .service-card-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 8px 20px rgba(125, 63, 152, 0.08);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(125, 63, 152, 0.05);
  }
  
  .service-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(125, 63, 152, 0.12);
    border-color: rgba(125, 63, 152, 0.1);
  }
  
  .service-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(125, 63, 152, 0.1) 0%, rgba(155, 89, 182, 0.15) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--primary-purple);
    font-size: 1.25rem;
    transition: all 0.3s ease;
  }
  
  .service-card-item:hover .service-card-icon {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    color: white;
    transform: scale(1.1);
  }
  
  .service-card-content h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-purple);
  }
  
  /* Enhanced Contact Info Card */
  .area-contact-info-card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(125, 63, 152, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
  }
  
  .area-contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(125, 63, 152, 0.15);
  }
  
  .area-contact-info-card .card-title {
    font-weight: 700;
    position: relative;
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
  }
  
  .area-contact-info-card .card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    border-radius: 2px;
  }
  
  .contact-item-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
  }
  
  .contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(125, 63, 152, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-purple);
    margin-right: 1rem;
    transition: all 0.3s ease;
  }
  
  .contact-item-row:hover .contact-icon {
    background: var(--primary-purple);
    color: white;
    transform: scale(1.1);
  }
  
  .contact-label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 0.25rem;
  }
  
  .contact-details a {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .contact-details a:hover {
    color: var(--secondary-purple);
  }
  
  /* Enhanced Services Card */
  .services-card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(125, 63, 152, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
  }
  
  .services-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(125, 63, 152, 0.15);
  }
  
  .services-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .service-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border-radius: 12px;
    transition: all 0.3s ease;
  }
  
  .service-item:hover {
    background: rgba(125, 63, 152, 0.05);
    transform: translateX(5px);
  }
   
  
  .service-item:hover .service-icon {
    background: var(--primary-purple);
    color: white;
    transform: scale(1.1);
  }
  
  .service-details a {
    color: var(--gray-800);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .service-details a:hover {
    color: var(--primary-purple);
  }
  
  /* Enhanced Philosophy Card */
  .philosophy-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(125, 63, 152, 0.08);
    position: relative;
    overflow: hidden;
    border-left: 5px solid var(--primary-purple);
    margin-bottom: 2rem;
  }
  
  .philosophy-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 150px;
    font-family: Georgia, serif;
    color: rgba(125, 63, 152, 0.05);
    line-height: 1;
  }
  
  /* Enhanced Commitment Box */
  .commitment-box {
    display: flex;
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(125, 63, 152, 0.05) 0%, rgba(155, 89, 182, 0.1) 100%);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
  }
  
  .commitment-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(125, 63, 152, 0.1);
  }
  
  .commitment-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: var(--primary-purple);
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(125, 63, 152, 0.1);
    transition: all 0.3s ease;
  }
  
  .commitment-box:hover .commitment-icon {
    transform: scale(1.1) rotate(10deg);
  }
  
  .commitment-text h5 {
    color: var(--primary-purple);
    margin-bottom: 0.75rem;
    font-weight: 600;
  }
  
  /* Enhanced Experience Card */
  .unique-experience-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(125, 63, 152, 0.08);
    margin-bottom: 2rem;
  }
  
  .experience-list {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .experience-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.6;
  }
  
  .experience-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: var(--primary-purple);
    border-radius: 50%;
  }
  
  .integris-logo {
    display: flex;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(125, 63, 152, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
  }
  
  .integris-logo:hover {
    background: rgba(125, 63, 152, 0.06);
    transform: translateY(-3px);
  }
  
  /* Enhanced Map Container */
  .map-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(125, 63, 152, 0.1);
    height: 100%;
  }
  
  .map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 2rem;
    color: white;
  }
  
  .map-info {
    background: rgba(125, 63, 152, 0.8);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  
  .map-info h4 {
    margin-bottom: 0.5rem;
    font-weight: 700;
    color:white;
  }
  
  .map-info p {
    margin-bottom: 1rem;
    opacity: 0.9;
  }
  
  .map-info .btn {
    background: white;
    color: var(--primary-purple);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .map-info .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
  }
  
  /* Sydney Highlights */
  .sydney-highlights {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0;
  }
  
  .highlight-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(125, 63, 152, 0.08);
    transition: all 0.3s ease;
  }
  
  .highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(125, 63, 152, 0.12);
  }
  
  .highlight-icon {
    width: 50px;
    height: 50px;
    background: rgba(125, 63, 152, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--primary-purple);
    font-size: 1.25rem;
    transition: all 0.3s ease;
  }
  
  .highlight-item:hover .highlight-icon {
    background: var(--primary-purple);
    color: white;
    transform: scale(1.1);
  }
  
  .highlight-text span {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
  }
  
  .highlight-text p {
    margin-bottom: 0;
    color: var(--gray-600);
    font-size: 0.9rem;
  }
  
  /* Best Provider Section */
  .best-provider-section {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
  }
  
  .best-provider-content {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .best-provider-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/pattern-light.svg');
    opacity: 0.05;
    z-index: -1;
  }
  
  /* Enhanced Location Cards */
  .locations-section { 
    position: relative;
    overflow: hidden;
  }
  
  .locations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/pattern-dots.svg');
    opacity: 0.05;
    z-index: 0;
  }
  
  .locations-grid {
    position: relative;
    z-index: 1;
  }
  
  .location-card {
    margin-bottom: 0.75rem;
  }
  
  .location-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(125, 63, 152, 0.05);
    color: var(--gray-800);
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .location-link:hover {
    background: rgba(125, 63, 152, 0.05);
    transform: translateX(5px);
    color: var(--primary-purple);
  }
  
  .location-icon {
    margin-right: 0.75rem;
    color: var(--primary-purple);
    transition: all 0.3s ease;
  }
  
  .location-link:hover .location-icon {
    transform: scale(1.2);
  }
  
  /* Social Contact Box */
  .area-social-contact-box {
    background: linear-gradient(135deg, rgba(125, 63, 152, 0.05) 0%, rgba(155, 89, 182, 0.1) 100%);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    text-align: center;
  }
  
  .area-social-contact-box h5 {
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--primary-purple);
  }
  
  .area-social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  
  .area-social-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-purple);
    box-shadow: 0 5px 15px rgba(125, 63, 152, 0.1);
    transition: all 0.3s ease;
  }
  
  .area-social-icon:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-3px);
  }
  
  /* Animations */
  @keyframes float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-15px);
    }
  }
  
  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(125, 63, 152, 0.4);
    }
    70% {
      box-shadow: 0 0 0 15px rgba(125, 63, 152, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(125, 63, 152, 0);
    }
  }
  
  /* Enhanced Modern Sidebar Styles */
  .sidebar-section {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
  }
  
  .sidebar-section h5 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
  }
  
  /* Modern Contact Info Card */
  .area-contact-info-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(125, 63, 152, 0.08);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    position: relative;
    background: white;
  }
  
  .area-contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(125, 63, 152, 0.03) 0%, rgba(155, 89, 182, 0.05) 100%);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 0;
  }
  
  .area-contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(125, 63, 152, 0.12);
  }
  
  .area-contact-info-card:hover::before {
    opacity: 1;
  }
  
  .area-contact-info-card .card-body {
    padding: 1.75rem;
    position: relative;
    z-index: 1;
  }
  
  .area-contact-info-card .card-title {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
  }
  
  .area-contact-info-card .card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    border-radius: 3px;
    transition: all 0.4s ease;
  }
  
  .area-contact-info-card:hover .card-title::after {
    width: 80px;
  }
  
  .contact-item-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .contact-item-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(125, 63, 152, 0.05) 0%, rgba(155, 89, 182, 0.08) 100%);
    border-radius: 12px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
  }
  
  .contact-item-row:hover::before {
    opacity: 1;
  }
  
  .contact-item-row:hover {
    transform: translateX(5px);
  }
  
  .contact-icon {
    width: 45px;
    height: 45px;
    background: rgba(125, 63, 152, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-purple);
    margin-right: 1rem;
    transition: all 0.4s ease;
    font-size: 1.25rem;
  }
  
  .contact-item-row:hover .contact-icon {
    background: var(--primary-purple);
    color: white;
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 5px 15px rgba(125, 63, 152, 0.2);
  }
  
  .contact-details {
    flex: 1;
  }
  
  .contact-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-600);
    margin-bottom: 0.25rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }
  
  .contact-details p {
    margin-bottom: 0;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .contact-details a {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
  }
  
  .contact-details a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    transition: all 0.4s ease;
  }
  
  .contact-details a:hover {
    color: var(--secondary-purple);
  }
  
  .contact-details a:hover::after {
    width: 100%;
  }
  
  /* Enhanced Social Contact Box */
  .area-social-contact-box {
    background: linear-gradient(135deg, rgba(125, 63, 152, 0.05) 0%, rgba(155, 89, 182, 0.08) 100%);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
  }
  
  .area-social-contact-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(125, 63, 152, 0.1) 0%, rgba(125, 63, 152, 0) 70%);
    opacity: 0;
    transition: all 0.6s ease;
    z-index: 0;
  }
  
  .area-social-contact-box:hover::before {
    opacity: 1;
    transform: scale(1.2);
  }
  
  .area-social-contact-box h5 {
    margin-bottom: 1.25rem;
    font-weight: 600;
    color: var(--primary-purple);
    position: relative;
    z-index: 1;
  }
  
  .area-social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
  }
  
  .area-social-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-purple);
    box-shadow: 0 5px 15px rgba(125, 63, 152, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
  }
  
  .area-social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
  }
  
  .area-social-icon:hover {
    transform: translateY(-5px);
    color: white;
    box-shadow: 0 10px 20px rgba(125, 63, 152, 0.2);
  }
  
  .area-social-icon:hover::before {
    opacity: 1;
  }
  
  /* Enhanced Services Card */
  .services-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(125, 63, 152, 0.08);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    position: relative;
    background: white;
  }
  
  .services-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(125, 63, 152, 0.03) 0%, rgba(155, 89, 182, 0.05) 100%);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 0;
  }
  
  .services-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(125, 63, 152, 0.12);
  }
  
  .services-card:hover::before {
    opacity: 1;
  }
  
  .services-card .card-body {
    padding: 1.75rem;
    position: relative;
    z-index: 1;
  }
  
  .services-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .service-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
  }
  
  .service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(125, 63, 152, 0.05) 0%, rgba(155, 89, 182, 0.08) 100%);
    border-radius: 12px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
  }
  
  .service-item:hover::before {
    opacity: 1;
  }
  
  .service-item:hover {
    transform: translateX(8px);
  } 
  .service-item:hover .service-icon {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    color: white;
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 5px 15px rgba(125, 63, 152, 0.2);
  }
  
  .service-details {
    flex: 1;
  }
  
  .service-details a {
    color: var(--gray-800);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
  }
  
  .service-details a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    transition: all 0.4s ease;
  }
  
  .service-details a:hover {
    color: var(--primary-purple);
  }
  
  .service-details a:hover::after {
    width: 100%;
  }
  
  /* NDIS Services Icons */
  .area-service-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: rgba(125, 63, 152, 0.1);
    border-radius: 20px;
    margin: 0 auto 1.25rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(125, 63, 152, 0.05);
  }
  
  .area-service-icon-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 0;
  }
  
  .area-service-icon-container i {
    color: var(--primary-purple);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
  }
  
  .area-service-box:hover .area-service-icon-container {
    transform: translateY(-8px) rotate(5deg);
    box-shadow: 0 15px 25px rgba(125, 63, 152, 0.15);
  }
  
  .area-service-box:hover .area-service-icon-container::before {
    opacity: 1;
  }
  
  .area-service-box:hover .area-service-icon-container i {
    color: white;
    transform: scale(1.1);
  }
  
  /* Enhanced Service Box */
  .area-service-box {
    background: white;
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(125, 63, 152, 0.08);
    cursor: pointer;
  }
  
  .area-service-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  
  .area-service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(125, 63, 152, 0.15);
  }
  
  .area-service-box:hover::after {
    transform: scaleX(1);
  }
  
  .area-service-box-content {
    position: relative;
    z-index: 1;
  }
  
  .area-service-box h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0.5rem 0;
    color: var(--primary-purple);
    transition: all 0.3s ease;
  }
  
  .area-service-box:hover h3 {
    transform: translateY(-3px);
  }
  
  .area-service-box a {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    display: inline-block;
    margin-top: 0.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
  }
  
  .area-service-box:hover a {
    opacity: 1;
    transform: translateY(0);
  }
  
  .area-service-box a::after {
    content: '→';
    margin-left: 0.25rem;
    transition: all 0.3s ease;
  }
  
  .area-service-box a:hover::after {
    margin-left: 0.5rem;
  }
  
  /* NDIS Allied Health section improvements */
  .services-card .services-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
  }
  
  .service-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    background: rgba(125, 63, 152, 0.03);
  }
  
  .service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(125, 63, 152, 0.05) 0%, rgba(155, 89, 182, 0.08) 100%);
    border-radius: 12px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
  }
  
  .service-item:hover::before {
    opacity: 1;
  }
  
  .service-item:hover {
    transform: translateX(8px);
  }
   
  
  .service-item:hover .service-icon {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    color: white;
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 5px 15px rgba(125, 63, 152, 0.2);
  }
  
  .service-details {
    flex: 1;
  }
  
  .service-details a {
    color: var(--gray-800);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 0.25rem 0;
  }
  
  .service-details a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    transition: all 0.4s ease;
  }
  
  .service-details a:hover {
    color: var(--primary-purple);
  }
  
  .service-details a:hover::after {
    width: 100%;
  }
  
  /* Services Grid Layout with better responsiveness */
  .area-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  /* Section title styling */
  .section-title {
    position: relative;
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
  }
  
  .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    border-radius: 3px;
    transition: all 0.4s ease;
  }
  
  .text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  h2.section-title {
    font-size: 2.5rem;
    font-weight: 700;
  }
  
  /* Sidebar Section Title */
  .sidebar-section-title {
    position: relative;
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-purple);
  }
  
  .sidebar-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    border-radius: 3px;
    transition: all 0.4s ease;
  }
  
  .sidebar-section:hover .sidebar-section-title::after {
    width: 80px;
  }
  
  /* NDIS Allied Health Section Title */
  .sidebar-section-title.allied-health {
    margin-top: 1rem;
    border-top: 1px solid rgba(125, 63, 152, 0.1);
    padding-top: 1.5rem;
  }
  
  .full-width-map-section { 
    margin: 0;
    width: 100%;
    overflow: hidden;
    position: relative; 
    padding-bottom: 0;
}

.map-container-fluid {
    width: 100%;
    padding: 0;
    margin: 0;
}

.map-container-fluid iframe {
    display: block;
    border: none;
    height: 500px;
}

.map-heading {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.map-heading h3 {
    color: #7d3f98;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.map-heading .lead {
    font-weight: 500;
    color: #495057;
    margin-bottom: 0.25rem;
}

.map-heading p:last-child {
    color: #6c757d;
    margin-bottom: 0;
}

.faq-section {
    padding: 120px 0;
    background-color: #f9f7fe;
}

.faq-container {
    max-width: 100%;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-question {
    padding: 20px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.faq-question-text {
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-question-text h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.faq-icon {
    font-size: 22px;
    color: #7d3f98;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(125, 63, 152, 0.1);
    border-radius: 50%;
}

.faq-arrow {
    color: #7d3f98;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-arrow i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px 20px 85px;
    color: #666;
    line-height: 1.6;
    transition: all 0.4s ease-in-out;
    position: relative;
    z-index: 1;
}

.faq-answer p {
    margin: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.faq-answer.show {
    max-height: 1000px;
    transition: max-height 0.5s ease;
}

/* Ensure smooth transitions */
.faq-collapse:not(.show) {
    display: block;
    height: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
    transition: height 0.4s ease-out;
}

.faq-collapse.show {
    height: auto;
    overflow: visible;
    transition: height 0.4s ease-in;
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}

/* Hide content when collapsed */
.faq-answer:not(.show) p {
    visibility: hidden;
    opacity: 0;
    height: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0s 0.3s, transform 0.3s ease;
}

.faq-answer.show p {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s;
}

/* Blog Cards */
.blog-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(125, 63, 152, 0.12);
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
  border: 1px solid rgba(125, 63, 152, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-card:focus-within,
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(125, 63, 152, 0.18);
  border-color: rgba(125, 63, 152, 0.18);
}
.blog-thumb {
  width: 100%;
  height: 200px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(125,63,152,0.12), rgba(155,89,182,0.12));
  display: block;
  margin: 0 0 14px 0;
  overflow: hidden;
}
.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 576px) { .blog-thumb { height: 180px; } }
@media (min-width: 1200px) { .blog-thumb { height: 220px; } }
.blog-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: #7b7b7b;
  font-size: 12px;
}
.blog-meta i { color: #7d3f98; }
.badge-pill {
  background: rgba(125, 63, 152, 0.1);
  color: #7d3f98;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.blog-title {
  font-size: 18px;
  line-height: 1.4;
  margin: 0;
  color: #3c2e44;
}
.blog-excerpt { color: #6c6c6c; margin: 0; }
.blog-actions { margin-top: auto; }
.btn-inline {
  color: #7d3f98;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}
.blog-card .stretched-link { position: static; }
@media (hover:hover) {
  .btn-inline i { transition: transform 200ms ease; }
  .blog-card:hover .btn-inline i { transform: translateX(4px); }
}

/* Article Page */
.article-wrap { max-width: 980px; }
.article-hero { text-align: left; }
.article-hero .badge-pill { display: inline-block; margin-bottom: 10px; }
.article-hero h1 { color: #3c2e44; margin: 0 0 8px 0; line-height: 1.2; }
.article-hero .lead-sub { color: #6c6c6c; margin-bottom: 8px; }
.article-meta { color: #7b7b7b; display: flex; gap: 14px; font-size: 13px; }
.article-meta i { color: #7d3f98; }
.article-cover { margin: 18px 0 24px 0; border-radius: 18px; overflow: hidden; box-shadow: 0 12px 36px rgba(125,63,152,0.12); }
.article-cover img { display: block; width: 100%; height: 500px; object-fit: cover; }
@media (max-width: 576px) { .article-cover img { height: 220px; } }

.prose { color: #42364d; font-size: 16px; line-height: 1.8; }
.prose h2 { font-size: 24px; margin-top: 24px; color: #3c2e44; }
.prose h3 { font-size: 18px; margin-top: 20px; color: #3c2e44; }
.prose ul { padding-left: 18px; }
.prose ul li { margin: 6px 0; }
.article-cta { margin-top: 26px; }

/* Article enhancements */
.article-toolbar { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; }
.share-links { display: flex; align-items: center; gap: 10px; color: #7b7b7b; font-size: 13px; }
.share-links a { width: 32px; height: 32px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(125,63,152,0.08); color: #7d3f98; transition: transform .2s ease, background .2s ease; }
.share-links a:hover { transform: translateY(-2px); background: rgba(125,63,152,0.14); }

.info-card { background: #fff; border: 1px solid rgba(125,63,152,0.12); border-radius: 14px; padding: 14px 16px; box-shadow: 0 6px 18px rgba(125,63,152,0.08); margin: 12px 0; }
.check-list { list-style: none; padding-left: 0; margin: 0; }
.check-list li { position: relative; padding-left: 26px; margin: 8px 0; }
.check-list li:before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: #27ae60; position: absolute; left: 4px; top: 0; }

.article-nav { display: flex; justify-content: space-between; gap: 16px; margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(125,63,152,0.12); }
.article-nav a { color: #7d3f98; font-weight: 600; text-decoration: none; }
.article-nav a:hover { text-decoration: underline; }

#read-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: linear-gradient(90deg, #7d3f98, #9b59b6); z-index: 9999; box-shadow: 0 0 6px rgba(125,63,152,.6); }