:root {
  --body-bg-color: #f8fafc;
  --body-text-color: #222222;
  --heading-color: #5b3752;
  --hero-gradient1: #667eea;
  --hero-gradient2: #764ba2;
  --footer-bg-color: #522d49;
  --link-color: #00fbff;
  --header-bg-color: #ffffff;
  --font-family: "Times New Roman", Times, serif;
  --nav-link-color: #141414;
  --footer-text-color: #ffffff;
  --header-text-color: #ffffffff;
}

body {
  background-color: var(--body-bg-color) !important;
  color: var(--body-text-color) !important;
  font-family: var(--font-family);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
h1 {
  font-size: clamp(2rem, 4vw, 2.5rem) !important;
}
h2 {
  font-size: clamp(1.6rem, 3vw, 2rem) !important;
}
h3 {
  font-size: clamp(1.4rem, 3vw, 1.7rem) !important;
}
p {
  margin-bottom: 0.5rem !important;
}

section {
  padding: 15px 0;
}

h2,
h3 {
  color: var(--heading-color) !important;
}

.content-area a {
  color: var(--link-color) !important;
  text-decoration: none !important;
}

.content-area a:hover {
  color: var(--link-color) !important;
  opacity: 0.8;
}

.footer {
  background-color: var(--footer-bg-color);
  color: var(--footer-text-color);
}

.footer a {
  text-decoration: none;
  color: var(--link-color) !important;
}

.sidebar-page-list {
  padding: 0;
  margin: 0;
  margin-bottom: 17px;
  width: 279px;
}

.sidebar-page-list li {
  list-style-type: disc;
  list-style-position: inside;
  color: var(--heading-color);
}

.sidebar-page-list li::marker {
  color: var(--link-color);
  font-size: 1.2em;
}
.sidebar-page-list li:last-child {
  border-bottom: none;
}

.sidebar-page-list li a {
  padding: 12px 0;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  color: var(--link-color);
}

.sidebar-page-list li a:hover {
  padding-left: 11px;
}
.twitter-tweet {
  width: 279px !important;
}

.x {
  display: flex;
  justify-content: center;
}
.error_page {
  min-height: 70vh;
}

.navbar {
  background-color: var(--header-bg-color) !important;
  position: sticky;
  top: 0;
  z-index: 1020;
}

.hero-section {
  padding: 55px 0;
  position: relative;
  overflow: hidden;
  color: var(--header-text-color);
}

.hero-section.gradient-bg {
  background: linear-gradient(
    135deg,
    var(--hero-gradient1),
    var(--hero-gradient2)
  );
}

.hero-section.with-bg {
  background-image: url("/images/online-yoga.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-section.with-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgb(0, 0, 0));
  opacity: 0.5;
  z-index: 1;
}

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

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }
}
.navbar-light .navbar-nav .nav-link {
  color: var(--nav-link-color, #141414) !important;
}

.navbar-light .navbar-nav .nav-link.active {
  color: var(--link-color) !important;
  font-weight: bold;
}
/* Mobile nav */
@media (max-width: 1199.98px) {
  .navbar-collapse {
    position: fixed;
    top: 61px;
    left: 15px;
    right: 15px;
    background-color: color-mix(
      in srgb,
      var(--header-bg-color) 65%,
      transparent
    );
    backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 15px;
    margin: 0;
  }

  .navbar-nav {
    width: 100%;
  }

  .navbar-nav .nav-item {
    margin: 7px 0;
  }

  .navbar-nav .nav-item:hover {
    transform: translateY(-1px);
  }

  .navbar-nav .nav-link {
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding: 0;
  }

  .navbar-toggler {
    z-index: 10000;
    position: relative;
    border: var(--bs-border-width) solid var(--nav-link-color, #141414) !important;
  }
}

@media screen and (min-width: 1199.98px) {
  .dropdown-menu {
    top: 100%;
    left: 50% !important;
    transform: translateX(-50%);
  }
}

.navbar .dropdown-toggle::after {
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

.custom-dropdown {
  border: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  min-width: 220px;
  background: color-mix(
    in srgb,
    var(--header-bg-color) 65%,
    transparent
  ) !important;
  backdrop-filter: blur(12px);
}

.custom-dropdown .dropdown-item {
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  color: var(--nav-link-color, #141414) !important;
  font-weight: 500;
  border-radius: 0;
  text-wrap: wrap;
}

.custom-dropdown .dropdown-item:hover {
  color: #fff;
  background: color-mix(
    in srgb,
    var(--header-bg-color) 95%,
    transparent
  ) !important;
}

.custom-dropdown .dropdown-item i {
  width: 16px;
  color: #6c757d;
  transition: color 0.3s ease;
}

.custom-dropdown .dropdown-item:hover i {
  color: #fff;
}

.dropdown-menu {
  opacity: 0;
  transition: all 0.3s ease;
  display: block;
  visibility: hidden;
}

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

@media (min-width: 1199.98px) {
  .custom-dropdown {
    max-width: 200px;
  }
}

@media (max-width: 1199.98px) {
  .custom-dropdown {
    display: none;
    background: #f8f9fa;
    box-shadow: none;
    border-radius: 0;
    margin-top: 0;
    border-top: 1px solid #dee2e6;
  }

  .custom-dropdown .dropdown-item:hover {
    margin: 0;
    border-radius: 0;
    transform: none;
  }
}

.dropdown-menu:hover,
.dropdown:hover .dropdown-menu {
  display: block !important;
  visibility: visible;
  opacity: 1;
}
.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #91919131 !important;
}

section {
  scroll-margin-top: 70px;
}
#what-is-yoga {
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

#what-is-yoga::before {
  content: "॥";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 4rem;
  color: #e8b4d9;
  opacity: 0.3;
  font-family: serif;
}

#what-is-yoga h2 {
  font-family: "Georgia", serif;
  font-size: 2.5rem;
  color: #2d3748;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 300;
}

#what-is-yoga h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1);
  border-radius: 2px;
}

#what-is-yoga p {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 1.5rem;
  text-align: justify;
  position: relative;
  padding: 0 1rem;
}

#what-is-yoga p:first-of-type {
  color: #2d3748;
  font-weight: 400;
}

#what-is-yoga p:first-of-type::first-letter {
  font-size: 4rem;
  float: left;
  line-height: 1;
  margin: 0.1rem 0.5rem 0 0;
  color: #e53e3e;
  font-family: "Georgia", serif;
  font-weight: bold;
}

#what-is-yoga p::before {
  content: "✦";
  position: absolute;
  left: -15px;
  top: 0;
  color: #cbd5e0;
  font-size: 0.8rem;
  opacity: 0.6;
}

#what-is-yoga p:hover {
  transform: translateX(5px);
  transition: transform 0.3s ease;
  color: #2d3748;
}

/* Meditation symbols decoration */
#what-is-yoga::after {
  content: "ॐ";
  position: absolute;
  bottom: 10px;
  right: 20px;
  font-size: 2rem;
  color: #a0aec0;
  opacity: 0.2;
  transform: rotate(15deg);
}

/* Responsive design */
@media (max-width: 768px) {
  #what-is-yoga h2 {
    font-size: 2rem;
  }

  #what-is-yoga p {
    font-size: 1rem;
    padding: 0 0.5rem;
  }

  #what-is-yoga p:first-of-type::first-letter {
    font-size: 3rem;
  }
}

/* Zen-like animation */
@keyframes breathe {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}

#what-is-yoga::before {
  animation: breathe 4s ease-in-out infinite;
}
.heading {
  position: relative;
}

.heading h2 {
  font-family: "Georgia", serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: #2d3748;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.heading h2::before {
  content: "✦";
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  color: #e53e3e;
  font-size: 1.5rem;
  opacity: 0.7;
}

.heading h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
  border-radius: 3px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.heading p {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.2rem;
  line-height: 1.7;
  color: #283438;
  font-style: italic;
  font-weight: 300;
  margin: 0 auto;
}

.heading::before {
  content: "॰॰॰";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #cbd5e0;
  font-size: 1.2rem;
  opacity: 0.5;
  letter-spacing: 8px;
}

.heading::after {
  content: "॰॰॰";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #cbd5e0;
  font-size: 1.2rem;
  opacity: 0.5;
  letter-spacing: 8px;
}

.heading h2:hover {
  color: #4299e1;
  transform: scale(1.02);
  transition: all 0.3s ease;
}

.heading h2:hover::after {
  width: 140px;
  transition: width 0.3s ease;
}

/* Responsive design */
@media (max-width: 768px) {
  .heading {
    padding: 1.5rem 0;
    margin: 2rem 0 1.5rem 0;
  }

  .heading h2 {
    font-size: 2.2rem;
    letter-spacing: 2px;
  }

  .heading h2::before {
    left: -25px;
    font-size: 1.2rem;
  }

  .heading h2::after {
    width: 80px;
  }

  .heading p {
    font-size: 1.1rem;
    max-width: 95%;
  }

  .heading::before,
  .heading::after {
    font-size: 1rem;
    letter-spacing: 6px;
  }
}

@media (max-width: 480px) {
  .heading h2 {
    font-size: 1.8rem;
    letter-spacing: 1px;
  }

  .heading h2::before {
    display: none;
  }

  .heading p {
    font-size: 1rem;
  }
}

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

.heading::before {
  animation: float 3s ease-in-out infinite;
}

.heading::after {
  animation: float 3s ease-in-out infinite 1.5s;
}
.box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #4ecdc4, #45b7d1, #96ceb4);
}

.box h3 {
  font-family: "Georgia", serif;
  font-size: 1.5rem;
  color: #2d3748;
  margin-bottom: 1rem;
  font-weight: 400;
  position: relative;
  padding-left: 20px;
}

.box h3::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 0;
  color: #4ecdc4;
  font-size: 0.9rem;
}

.box p {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #4a5568;
  margin: 0;
}

/* Hover effects */
.box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e0;
}

.box:hover h3 {
  color: #4299e1;
}

.box:hover::before {
  height: 6px;
}

/* Responsive design */
@media (max-width: 768px) {
  .box {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }

  .box h3 {
    font-size: 1.3rem;
    padding-left: 18px;
  }

  .box h3::before {
    font-size: 0.8rem;
  }

  .box p {
    font-size: 0.95rem;
  }
}

.cust-bg {
  background-color: #f7fafc;
  padding: 17px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
} /* Newsletter Form Styles */
.newsletter-form {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  width: 279px;
}

.newsletter-form::before {
  content: "॰॰॰";
  position: absolute;
  top: 10px;
  right: 15px;
  color: rgba(255, 255, 255, 0.2);
  font-size: 1.2rem;
  letter-spacing: 3px;
}

.newsletter-header h4 {
  color: #ffffff;
  font-family: "Georgia", serif;
  font-weight: 300;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.newsletter-header p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  margin-bottom: 0;
}

.newsletter-icon {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  animation: pulse 2s infinite;
}

.newsletter-input {
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 8px;
  padding: 0.75rem;
  font-size: 0.95rem;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-input:focus {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.newsletter-btn {
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  border: none;
  color: #ffffff;
  font-weight: 500;
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.newsletter-btn:hover {
  background: linear-gradient(45deg, #ff5252, #26a69a);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.newsletter-privacy {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .newsletter-form {
    margin: 0 1rem;
  }
}
/* Footer Styles */
.footer {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #667eea 100%);
  position: relative;
  overflow: hidden;
  margin-top: 4rem;
}

.footer-wave {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.footer-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
  fill: #ffffff;
}

.footer-content {
  padding: 3rem 0 2rem 0;
  position: relative;
  z-index: 2;
}

.footer-decoration {
  position: relative;
}

.lotus-symbol {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.8rem;
  letter-spacing: 8px;
  margin-bottom: 1rem;
  animation: glow 3s ease-in-out infinite alternate;
}

.divider-line {
  width: 120px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  margin: 0 auto;
}

.footer-logo img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  font-size: 0.9rem;
  margin: 0;
}

.footer-social-title,
.footer-contact-title {
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 1rem;
  font-size: 1rem;
}

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

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-contact {
  color: rgba(255, 255, 255, 0.9);
}

.contact-email a,
.footer-link a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-email a:hover,
.footer-link a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-divider {
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 auto;
}

.copyright-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.heart-pulse {
  color: #ff6b6b;
  animation: heartbeat 1.5s ease-in-out infinite;
  margin: 0 5px;
}

.footer-quote {
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  font-size: 0.85rem;
  margin: 0;
}

/* Animations */
@keyframes glow {
  from {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  }
  to {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
  }
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-content {
    padding: 2rem 0 1.5rem 0;
  }

  .lotus-symbol {
    font-size: 1.5rem;
    letter-spacing: 6px;
  }

  .social-icons {
    gap: 10px;
  }

  .social-icon {
    width: 35px;
    height: 35px;
  }

  .footer-wave svg {
    height: 40px;
  }
} /* 404 Error Page Styles */
.error_page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.error_page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 80%,
      rgba(120, 119, 198, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 107, 107, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(78, 205, 196, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.error-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.yoga-symbols {
  position: relative;
  margin-bottom: 2rem;
}

.om-symbol {
  font-size: 4rem;
  color: #667eea;
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

.lotus-petals {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
}

.petal {
  position: absolute;
  font-size: 1.5rem;
  color: #ff6b6b;
  opacity: 0.6;
}

.petal-1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation: petal-dance 3s ease-in-out infinite;
}
.petal-2 {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  animation: petal-dance 3s ease-in-out infinite 0.75s;
}
.petal-3 {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  animation: petal-dance 3s ease-in-out infinite 1.5s;
}
.petal-4 {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  animation: petal-dance 3s ease-in-out infinite 2.25s;
}

.error-number {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.digit {
  font-size: 8rem;
  font-weight: 300;
  color: #2d3748;
  font-family: "Georgia", serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.zen-circle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
}

.circle-svg {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.zen-path {
  fill: none;
  stroke: #4ecdc4;
  stroke-width: 3;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  animation: draw-circle 4s ease-in-out infinite;
}

.zero {
  font-size: 4rem;
  color: #4ecdc4;
  z-index: 1;
}

.error-title {
  font-family: "Georgia", serif;
  font-size: 2.5rem;
  color: #2d3748;
  margin-bottom: 1rem;
  font-weight: 300;
}

.error-description {
  font-size: 1.2rem;
  color: #4a5568;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.breathing-guide {
  margin: 2rem 0;
}

.breath-circle {
  width: 120px;
  height: 120px;
  border: 3px solid #4ecdc4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  animation: breathe-circle 4s ease-in-out infinite;
  position: relative;
}

.breath-text {
  color: #4ecdc4;
  font-weight: 500;
  font-size: 1.1rem;
}

.error-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.error_page_btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  min-width: 180px;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
}

.btn-secondary {
  background: linear-gradient(45deg, #4ecdc4, #45b7d1);
  color: white;
}

.error_page_btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  color: white;
}

.zen-quote {
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.zen-quote p {
  font-style: italic;
  font-size: 1.1rem;
  color: #4a5568;
  margin-bottom: 0.5rem;
}

.quote-author {
  color: #718096;
  font-size: 0.9rem;
}

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

@keyframes petal-dance {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateX(-50%) scale(1.2);
    opacity: 0.8;
  }
}

@keyframes draw-circle {
  0% {
    stroke-dashoffset: 283;
  }
  50% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 283;
  }
}

@keyframes breathe-circle {
  0%,
  100% {
    transform: scale(1);
    border-color: #4ecdc4;
  }
  50% {
    transform: scale(1.1);
    border-color: #45b7d1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .error-number {
    gap: 1rem;
  }

  .digit {
    font-size: 5rem;
  }

  .zen-circle {
    width: 80px;
    height: 80px;
  }

  .zero {
    font-size: 2.5rem;
  }

  .error-title {
    font-size: 2rem;
  }

  .error-description {
    font-size: 1rem;
  }

  .error-actions {
    flex-direction: column;
    align-items: center;
  }

  .om-symbol {
    font-size: 3rem;
  }

  .lotus-petals {
    width: 150px;
    height: 150px;
  }
} /* Contact Page Styles */
.contact-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.contact-hero h1 {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

.contact-hero .lead {
  font-size: 1.3rem;
  opacity: 0.9;
}

.contact-form-container {
  background: #ffffff;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
}

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

.lotus-symbol {
  font-size: 2rem;
  color: #4ecdc4;
  margin-bottom: 1rem;
  letter-spacing: 8px;
}

.section-header h2 {
  font-family: "Georgia", serif;
  color: #2d3748;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: #718096;
  font-size: 1.1rem;
}

.contact-form .form-label {
  font-weight: 500;
  color: #4a5568;
  margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: #4ecdc4;
  box-shadow: 0 0 0 0.2rem rgba(78, 205, 196, 0.25);
}

.contact-submit-btn {
  background: linear-gradient(45deg, #4ecdc4, #45b7d1);
  border: none;
  color: white;
  padding: 1rem 3rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-submit-btn:hover {
  background: linear-gradient(45deg, #26a69a, #2196f3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  color: white;
}

/* Contact Info Sidebar */
.contact-info-container {
  padding-left: 2rem;
}

.contact-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #4ecdc4, #45b7d1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
}

.contact-icon i {
  font-size: 1.5rem;
  color: white;
}

.contact-card h4 {
  color: #2d3748;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.contact-card p {
  color: #718096;
  margin-bottom: 1rem;
}

.contact-link {
  color: #4ecdc4;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
}

.contact-link:hover {
  color: #26a69a;
  text-decoration: underline;
}

.response-time {
  color: #4a5568;
  font-size: 0.9rem;
  line-height: 1.5;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: linear-gradient(45deg, #5a67d8, #6b46c1);
  transform: translateY(-2px);
  color: white;
}

.zen-quote-card {
  background: linear-gradient(135deg, #f7fafc, #edf2f7);
  border-radius: 15px;
  padding: 2rem;
  border-left: 4px solid #4ecdc4;
  margin-top: 2rem;
}

.zen-quote-card blockquote {
  font-style: italic;
  color: #4a5568;
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.6;
}

.zen-quote-card cite {
  color: #718096;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 2rem;
  }

  .contact-hero .lead {
    font-size: 1.1rem;
  }

  .contact-form-container {
    padding: 2rem;
    margin-bottom: 2rem;
  }

  .contact-info-container {
    padding-left: 0;
  }

  .lotus-symbol {
    font-size: 1.5rem;
    letter-spacing: 6px;
  }
}
