<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Mobile Rehabilitation &amp; Therapy Unit Website - Main Styles */
/* Color palette: harmonious pastels for healthcare/wellness theme */

:root {
  /* Primary color palette - 5 harmonious colors */
  --primary-sage: #87B5A7;          /* Calming sage green */
  --primary-lavender: #B5A7D1;      /* Gentle lavender */
  --primary-peach: #E5B299;         /* Warm peach */
  --primary-sky: #A7C7E5;           /* Soft sky blue */
  --primary-cream: #F0EDE2;         /* Warm cream */
  
  /* Light and dark shades */
  --sage-light: #B8D4C9;
  --sage-dark: #6B9488;
  --lavender-light: #D1C7E5;
  --lavender-dark: #9687B5;
  --peach-light: #F0C7AB;
  --peach-dark: #D1956B;
  --sky-light: #C7DDF0;
  --sky-dark: #87A5C7;
  --cream-light: #F8F6F0;
  --cream-dark: #E0DCC9;
  
  /* Neutral colors */
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --gray: #6C757D;
  --dark-gray: #495057;
  --black: #212529;
  
  /* Shadows and effects */
  --shadow-light: 0 2px 10px rgba(135, 181, 167, 0.1);
  --shadow-medium: 0 4px 20px rgba(135, 181, 167, 0.15);
  --shadow-heavy: 0 8px 30px rgba(135, 181, 167, 0.2);
  
  /* Fonts */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --section-padding: 80px 0;
  --container-padding: 0 15px;
}

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

body {
overflow-x: hidden;
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--dark-gray);
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--black);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--gray);
}

a {
  color: var(--primary-sage);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

/* Container and layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--container-padding);
}

section {
  padding: var(--section-padding);
  position: relative;
}

/* Header styles */
header {
  background: var(--white);
  box-shadow: var(--shadow-light);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-sage) !important;
}

.navbar-nav .nav-link {
  color: var(--dark-gray) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-sage) !important;
}

/* Hero section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-cream) 0%, var(--cream-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--sage-light) 0%, transparent 70%);
  opacity: 0.3;
  z-index: 1;
}

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

.hero-title {
  font-size: 3.5rem;
  color: var(--primary-sage);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--sage-dark);
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 2rem;
}

/* Decorative shapes */
.shape-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  z-index: 1;
}

.shape-blob-1 {
  width: 300px;
  height: 300px;
  background: var(--lavender-light);
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.shape-blob-2 {
  width: 200px;
  height: 200px;
  background: var(--peach-light);
  bottom: 20%;
  left: 5%;
  animation: float 8s ease-in-out infinite reverse;
}

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

/* Section styling */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  color: var(--primary-sage);
  margin-bottom: 0.5rem;
}

.section-title p {
  color: var(--gray);
  font-size: 1.1rem;
}

/* About section */
.about-section {
  background: var(--white);
}

.about-feature {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--light-gray);
  border-radius: 15px;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.about-feature i {
  font-size: 3rem;
  color: var(--primary-sage);
  margin-bottom: 1rem;
}

/* Services section */
.services-section {
  background: linear-gradient(45deg, var(--cream-light) 0%, var(--white) 100%);
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  height: 100%;
}

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

.service-image {
  width: 100%;
  height: 200px;
  background: var(--sage-light);
  border-radius: 15px;
  margin-bottom: 1.5rem;
  background-size: cover;
  background-position: center;
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-sage);
  margin: 1rem 0;
}

/* Features section */
.features-section {
  background: var(--white);
}

.feature-item {
  text-align: center;
  padding: 2rem 1rem;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-lavender);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.feature-icon i {
  font-size: 2rem;
  color: var(--white);
}

/* Team section */
.team-section {
  background: linear-gradient(135deg, var(--lavender-light) 0%, var(--cream-light) 100%);
}

.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--sage-light);
  margin: 0 auto 1.5rem;
  background-size: cover;
  background-position: center;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-medium);
}

/* Reviews section */
.reviews-section {
  background: var(--white);
}

.review-item {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 2rem;
}

.review-text {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--dark-gray);
}

.review-author {
  font-weight: 600;
  color: var(--primary-sage);
}

/* Contact section */
.contact-section {
  background: linear-gradient(45deg, var(--sky-light) 0%, var(--peach-light) 100%);
}

.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-medium);
}

.form-control {
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-sage);
  box-shadow: 0 0 0 0.2rem rgba(135, 181, 167, 0.25);
}

.btn-primary {
  background: var(--primary-sage);
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
}

/* FAQ section */
.faq-section {
  background: var(--white);
}

.faq-item {
  border: none;
  border-bottom: 1px solid var(--light-gray);
  margin-bottom: 1rem;
}

.faq-question {
  background: transparent;
  border: none;
  padding: 1.5rem 0;
  font-weight: 600;
  color: var(--dark-gray);
  text-align: left;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--primary-sage);
}

.faq-answer {
  padding: 0 0 1.5rem;
  color: var(--gray);
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Gallery section */
.gallery-section {
  background: var(--light-gray);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  height: 250px;
  background: var(--sage-light);
  border-radius: 15px;
  background-size: cover;
  background-position: center;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-heavy);
}

/* Footer */
footer {
  background: var(--dark-gray);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h5 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  color: var(--light-gray);
  margin-bottom: 0.5rem;
}

.footer-section a:hover {
  color: var(--primary-sage);
}

.footer-bottom {
  border-top: 1px solid var(--gray);
  padding-top: 1rem;
  text-align: center;
}

/* Swiper customization */
.swiper-pagination-bullet {
  background: var(--primary-sage);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-sage);
}

/* Utility classes */
.text-primary { color: var(--primary-sage) !important; }
.bg-primary { background-color: var(--primary-sage) !important; }
.text-center { text-align: center; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }

/* Animations for reduced motion users */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
} </pre></body></html>