@import "https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap";
@import "https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@300;400;500;600;700&display=swap";
@import "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css";

/* src/styles.scss */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family:
    "Noto Sans Devanagari",
    "Poppins",
    sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}
html {
  scroll-behavior: smooth;
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #ff6b35;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #e55a2e;
}
.container {
  min-height: 100vh;
  background:
    linear-gradient(
      135deg,
      #fff8f0 0%,
      #fff5e6 100%);
}
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.header {
  background:
    linear-gradient(
      135deg,
      #ff6b35 0%,
      #f7931e 100%);
  color: white;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}
.header .header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.header .logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header .logo-section .om-symbol {
  font-size: 3rem;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}
.header .logo-section .title-section .site-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.header .logo-section .title-section .site-subtitle {
  font-size: 0.9rem;
  opacity: 0.9;
  font-style: italic;
  margin: 0;
}
.header .main-navigation .nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
}
.header .main-navigation .nav-menu .nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  transition: all 0.3s ease;
}
.header .main-navigation .nav-menu .nav-link:hover,
.header .main-navigation .nav-menu .nav-link.active {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
.hero-section {
  padding: 8rem 0 4rem;
}
.hero-section .hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-section .hero-image {
  display: flex;
  justify-content: center;
}
.hero-section .hero-image .main-image {
  width: 300px;
  height: 300px;
  background:
    linear-gradient(
      135deg,
      #ff6b35,
      #f7931e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}
.hero-section .hero-image .main-image .spiritual-icon {
  width: 150px;
  height: 150px;
  color: white;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}
.hero-section .hero-text .hero-title {
  font-size: 2.5rem;
  color: #ff6b35;
  margin-bottom: 1rem;
  font-weight: 700;
}
.hero-section .hero-text .hero-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #555;
}
.hero-section .hero-text .hero-buttons {
  display: flex;
  gap: 1rem;
}
.hero-section .hero-text .hero-buttons .btn {
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-size: 1rem;
}
.hero-section .hero-text .hero-buttons .btn.btn-primary {
  background:
    linear-gradient(
      135deg,
      #ff6b35,
      #f7931e);
  color: white;
}
.hero-section .hero-text .hero-buttons .btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}
.hero-section .hero-text .hero-buttons .btn.btn-secondary {
  background: transparent;
  color: #ff6b35;
  border: 2px solid #ff6b35;
}
.hero-section .hero-text .hero-buttons .btn.btn-secondary:hover {
  background: #ff6b35;
  color: white;
}
.features-section {
  padding: 4rem 0;
  background: white;
}
.features-section .section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #ff6b35;
  margin-bottom: 3rem;
  font-weight: 700;
}
.features-section .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.features-section .feature-card {
  text-align: center;
  padding: 2rem;
  border-radius: 15px;
  background: #fff8f0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.features-section .feature-card:hover {
  transform: translateY(-5px);
}
.features-section .feature-card .feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.features-section .feature-card .feature-title {
  color: #ff6b35;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
}
.features-section .feature-card .feature-description {
  color: #555;
  line-height: 1.6;
}
.quote-section {
  padding: 4rem 0;
  background:
    linear-gradient(
      135deg,
      #ff6b35,
      #f7931e);
  color: white;
}
.quote-section .spiritual-quote {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.quote-section .spiritual-quote p {
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.quote-section .spiritual-quote cite {
  font-size: 1.1rem;
  opacity: 0.9;
}
.updates-section {
  padding: 4rem 0;
  background: #fff8f0;
}
.updates-section .section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #ff6b35;
  margin-bottom: 3rem;
  font-weight: 700;
}
.updates-section .updates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.updates-section .update-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.updates-section .update-card:hover {
  transform: translateY(-5px);
}
.updates-section .update-card .update-date {
  color: #ff6b35;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.updates-section .update-card .update-title {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}
.updates-section .update-card .update-excerpt {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.updates-section .update-card .read-more {
  color: #ff6b35;
  text-decoration: none;
  font-weight: 600;
}
.updates-section .update-card .read-more:hover {
  text-decoration: underline;
}
.footer {
  background: #333;
  color: white;
  padding: 3rem 0 1rem;
}
.footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.footer .footer-section h4 {
  color: #ff6b35;
  margin-bottom: 1rem;
  font-weight: 600;
}
.footer .footer-section p {
  margin-bottom: 0.5rem;
  opacity: 0.9;
}
.footer .social-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer .social-links .social-link {
  color: white;
  text-decoration: none;
  padding: 0.5rem;
  border-radius: 5px;
  background: rgba(255, 107, 53, 0.2);
  transition: background 0.3s ease;
}
.footer .social-links .social-link:hover {
  background: #ff6b35;
}
.footer .footer-links {
  list-style: none;
}
.footer .footer-links li {
  margin-bottom: 0.5rem;
}
.footer .footer-links li a {
  color: white;
  text-decoration: none;
  opacity: 0.9;
}
.footer .footer-links li a:hover {
  color: #ff6b35;
}
.footer .footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #555;
  opacity: 0.7;
}
.fade-in {
  animation: fadeIn 0.8s ease-in;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 1rem;
  }
  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero-section {
    padding: 6rem 0 4rem;
  }
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-title {
    font-size: 2rem !important;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-image .main-image {
    width: 250px;
    height: 250px;
  }
  .hero-image .main-image .spiritual-icon {
    width: 120px;
    height: 120px;
  }
  .section-title {
    font-size: 2rem !important;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .updates-grid {
    grid-template-columns: 1fr;
  }
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .section-container {
    padding: 0 1rem;
  }
  .header-content {
    padding: 0 1rem;
  }
  .hero-content {
    padding: 0 1rem;
  }
  .hero-title {
    font-size: 1.8rem !important;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .nav-menu {
    gap: 1rem;
  }
  .nav-link {
    padding: 0.3rem 0.8rem !important;
    font-size: 0.9rem;
  }
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1rem;
  font-weight: 600;
}
.section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}
.about {
  padding: 80px 0;
  background: white;
}
.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-text h3 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.about-text p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.8;
}
.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.feature-icon {
  font-size: 2rem;
  min-width: 50px;
}
.feature h4 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.feature p {
  color: #666;
  font-size: 1rem;
}
.about-image .image-placeholder {
  width: 250px;
  height: 250px;
  background:
    linear-gradient(
      135deg,
      #f093fb 0%,
      #f5576c 100%);
}
.services {
  padding: 80px 0;
  background: #f8f9fa;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.service-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.service-card h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 1rem;
  font-weight: 600;
}
.service-card p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.service-link {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}
.service-link:hover {
  border-color: #667eea;
}
.quote-section {
  padding: 80px 0;
  background:
    linear-gradient(
      135deg,
      #667eea 0%,
      #764ba2 100%);
  color: white;
  text-align: center;
}
.quote-content blockquote {
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 1rem;
  max-width: 800px;
  margin: 0 auto 1rem;
  line-height: 1.6;
}
.quote-content cite {
  font-size: 1.1rem;
  opacity: 0.9;
}
.contact {
  padding: 80px 0;
  background: white;
}
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-icon {
  font-size: 1.5rem;
  min-width: 40px;
}
.contact-item h4 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.contact-item p {
  color: #666;
}
.contact-form {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #667eea;
}
.footer {
  background: #333;
  color: white;
  padding: 40px 0 20px;
}
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  font-weight: 600;
}
.footer-section p {
  color: #ccc;
  margin-bottom: 1rem;
}
.footer-section ul {
  list-style: none;
}
.footer-section ul li {
  margin-bottom: 0.5rem;
}
.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-section ul li a:hover {
  color: #ffd700;
}
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.social-links a {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}
.social-links a:hover {
  transform: scale(1.2);
}
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #555;
  color: #ccc;
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
  .about-content {
    grid-template-columns: 1fr;
  }
  .contact-content {
    grid-template-columns: 1fr;
  }
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  .hero {
    padding: 100px 0 60px;
  }
  .hero-text h1 {
    font-size: 1.8rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .section-header h2 {
    font-size: 2rem;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
