/*
Theme Name: Chakra Healing for Living in the Solution
Author: HayTree Web Services, LLC
Description: Chakra-inspired theme for wellness and healing.
Version: 1.3
*/

:root {
  --nav-bg: #fff;
  --nav-text: #2628ad;
  --nav-hover-gradient: linear-gradient(90deg, #cbabf4, #84fbc9);
  --hero-bg1: #cbabf4;
  --hero-bg2: #84fbc9;
  --hero-bg3: #0580e6;
  --headline: #2628ad;
  --subheadline: #919091;
  --cta-primary: #7815b3;
  --cta-primary-hover: #84fbc9;
  --cta-secondary: #84fbc9;
  --cta-secondary-text: #7815b3;
  --section-bg: #f6f1fc;
  --card-bg: #fff;
  --card-title: #7815b3;
  --testimonial-border: #cbabf4;
  --testimonial-text: #000;
  --resource-hover: 0 0 16px #84fbc9;
  --green: #34B27B;
}
html, body {
  overflow-x: hidden;
}

body {
  background: #fff;
  color: var(--headline);
  font-family: 'Lato', Arial, sans-serif;
  margin: 0;
  padding: 0;
}

header {
  background: none;
  border-bottom: none;
  box-shadow: none;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 2rem;
  background: linear-gradient(90deg, #4338CA 0%, #6633CC 60%, #34B27B 100%);
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(67,56,202,0.08);
  margin: 0;
  position: relative;
  box-sizing: border-box;
}
.logo-area {
  display: flex;
  align-items: center;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #34B27B; /* Chakra green for site title */
  font-weight: 700;
  letter-spacing: 0.01em;
  gap: 1rem;
}

.site-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(67,56,202,0.10);
  object-fit: cover;
  background: #fff;
}

.site-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #FFF;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-left: 0.5rem;
}
header {
  background: #fff;
  border-bottom: 4px solid #cbabf4; /* Lavender accent to echo logo */
  box-shadow: 0 2px 8px rgba(40,40,80,0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}


nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2rem;
}

nav li {
  display: inline-block;
}

nav a {
  color: #FFF;
  text-decoration: none;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.2s;
}

nav a::after {
  content: "";
  display: block;
  height: 3px;
  width: 0;
  background: var(--nav-hover-gradient);
  border-radius: 2px;
  transition: width 0.3s;
  position: absolute;
  left: 0;
  bottom: -2px;
}

nav a:hover,
nav a:focus {
  color: #F4B740; /* Sunbeam Gold for hover */
}

nav a:hover::after,
nav a:focus::after {
  width: 100%;
}

.hero {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 70% 30%, #F4B740 0%, transparent 40%),
    radial-gradient(circle at 30% 70%, #D12DD3 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, #34B27B 0%, transparent 40%),
    linear-gradient(120deg, #f7f5fa 0%, #cbabf4 40%, #84fbc9 80%, #0580e6 100%);
  position: relative;
  text-align: center;
  padding: 5rem 1rem 3rem 1rem;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.55);
  z-index: 1;
  pointer-events: none;
}

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

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--headline);
  margin-bottom: 1rem;
}

.hero h2 {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.25rem;
  color: var(--subheadline);
  font-weight: 500;
  margin-bottom: 2rem;
}

.cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.cta-primary {
  background: var(--cta-primary);
  color: #fff;
  border: none;
  border-radius: 2rem;
  padding: 0.9rem 2.2rem;
  font-size: 1.1rem;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(120,21,179,0.10);
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.cta-primary:hover,
.cta-primary:focus {
  background: var(--cta-primary-hover);
  color: var(--cta-primary-text, #2628ad);
}

.cta-secondary {
  background: transparent;
  color: var(--cta-secondary-text);
  border: 2px solid var(--cta-secondary);
  border-radius: 2rem;
  padding: 0.9rem 2.2rem;
  font-size: 1.1rem;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.cta-secondary:hover,
.cta-secondary:focus {
  background: var(--cta-secondary);
  color: #fff;
}

.section {
  padding: 4rem 1rem 3rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--cta-primary);
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

.intro-section {
  background: #fff;
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: space-between;
  padding: 3rem 1rem;
  border-radius: 1.5rem;
  box-shadow: 0 2px 12px rgba(120,21,179,0.04);
}

.intro-section .intro-text {
  flex: 1 1 60%;
  color: var(--headline);
  font-size: 1.2rem;
}

.intro-section .intro-visual {
  flex: 1 1 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-preview {
  background: var(--section-bg);
  border-radius: 1.5rem;
  padding: 3rem 1rem;
}

.services-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.service-card {
  background: var(--card-bg);
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px rgba(120,21,179,0.06);
  padding: 2rem 1.5rem;
  width: 300px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card .icon {
  margin-bottom: 1rem;
}

.service-card .title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--card-title);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-card .subtext {
  color: var(--headline);
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

.service-card .learn-more {
  background: linear-gradient(90deg, #7815b3, #84fbc9);
  color: #fff;
  border: none;
  border-radius: 2rem;
  padding: 0.7rem 1.7rem;
  font-size: 1rem;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s;
}

.service-card .learn-more:hover {
  background: linear-gradient(90deg, #84fbc9, #7815b3);
}

.testimonial-section {
  background: #fff;
  border-radius: 1.5rem;
  padding: 3rem 1rem;
  margin-top: 2rem}

.testimonial-carousel {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonial {
  border: 2px solid var(--testimonial-border);
  border-radius: 1rem;
  padding: 1.5rem 1.2rem;
  background: #fff;
  max-width: 350px;
  font-style: italic;
  color: var(--testimonial-text);
  box-shadow: 0 2px 8px rgba(203,171,244,0.08);
  position: relative;
}

.testimonial::before {
  content: "“";
  font-size: 2.5rem;
  color: var(--testimonial-border);
  position: absolute;
  top: 0.2rem;
  left: 1rem;
}

.resource-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.resource-tile {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(132,251,201,0.10);
  width: 180px;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  text-align: center;
}

.resource-tile:hover {
  transform: scale(1.04);
  box-shadow: var(--resource-hover);
}

.resource-tile img {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}

.resource-tile .title {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.1rem;
  color: var(--headline);
  font-weight: 600;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    position: relative;
    transition: background 0.2s;
}

.hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: #fff;
    left: 0;
    transition: transform 0.2s;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.nav-open .hamburger {
    background: transparent;
}

.nav-open .hamburger::before {
    transform: rotate(45deg) translate(5px, 6px);
}

.nav-open .hamburger::after {
    transform: rotate(-45deg) translate(5px, -6px);
}

@media (max-width: 900px) {
  .services-cards, .resource-links {
    flex-direction: column;
    align-items: center;
  }
  .intro-section {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    width: 100%;
    box-shadow: 0 2px 8px rgba(40,40,80,0.04);
  }

  .nav-open .nav-menu {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 1rem;
    color: var(--nav-text);
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-toggle {
    display: block;
  }
}

@media (max-width: 600px) {
  .navbar {
    flex-direction: row;
    justify-content: space-between;
    padding: 1rem;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.4rem;
  }
  .service-card {
    width: 90%;
    min-width: unset;
  }
}
.site-footer {
  background: linear-gradient(90deg, #cbabf4 0%, #84fbc9 100%);
  color: #2628ad;
  text-align: center;
  padding: 2.5rem 1rem 1.5rem 1rem;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.05rem;
  border-radius: 2rem;
  margin: 3rem auto 0 auto;
  box-shadow: 0 -2px 12px rgba(67,56,202,0.06);
  max-width: 1100px;
}

.site-footer a {
  color: #7815b3;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.site-footer a:hover {
  color: #0580e6;
  text-decoration: underline;
}
.hero {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, #F7F5FA 0%, #cbabf4 40%, #84fbc9 80%, #0580e6 100%);
  position: relative;
  text-align: center;
  padding: 5rem 1rem 3rem 1rem;
}

.hero-logo {
  width:140px;
  height: 140px;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  box-shadow: 0 0 48px 12px #D12DD3, 0 0 32px 8px #F4B740, 0 0 24px 4px #34B27B;
  background: #fff;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #4338CA; /* Main Accent */
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, #4338CA, #D12DD3, #F4B740, #34B27B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: 1.3rem;
  color: #D12DD3; /* Orchid Punch */
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero h2 {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.25rem;
  color: #2D2D2D; /* Cosmic Charcoal */
  font-weight: 500;
  margin-bottom: 2rem;
}

.cta-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.cta-primary {
  background: #F06449; /* Radiant Coral */
  color: #fff;
  border: none;
  border-radius: 2rem;
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(240,100,73,0.10);
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  text-decoration: none;
}

.cta-primary:hover,
.cta-primary:focus {
  background: #F4B740; /* Sunbeam Gold */
  color: #2D2D2D;
}

.cta-secondary {
  background: transparent;
  color: #6633CC; /* Trust Accent */
  border: 2px solid #6633CC;
  border-radius: 2rem;
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  text-decoration: none;
}

.cta-secondary:hover,
.cta-secondary:focus {
  background: #D12DD3; /* Orchid Punch */
  color: #fff;
  border-color: #D12DD3;
}

.scroll-cue {
  margin-top: 2.5rem;
  animation: bounce 2s infinite;
  opacity: 0.7;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0);}
  50% { transform: translateY(10px);}
}
.learn-more {
  background: #F06449;
  color: #fff;
  border: none;
  border-radius: 2rem;
  padding: 0.7rem 1.7rem;
  font-size: 1rem;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  margin-top: 1rem;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(240,100,73,0.10);
}
.learn-more:hover {
  background: #F4B740;
  color: #2D2D2D;
}
.practitioner-intro {
  background: linear-gradient(120deg, #f7f5fa 0%, #cbabf4 40%, #84fbc9 100%);
  padding: 4rem 1rem 3rem 1rem;
  text-align: center;
  border-radius: 2rem;
  margin: 3rem auto 0 auto;
  max-width: 1100px;
  box-shadow: 0 2px 16px rgba(67,56,202,0.06);
}
.practitioner-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.5);
  border-radius: 2rem;
  z-index: 0;
}
.practitioner-inner {
  position: relative;
  z-index: 1;
}
.practitioner-name {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #4338CA;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.practitioner-title {
  font-size: 1.3rem;
  color: #2D2D2D;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.practitioner-credentials {
  font-size: 1.1rem;
  color: #6633CC;
  margin-bottom: 1.5rem;
}

.practitioner-bio {
  font-size: 1.15rem;
  color: #2D2D2D;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.practitioner-bio a {
  color: #F06449;
  text-decoration: underline;
  font-weight: 600;
}

.practitioner-cta {
  background: #6633CC;
  color: #fff;
  border: none;
  border-radius: 2rem;
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(67,51,204,0.10);
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  text-decoration: none;
  display: inline-block;
}

.practitioner-cta:hover,
.practitioner-cta:focus {
  background: #D12DD3;
  color: #fff;
}
.hero-orbs {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0;
}
.orb {
  position: absolute;
  border-radius: 50%;
  opacity: 0.25;
  filter: blur(8px);
  animation: float 8s infinite alternate;
}
.orb1 { width: 180px; height: 180px; background: #D12DD3; top: 10%; left: 10%; animation-delay: 0s;}
.orb2 { width: 120px; height: 120px; background: #F4B740; top: 60%; left: 70%; animation-delay: 2s;}
.orb3 { width: 140px; height: 140px; background: #34B27B; top: 70%; left: 20%; animation-delay: 4s;}
@keyframes float {
  0% { transform: translateY(0) scale(1);}
  100% { transform: translateY(-30px) scale(1.1);}
}
.interior-hero {
  background: linear-gradient(120deg, #f7f5fa 0%, #cbabf4 40%, #84fbc9 100%);
  padding: 4rem 1rem 2rem 1rem;
  text-align: center;
  border-radius: 0 0 2rem 2rem;
  box-shadow: 0 2px 16px rgba(67,56,202,0.04);
  margin-bottom: 2rem;
}

.interior-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.interior-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #4338CA;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.breadcrumbs {
  color: #6633CC;
  font-size: 1rem;
  margin-bottom: 0;
}

.interior-content {
  max-width: 900px;
  margin: 0 auto 3rem auto;
  padding: 2rem 1rem 3rem 1rem;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 2px 12px rgba(67,56,202,0.04);
}

.interior-content-inner {
  font-size: 1.15rem;
  color: #2D2D2D;
  line-height: 1.7;
}

.interior-content-inner h2,
.interior-content-inner h3 {
  color: #4338CA;
  font-family: 'Playfair Display', serif;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.certificates-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  margin: 3rem 0 2rem 0;
  flex-wrap: wrap;
}

.certificates-row img {
  max-width: 320px;
  width: 100%;
  height: auto;
  box-shadow: 0 2px 12px rgba(67,56,202,0.08);
  border-radius: 0.5rem;
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}

.certificates-row img:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 24px rgba(67,56,202,0.16);
}
.testimonials-section {
  margin: 4rem 0 2rem 0;
  text-align: center;
}

.testimonials-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem;
  color: #2D2D2D;
  font-weight: 700;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.testimonials-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.testimonial {
  background: none;
  max-width: 500px;
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.testimonial-text {
  font-size: 1.25rem;
  color: #444;
  font-family: 'Playfair Display', serif;
  margin-bottom: 2rem;
  text-align: left;
  line-height: 1.7;
}

.testimonial-client {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(67,56,202,0.10);
}

.testimonial-name {
  font-weight: 700;
  color: #2D2D2D;
  font-size: 1.1rem;
}

.testimonial-role {
  color: #919091;
  font-size: 1rem;
}
.about-photo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2.5rem;
  margin-top: 2rem;
}

.about-photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 24px rgba(67,56,202,0.12), 0 0 0 6px #cbabf4;
  border: 4px solid #fff;
  background: #f7f5fa;
  margin-bottom: 1rem;
  transition: box-shadow 0.3s;
}

.about-photo:hover {
  box-shadow: 0 8px 32px rgba(67,56,202,0.18), 0 0 0 8px #34B27B;
}

.about-photo-caption {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: #4338CA;
  font-weight: 700;
  margin-top: 0.5rem;
}

.about-photo-caption span {
  display: block;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  color: #6633CC;
  font-weight: 400;
  margin-top: 0.2rem;
}
nav .current-menu-item > a,
nav .current_page_item > a {
  color: #F4B740 !important; /* Sunbeam Gold */
  font-weight: 700;
}

nav .current-menu-item > a::after,
nav .current_page_item > a::after {
  width: 100%;
  background: linear-gradient(90deg, #F4B740 0%, #34B27B 100%);
  height: 4px;
  border-radius: 2px;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -6px;
  transition: width 0.3s, background 0.3s;
}
nav a:hover::after,
nav a:focus::after {
  width: 100%;
  background: linear-gradient(90deg, #F4B740 0%, #34B27B 100%);
  height: 4px;
}
.site-footer {
  background: linear-gradient(90deg, #cbabf4 0%, #84fbc9 100%);
  color: #2628ad;
  text-align: center;
  padding: 2.5rem 1rem 1.5rem 1rem;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.05rem;
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
  margin-top: 3rem;
  box-shadow: 0 -2px 12px rgba(67,56,202,0.06);
}

.footer-inner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  box-sizing: border-box;
}

.footer-contact {
  flex: 1 1 300px;
  text-align: left;
}

.footer-contact h3 {
  color: #4338CA;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
}

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

.footer-contact li {
  margin-bottom: 0.7rem;
  line-height: 1.5;
}

.footer-contact a {
  color: #6633CC;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: #F06449;
}

.footer-address-note {
  color: #919091;
  font-size: 0.95rem;
}

.footer-social {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 1.2rem;
}

.footer-social-icon {
  display: inline-block;
  transition: transform 0.2s;
}

.footer-social-icon:hover {
  transform: scale(1.15) rotate(-6deg);
}

.footer-social-icon svg {
  display: block;
}

.footer-copyright {
  width: 100%;
  margin-top: 2rem;
  color: #2628ad;
  font-size: 1rem;
}

.footer-copyright a {
  color: #7815b3;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-copyright a:hover {
  color: #0580e6;
  text-decoration: underline;
}

@media (max-width: 900px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }
  .footer-contact {
    text-align: center;
  }
}
.header-cta-bar {
  width: 100%;
  background: linear-gradient(90deg, #cbabf4 0%, #84fbc9 100%);
  color: #4338CA;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.05rem;
  display: flex;
  justify-content: flex-start; /* Left align */
  align-items: center;
  gap: 2.5rem;
  padding: 0.4rem 2rem 0.4rem 2rem; /* Add left/right padding for breathing room */
  letter-spacing: 0.01em;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  box-shadow: 0 2px 8px rgba(67,56,202,0.04);
  z-index: 200;
}

.header-cta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #4338CA;
}

.header-cta-bar a {
  color: #4338CA;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s;
}

.header-cta-bar a:hover {
  color: #fff;
}

.service-icon-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 12px rgba(67,56,202,0.10);
  background: #fff;
  border: 4px solid #cbabf4;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.service-icon-img:hover {
  box-shadow: 0 4px 24px rgba(67,56,202,0.18);
  border-color: #34B27B; /* Optional: border color on hover */
}
@media (max-width: 600px) {
  .service-icon-img {
    width: 70px;
    height: 70px;
  }
}
#backToTop {
  position: fixed;
  bottom: 2.2rem;
  right: 2.2rem;
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 50%;
  background: none;
  box-shadow: 0 4px 24px rgba(67,56,202,0.18);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, box-shadow 0.2s, transform 0.2s;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

#backToTop svg {
  display: block;
}

#backToTop:hover {
  box-shadow: 0 8px 32px rgba(67,56,202,0.28);
  transform: translateY(-4px) scale(1.08);
}

#backToTop.show {
  opacity: 1;
  pointer-events: auto;
}
