/* Base Styles */
:root {
    --primary-color: #5e60ce; /* Changed to a vibrant purple */
    --primary-dark: #4c4db0;
    --primary-light: #6f70dd;
    --secondary-color: #64dfdf; /* Teal accent color */
    --secondary-dark: #48c5c5;
    --secondary-light: #80e5e5;
    --accent-color: #ff9f1c; /* Warm orange accent */
    --text-color: #2b2c34;
    --text-light: #555565;
    --background-color: #ffffff;
    --background-light: #f8f9fa;
    --border-color: #e0e0e0;
    --box_shadow: 0 10px 30px rgba(94, 96, 206, 0.1);
    --transition: all 0.3s ease;
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
  }
  
  a:hover {
    color: var(--primary-color);
  }
  
  ul {
    list-style: none;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.2;
    position: relative;
  }
  
  .section-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
  }
  
  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  @keyframes slideInLeft {
    from {
      transform: translateX(-50px);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  @keyframes slideInRight {
    from {
      transform: translateX(50px);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  @keyframes slideInUp {
    from {
      transform: translateY(50px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
    100% {
      transform: scale(1);
    }
  }
  
  .animate {
    opacity: 0;
  }
  
  .animate.fadeIn {
    animation: fadeIn 1s forwards;
  }
  
  .animate.slideInLeft {
    animation: slideInLeft 1s forwards;
  }
  
  .animate.slideInRight {
    animation: slideInRight 1s forwards;
  }
  
  .animate.slideInUp {
    animation: slideInUp 1s forwards;
  }
  
  .delay-100 {
    animation-delay: 0.1s;
  }
  
  .delay-200 {
    animation-delay: 0.2s;
  }
  
  .delay-300 {
    animation-delay: 0.3s;
  }
  
  .delay-400 {
    animation-delay: 0.4s;
  }
  
  .delay-500 {
    animation-delay: 0.5s;
  }
  
  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
    z-index: -1;
  }
  
  .btn:hover::before {
    width: 100%;
  }
  
  .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(94, 96, 206, 0.3);
  }
  
  .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(94, 96, 206, 0.4);
    color: white;
  }
  
  .btn-secondary {
    background-color: transparent;
    color: var(--text-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--primary-color);
  }
  
  .btn-secondary i {
    font-size: 14px;
    transition: transform 0.3s ease;
  }
  
  .btn-secondary:hover {
    background-color: var(--primary-light);
    color: white;
  }
  
  .btn-secondary:hover i {
    transform: translateX(3px);
  }
  
  .btn-light {
    background-color: white;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  .btn-light:hover {
    background-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }
  
  .btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
  }
  
  .btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
  }
  
  .btn-accent {
    background: linear-gradient(135deg, var(--accent-color), #ff7e00);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 159, 28, 0.3);
  }
  
  .btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 159, 28, 0.4);
    color: white;
  }
  
  /* Header */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }
  
  .header.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }
  
  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    font-weight: 700;
    font-size: 20px;
  }
  
  .logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s ease;
  }
  
  .logo:hover .logo-icon {
    transform: rotate(10deg);
  }
  
  .main-nav {
    display: flex;
    align-items: center;
  }
  
  .nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  
  .nav-links a {
    color: var(--text-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
  }
  
  .nav-links a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
  }
  
  .nav-links a:hover::after {
    width: 100%;
  }
  
  .nav-links a:hover {
    color: var(--primary-color);
  }
  
  .dropdown i {
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.3s ease;
  }
  
  .dropdown:hover i {
    transform: rotate(180deg);
  }
  
  .header-cta {
    margin-left: 30px;
  }
  
  .mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
  }
  
  .mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--text-color);
    transition: var(--transition);
  }
  
  .mobile-menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  
  /* Mobile Menu */
  .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: white;
    z-index: 1000;
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
  }
  
  .mobile-menu-open .mobile-menu {
    right: 0;
  }
  
  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  
  .mobile-menu-open .mobile-menu-overlay {
    opacity: 1;
    visibility: visible;
  }
  
  .mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .mobile-nav-links a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 18px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
  }
  
  .mobile-nav-links a:hover {
    color: var(--primary-color);
  }
  
  .mobile-cta {
    margin-top: 30px;
  }
  
  /* Hero Section */
  .hero {
    padding-top: 150px;
    padding-bottom: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(94, 96, 206, 0.05) 0%, rgba(100, 223, 223, 0.05) 100%);
    z-index: -1;
  }
  
  .hero-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .hero-subtitle {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  
  .hero-title {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }
  
  .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
  }
  
  /* Testimonial Preview */
  .testimonial-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    padding: 15px 20px;
    background-color: white;
    border-radius: 50px;
    box-shadow: var(--box_shadow);
    transition: transform 0.3s ease;
  }
  
  .testimonial-preview:hover {
    transform: translateY(-5px);
  }
  
  .testimonial-avatars {
    display: flex;
  }
  
  .avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -15px;
    object-fit: cover;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .avatar:first-child {
    margin-left: 0;
  }
  
  .avatar:hover {
    transform: scale(1.1);
    z-index: 2;
  }
  
  .testimonial-info {
    text-align: left;
  }
  
  .testimonial-label {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 5px;
    font-weight: 500;
  }
  
  .testimonial-rating {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .testimonial-rating i {
    color: var(--accent-color);
  }
  
  .rating-score {
    font-weight: 700;
    color: var(--text-color);
  }
  
  .rating-count {
    font-size: 14px;
    color: var(--text-light);
  }
  
  /* Therapy Image Section */
  .therapy-image {
    margin-bottom: 80px;
    position: relative;
  }
  
  .main-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
  }
  
  .main-image:hover {
    transform: scale(1.02);
  }
  
  /* Welcome Section */
  .welcome {
    padding: 100px 0;
    position: relative;
  }
  
  .welcome::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(94, 96, 206, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
  }
  
  .welcome::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(100, 223, 223, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
  }
  
  .feature-card {
    padding: 40px 30px;
    border-radius: 16px;
    background-color: white;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
  }
  
  .feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    transition: height 0.5s ease;
  }
  
  .feature-card:hover::before {
    height: 100%;
  }
  
  .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 25px;
    font-size: 24px;
    transition: all 0.3s ease;
  }
  
  .feature-card:hover .feature-icon {
    transform: rotateY(180deg);
  }
  
  .feature-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 700;
    transition: color 0.3s ease;
  }
  
  .feature-card:hover h3 {
    color: var(--primary-color);
  }
  
  .feature-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 20px;
    color: var(--primary-color);
    font-weight: 600;
  }
  
  .feature-link i {
    font-size: 14px;
    transition: transform 0.3s ease;
  }
  
  .feature-link:hover i {
    transform: translateX(5px);
  }
  
  /* Empowering Section */
  .empowering {
    padding: 100px 0;
    background-color: var(--background-light);
    position: relative;
    overflow: hidden;
  }
  
  .empowering::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(94, 96, 206, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
  }
  
  .empowering-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
  }
  
  .empowering-image {
    position: relative;
  }
  
  .empowering-image img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
  }
  
  .empowering-image:hover img {
    transform: scale(1.03);
  }
  
  .empowering-image::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0.1;
    border-radius: 20px;
    z-index: -1;
  }
  
  .empowering-image::after {
    content: "";
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--accent-color), #ff7e00);
    opacity: 0.1;
    border-radius: 20px;
    z-index: -1;
  }
  
  .empowering-text h2 {
    text-align: left;
    margin-bottom: 30px;
  }
  
  .empowering-text h2::after {
    left: 0;
    transform: none;
  }
  
  .empowering-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.8;
  }
  
  .stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
  }
  
  .stat-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 16px;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .stat-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  }
  
  .stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }
  
  .stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 10px;
  }
  
  .stat-item p {
    color: var(--text-light);
    font-size: 16px;
    font-weight: 500;
  }
  
  /* Services Section */
  .services {
    padding: 100px 0;
    position: relative;
  }
  
  .services::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(94, 96, 206, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
  }
  
  .services-header {
    margin-bottom: 60px;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
  }
  
  .service-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
    background-color: white;
    position: relative;
  }
  
  .service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(94, 96, 206, 0.8), rgba(100, 223, 223, 0.8));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
  }
  
  .service-card:hover::before {
    opacity: 0.2;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }
  
  .service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .service-card:hover img {
    transform: scale(1.1);
  }
  
  .service-content {
    padding: 25px;
    position: relative;
    z-index: 2;
  }
  
  .service-content h3 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 700;
    transition: color 0.3s ease;
  }
  
  .service-card:hover h3 {
    color: var(--primary-color);
  }
  
  .service-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
  }
  
  .service-rating .rating-score {
    font-weight: 700;
    font-size: 18px;
  }
  
  .stars {
    display: flex;
    color: var(--accent-color);
  }
  
  .service-content p {
    color: var(--text-light);
    font-size: 15px;
    font-weight: 500;
  }
  
  /* Testimonial Highlight */
  .testimonial-highlight {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px;
    border-radius: 20px;
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 20px 40px rgba(94, 96, 206, 0.2);
    position: relative;
    overflow: hidden;
  }
  
  .testimonial-highlight::before {
    content: "\201C";
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 120px;
    font-family: Georgia, serif;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
  }
  
  .testimonial-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.8;
  }
  
  .testimonial-author h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 18px;
  }
  
  .testimonial-author p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin-bottom: 0;
  }
  
  /* Key Features Section */
  .key-features {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    position: relative;
    overflow: hidden;
  }
  
  .key-features::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
  }
  
  .key-features .section-title {
    color: white;
  }
  
  .key-features .section-title::after {
    background-color: white;
  }
  
  .feature-box {
    padding: 40px 30px;
    border-radius: 16px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
  }
  
  .feature-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    transition: opacity 0.5s ease;
    opacity: 0;
  }
  
  .feature-box:hover::before {
    opacity: 1;
  }
  
  .feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  }
  
  .feature-box .feature-icon {
    background-color: white;
    color: var(--primary-color);
    margin-bottom: 25px;
  }
  
  .feature-box h3 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 700;
  }
  
  .feature-box p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
  }
  
  /* Testimonials Section */
  .testimonials {
    padding: 100px 0;
    position: relative;
  }
  
  .testimonials::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(100, 223, 223, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
  }
  
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
  }
  
  .testimonial-card {
    padding: 40px 30px;
    border-radius: 16px;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: translateX(0);
  }
  
  .testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 80px;
    font-family: Georgia, serif;
    color: rgba(94, 96, 206, 0.1);
    line-height: 1;
  }
  
  .testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }
  
  .testimonial-card .stars {
    margin-bottom: 20px;
  }
  
  .testimonial-text {
    margin-bottom: 25px;
    font-style: italic;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    position: relative;
    z-index: 1;
  }
  
  .testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .testimonial-card .testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-light);
  }
  
  .testimonial-card .testimonial-author h4 {
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 18px;
  }
  
  .testimonial-card .testimonial-author p {
    color: var(--text-light);
    font-size: 14px;
  }
  
  /* Testimonial Navigation */
  .testimonial-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
  }
  
  .testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(94, 96, 206, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .testimonial-dot.active,
  .testimonial-dot:hover {
    background-color: var(--primary-color);
  }
  
  /* Blog Section */
  .blog {
    padding: 100px 0;
    background-color: var(--background-light);
    position: relative;
  }
  
  .blog::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(94, 96, 206, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
  }
  
  .blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
  }
  
  .blog-header .section-title {
    margin-bottom: 0;
  }
  
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
  }
  
  .blog-card {
    border-radius: 16px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
    position: relative;
  }
  
  .blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }
  
  .blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .blog-card:hover img {
    transform: scale(1.1);
  }
  
  .blog-content {
    padding: 25px;
  }
  
  .blog-content h3 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    transition: color 0.3s ease;
  }
  
  .blog-card:hover h3 {
    color: var(--primary-color);
  }
  
  .blog-meta {
    display: flex;
    justify-content: space-between;
    color: var(--text-light);
    font-size: 14px;
  }
  
  /* FAQ Section */
  .faq {
    padding: 100px 0;
    position: relative;
  }
  
  .faq::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(100, 223, 223, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
  }
  
  .faq-list {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .faq-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
    transition: all 0.3s ease;
  }
  
  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
  }
  
  .faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  
  .faq-item:hover .faq-question h3 {
    color: var(--primary-color);
  }
  
  .faq-toggle {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 18px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .faq-toggle:hover {
    background-color: var(--primary-light);
    color: white;
  }
  
  .faq-answer {
    padding: 0 0 20px;
    display: none;
  }
  
  .faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
  }
  
  .faq-item.active .faq-toggle i {
    transform: rotate(45deg);
  }
  
  .faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.5s forwards;
  }
  
  /* CTA Section */
  .cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
  }
  
  .cta-subtitle {
    font-size: 20px;
    margin-bottom: 20px;
    opacity: 0.9;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .cta-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 40px;
  }
  
  /* Newsletter Section */
  .newsletter {
    padding: 100px 0;
    position: relative;
  }
  
  .newsletter::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(94, 96, 206, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
  }
  
  .newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
  }
  
  .newsletter-text h3 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }
  
  .newsletter-text p {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
  }
  
  .newsletter-info {
    font-size: 14px;
    color: var(--text-light);
  }
  
  .newsletter-form form {
    display: flex;
    gap: 15px;
  }
  
  .newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 16px;
    transition: all 0.3s ease;
  }
  
  .newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(94, 96, 206, 0.2);
  }
  
  /* Footer */
  .footer {
    padding: 100px 0 30px;
    background-color: var(--background-light);
    position: relative;
    overflow: hidden;
  }
  
  .footer::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(94, 96, 206, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2.5fr;
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
  }
  
  .footer-logo {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .footer-logo .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 24px;
  }
  
  .footer-logo p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
  }
  
  .footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
  
  .footer-column h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
  }
  
  .footer-column h3::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
  }
  
  .footer-column ul li {
    margin-bottom: 12px;
  }
  
  .footer-column ul li a {
    color: var(--text-light);
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
  }
  
  .footer-column ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
  }
  
  .social-links li a {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .social-links li a i {
    width: 30px;
    height: 30px;
    background-color: rgba(94, 96, 206, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
  }
  
  .social-links li a:hover i {
    background-color: var(--primary-color);
    color: white;
    transform: rotate(360deg);
  }
  
  .footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
    position: relative;
    z-index: 1;
  }
  
  /* Calendly Modal */
  .calendly-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    overflow: auto;
  }
  
  .calendly-modal-content {
    position: relative;
    background-color: var(--background-color);
    margin: 50px auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    height: 80vh;
  }
  
  .close-calendly {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .close-calendly:hover {
    background-color: rgba(0, 0, 0, 0.5);
    transform: rotate(90deg);
  }
  
  .calendly-inline-widget {
    height: 100%;
    width: 100%;
  }
  
  /* Video Modal */
  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    overflow: auto;
  }
  
  .modal-content {
    position: relative;
    background-color: var(--background-color);
    margin: 50px auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    overflow: hidden;
  }
  
  .close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .close-modal:hover {
    background-color: rgba(0, 0, 0, 0.5);
    transform: rotate(90deg);
  }
  
  .video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
  }
  
  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  /* Contact Form */
  .contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
  }
  
  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(94, 96, 206, 0.2);
  }
  
  .form-group textarea {
    resize: vertical;
    min-height: 120px;
  }
  
  .form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
  
  .form-checkbox input {
    width: auto;
    margin-top: 5px;
  }
  
  .form-checkbox label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 14px;
    color: var(--text-light);
  }
  
  .form-success-message {
    padding: 15px;
    background-color: rgba(100, 223, 223, 0.2);
    border-left: 4px solid var(--secondary-color);
    border-radius: 8px;
    margin-top: 20px;
    color: var(--text-color);
    font-weight: 600;
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .hero-title {
      font-size: 42px;
    }
  
    .section-title {
      font-size: 2.2rem;
    }
  
    .empowering-content {
      grid-template-columns: 1fr;
    }
  
    .stats-container {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .newsletter-content {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  
    .footer-content {
      grid-template-columns: 1fr;
    }
  
    .footer-links {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .mobile-menu-toggle {
      display: block;
    }
  
    .main-nav,
    .header-cta {
      display: none;
    }
  
    .hero-title {
      font-size: 36px;
    }
  
    .hero-buttons {
      flex-direction: column;
      align-items: center;
      gap: 15px;
    }
  
    .testimonial-preview {
      flex-direction: column;
      text-align: center;
      padding: 20px;
    }
  
    .testimonial-info {
      text-align: center;
    }
  
    .testimonial-highlight {
      flex-direction: column;
      text-align: center;
      padding: 30px;
    }
  
    .blog-header {
      flex-direction: column;
      gap: 20px;
      text-align: center;
    }
  
    .blog-header .section-title {
      margin-bottom: 20px;
    }
  
    .cta-title {
      font-size: 2.5rem;
    }
  
    .newsletter-form form {
      flex-direction: column;
    }
  
    .testimonials-grid {
      grid-template-columns: 1fr;
    }
  
    .testimonial-card {
      padding: 30px 20px;
    }
  }
  
  @media (max-width: 576px) {
    .hero-title {
      font-size: 30px;
    }
  
    .section-title {
      font-size: 1.8rem;
    }
  
    .stats-container {
      grid-template-columns: 1fr;
    }
  
    .footer-links {
      grid-template-columns: 1fr;
    }
  
    .testimonial-card {
      padding: 30px 20px;
    }
  
    .feature-card,
    .feature-box {
      padding: 30px 20px;
    }
  }
  
  