/**
 * SubMenu Styles
 * 
 * Dropdown menu styles with smooth animations
 * Replicated from Radhika Das website
 */

.submenu {
  list-style: none !important;
  list-style-type: none !important;
  margin: 0;
  padding: 0.5rem 0;
  background: #ffffff !important;
  backdrop-filter: blur(20px);
  border-radius: 0 0 0.5rem 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15), 0 4px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-color);
  border-top: none;
  min-width: 220px;
  max-width: 100%;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: max-height 300ms cubic-bezier(0.4, 0, 0.2, 1),
              opacity 300ms cubic-bezier(0.4, 0, 0.2, 1),
              transform 300ms cubic-bezier(0.4, 0, 0.2, 1),
              padding 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 10000 !important;
  margin-top: 0 !important;
  isolation: isolate;
  pointer-events: auto;
}

.submenu::before,
.submenu::after {
  display: none !important;
  content: none !important;
}

.submenu * {
  box-sizing: border-box;
}

.submenu .submenu-item {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
  transition: none !important;
  width: auto !important;
  min-width: auto !important;
  display: block !important;
  list-style: none !important;
  list-style-type: none !important;
}

.submenu .submenu-item::marker {
  display: none !important;
  content: '' !important;
}

.submenu.open {
  max-height: 600px;
  opacity: 1;
  transform: translateY(0) !important;
  overflow-y: auto;
  overflow-x: visible;
  scroll-behavior: smooth;
  scroll-padding: 0.5rem;
  background: #ffffff !important;
  z-index: 10000 !important;
  position: absolute !important;
  top: 100% !important;
  margin-top: 0 !important;
  left: 0 !important;
  right: 0 !important;
}

.submenu-item {
  margin: 0 !important;
  padding: 0 !important;
  position: relative;
  background-color: transparent !important;
  border: none !important;
  list-style: none !important;
  list-style-type: none !important;
  display: block !important;
  width: auto !important;
  min-width: auto !important;
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
  transition: none !important;
  font-size: inherit;
  font-weight: normal;
  line-height: normal;
  text-align: left;
}

.submenu-item::before,
.submenu-item::after {
  display: none !important;
  content: none !important;
}

.submenu-item .submenu-link {
  background-color: transparent;
  margin: 0;
  padding: 0.75rem 1.25rem;
  display: flex;
  width: 100%;
}

.submenu-item .submenu-link:hover {
  background-color: var(--bg-light);
}

.submenu-link {
  display: flex !important;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem !important;
  margin: 0 !important;
  color: var(--text-color) !important;
  text-decoration: none !important;
  transition: all var(--transition-fast);
  min-height: 44px;
  position: relative;
  font-weight: normal !important;
  font-size: 1rem !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  cursor: pointer;
  width: 100%;
  text-align: left;
  transform: none !important;
}

.submenu-link:hover {
  background-color: var(--bg-light) !important;
  color: var(--primary-color) !important;
  padding-left: 1.5rem !important;
  transform: none !important;
}

.submenu-link.active {
  background-color: var(--bg-light) !important;
  color: var(--primary-color) !important;
  font-weight: 600 !important;
  transform: none !important;
}

.submenu-link.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--primary-color);
}

.submenu-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.submenu-label {
  flex: 1;
}

.submenu-arrow {
  font-size: 1.25rem;
  color: var(--text-light);
  transition: transform var(--transition-fast);
}

.submenu-wrapper:hover .submenu-arrow {
  transform: translateX(4px);
}

/* Desktop submenu positioning - Radhika Das exact replication */
.submenu-desktop {
  left: 0 !important;
  right: auto;
  top: 100% !important;
  margin-top: 0 !important;
  margin-left: 0 !important;
  min-width: 220px;
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  padding: 0.5rem 0;
  background: #ffffff !important;
}

.submenu-desktop .submenu-link {
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  color: #1a1a1a;
  transition: all 0.2s ease;
}

.submenu-desktop .submenu-link:hover {
  background-color: #f9fafb;
  color: #2563eb;
  padding-left: 1.75rem;
}

.submenu-desktop .submenu-link.active {
  color: #2563eb;
  font-weight: 500;
  background-color: transparent;
}

.submenu-left {
  left: 100% !important;
  right: auto;
  top: 0 !important;
  margin-top: 0 !important;
  margin-left: 0.5rem;
}

.submenu-right {
  right: 100% !important;
  left: auto;
  top: 0 !important;
  margin-top: 0 !important;
  margin-right: 0.5rem;
}

.expandable-logo-bar .submenu {
  position: absolute;
  z-index: 10000 !important;
  margin-top: 0;
}

.expandable-logo-bar .submenu-left {
  left: 100%;
  margin-left: 0.5rem;
  top: 0;
}

.expandable-logo-bar .submenu-right {
  right: 100%;
  margin-right: 0.5rem;
  left: auto;
  top: 0;
}

.submenu-level-1 {
  top: 0;
  margin-left: 0.5rem;
  margin-top: 0;
  background: #ffffff !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15), 0 4px 10px rgba(0, 0, 0, 0.1);
}

.submenu-left.submenu-level-1 {
  left: 100%;
}

.submenu-right.submenu-level-1 {
  right: 100%;
  left: auto;
}

/* Mobile styles */
@media (max-width: 767px) {
  .submenu {
    position: static;
    box-shadow: none;
    background-color: transparent;
    padding: 0;
    margin-top: 0;
    margin-left: 1.5rem;
    border-left: 2px solid var(--border-color);
    padding-left: 1rem;
  }

  .submenu.open {
    max-height: none;
  }

  .submenu-link {
    padding: 0.75rem 0;
    font-size: 0.9375rem;
  }

  .submenu-link:hover {
    padding-left: 0.75rem;
  }

  .submenu-level-1 {
    left: 0;
    margin-left: 1.5rem;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .submenu,
  .submenu-link,
  .submenu-arrow {
    transition: none;
  }
}
/**
 * NavItem Styles
 * 
 * Individual navigation item styles
 * Replicated from Radhika Das website
 */

.nav-item {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
  opacity: 0;
  transform: translateY(-10px);
  animation: navItemFadeIn var(--transition-base) forwards;
  animation-delay: var(--animation-delay, 0ms);
}

@keyframes navItemFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-item-wrapper {
  position: relative;
  width: 100%;
  z-index: 1000;
  margin: 0 !important;
  padding: 0 !important;
  display: block;
}

.nav-item.has-open-submenu {
  z-index: 1000;
  position: relative;
}

.nav-item-wrapper.has-open-submenu {
  z-index: 1000 !important;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  margin: 0 !important;
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  border-radius: 0.5rem;
  min-height: 44px;
  width: 100%;
  text-align: left;
  font-family: inherit;
  position: relative;
  justify-content: flex-start;
}

.nav-link:hover {
  background-color: var(--bg-light);
  color: var(--primary-color);
  transform: translateX(4px);
}

.nav-link.active {
  color: var(--primary-color);
  background-color: rgba(37, 99, 235, 0.1);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  border-radius: 0;
}

.nav-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  line-height: 1;
}

.nav-label {
  flex: 0 1 auto;
}

.nav-arrow {
  font-size: 1.875rem;
  font-weight: 300;
  transition: transform var(--transition-base);
  flex-shrink: 0;
  color: var(--text-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 0.25rem;
}

.nav-arrow.open {
  /* transform: rotate(45deg); */
}

/* Desktop: Horizontal menu layout - Radhika Das exact replication */
@media (min-width: 768px) {
  .nav-item-desktop {
    width: auto;
    min-width: auto;
    margin: 0;
    opacity: 1;
    transform: none;
    flex-shrink: 1;
    flex-grow: 0;
    flex-basis: auto;
    animation: none;
    position: relative;
  }

      /* Default: White text for desktop menu when header is transparent */
      .nav-item-desktop .nav-link {
        padding: 0.75rem 0.5rem;
        margin: 0;
        width: auto;
        text-align: center;
        min-height: auto;
        flex-shrink: 1;
        overflow: hidden;
        text-overflow: ellipsis;
        color: #ffffff;
        text-shadow: none;
        font-family: "Inter", sans-serif;
        font-weight: 400;
        font-size: 0.875rem;
        letter-spacing: 0;
        line-height: 1.4;
        border-radius: 0;
        position: relative;
        white-space: nowrap;
        transition: color 0.2s ease;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: transparent;
      }

      /* Black text when header is scrolled (white background) */
      .header.header-scrolled .nav-item-desktop .nav-link {
        color: #000000;
      }

      /* Hover state keeps same color, shows underline */
      .nav-item-desktop .nav-link:hover {
        /* Color inherits from default state */
        position: relative;
      }

      /* Hover underline - white when transparent */
      .nav-item-desktop .nav-link:hover::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 2rem);
        height: 2px;
        background-color: #ffffff;
        display: block;
      }

      /* Hover underline - black when scrolled */
      .header.header-scrolled .nav-item-desktop .nav-link:hover::after {
        background-color: #000000;
      }

      /* Active state keeps same color as default, only shows underline */
      .nav-item-desktop .nav-link.active {
        /* Color inherits from default state */
      }

      /* Active state keeps same color when scrolled */
      .header.header-scrolled .nav-item-desktop .nav-link.active {
        /* Color inherits from scrolled state */
      }

      /* Logo styling for "Eternal Voice" menu item */
      .nav-item-desktop.nav-item-logo .nav-link,
      .nav-menu-logo-wrapper .nav-item-desktop .nav-link,
      .nav-item-desktop.nav-item-logo .nav-link.active,
      .nav-item-desktop.nav-item-logo a.nav-link.active {
        font-family: 'Cormorant Garamond', 'Lora', 'Crimson Pro', 'Playfair Display', Georgia, serif !important;
        font-weight: 500 !important;
        font-size: 1.5rem !important;
        letter-spacing: -0.01em !important;
        color: #ffffff !important; /* White when transparent */
        text-shadow: none;
        padding: 0.75rem 0.5rem !important;
        margin: 0 !important;
        text-transform: uppercase !important;
      }

      /* Logo black/blue when header is scrolled */
      .header.header-scrolled .nav-item-desktop.nav-item-logo .nav-link,
      .header.header-scrolled .nav-menu-logo-wrapper .nav-item-desktop .nav-link,
      .header.header-scrolled .nav-item-desktop.nav-item-logo .nav-link.active,
      .header.header-scrolled .nav-item-desktop.nav-item-logo a.nav-link.active {
        color: #2563eb !important; /* Blue when scrolled */
      }

  .nav-item-desktop.nav-item-logo .nav-link .nav-label,
  .nav-menu-logo-wrapper .nav-item-desktop .nav-link .nav-label,
  .nav-item-desktop.nav-item-logo .nav-link.active .nav-label,
  .nav-item-desktop.nav-item-logo a.nav-link.active .nav-label,
  .nav-item-desktop.nav-item-logo .nav-link.active span.nav-label {
    font-family: 'Cormorant Garamond', 'Lora', 'Crimson Pro', 'Playfair Display', Georgia, serif !important;
    font-weight: 500 !important;
    font-size: 1.5rem !important;
    letter-spacing: -0.01em !important;
    color: #ffffff !important; /* White when transparent */
    text-transform: uppercase !important;
  }

  /* Logo label black/blue when header is scrolled */
  .header.header-scrolled .nav-item-desktop.nav-item-logo .nav-link .nav-label,
  .header.header-scrolled .nav-menu-logo-wrapper .nav-item-desktop .nav-link .nav-label,
  .header.header-scrolled .nav-item-desktop.nav-item-logo .nav-link.active .nav-label,
  .header.header-scrolled .nav-item-desktop.nav-item-logo a.nav-link.active .nav-label,
  .header.header-scrolled .nav-item-desktop.nav-item-logo .nav-link.active span.nav-label {
    color: #2563eb !important; /* Blue when scrolled */
  }

  /* iPad - further reduce logo size */
  @media (min-width: 768px) and (max-width: 1023px) {
    .nav-item-desktop.nav-item-logo .nav-link,
    .nav-menu-logo-wrapper .nav-item-desktop .nav-link {
      font-size: 1.375rem !important;
      padding: 0.625rem 0.875rem !important;
    }

    .nav-item-desktop.nav-item-logo .nav-link .nav-label,
    .nav-menu-logo-wrapper .nav-item-desktop .nav-link .nav-label {
      font-size: 1.375rem !important;
    }
  }

  /* Ensure active state doesn't override logo font */
  .nav-item-desktop.nav-item-logo .nav-link.active::after {
    display: none !important;
  }

  /* Override any default nav-link styles for logo */
  .nav-item-desktop.nav-item-logo a.nav-link,
  .nav-item-desktop.nav-item-logo a.nav-link.active {
    font-family: 'Cormorant Garamond', 'Lora', 'Crimson Pro', 'Playfair Display', Georgia, serif !important;
  }

  .nav-item-desktop.nav-item-logo .nav-link:hover,
  .nav-menu-logo-wrapper .nav-item-desktop .nav-link:hover {
    color: rgba(0, 0, 0, 0.7);
    opacity: 1;
    transform: none;
    background: transparent;
  }

  .nav-item-desktop.nav-item-logo .nav-link:hover .nav-label,
  .nav-menu-logo-wrapper .nav-item-desktop .nav-link:hover .nav-label {
    color: rgba(0, 0, 0, 0.7);
  }

  .nav-item-desktop.nav-item-logo .nav-link.active,
  .nav-menu-logo-wrapper .nav-item-desktop .nav-link.active {
    color: #000000;
    background: transparent;
  }

  .nav-item-desktop.nav-item-logo .nav-link.active .nav-label,
  .nav-menu-logo-wrapper .nav-item-desktop .nav-link.active .nav-label {
    color: #000000;
  }

  /* Hover state keeps same color, shows underline */
  .nav-item-desktop .nav-link:hover {
    /* Color inherits from default state */
    background-color: transparent;
    transform: none;
    position: relative;
  }

  /* Hover underline for desktop */
  .nav-item-desktop .nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2rem);
    height: 2px;
    background-color: #ffffff; /* White underline when transparent */
    display: block;
  }

  /* Black underline when header is scrolled */
  .header.header-scrolled .nav-item-desktop .nav-link:hover::after {
    background-color: #000000;
  }

  .nav-item-desktop .nav-link.active {
    /* Color inherits from default state - white when transparent, black when scrolled */
    background-color: transparent;
    font-weight: 400; /* Keep same font-weight as default */
    position: relative;
  }

  .nav-item-desktop .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2rem);
    height: 2px;
    background-color: #ffffff; /* White underline when transparent */
    display: block;
  }

  /* Black underline when header is scrolled */
  .header.header-scrolled .nav-item-desktop .nav-link.active::after {
    background-color: #000000;
  }

  .nav-item-desktop .nav-arrow {
    font-size: 1.9375rem;
    font-weight: 300;
    margin-left: 0.375rem;
    opacity: 0.6;
    transition: transform 0.2s ease, opacity 0.2s ease, color 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
    vertical-align: middle;
    color: #ffffff; /* White arrow when transparent */
  }

  /* Black arrow when header is scrolled */
  .header.header-scrolled .nav-item-desktop .nav-arrow {
    color: #000000;
  }

  .nav-item-desktop .nav-link:hover .nav-arrow {
    opacity: 0.8;
  }

  .nav-item-desktop.has-open-submenu .nav-arrow,
  .nav-item-desktop .nav-link.dropdown-open .nav-arrow {
    /* transform: rotate(45deg); */
  }

  /* Parent item should be red when submenu is open on desktop */
  .nav-item-desktop .nav-link.dropdown-open {
    color: #dc2626 !important;
  }

  .nav-item-desktop .nav-link.dropdown-open::after {
    background-color: #dc2626 !important;
  }

  /* Hover effect for dropdown items */
  .nav-item-desktop .nav-item-wrapper:hover .nav-link {
    color: rgba(0, 0, 0, 0.7);
  }
}

/* Mobile styles */
@media (max-width: 767px) {
  .nav-item {
    width: 100%;
    border-bottom: 1px solid #ffffff;
  }

  .nav-link {
    padding: 1.25rem 1.5rem;
    border-radius: 0;
    color: var(--text-color);
    justify-content: space-between;
  }

  .nav-link:hover {
    transform: none;
    padding-left: 2rem;
    background-color: transparent;
  }

  /* Active/selected item should be red */
  .nav-link.active {
    color: #dc2626;
    background-color: transparent;
  }

  /* Red underline for active links on mobile */
  .nav-link.active::after {
    display: block;
    background-color: #dc2626;
  }

  /* Parent item should be red when submenu is open */
  .nav-link.dropdown-open {
    color: #dc2626 !important;
  }

  .nav-link.dropdown-open::after {
    display: block;
    background-color: #dc2626 !important;
  }

  /* Mobile: Only "Eternal Voice" logo should be uppercase */
  .nav-item.nav-item-logo .nav-link,
  .nav-item.nav-item-logo .nav-link .nav-label {
    text-transform: uppercase !important;
  }

  /* Mobile: Right align + icon with proper margin from left */
  .nav-arrow {
    margin-left: auto;
    margin-right: 0;
    flex-shrink: 0;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .nav-item {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .nav-link,
  .nav-arrow {
    transition: none;
  }
}
/**
 * NavMenu Styles
 * 
 * Main navigation menu container styles
 * Replicated from Radhika Das website
 */

.nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: #ffffff;
  backdrop-filter: blur(20px);
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.1);
  transform: translateX(-100%);
  transition: transform var(--transition-base);
  z-index: 1000;
  overflow-y: auto;
  padding: 5rem 0 2rem;
}

.nav-menu.open {
  transform: translateX(0);
}

.nav-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

/* Desktop styles - horizontal menu - Radhika Das exact replication */
@media (min-width: 768px) {
  .nav-menu-desktop {
    position: static;
    transform: none;
    max-width: none;
    width: 100%;
    height: auto;
    min-height: auto;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
    opacity: 1;
    pointer-events: all;
    overflow: visible;
  }

  .nav-menu-desktop-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    gap: 0.125rem;
    position: relative;
    max-width: 100%;
  }

  .nav-menu-logo-wrapper {
    grid-column: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
    flex-shrink: 0;
    min-width: -moz-fit-content;
    min-width: fit-content;
  }

  .nav-menu-desktop .nav-menu-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.125rem;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
    list-style: none;
    justify-content: center;
  }

  .nav-menu-left {
    grid-column: 1;
    justify-content: flex-end;
    padding-right: 1rem;
    min-width: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    flex-shrink: 1;
  }

  .nav-menu-right {
    grid-column: 3;
    justify-content: flex-start;
    padding-left: 1rem;
    min-width: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    flex-shrink: 1;
  }

  /* Legacy support for left/right split menu */
  .nav-menu-left,
  .nav-menu-right {
    position: static;
    transform: none;
    max-width: none;
    width: 100%;
    height: auto;
    min-height: -moz-fit-content;
    min-height: fit-content;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
    opacity: 1;
    pointer-events: all;
    overflow: visible;
  }

  .nav-menu-left .nav-menu-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.125rem;
    width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-end;
  }

  .nav-menu-right .nav-menu-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.125rem;
    width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  /* Ensure logo stays centered on all screen sizes - iPad optimized */
  @media (min-width: 768px) and (max-width: 1023px) {
    .nav-menu-desktop-wrapper {
      gap: 0.125rem;
    }

    .nav-menu-left {
      padding-right: 0.75rem;
    }

    .nav-menu-right {
      padding-left: 0.75rem;
    }

    .nav-menu-desktop .nav-menu-list {
      gap: 0.125rem;
    }

    .nav-item-desktop .nav-link {
      padding: 0.625rem 0.375rem;
      font-size: 0.8125rem;
    }
  }

  /* Very small desktop screens - reduce spacing further */
  @media (min-width: 768px) and (max-width: 900px) {
    .nav-menu-desktop-wrapper {
      gap: 0.125rem;
    }

    .nav-menu-left {
      padding-right: 0.125rem;
    }

    .nav-menu-right {
      padding-left: 0.125rem;
    }

    .nav-menu-desktop .nav-menu-list {
      gap: 0.0625rem;
    }

    .nav-item-desktop .nav-link {
      padding: 0.5rem 0.25rem;
      font-size: 0.75rem;
    }
  }

  /* Ensure all items stay on one line - reduce spacing if needed */
  @media (min-width: 768px) {
    .nav-menu-desktop-wrapper {
      grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    }

    .nav-menu-left .nav-menu-list,
    .nav-menu-right .nav-menu-list {
      overflow: hidden;
      text-overflow: ellipsis;
    }
  }

  /* Large screens - reduced spacing */
  @media (min-width: 1024px) {
    .nav-menu-desktop-wrapper {
      gap: 0.125rem;
    }

    .nav-menu-left {
      padding-right: 1.5rem;
    }

    .nav-menu-right {
      padding-left: 1.5rem;
    }

    .nav-menu-desktop .nav-menu-list {
      gap: 0.25rem;
    }
  }

  /* Extra large screens */
  @media (min-width: 1280px) {
    .nav-menu-desktop-wrapper {
      gap: 1rem;
    }

    .nav-menu-left {
      padding-right: 1rem;
    }

    .nav-menu-right {
      padding-left: 1rem;
    }

    .nav-menu-desktop .nav-menu-list {
      gap: 0.375rem;
    }
  }
}

/* Mobile menu styles */
.nav-menu-mobile {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  height: 100dvh; /* Use dynamic viewport height for mobile */
  background: #ffffff !important;
  backdrop-filter: none !important;
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.1);
  transform: translateX(-100%);
  transition: transform var(--transition-base);
  z-index: 1001 !important;
  overflow-y: auto;
  padding: 5rem 0 2rem;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  display: block !important;
  /* Ensure menu stays relative to viewport regardless of scroll */
  margin: 0 !important;
  will-change: transform;
}

.nav-menu-mobile.open {
  transform: translateX(0) !important;
  pointer-events: auto !important;
  visibility: visible !important;
  opacity: 1 !important;
  display: block !important;
  background: #ffffff !important;
  /* Ensure menu stays at top-left of viewport when open */
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  max-width: 400px !important;
  height: 100vh !important;
  height: 100dvh !important;
  z-index: 1001 !important;
}

.nav-menu-mobile .nav-menu-list {
  display: flex;
  flex-direction: column;
}

/* Ensure mobile menu is always visible when open - prevent any hiding */
@media (max-width: 767px) {
  .nav-menu-mobile.open {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    max-width: 400px !important;
    height: 100vh !important;
    height: 100dvh !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 1001 !important;
    transform: translateX(0) !important;
    pointer-events: auto !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }
  
}

/* Overlay backdrop - only for desktop, not mobile */
.nav-menu::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
  z-index: -1;
}

.nav-menu.open::before {
  opacity: 1;
  pointer-events: all;
}

/* Hide backdrop for mobile menu */
.nav-menu-mobile::before {
  display: none !important;
}

@media (min-width: 1024px) {
  .nav-menu::before {
    display: none;
  }
}

/* Scrollbar styling */
.nav-menu::-webkit-scrollbar {
  width: 6px;
}

.nav-menu::-webkit-scrollbar-track {
  background: transparent;
}

.nav-menu::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 3px;
}

.nav-menu::-webkit-scrollbar-thumb:hover {
  background: var(--text-light);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .nav-menu {
    transition: none;
  }

  .nav-menu::before {
    transition: none;
  }
}
/**
 * DesktopNav Styles
 * 
 * Desktop navigation container styles
 * Horizontal menu layout in header - Radhika Das exact replication
 */

.desktop-nav {
  position: relative;
  z-index: 1002;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.desktop-nav .nav-menu-desktop {
  width: 100%;
  display: flex;
  justify-content: center;
}

.desktop-nav-expanded {
  position: fixed;
  top: calc(2rem + 60px);
  left: 50%;
  transform: translateX(-50%);
  width: 90vw;
  max-width: 1400px;
  min-width: 800px;
  height: auto;
  min-height: auto;
  max-height: 90vh;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(249, 250, 251, 0.98));
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-top: none;
  border-radius: 0 0 1rem 1rem;
  box-shadow: var(--shadow-lg);
  padding: 2rem 0 3rem;
  overflow-y: auto;
  overflow-x: visible;
  scroll-behavior: smooth;
  animation: slideDown 400ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: padding 300ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
}

.desktop-nav-expanded.has-submenu-open {
  padding-bottom: 4rem;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.desktop-nav-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  padding: 0 2rem;
  min-height: -moz-fit-content;
  min-height: fit-content;
  position: relative;
  overflow: visible;
}

.desktop-nav-left {
  border-right: 1px solid var(--border-color);
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 1023px) {
  .desktop-nav-expanded {
    width: 85vw;
    min-width: 600px;
  }
}

/* Mobile - Hide desktop nav */
@media (max-width: 767px) {
  .desktop-nav {
    display: none;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .desktop-nav-expanded {
    animation: none;
  }
}
/**
 * Mobile Toggle Styles
 * 
 * Floating corner button with creative animations
 */

.mobile-toggle {
  position: fixed !important;
  top: 1.5rem !important;
  right: 1.5rem !important;
  left: auto !important;
  width: 56px;
  height: 56px;
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1003 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  transition: all var(--transition-base);
  padding: 0;
  min-width: 44px;
  min-height: 44px;
  pointer-events: auto !important;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  margin-left: auto;
  margin-right: 0;
  /* Ensure toggle stays relative to viewport regardless of scroll */
  will-change: transform;
}

.mobile-toggle.open {
  z-index: 1003 !important;
  pointer-events: auto !important;
}

.mobile-toggle:hover {
  transform: scale(1.1);
  box-shadow: none;
}

.mobile-toggle:active {
  transform: scale(0.95);
}

.mobile-toggle:focus {
  outline: 3px solid var(--primary-color);
  outline-offset: 2px;
}

.mobile-toggle-inner {
  position: relative;
  width: 24px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-toggle-line {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #ffffff; /* White when header is transparent */
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}

/* Black toggle lines when header is scrolled (white background) */
.header.header-scrolled .mobile-toggle-line {
  background-color: #000000;
}

.mobile-toggle.open .line-1 {
  transform: translateY(8.5px) rotate(45deg);
  background-color: #000000 !important; /* Always black when open */
}

.mobile-toggle.open .line-2 {
  opacity: 0;
  transform: scaleX(0);
  background-color: #000000 !important; /* Always black when open */
}

.mobile-toggle.open .line-3 {
  transform: translateY(-8.5px) rotate(-45deg);
  background-color: #000000 !important; /* Always black when open */
}

.mobile-toggle-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s;
}

.mobile-toggle.animating .mobile-toggle-ripple {
  width: 100px;
  height: 100px;
}

/* Mobile-specific improvements */
@media (max-width: 767px) {
  .mobile-toggle {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    right: 1.5rem !important;
    left: auto !important;
    z-index: 1003 !important;
    pointer-events: auto !important;
    display: flex !important;
  }

  .mobile-toggle:active {
    transform: scale(0.9);
    background: transparent;
  }
  
  /* Ensure toggle is visible on mobile */
  .mobile-nav .mobile-toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    right: 1.5rem !important;
    left: auto !important;
  }
}

/* Tablet and Desktop - Hide toggle, show full menu */
@media (min-width: 768px) {
  .mobile-toggle {
    display: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .mobile-toggle {
    border: 2px solid white;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .mobile-toggle,
  .mobile-toggle-line,
  .mobile-toggle-ripple {
    transition: none;
  }
}

/**
 * Overlay Component Styles
 * 
 * Backdrop overlay styles
 */

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.overlay.overlay-blur {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* When visible, overlay should be interactive */
.overlay:not([aria-hidden="true"]) {
  opacity: 1;
  pointer-events: all;
}

/* Ensure mobile toggle button is always clickable above overlay */
.overlay ~ * [data-mobile-toggle="true"],
[data-mobile-toggle="true"],
.mobile-toggle {
  pointer-events: auto !important;
  z-index: 1003 !important;
  position: relative;
}

/* When overlay is visible, ensure toggle is still above it */
.overlay:not([aria-hidden="true"]) ~ * [data-mobile-toggle="true"],
.overlay:not([aria-hidden="true"]) ~ * .mobile-toggle {
  z-index: 1004 !important;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .overlay {
    transition: none;
  }
}

/**
 * MobileNav Styles
 * 
 * Mobile navigation container styles
 */

.mobile-nav {
  position: relative;
  z-index: 1000;
}

/* Ensure mobile nav is visible on mobile */
@media (max-width: 767px) {
  .mobile-nav {
    display: block !important;
    visibility: visible !important;
  }
}

.mobile-nav-menu-wrapper {
  /* Remove positioning - let NavMenu handle it */
  position: static;
  width: 100%;
  height: auto;
  /* Don't interfere with NavMenu positioning */
  pointer-events: none;
}

/* When menu is open, ensure it's visible and positioned correctly */
.mobile-nav-menu-wrapper.open {
  pointer-events: auto;
}

.mobile-nav-menu-wrapper .nav-menu-mobile.open {
  pointer-events: auto !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
}

/* Desktop - Hide mobile nav */
@media (min-width: 768px) {
  .mobile-nav {
    display: none;
  }
}

/**
 * Navigation Component Styles
 * 
 * Main navigation wrapper styles
 */

.navigation {
  position: relative;
  z-index: 1000;
}

/* Ensure navigation doesn't interfere with page content */
@media (min-width: 1024px) {
  .navigation {
    position: static;
  }
}

/**
 * Logo Component Styles
 * 
 * Reusable logo styling
 */

.logo-link {
  display: inline-block;
  text-decoration: none;
  transition: opacity var(--transition-base);
}

.logo-link:hover {
  opacity: 0.8;
}

.logo-button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}

.logo-button:focus {
  outline: 3px solid var(--primary-color);
  outline-offset: 4px;
  border-radius: 4px;
}

.logo-container {
  display: inline-block;
}

.logo-text {
  font-family: 'Cormorant Garamond', 'Lora', 'Crimson Pro', 'Playfair Display', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #2563eb; /* Matching Radhika Das blue color */
  display: inline-block;
}

.logo-small {
  font-size: 1.25rem;
}

.logo-medium {
  font-size: 1.5rem;
}

.logo-large {
  font-size: 2rem;
}

@media (max-width: 768px) {
  .logo-small {
    font-size: 1.125rem;
  }

  .logo-medium {
    font-size: 1.25rem;
  }

  .logo-large {
    font-size: 1.5rem;
  }
}

/**
 * ExpandableLogo Styles
 * 
 * Centered logo expansion animation styles
 */

.expandable-logo {
  position: fixed;
  top: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1002;
  cursor: pointer;
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.expandable-logo-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.expandable-logo-content {
  background: transparent;
  backdrop-filter: none;
  padding: 0.5rem 1rem;
  border-radius: 0;
  box-shadow: none;
  border: none;
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.expandable-logo.expanded .expandable-logo-content {
  border-radius: 1rem 1rem 0 0;
  border-bottom: none;
}

.expandable-logo-text {
  transition: font-size 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Specific font for expandable logo text combination - matching Radhika Das font */
.expandable-logo-text.logo-text.logo-medium,
.logo-text.logo-medium.expandable-logo-text,
.expandable-logo-text.logo-text {
  font-family: 'Cormorant Garamond', 'Lora', 'Crimson Pro', 'Playfair Display', Georgia, serif !important;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #2563eb; /* Matching Radhika Das blue color */
}

.expandable-logo-text .logo-text {
  font-family: 'Cormorant Garamond', 'Lora', 'Crimson Pro', 'Playfair Display', Georgia, serif !important;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #2563eb; /* Matching Radhika Das blue color */
}

.expandable-logo-bar {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: auto;
  min-height: auto;
  max-height: 90vh; /* Maximum height to prevent overflow */
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(249, 250, 251, 0.98));
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-top: none;
  border-radius: 0 0 1rem 1rem;
  box-shadow: var(--shadow-lg);
  overflow: visible; /* Changed from hidden to visible for submenus */
  opacity: 0;
  transition: width 400ms cubic-bezier(0.4, 0, 0.2, 1),
              opacity 400ms cubic-bezier(0.4, 0, 0.2, 1),
              padding 400ms cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* Align to top */
  padding: 2rem 0 3rem; /* Extra bottom padding for submenus */
  pointer-events: none;
  scroll-behavior: smooth; /* Smooth scrolling */
}

.expandable-logo.expanded .expandable-logo-bar {
  width: 90vw;
  max-width: 1400px;
  min-width: 800px;
  min-height: auto; /* Auto height to accommodate content */
  height: auto; /* Dynamic height based on content */
  opacity: 1;
  pointer-events: all;
  overflow-y: auto; /* Allow scrolling if content exceeds max-height */
  overflow-x: visible; /* Keep horizontal overflow visible for submenus */
  padding: 2rem 0 3rem; /* Extra bottom padding when expanded for submenus */
  transition: width 400ms cubic-bezier(0.4, 0, 0.2, 1),
              opacity 400ms cubic-bezier(0.4, 0, 0.2, 1),
              padding 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth height adjustment when submenus open/close */
.expandable-logo-bar.has-submenu-open {
  padding-bottom: 4rem; /* Extra padding when submenu is open */
  transition: padding 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.expandable-logo-left,
.expandable-logo-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  padding: 0 2rem;
  width: 100%;
  min-height: -moz-fit-content;
  min-height: fit-content; /* Ensure it fits content */
  position: relative; /* For submenu positioning */
}

.expandable-logo-left {
  border-right: 1px solid var(--border-color);
}

/* Prevent clicks on menu items from collapsing */
.expandable-logo-left *,
.expandable-logo-right * {
  pointer-events: all;
}

.expandable-logo:hover .expandable-logo-content {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.2);
}

.expandable-logo:focus {
  outline: 3px solid var(--primary-color);
  outline-offset: 4px;
  border-radius: 1rem;
}

/* Mobile and Tablet - Hide expandable logo */
@media (max-width: 767px) {
  .expandable-logo {
    display: none;
  }
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 1023px) {
  .expandable-logo.expanded .expandable-logo-bar {
    width: 85vw;
    min-width: 600px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .expandable-logo,
  .expandable-logo-content,
  .expandable-logo-bar,
  .expandable-logo-text {
    transition: none;
  }
}

/**
 * Header Component Styles
 * 
 * Styles for the main site header
 * Now uses the new Navigation component with floating corner design
 */

/* Default: Transparent header for all public pages (like contact page) */
.header {
  background-color: transparent;
  border-bottom: none;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: none;
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  /* Ensure header stays above all content including home page sections */
  isolation: isolate;
}

/* White background when scrolled */
.header.header-scrolled {
  background-color: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-container {
  background-color: transparent;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  transition: background-color 0.3s ease;
}

/* iPad - reduce padding further */
@media (min-width: 768px) and (max-width: 1023px) {
  .header-container {
    padding: 0.375rem 0.75rem;
  }
}

/* White background for container when scrolled */
.header.header-scrolled .header-container {
  background-color: #ffffff;
}

.header-container > * {
  width: 100%;
}

/* Logo Styles */
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  transition: opacity var(--transition-base);
  flex-shrink: 0;
  text-decoration: none;
  z-index: 1001;
  position: relative;
}

.logo:hover {
  opacity: 0.8;
}

.logo-text {
  font-family: 'Cormorant Garamond', 'Lora', 'Crimson Pro', 'Playfair Display', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #2563eb; /* Matching Radhika Das blue color */
}

/* Mobile Styles */
@media (max-width: 768px) {
  .header-container {
    padding: 0.5rem 1rem;
  }

  .header-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .header-container > :last-child {
    margin-left: auto;
  }

  /* Mobile: Keep header transparent even when scrolled */
  .header.header-scrolled {
    background-color: transparent;
    border-bottom: none;
    box-shadow: none;
  }

  .header.header-scrolled .header-container {
    background-color: transparent;
  }
}

/* Tawk.to Chat Widget - Integrated with Header */
/* Position chat widget just below header */
#tawkchat-container {
  z-index: 1001 !important;
}

#tawkchat-minifiedBox {
  z-index: 1001 !important;
}

/**
 * Subscription Form Styles
 * 
 * Styles for the newsletter subscription form
 * Matches the design from the reference image
 */

.subscription-form-container {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  color: white;
  padding: 2rem 1rem 4rem;
}

.subscription-form-line {
  width: 1px;
  height: 40px;
  background: white;
  margin: 0 auto 1rem;
}

.subscription-form-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.subscription-form-heading {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.subscription-form-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.subscription-form-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.subscription-form-social-icon:hover {
  background: rgba(0, 0, 0, 0.6);
  transform: scale(1.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.social-icon-text {
  font-weight: 600;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
}

.social-icon-emoji {
  font-size: 1.1rem;
  line-height: 1;
}

.subscription-form-newsletter-text {
  font-size: 1.25rem;
  color: white;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.subscription-form-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.subscription-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.subscription-form-input {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.subscription-form-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.subscription-form-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.subscription-form-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.15);
}

.subscription-form-captcha {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0.5rem 0;
}

.subscription-form-captcha-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  font-size: 0.9rem;
  cursor: pointer;
}

.subscription-form-captcha-checkbox {
  width: 20px;
  height: 20px;
  accent-color: #ff6b9d;
  cursor: pointer;
}

.subscription-form-captcha-text {
  color: white;
}

.subscription-form-captcha-brand {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin-left: 0.5rem;
}

.subscription-form-submit {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #ff6b9d, #ff4757);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.subscription-form-submit:hover:not(:disabled) {
  background: linear-gradient(135deg, #ff4757, #ff6b9d);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 157, 0.4);
}

.subscription-form-submit:active:not(:disabled) {
  transform: translateY(0);
}

.subscription-form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.subscription-form-status {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: 4px;
  font-size: 0.9rem;
}

.subscription-form-status.success {
  background: rgba(46, 213, 115, 0.2);
  color: #2ed573;
  border: 1px solid rgba(46, 213, 115, 0.3);
}

.subscription-form-status.error {
  background: rgba(255, 71, 87, 0.2);
  color: #ff4757;
  border: 1px solid rgba(255, 71, 87, 0.3);
}

/* About Us and Contact Us buttons */
.subscription-form-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.subscription-form-button {
  padding: 0.875rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  display: inline-block;
}

.subscription-form-button:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.subscription-form-button:active {
  transform: translateY(0);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .subscription-form-heading {
    font-size: 2rem;
  }

  .subscription-form-social {
    gap: 0.75rem;
  }

  .subscription-form-social-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .subscription-form-newsletter-text {
    font-size: 1.1rem;
  }

  .subscription-form-description {
    font-size: 0.85rem;
  }

  .subscription-form-buttons {
    gap: 0.75rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
  }

  .subscription-form-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .subscription-form-container {
    padding-bottom: 2.5rem;
  }
}

/**
 * InitiationHero Component Styles
 * 
 * Styles for the hero banner section of the Initiation page.
 * Matches Events page design with diagonal cut effect at bottom.
 */

/* Hero Banner Section - Matches Swami Satyananad Saraswati page design */
.initiation-hero {
  position: relative;
  width: 100%;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: -80px; /* Extend upward to cover header area */
  padding-top: 80px; /* Compensate for negative margin */
}

.initiation-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.initiation-hero-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

/* Responsive adjustments - Mobile */
@media (max-width: 768px) {
  .initiation-hero {
    min-height: 50vh;
  }

  .initiation-hero-image {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .initiation-hero {
    min-height: 40vh;
  }

  .initiation-hero-image {
    min-height: 250px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
  }
}

@media (max-width: 480px) {
  .initiation-hero {
    min-height: 35vh;
  }
}

.btn {
  border: none;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Variants */
.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover:not(:disabled) {
  background-color: var(--secondary-color);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--text-light);
  color: white;
}

.btn-secondary:hover:not(:disabled) {
  background-color: var(--text-color);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover:not(:disabled) {
  background-color: var(--primary-color);
  color: white;
}

.btn-ghost {
  background-color: transparent;
  color: var(--text-color);
}

.btn-ghost:hover:not(:disabled) {
  background-color: var(--bg-light);
}

/* Sizes */
.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-medium {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-full-width {
  width: 100%;
}

.card {
  background-color: var(--bg-color);
  border-radius: 0.75rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
}

.card-padding-none {
  padding: 0;
}

.card-padding-small {
  padding: 1rem;
}

.card-padding-medium {
  padding: 1.5rem;
}

.card-padding-large {
  padding: 2rem;
}

.card-hover {
  transition: all 0.3s;
  cursor: pointer;
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.input-wrapper-full-width {
  width: 100%;
}

.input-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-color);
}

.input {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.2s;
  background-color: var(--bg-color);
  color: var(--text-color);
}

.input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.input::-moz-placeholder {
  color: var(--text-light);
}

.input::placeholder {
  color: var(--text-light);
}

.input-error {
  border-color: #ef4444;
}

.input-error:focus {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.input-error-message {
  font-size: 0.875rem;
  color: #ef4444;
}

.input-full-width {
  width: 100%;
}

.textarea-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.textarea-wrapper-full-width {
  width: 100%;
}

.textarea-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-color);
}

.textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.2s;
  background-color: var(--bg-color);
  color: var(--text-color);
  resize: vertical;
  min-height: 120px;
}

.textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.textarea::-moz-placeholder {
  color: var(--text-light);
}

.textarea::placeholder {
  color: var(--text-light);
}

.textarea-error {
  border-color: #ef4444;
}

.textarea-error:focus {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.textarea-error-message {
  font-size: 0.875rem;
  color: #ef4444;
}

.textarea-full-width {
  width: 100%;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-sm {
  max-width: 640px;
}

.container-md {
  max-width: 768px;
}

.container-lg {
  max-width: 1024px;
}

.container-xl {
  max-width: 1200px;
}

.container-full {
  max-width: 100%;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

.section {
  width: 100%;
}

.section-default {
  background-color: var(--bg-color);
}

.section-light {
  background-color: var(--bg-light);
}

.section-dark {
  background-color: var(--text-color);
  color: white;
}

.section-padding-none {
  padding: 0;
}

.section-padding-small {
  padding: 3rem 0;
}

.section-padding-medium {
  padding: 4rem 0;
}

.section-padding-large {
  padding: 6rem 0;
}

@media (max-width: 768px) {
  .section-padding-small {
    padding: 2rem 0;
  }

  .section-padding-medium {
    padding: 3rem 0;
  }

  .section-padding-large {
    padding: 4rem 0;
  }
}

.heading {
  margin: 0;
  font-family: 'Playfair Display', 'Inter', serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text-color);
  line-height: 1.2;
}

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

.heading-2 {
  font-size: 2.5rem;
}

.heading-3 {
  font-size: 2rem;
}

.heading-4 {
  font-size: 1.5rem;
}

.heading-5 {
  font-size: 1.25rem;
}

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

.heading-left {
  text-align: left;
}

.heading-center {
  text-align: center;
}

.heading-right {
  text-align: right;
}

@media (max-width: 768px) {
  .heading-1 {
    font-size: 2.25rem;
  }

  .heading-2 {
    font-size: 2rem;
  }

  .heading-3 {
    font-size: 1.75rem;
  }
}

.grid {
  display: grid;
  width: 100%;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.grid-gap-small {
  gap: 1rem;
}

.grid-gap-medium {
  gap: 2rem;
}

.grid-gap-large {
  gap: 3rem;
}

@media (max-width: 1024px) {
  .grid-cols-4,
  .grid-cols-5,
  .grid-cols-6 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .grid-cols-2,
  .grid-cols-3,
  .grid-cols-4,
  .grid-cols-5,
  .grid-cols-6 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

/**
 * Breadcrumb Component Styles
 * 
 * Styles for the breadcrumb navigation component
 */

.breadcrumb {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 1rem 0;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumb-link {
  color: var(--text-light);
  text-decoration: none;
  transition: color var(--transition-base);
  font-size: 0.875rem;
}

.breadcrumb-link:hover {
  color: var(--primary-color);
}

.breadcrumb-separator {
  color: var(--text-light);
  font-size: 0.875rem;
}

.breadcrumb-current {
  color: var(--text-color);
  font-size: 0.875rem;
}

.breadcrumb-current strong {
  font-weight: 700;
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .breadcrumb {
    padding: 0.75rem 0;
  }

  .breadcrumb-list {
    justify-content: center;
  }

  .breadcrumb-link,
  .breadcrumb-current {
    font-size: 0.8125rem;
  }
}

/**
 * InitiationContent Component Styles
 * 
 * Styles for the content section of the Initiation page.
 */

.initiation-content-section {
  padding-top: 0 !important;
  margin-top: 0 !important;
  padding-bottom: 0;
}

.initiation-content {
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
  padding: 0 4rem;
}

.initiation-content__title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-text-primary, #1a1a1a);
  margin-bottom: 1.5rem;
  text-align: center;
  line-height: 1.2;
}

.initiation-content__subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-text-secondary, #4a4a4a);
  margin-bottom: 2rem;
  text-align: center;
  line-height: 1.6;
  font-style: italic;
}

.initiation-content__body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.initiation-content__paragraph {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--color-text-primary, #1a1a1a);
  text-align: justify;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .initiation-content-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .initiation-content {
    padding: 0 2rem;
  }

  .initiation-content__title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .initiation-content__subtitle {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .initiation-content__paragraph {
    font-size: 1rem;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .initiation-content-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .initiation-content {
    padding: 0 1.5rem;
  }

  .initiation-content__title {
    font-size: 1.75rem;
  }

  .initiation-content__subtitle {
    font-size: 1.125rem;
  }

  .initiation-content__body {
    gap: 1.25rem;
  }
}

/**
 * EbookFlipReader Styles
 *
 * Builds on existing `EbookReader.css` overlay/header styles.
 */

.ebook-flip-reader__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ebook-flip-reader__open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.7rem;
  border-radius: 6px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-decoration: none;
  font-size: 0.875rem;
  white-space: nowrap;
}

.ebook-flip-reader__open:hover {
  background: rgba(255, 255, 255, 0.18);
}

.ebook-flip-reader__content {
  background: radial-gradient(1200px 600px at 50% 0%, rgba(31, 41, 55, 0.18), rgba(0, 0, 0, 0));
}

.ebook-flipbook-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.75rem 0.75rem;
  gap: 0.5rem;
}

.ebook-flipbook {
  width: min(1100px, 100%);
  height: 100%;
  max-height: calc(100vh - 120px);
  margin: 0 auto;
}

.ebook-flip-page {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ebook-flip-page__inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

.ebook-flip-page__canvas {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.ebook-flip-page__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  color: #6b7280;
}

.ebook-flip-page__placeholderText {
  font-size: 0.95rem;
}

.ebook-flip-page__loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.75);
}

.ebook-flip-page__spinner {
  width: 36px;
  height: 36px;
  border: 3px solid #e5e7eb;
  border-top-color: #3b82f6;
  border-radius: 50%;
  animation: ebookFlipSpin 0.8s linear infinite;
}

@keyframes ebookFlipSpin {
  to {
    transform: rotate(360deg);
  }
}

.ebook-flip-reader__center {
  width: 100%;
  height: 100%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: #ffffff;
}

.ebook-flip-reader__hint {
  margin: 0;
  opacity: 0.9;
}

.ebook-flip-reader__error {
  margin: 0;
  font-weight: 600;
}

.ebook-flip-reader__footerHint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.ebook-flip-reader__dot {
  opacity: 0.6;
}

/* Close Button */
.ebook-flip-reader__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10000;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
  backdrop-filter: blur(4px);
}

.ebook-flip-reader__close:hover {
  background-color: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

.ebook-flip-reader__close:active {
  transform: scale(0.95);
}

.ebook-flip-reader__close svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

@media (max-width: 768px) {
  .ebook-flipbook {
    max-height: calc(100vh - 110px);
  }

  .ebook-flip-reader__open {
    padding: 0.4rem 0.55rem;
    font-size: 0.825rem;
  }

  .ebook-flip-reader__close {
    top: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
  }

  .ebook-flip-reader__close svg {
    width: 18px;
    height: 18px;
  }
}


/**
 * InitiationPdfSection Component Styles
 * 
 * Styles for the PDF section of the Initiation page.
 */

.initiation-pdf-section {
  padding-top: 0;
  padding-bottom: 1rem;
  background: var(--color-background-light, #f9f9f9);
}

.initiation-pdf-section__container {
  text-align: center;
  width: 100%;
  margin: 0 auto;
  padding: 0 4rem;
}

.initiation-pdf-section__title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-text-primary, #1a1a1a);
  margin-top: 0;
  margin-bottom: 2rem;
  line-height: 1.2;
}

/* Ebook cards - two side by side */
.initiation-pdf-section__cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.initiation-pdf-section__card {
  flex: 0 0 auto;
  min-width: 140px;
  max-width: 200px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.initiation-pdf-section__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.initiation-pdf-section__card-cover {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(180deg, #8b7355 0%, #c4a574 100%);
}

.initiation-pdf-section__card-cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .initiation-pdf-section {
    padding-top: 0;
    padding-bottom: 1rem;
  }

  .initiation-pdf-section__container {
    padding: 0 2rem;
  }

  .initiation-pdf-section__title {
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
  }

  .initiation-pdf-section__cards {
    gap: 1.5rem;
  }

  .initiation-pdf-section__card {
    max-width: 160px;
  }
}

@media (max-width: 480px) {
  .initiation-pdf-section {
    padding-top: 0;
    padding-bottom: 0.5rem;
  }

  .initiation-pdf-section__container {
    padding: 0 1.5rem;
  }

  .initiation-pdf-section__title {
    font-size: 1.75rem;
    margin-top: 0;
    margin-bottom: 1rem;
  }

  .initiation-pdf-section__cards {
    gap: 1rem;
  }

  .initiation-pdf-section__card {
    max-width: 140px;
  }
}

/**
 * BackToTop Component Styles
 * 
 * Styles for the "Back to top" button/link.
 * Matches the reference website style.
 */

.back-to-top {
  text-align: center;
  padding: 2rem 0;
  margin-top: 2rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.back-to-top__link {
  display: inline-block;
  color: var(--color-text-primary, #1a1a1a);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  transition: color 0.3s ease;
  cursor: pointer;
}

.back-to-top__link:hover {
  color: var(--color-primary, #8b5a3c);
  text-decoration: underline;
}

.back-to-top__link:focus {
  outline: 2px solid var(--color-primary, #8b5a3c);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .back-to-top {
    padding: 1.5rem 0;
    margin-top: 1.5rem;
  }
}

@media (max-width: 480px) {
  .back-to-top {
    padding: 1rem 0;
    margin-top: 1rem;
  }

  .back-to-top__link {
    font-size: 0.9rem;
  }
}

/**
 * Newsletter Section Styles
 * 
 * Styles for the common newsletter section component
 * Matches the design from the home page last section
 */

.newsletter-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  overflow-y: auto;
}

.newsletter-section-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.newsletter-section-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

/* Dark overlay for form readability - matches home page */
.newsletter-section-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6); /* bg-black/60 */
  z-index: 1;
}

.newsletter-section-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 2rem 1rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Back to Top - on dark banner, white text */
.newsletter-section-back-to-top {
  margin-bottom: 1.5rem;
}

.newsletter-section-back-to-top .back-to-top {
  margin-top: 0;
}

.newsletter-section-back-to-top .back-to-top__link {
  color: rgba(255, 255, 255, 0.95);
}

.newsletter-section-back-to-top .back-to-top__link:hover {
  color: #ffffff;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .newsletter-section {
    min-height: auto;
    padding: 0;
  }

  .newsletter-section-content {
    padding: 3rem 1rem 4rem;
  }
}

.layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: auto;
}

/* Donations page: header uses forceVisibleStyle prop for white bg + dark text */

.main-content {
  flex: 1;
  width: 100%;
  overflow: visible;
  position: relative;
  min-height: 100vh;
}

/* Smooth scroll container should allow all sections to be visible */
.main-content .smooth-scroll-container {
  width: 100%;
  min-height: 100vh;
  position: relative;
}

/**
 * Swami Satyananad Saraswati Page Styles
 * 
 * Styles for the lineage page displaying information about
 * Pujya Shri Swami Satyananad Saraswati ji Maharaj
 */

/* Banner Hero Section - Covers menu button area */
.swami-satyananad-banner {
  position: relative;
  width: 100%;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: -80px; /* Extend upward to cover header area */
  padding-top: 80px; /* Compensate for negative margin */
}

.swami-satyananad-banner__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.swami-satyananad-banner__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.swami-satyananad-banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 1;
}

.swami-satyananad-banner__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 4rem 2rem;
}

.swami-satyananad-banner__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.swami-satyananad-banner__title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Breadcrumb Section - Small Gap */
.swami-satyananad-breadcrumb-section {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.swami-satyananad-breadcrumb-section .breadcrumb {
  padding: 0.5rem 0 !important;
  margin: 0;
}

/* Content Section - 2-3 Line Gap After Breadcrumb */
.swami-satyananad-content-section {
  padding-top: 0 !important;
  margin-top: 0 !important;
  width: 100%;
}

.swami-satyananad-content-section .container-full {
  max-width: 100%;
  width: 100%;
  padding: 0;
}

.swami-satyananad-content-section .swami-satyananad-page {
  margin-top: 0;
  padding-top: 2.5rem; /* 2-3 line gap */
  width: 100%;
}

.swami-satyananad-page {
  width: 100%;
  position: relative;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(250, 250, 255, 0.98) 50%,
    rgba(255, 255, 255, 0.95) 100%
  );
  padding: 3rem 4rem;
  border-radius: 0;
  box-shadow: none;
  margin-top: 0;
}

.swami-satyananad-image-container {
  width: 100%;
  margin-top: 0;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}

.swami-satyananad-image-container::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: calc(100% + 20px);
  background: linear-gradient(
    135deg,
    rgba(138, 43, 226, 0.1) 0%,
    rgba(30, 144, 255, 0.1) 50%,
    rgba(138, 43, 226, 0.1) 100%
  );
  border-radius: 12px;
  z-index: -1;
  filter: blur(20px);
}

.swami-satyananad-image {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 600px;
  border-radius: 12px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.15),
    0 8px 24px rgba(138, 43, 226, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.swami-satyananad-image:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 25px 70px rgba(0, 0, 0, 0.2),
    0 10px 30px rgba(138, 43, 226, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}

.swami-satyananad-image[style*="height: 100%"] {
  max-height: none;
  height: 100% !important;
}

.swami-satyananad-content {
  width: 100%;
  max-width: 100%;
  position: relative;
  padding: 2rem 4rem;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 0.95) 100%
  );
  border-radius: 0;
  box-shadow: none;
}

.swami-satyananad-title {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    #1a1a1a 0%,
    #4a4a4a 50%,
    #1a1a1a 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  text-align: center;
  line-height: 1.2;
  position: relative;
  padding-bottom: 1rem;
}

.swami-satyananad-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(138, 43, 226, 0.5) 50%,
    transparent 100%
  );
  border-radius: 2px;
}

.swami-satyananad-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-color, #333);
  position: relative;
}

.swami-satyananad-text::before {
  content: '';
  position: absolute;
  top: -1rem;
  left: -1rem;
  right: -1rem;
  bottom: -1rem;
  background: linear-gradient(
    135deg,
    rgba(138, 43, 226, 0.03) 0%,
    rgba(30, 144, 255, 0.03) 50%,
    rgba(138, 43, 226, 0.03) 100%
  );
  border-radius: 8px;
  z-index: -1;
  opacity: 0.5;
}

.swami-satyananad-text p {
  margin-bottom: 1.5rem;
  text-align: justify;
  position: relative;
  padding: 0.5rem 0;
}

.swami-satyananad-text p:last-child {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .swami-satyananad-banner {
    min-height: 50vh;
  }

  .swami-satyananad-banner__content {
    padding: 3rem 1.5rem;
  }

  .swami-satyananad-banner__image {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
    min-height: 300px;
  }

  .swami-satyananad-page {
    padding: 2rem 1rem;
    margin-top: 1rem;
    border-radius: 12px;
  }

  .swami-satyananad-content {
    padding: 1.5rem;
  }

  .swami-satyananad-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .swami-satyananad-text {
    font-size: 1rem;
    line-height: 1.7;
  }

  .swami-satyananad-image-container {
    margin-bottom: 2rem;
  }

  .swami-satyananad-image-container::before {
    width: 95%;
    filter: blur(15px);
  }

  .swami-satyananad-text p {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .swami-satyananad-banner {
    min-height: 40vh;
  }

  .swami-satyananad-banner__content {
    padding: 2rem 1rem;
  }

  .swami-satyananad-banner__image {
    min-height: 250px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
  }

  .swami-satyananad-page {
    padding: 1.5rem 0.75rem;
    border-radius: 8px;
  }

  .swami-satyananad-content {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .swami-satyananad-banner {
    min-height: 35vh;
  }

  .swami-satyananad-page {
    padding: 1rem 0.5rem;
  }

  .swami-satyananad-title {
    font-size: 1.75rem;
  }

  .swami-satyananad-text {
    font-size: 0.9375rem;
  }

  .swami-satyananad-image-container::before {
    filter: blur(10px);
  }
}

/**
 * Prem Nath Page Styles
 * 
 * Styles for the lineage page displaying information about
 * Pujya Shri Prem Nath ji Maharaj
 */

/* Banner Hero Section - Covers menu button area */
.prem-nath-banner {
  position: relative;
  width: 100%;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: -80px; /* Extend upward to cover header area */
  padding-top: 80px; /* Compensate for negative margin */
}

.prem-nath-banner__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.prem-nath-banner__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.prem-nath-banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 1;
}

.prem-nath-banner__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 4rem 2rem;
}

.prem-nath-banner__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.prem-nath-banner__title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Breadcrumb Section - Small Gap */
.prem-nath-breadcrumb-section {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.prem-nath-breadcrumb-section .breadcrumb {
  padding: 0.5rem 0 !important;
  margin: 0;
}

/* Content Section - 2-3 Line Gap After Breadcrumb */
.prem-nath-content-section {
  padding-top: 0 !important;
  margin-top: 0 !important;
  width: 100%;
}

.prem-nath-content-section .container-full {
  max-width: 100%;
  width: 100%;
  padding: 0;
}

.prem-nath-content-section .prem-nath-page {
  margin-top: 0;
  padding-top: 2.5rem; /* 2-3 line gap */
  width: 100%;
}

.prem-nath-page {
  width: 100%;
  position: relative;
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #fefefe 15%,
    #fefdfb 30%,
    #fefcf9 50%,
    #fefbf7 70%,
    #fefaf5 85%,
    #fef9f3 100%
  );
  padding: 3rem 4rem;
  border-radius: 0;
  box-shadow: none;
  margin-top: 0;
}

/* Subtle texture overlay - linen-like grain effect */
.prem-nath-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.015) 1px, transparent 0),
    radial-gradient(circle at 2px 2px, rgba(0, 0, 0, 0.01) 1px, transparent 0);
  background-size: 20px 20px, 40px 40px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.prem-nath-image-container {
  width: 100%;
  margin-top: 0;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}

.prem-nath-image-container::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: calc(100% + 20px);
  background: linear-gradient(
    135deg,
    rgba(138, 43, 226, 0.1) 0%,
    rgba(30, 144, 255, 0.1) 50%,
    rgba(138, 43, 226, 0.1) 100%
  );
  border-radius: 12px;
  z-index: -1;
  filter: blur(20px);
}

.prem-nath-image {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 600px;
  border-radius: 12px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.15),
    0 8px 24px rgba(138, 43, 226, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prem-nath-image:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 25px 70px rgba(0, 0, 0, 0.2),
    0 10px 30px rgba(138, 43, 226, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}

.prem-nath-image[style*="height: 100%"] {
  max-height: none;
  height: 100% !important;
}

.prem-nath-content {
  width: 100%;
  max-width: 100%;
  position: relative;
  padding: 2rem 4rem;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 0.95) 100%
  );
  border-radius: 0;
  box-shadow: none;
}

.prem-nath-title {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    #1a1a1a 0%,
    #4a4a4a 50%,
    #1a1a1a 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  text-align: center;
  line-height: 1.2;
  position: relative;
  padding-bottom: 1rem;
}

.prem-nath-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(138, 43, 226, 0.5) 50%,
    transparent 100%
  );
  border-radius: 2px;
}

.prem-nath-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-color, #333);
  position: relative;
}

.prem-nath-text::before {
  content: '';
  position: absolute;
  top: -1rem;
  left: -1rem;
  right: -1rem;
  bottom: -1rem;
  background: linear-gradient(
    135deg,
    rgba(138, 43, 226, 0.03) 0%,
    rgba(30, 144, 255, 0.03) 50%,
    rgba(138, 43, 226, 0.03) 100%
  );
  border-radius: 8px;
  z-index: -1;
  opacity: 0.5;
}

.prem-nath-text p {
  margin-bottom: 1.5rem;
  text-align: justify;
  position: relative;
  padding: 0.5rem 0;
}

.prem-nath-text p:last-child {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .prem-nath-banner {
    min-height: 50vh;
  }

  .prem-nath-banner__content {
    padding: 3rem 1.5rem;
  }

  .prem-nath-banner__image {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
    min-height: 300px;
  }

  .prem-nath-page {
    padding: 2rem 1rem;
    margin-top: 1rem;
    border-radius: 12px;
  }

  .prem-nath-content {
    padding: 1.5rem;
  }

  .prem-nath-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .prem-nath-text {
    font-size: 1rem;
    line-height: 1.7;
  }

  .prem-nath-image-container {
    margin-bottom: 2rem;
  }

  .prem-nath-image-container::before {
    width: 95%;
    filter: blur(15px);
  }

  .prem-nath-text p {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .prem-nath-banner {
    min-height: 40vh;
  }

  .prem-nath-banner__content {
    padding: 2rem 1rem;
  }

  .prem-nath-banner__image {
    min-height: 250px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
  }

  .prem-nath-page {
    padding: 1.5rem 0.75rem;
    border-radius: 8px;
  }

  .prem-nath-content {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .prem-nath-banner {
    min-height: 35vh;
  }

  .prem-nath-page {
    padding: 1rem 0.5rem;
  }

  .prem-nath-title {
    font-size: 1.75rem;
  }

  .prem-nath-text {
    font-size: 0.9375rem;
  }

  .prem-nath-image-container::before {
    filter: blur(10px);
  }
}

/**
 * Swami Brahmanand Page Styles
 * 
 * Styles for the lineage page displaying information about
 * Pujya Shri Swami Brahmanand ji Maharaj
 */

/* Banner Hero Section - Covers menu button area */
.swami-brahmanand-banner {
  position: relative;
  width: 100% !important;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: -80px; /* Extend upward to cover header area */
  padding-top: 80px !important; /* Compensate for negative margin */
  padding-bottom: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  background: transparent !important;
}

.swami-brahmanand-banner__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
}

.swami-brahmanand-banner__image {
  width: 100%;
  height: 100%;
  min-height: 60vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  display: block;
}

/* Breadcrumb Section - Small Gap */
.swami-brahmanand-breadcrumb-section {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.swami-brahmanand-breadcrumb-section .breadcrumb {
  padding: 0.5rem 0 !important;
  margin: 0;
}

/* Content Section - 2-3 Line Gap After Breadcrumb */
.swami-brahmanand-content-section {
  padding-top: 0 !important;
  margin-top: 0 !important;
  width: 100%;
}

.swami-brahmanand-content-section .container-full {
  max-width: 100%;
  width: 100%;
  padding: 0;
}

.swami-brahmanand-content-section .swami-brahmanand-page {
  margin-top: 0;
  padding-top: 2.5rem; /* 2-3 line gap */
  width: 100%;
}

.swami-brahmanand-page {
  width: 100%;
  position: relative;
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #fefefe 15%,
    #fefdfb 30%,
    #fefcf9 50%,
    #fefbf7 70%,
    #fefaf5 85%,
    #fef9f3 100%
  );
  padding: 3rem 4rem;
  border-radius: 0;
  box-shadow: none;
  margin-top: 0;
}

/* Subtle texture overlay - linen-like grain effect */
.swami-brahmanand-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.015) 1px, transparent 0),
    radial-gradient(circle at 2px 2px, rgba(0, 0, 0, 0.01) 1px, transparent 0);
  background-size: 20px 20px, 40px 40px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.swami-brahmanand-image-container {
  width: 100%;
  margin-top: 0;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}

.swami-brahmanand-image-container::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: calc(100% + 20px);
  background: linear-gradient(
    135deg,
    rgba(138, 43, 226, 0.1) 0%,
    rgba(30, 144, 255, 0.1) 50%,
    rgba(138, 43, 226, 0.1) 100%
  );
  border-radius: 12px;
  z-index: -1;
  filter: blur(20px);
}

.swami-brahmanand-image {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 600px;
  border-radius: 12px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.15),
    0 8px 24px rgba(138, 43, 226, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.swami-brahmanand-image:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 25px 70px rgba(0, 0, 0, 0.2),
    0 10px 30px rgba(138, 43, 226, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}

.swami-brahmanand-image[style*="height: 100%"] {
  max-height: none;
  height: 100% !important;
}

.swami-brahmanand-content {
  width: 100%;
  max-width: 100%;
  position: relative;
  padding: 2rem 4rem;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 0.95) 100%
  );
  border-radius: 0;
  box-shadow: none;
}

.swami-brahmanand-title {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    #1a1a1a 0%,
    #4a4a4a 50%,
    #1a1a1a 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  text-align: center;
  line-height: 1.2;
  position: relative;
  padding-bottom: 1rem;
}

.swami-brahmanand-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(138, 43, 226, 0.5) 50%,
    transparent 100%
  );
  border-radius: 2px;
}

.swami-brahmanand-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-color, #333);
  position: relative;
}

.swami-brahmanand-text::before {
  content: '';
  position: absolute;
  top: -1rem;
  left: -1rem;
  right: -1rem;
  bottom: -1rem;
  background: linear-gradient(
    135deg,
    rgba(138, 43, 226, 0.03) 0%,
    rgba(30, 144, 255, 0.03) 50%,
    rgba(138, 43, 226, 0.03) 100%
  );
  border-radius: 8px;
  z-index: -1;
  opacity: 0.5;
}

.swami-brahmanand-text p {
  margin-bottom: 1.5rem;
  text-align: justify;
  position: relative;
  padding: 0.5rem 0;
}

.swami-brahmanand-text p:last-child {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .swami-brahmanand-banner {
    min-height: 50vh;
    margin-top: -80px;
    padding-top: 80px !important;
  }

  .swami-brahmanand-banner__image {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
    min-height: 50vh;
    width: 100%;
    height: 100%;
  }

  .swami-brahmanand-page {
    padding: 2rem 1rem;
    margin-top: 1rem;
    border-radius: 12px;
  }

  .swami-brahmanand-content {
    padding: 1.5rem;
  }

  .swami-brahmanand-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .swami-brahmanand-text {
    font-size: 1rem;
    line-height: 1.7;
  }

  .swami-brahmanand-image-container {
    margin-bottom: 2rem;
  }

  .swami-brahmanand-text p {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .swami-brahmanand-banner {
    min-height: 40vh;
  }

  .swami-brahmanand-banner__image {
    min-height: 250px;
  }

  .swami-brahmanand-page {
    padding: 1.5rem 0.75rem;
    border-radius: 8px;
  }

  .swami-brahmanand-content {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .swami-brahmanand-banner {
    min-height: 35vh;
  }

  .swami-brahmanand-page {
    padding: 1rem 0.5rem;
  }

  .swami-brahmanand-title {
    font-size: 1.75rem;
  }

  .swami-brahmanand-text {
    font-size: 0.9375rem;
  }
}


/**
 * Swami Kevalyanand Page Styles
 * 
 * Styles for the lineage page displaying information about
 * Pujya Shri Swami Kevalyanand ji Maharaj
 */

/* Banner Hero Section - Covers menu button area */
.swami-kevalyanand-banner {
  position: relative;
  width: 100%;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: -80px; /* Extend upward to cover header area */
  padding-top: 80px; /* Compensate for negative margin */
}

.swami-kevalyanand-banner__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.swami-kevalyanand-banner__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

/* Breadcrumb Section - Small Gap */
.swami-kevalyanand-breadcrumb-section {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.swami-kevalyanand-breadcrumb-section .breadcrumb {
  padding: 0.5rem 0 !important;
  margin: 0;
}

/* Content Section - 2-3 Line Gap After Breadcrumb */
.swami-kevalyanand-content-section {
  padding-top: 0 !important;
  margin-top: 0 !important;
  width: 100%;
}

.swami-kevalyanand-content-section .container-full {
  max-width: 100%;
  width: 100%;
  padding: 0;
}

.swami-kevalyanand-content-section .swami-kevalyanand-page {
  margin-top: 0;
  padding-top: 2.5rem; /* 2-3 line gap */
  width: 100%;
}

.swami-kevalyanand-page {
  width: 100%;
  position: relative;
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #fefefe 15%,
    #fefdfb 30%,
    #fefcf9 50%,
    #fefbf7 70%,
    #fefaf5 85%,
    #fef9f3 100%
  );
  padding: 3rem 4rem;
  border-radius: 0;
  box-shadow: none;
  margin-top: 0;
}

/* Subtle texture overlay - linen-like grain effect */
.swami-kevalyanand-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.015) 1px, transparent 0),
    radial-gradient(circle at 2px 2px, rgba(0, 0, 0, 0.01) 1px, transparent 0);
  background-size: 20px 20px, 40px 40px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.swami-kevalyanand-image-container {
  width: 100%;
  margin-top: 0;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}

.swami-kevalyanand-image-container::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: calc(100% + 20px);
  background: linear-gradient(
    135deg,
    rgba(138, 43, 226, 0.1) 0%,
    rgba(30, 144, 255, 0.1) 50%,
    rgba(138, 43, 226, 0.1) 100%
  );
  border-radius: 12px;
  z-index: -1;
  filter: blur(20px);
}

.swami-kevalyanand-image {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 600px;
  border-radius: 12px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.15),
    0 8px 24px rgba(138, 43, 226, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.swami-kevalyanand-image:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 25px 70px rgba(0, 0, 0, 0.2),
    0 10px 30px rgba(138, 43, 226, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}

.swami-kevalyanand-image[style*="height: 100%"] {
  max-height: none;
  height: 100% !important;
}

.swami-kevalyanand-content {
  width: 100%;
  max-width: 100%;
  position: relative;
  padding: 2rem 4rem;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 0.95) 100%
  );
  border-radius: 0;
  box-shadow: none;
}

.swami-kevalyanand-title {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    #1a1a1a 0%,
    #4a4a4a 50%,
    #1a1a1a 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  text-align: center;
  line-height: 1.2;
  position: relative;
  padding-bottom: 1rem;
}

.swami-kevalyanand-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(138, 43, 226, 0.5) 50%,
    transparent 100%
  );
  border-radius: 2px;
}

.swami-kevalyanand-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-color, #333);
  position: relative;
}

.swami-kevalyanand-text::before {
  content: '';
  position: absolute;
  top: -1rem;
  left: -1rem;
  right: -1rem;
  bottom: -1rem;
  background: linear-gradient(
    135deg,
    rgba(138, 43, 226, 0.03) 0%,
    rgba(30, 144, 255, 0.03) 50%,
    rgba(138, 43, 226, 0.03) 100%
  );
  border-radius: 8px;
  z-index: -1;
  opacity: 0.5;
}

.swami-kevalyanand-text p {
  margin-bottom: 1.5rem;
  text-align: justify;
  position: relative;
  padding: 0.5rem 0;
}

.swami-kevalyanand-text p:last-child {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .swami-kevalyanand-banner {
    min-height: 50vh;
  }

  .swami-kevalyanand-banner__image {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
    min-height: 300px;
  }

  .swami-kevalyanand-page {
    padding: 2rem 1rem;
    margin-top: 1rem;
    border-radius: 12px;
  }

  .swami-kevalyanand-content {
    padding: 1.5rem;
  }

  .swami-kevalyanand-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .swami-kevalyanand-text {
    font-size: 1rem;
    line-height: 1.7;
  }

  .swami-kevalyanand-image-container {
    margin-bottom: 2rem;
  }

  .swami-kevalyanand-text p {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .swami-kevalyanand-banner {
    min-height: 40vh;
  }

  .swami-kevalyanand-banner__image {
    min-height: 250px;
  }

  .swami-kevalyanand-page {
    padding: 1.5rem 0.75rem;
    border-radius: 8px;
  }

  .swami-kevalyanand-content {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .swami-kevalyanand-banner {
    min-height: 35vh;
  }

  .swami-kevalyanand-page {
    padding: 1rem 0.5rem;
  }

  .swami-kevalyanand-title {
    font-size: 1.75rem;
  }

  .swami-kevalyanand-text {
    font-size: 0.9375rem;
  }
}


/**
 * Swami Nalinanand Giri Page Styles
 * 
 * Styles for the lineage page displaying information about
 * Pujya Shri Swami Nalinanand Giri ji Maharaj
 */

/* Banner Hero Section - Covers menu button area */
.swami-nalinanand-giri-banner {
  position: relative;
  width: 100%;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: -80px; /* Extend upward to cover header area */
  padding-top: 80px; /* Compensate for negative margin */
}

.swami-nalinanand-giri-banner__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.swami-nalinanand-giri-banner__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

/* Breadcrumb Section - Small Gap */
.swami-nalinanand-giri-breadcrumb-section {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.swami-nalinanand-giri-breadcrumb-section .breadcrumb {
  padding: 0.5rem 0 !important;
  margin: 0;
}

/* Content Section - 2-3 Line Gap After Breadcrumb */
.swami-nalinanand-giri-content-section {
  padding-top: 0 !important;
  margin-top: 0 !important;
  width: 100%;
}

.swami-nalinanand-giri-content-section .container-full {
  max-width: 100%;
  width: 100%;
  padding: 0;
}

.swami-nalinanand-giri-content-section .swami-nalinanand-giri-page {
  margin-top: 0;
  padding-top: 2.5rem; /* 2-3 line gap */
  width: 100%;
}

.swami-nalinanand-giri-page {
  width: 100%;
  position: relative;
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #fefefe 15%,
    #fefdfb 30%,
    #fefcf9 50%,
    #fefbf7 70%,
    #fefaf5 85%,
    #fef9f3 100%
  );
  padding: 3rem 4rem;
  border-radius: 0;
  box-shadow: none;
  margin-top: 0;
}

/* Subtle texture overlay - linen-like grain effect */
.swami-nalinanand-giri-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.015) 1px, transparent 0),
    radial-gradient(circle at 2px 2px, rgba(0, 0, 0, 0.01) 1px, transparent 0);
  background-size: 20px 20px, 40px 40px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.swami-nalinanand-giri-image-container {
  width: 100%;
  margin-top: 0;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}

.swami-nalinanand-giri-image-container::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: calc(100% + 20px);
  background: linear-gradient(
    135deg,
    rgba(138, 43, 226, 0.1) 0%,
    rgba(30, 144, 255, 0.1) 50%,
    rgba(138, 43, 226, 0.1) 100%
  );
  border-radius: 12px;
  z-index: -1;
  filter: blur(20px);
}

.swami-nalinanand-giri-image {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 600px;
  border-radius: 12px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.15),
    0 8px 24px rgba(138, 43, 226, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.swami-nalinanand-giri-image[style*="height: 100%"] {
  max-height: none;
  height: 100% !important;
}

.swami-nalinanand-giri-image:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 25px 70px rgba(0, 0, 0, 0.2),
    0 10px 30px rgba(138, 43, 226, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}

.swami-nalinanand-giri-content {
  width: 100%;
  max-width: 100%;
  position: relative;
  padding: 2rem 4rem;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 0.95) 100%
  );
  border-radius: 0;
  box-shadow: none;
}

.swami-nalinanand-giri-title {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    #1a1a1a 0%,
    #4a4a4a 50%,
    #1a1a1a 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  text-align: center;
  line-height: 1.2;
  position: relative;
  padding-bottom: 1rem;
}

.swami-nalinanand-giri-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(138, 43, 226, 0.5) 50%,
    transparent 100%
  );
  border-radius: 2px;
}

.swami-nalinanand-giri-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-color, #333);
  position: relative;
}

.swami-nalinanand-giri-text::before {
  content: '';
  position: absolute;
  top: -1rem;
  left: -1rem;
  right: -1rem;
  bottom: -1rem;
  background: linear-gradient(
    135deg,
    rgba(138, 43, 226, 0.03) 0%,
    rgba(30, 144, 255, 0.03) 50%,
    rgba(138, 43, 226, 0.03) 100%
  );
  border-radius: 8px;
  z-index: -1;
  opacity: 0.5;
}

.swami-nalinanand-giri-text p {
  margin-bottom: 1.5rem;
  text-align: justify;
  position: relative;
  padding: 0.5rem 0;
}

.swami-nalinanand-giri-text p:last-child {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .swami-nalinanand-giri-banner {
    min-height: 50vh;
  }

  .swami-nalinanand-giri-banner__image {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
    min-height: 300px;
  }

  .swami-nalinanand-giri-page {
    padding: 2rem 1rem;
    margin-top: 1rem;
    border-radius: 12px;
  }

  .swami-nalinanand-giri-content {
    padding: 1.5rem;
  }

  .swami-nalinanand-giri-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .swami-nalinanand-giri-text {
    font-size: 1rem;
    line-height: 1.7;
  }

  .swami-nalinanand-giri-image-container {
    margin-bottom: 2rem;
  }

  .swami-nalinanand-giri-text p {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .swami-nalinanand-giri-banner {
    min-height: 40vh;
  }

  .swami-nalinanand-giri-banner__image {
    min-height: 250px;
  }

  .swami-nalinanand-giri-page {
    padding: 1.5rem 0.75rem;
    border-radius: 8px;
  }

  .swami-nalinanand-giri-content {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .swami-nalinanand-giri-banner {
    min-height: 35vh;
  }

  .swami-nalinanand-giri-page {
    padding: 1rem 0.5rem;
  }

  .swami-nalinanand-giri-title {
    font-size: 1.75rem;
  }

  .swami-nalinanand-giri-text {
    font-size: 0.9375rem;
  }
}


/**
 * LoadingFallback Styles
 * 
 * Styles for the loading fallback component used in Suspense boundaries
 */

.loading-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  width: 100%;
  padding: 2rem;
}

.loading-fallback__spinner {
  margin-bottom: 1rem;
}

.loading-fallback__message {
  color: #666;
  font-size: 1rem;
  text-align: center;
}

/* Spinner animation */
.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #dc2626;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/**
 * Global Styles
 * 
 * This file contains:
 * - Tailwind CSS Directives
 * - CSS Reset
 * - CSS Variables (Design Tokens)
 * - Base Typography
 * - Common Element Styles
 */

/* Import Fonts - Must be at top */

/**
 * Custom Fonts - Radhika Das Style
 * 
 * @font-face declarations for downloaded fonts
 * Using Google Fonts CDN for reliable font loading
 * Fonts are loaded from Google Fonts CDN for optimal performance
 */

/* Cormorant Garamond - Elegant serif font for logo (Primary font for Eternal Voice) */

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjYrEPjU3qNdNDq8vT_Q.ttf') format('truetype');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjYrEPjU3qNdNDq8vT_Q.ttf') format('truetype');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjYrEPjU3qNdNDq8vT_Q.ttf') format('truetype');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjYrEPjU3qNdNDq8vT_Q.ttf') format('truetype');
}

/* Lora - Alternative elegant serif */

@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/lora/v32/0QI6MX1D_JOuGQbT0gvTJPa787weuxJFkq3Y.woff2') format('woff2');
}

@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/lora/v32/0QI6MX1D_JOuGQbT0gvTJPa787weuxJFkq3Y.woff2') format('woff2');
}

@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/lora/v32/0QI6MX1D_JOuGQbT0gvTJPa787weuxJFkq3Y.woff2') format('woff2');
}

@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/lora/v32/0QI6MX1D_JOuGQbT0gvTJPa787weuxJFkq3Y.woff2') format('woff2');
}

/* Crimson Pro - Classic serif */

@font-face {
  font-family: 'Crimson Pro';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabARboYF6CsKj.woff2') format('woff2');
}

@font-face {
  font-family: 'Crimson Pro';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabARboYF6CsKj.woff2') format('woff2');
}

@font-face {
  font-family: 'Crimson Pro';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabARboYF6CsKj.woff2') format('woff2');
}

/* Import Common Styles - Must be at top */

/**
 * Common Styles
 * 
 * Shared CSS styles used across the entire application.
 * This file contains common utility classes and shared styles.
 */

/* Common Utility Classes */

/* Text Utilities */

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-primary {
  color: var(--primary-color);
}

.text-secondary {
  color: var(--secondary-color);
}

.text-light {
  color: var(--text-light);
}

/* Spacing Utilities */

.mt-1 { margin-top: 0.5rem; }

.mt-2 { margin-top: 1rem; }

.mt-3 { margin-top: 1.5rem; }

.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }

.mb-2 { margin-bottom: 1rem; }

.mb-3 { margin-bottom: 1.5rem; }

.mb-4 { margin-bottom: 2rem; }

.pt-1 { padding-top: 0.5rem; }

.pt-2 { padding-top: 1rem; }

.pt-3 { padding-top: 1.5rem; }

.pt-4 { padding-top: 2rem; }

.pb-1 { padding-bottom: 0.5rem; }

.pb-2 { padding-bottom: 1rem; }

.pb-3 { padding-bottom: 1.5rem; }

.pb-4 { padding-bottom: 2rem; }

/* Display Utilities */

.d-flex {
  display: flex;
}

.d-grid {
  display: grid;
}

.d-block {
  display: block;
}

.d-inline-block {
  display: inline-block;
}

.d-none {
  display: none;
}

/* Flexbox Utilities */

.flex-column {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.align-center {
  align-items: center;
}

.align-start {
  align-items: flex-start;
}

.align-end {
  align-items: flex-end;
}

.gap-1 { gap: 0.5rem; }

.gap-2 { gap: 1rem; }

.gap-3 { gap: 1.5rem; }

.gap-4 { gap: 2rem; }

/* Width Utilities */

.w-full {
  width: 100%;
}

.w-auto {
  width: auto;
}

/* Common Animations */

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 0.3s ease;
}

.slide-in-up {
  animation: slideInUp 0.3s ease;
}

/* Common Transitions */

.transition {
  transition: all 0.3s ease;
}

.transition-fast {
  transition: all 0.15s ease;
}

.transition-slow {
  transition: all 0.5s ease;
}

/* Lenis Ultra-Smooth Scroll Styles */

html.lenis {
  height: auto;
}

html.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* Ensure body allows scrolling when Lenis is active */

html.lenis,
html.lenis body {
  height: auto;
}

html.lenis body {
  overflow: visible;
}

/* Ensure window scroll works with Lenis */

html.lenis {
  overflow-x: hidden;
}

/* GPU acceleration for ultra-smooth scrolling */

html.lenis,
html.lenis body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
}

/* Full-Page Snap Scrolling (Radhika Das Style) */

/* Note: We use Lenis for smooth scrolling, not CSS scroll-snap */

/* CSS scroll-snap conflicts with Lenis, so we handle snapping programmatically */

html {
  /* Remove scroll-behavior: smooth as Lenis handles this */
  scroll-behavior: auto;
  overflow-x: hidden;
  overflow-y: auto; /* Ensure page is scrollable */
  height: auto;
}

body {
  /* Remove scroll-snap-type as Lenis handles snapping */
  scroll-behavior: auto;
}

/* Smooth scroll container - allows all sections to stack */

.smooth-scroll-container {
  position: relative;
  width: 100%;
  /* Height will be determined by content (8 sections × 100vh) */
}

/* Snap scrolling for sections */

/* Note: Snap behavior is handled programmatically by Lenis, not CSS */

.snap-section {
  min-height: 100vh;
  height: 100vh;
  position: relative;
  /* GPU acceleration for ultra-smooth scrolling */
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  margin: 0;
  padding: 0;
}

/* First section (hero) - starts from absolute top */

.snap-section:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* First section background - starts from top */

.snap-section:first-child > div[class*="absolute"][class*="inset-0"][class*="z-0"] {
  top: 0 !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* First section image - starts from top */

.snap-section:first-child img {
  top: 0 !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Home page container - ensures sections stack vertically */

.home-page {
  position: relative;
  width: 100%;
  display: block;
}

/* Mobile optimizations for smooth scrolling */

@media (max-width: 767px) {
  /* Disable parallax on mobile for performance */
  .snap-section [style*="transform"] {
    transform: none !important;
  }
  
  /* Optimize scrolling performance on mobile */
  .snap-section {
    -webkit-overflow-scrolling: touch;
  }
}

/* Tailwind CSS Directives */

*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

/*! tailwindcss v3.4.19 | MIT License | https://tailwindcss.com
 */

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/

dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}

.\!container {
  width: 100% !important;
}

.container {
  width: 100%;
}

@media (min-width: 640px) {

  .\!container {
    max-width: 640px !important;
  }

  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {

  .\!container {
    max-width: 768px !important;
  }

  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {

  .\!container {
    max-width: 1024px !important;
  }

  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {

  .\!container {
    max-width: 1280px !important;
  }

  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {

  .\!container {
    max-width: 1536px !important;
  }

  .container {
    max-width: 1536px;
  }
}

.pointer-events-none {
  pointer-events: none;
}

.visible {
  visibility: visible;
}

.collapse {
  visibility: collapse;
}

.static {
  position: static;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.sticky {
  position: sticky;
}

.inset-0 {
  inset: 0px;
}

.bottom-0 {
  bottom: 0px;
}

.bottom-10 {
  bottom: 2.5rem;
}

.bottom-20 {
  bottom: 5rem;
}

.bottom-4 {
  bottom: 1rem;
}

.bottom-8 {
  bottom: 2rem;
}

.left-0 {
  left: 0px;
}

.left-1\/2 {
  left: 50%;
}

.left-10 {
  left: 2.5rem;
}

.left-20 {
  left: 5rem;
}

.right-0 {
  right: 0px;
}

.right-10 {
  right: 2.5rem;
}

.right-20 {
  right: 5rem;
}

.right-4 {
  right: 1rem;
}

.top-1\/2 {
  top: 50%;
}

.top-10 {
  top: 2.5rem;
}

.top-20 {
  top: 5rem;
}

.z-0 {
  z-index: 0;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.z-50 {
  z-index: 50;
}

.z-\[15\] {
  z-index: 15;
}

.z-\[5\] {
  z-index: 5;
}

.mx-4 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-7 {
  margin-bottom: 1.75rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.mr-3 {
  margin-right: 0.75rem;
}

.mr-4 {
  margin-right: 1rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-auto {
  margin-top: auto;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.table {
  display: table;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.aspect-\[4\/3\] {
  aspect-ratio: 4/3;
}

.h-10 {
  height: 2.5rem;
}

.h-12 {
  height: 3rem;
}

.h-2 {
  height: 0.5rem;
}

.h-3 {
  height: 0.75rem;
}

.h-32 {
  height: 8rem;
}

.h-40 {
  height: 10rem;
}

.h-48 {
  height: 12rem;
}

.h-6 {
  height: 1.5rem;
}

.h-64 {
  height: 16rem;
}

.h-auto {
  height: auto;
}

.h-full {
  height: 100%;
}

.w-1 {
  width: 0.25rem;
}

.w-12 {
  width: 3rem;
}

.w-2 {
  width: 0.5rem;
}

.w-32 {
  width: 8rem;
}

.w-40 {
  width: 10rem;
}

.w-48 {
  width: 12rem;
}

.w-6 {
  width: 1.5rem;
}

.w-64 {
  width: 16rem;
}

.w-full {
  width: 100%;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-5xl {
  max-width: 64rem;
}

.max-w-6xl {
  max-width: 72rem;
}

.max-w-7xl {
  max-width: 80rem;
}

.max-w-full {
  max-width: 100%;
}

.max-w-md {
  max-width: 28rem;
}

.flex-grow {
  flex-grow: 1;
}

.grow {
  flex-grow: 1;
}

.-translate-x-1\/2 {
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-translate-y-1\/2 {
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-y-0 {
  --tw-translate-y: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

@keyframes pulse {

  50% {
    opacity: .5;
  }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.cursor-pointer {
  cursor: pointer;
}

.resize {
  resize: both;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.flex-col {
  flex-direction: column;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.gap-12 {
  gap: 3rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.space-y-3 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-y-auto {
  overflow-y: auto;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-3xl {
  border-radius: 1.5rem;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.border {
  border-width: 1px;
}

.border-2 {
  border-width: 2px;
}

.border-blue-600 {
  --tw-border-opacity: 1;
  border-color: rgb(37 99 235 / var(--tw-border-opacity, 1));
}

.border-white {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}

.border-white\/10 {
  border-color: rgb(255 255 255 / 0.1);
}

.border-white\/20 {
  border-color: rgb(255 255 255 / 0.2);
}

.border-white\/30 {
  border-color: rgb(255 255 255 / 0.3);
}

.border-white\/40 {
  border-color: rgb(255 255 255 / 0.4);
}

.bg-black\/30 {
  background-color: rgb(0 0 0 / 0.3);
}

.bg-black\/60 {
  background-color: rgb(0 0 0 / 0.6);
}

.bg-blue-500\/10 {
  background-color: rgb(59 130 246 / 0.1);
}

.bg-blue-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}

.bg-gray-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}

.bg-gray-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}

.bg-purple-500\/10 {
  background-color: rgb(168 85 247 / 0.1);
}

.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.bg-white\/10 {
  background-color: rgb(255 255 255 / 0.1);
}

.bg-white\/15 {
  background-color: rgb(255 255 255 / 0.15);
}

.bg-white\/20 {
  background-color: rgb(255 255 255 / 0.2);
}

.bg-white\/30 {
  background-color: rgb(255 255 255 / 0.3);
}

.bg-white\/40 {
  background-color: rgb(255 255 255 / 0.4);
}

.bg-white\/5 {
  background-color: rgb(255 255 255 / 0.05);
}

.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}

.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.bg-gradient-to-t {
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
}

.from-black\/20 {
  --tw-gradient-from: rgb(0 0 0 / 0.2) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-black\/30 {
  --tw-gradient-from: rgb(0 0 0 / 0.3) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-black\/50 {
  --tw-gradient-from: rgb(0 0 0 / 0.5) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-black\/70 {
  --tw-gradient-from: rgb(0 0 0 / 0.7) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-black\/80 {
  --tw-gradient-from: rgb(0 0 0 / 0.8) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-blue-600 {
  --tw-gradient-from: #2563eb var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(37 99 235 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-gray-200 {
  --tw-gradient-from: #e5e7eb var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(229 231 235 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-indigo-900 {
  --tw-gradient-from: #312e81 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(49 46 129 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-pink-600 {
  --tw-gradient-from: #db2777 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(219 39 119 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-purple-500 {
  --tw-gradient-from: #a855f7 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(168 85 247 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-purple-600 {
  --tw-gradient-from: #9333ea var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(147 51 234 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-purple-900 {
  --tw-gradient-from: #581c87 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(88 28 135 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-purple-900\/20 {
  --tw-gradient-from: rgb(88 28 135 / 0.2) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(88 28 135 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-white {
  --tw-gradient-from: #fff var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-yellow-400 {
  --tw-gradient-from: #facc15 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(250 204 21 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-yellow-500 {
  --tw-gradient-from: #eab308 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(234 179 8 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.via-black\/20 {
  --tw-gradient-to: rgb(0 0 0 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), rgb(0 0 0 / 0.2) var(--tw-gradient-via-position), var(--tw-gradient-to);
}

.via-black\/50 {
  --tw-gradient-to: rgb(0 0 0 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), rgb(0 0 0 / 0.5) var(--tw-gradient-via-position), var(--tw-gradient-to);
}

.via-blue-900 {
  --tw-gradient-to: rgb(30 58 138 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a var(--tw-gradient-via-position), var(--tw-gradient-to);
}

.via-gray-300 {
  --tw-gradient-to: rgb(209 213 219 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #d1d5db var(--tw-gradient-via-position), var(--tw-gradient-to);
}

.via-orange-500 {
  --tw-gradient-to: rgb(249 115 22 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #f97316 var(--tw-gradient-via-position), var(--tw-gradient-to);
}

.via-purple-100 {
  --tw-gradient-to: rgb(243 232 255 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #f3e8ff var(--tw-gradient-via-position), var(--tw-gradient-to);
}

.via-purple-900 {
  --tw-gradient-to: rgb(88 28 135 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #581c87 var(--tw-gradient-via-position), var(--tw-gradient-to);
}

.via-transparent {
  --tw-gradient-to: rgb(0 0 0 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), transparent var(--tw-gradient-via-position), var(--tw-gradient-to);
}

.to-black\/70 {
  --tw-gradient-to: rgb(0 0 0 / 0.7) var(--tw-gradient-to-position);
}

.to-blue-500 {
  --tw-gradient-to: #3b82f6 var(--tw-gradient-to-position);
}

.to-blue-900\/20 {
  --tw-gradient-to: rgb(30 58 138 / 0.2) var(--tw-gradient-to-position);
}

.to-cyan-600 {
  --tw-gradient-to: #0891b2 var(--tw-gradient-to-position);
}

.to-gray-400 {
  --tw-gradient-to: #9ca3af var(--tw-gradient-to-position);
}

.to-gray-50 {
  --tw-gradient-to: #f9fafb var(--tw-gradient-to-position);
}

.to-indigo-600 {
  --tw-gradient-to: #4f46e5 var(--tw-gradient-to-position);
}

.to-indigo-900 {
  --tw-gradient-to: #312e81 var(--tw-gradient-to-position);
}

.to-orange-500 {
  --tw-gradient-to: #f97316 var(--tw-gradient-to-position);
}

.to-pink-500 {
  --tw-gradient-to: #ec4899 var(--tw-gradient-to-position);
}

.to-pink-600 {
  --tw-gradient-to: #db2777 var(--tw-gradient-to-position);
}

.to-pink-900 {
  --tw-gradient-to: #831843 var(--tw-gradient-to-position);
}

.to-purple-600 {
  --tw-gradient-to: #9333ea var(--tw-gradient-to-position);
}

.to-rose-600 {
  --tw-gradient-to: #e11d48 var(--tw-gradient-to-position);
}

.to-transparent {
  --tw-gradient-to: transparent var(--tw-gradient-to-position);
}

.to-white {
  --tw-gradient-to: #fff var(--tw-gradient-to-position);
}

.bg-clip-text {
  -webkit-background-clip: text;
          background-clip: text;
}

.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.p-12 {
  padding: 3rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.pb-16 {
  padding-bottom: 4rem;
}

.text-center {
  text-align: center;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-5xl {
  font-size: 3rem;
  line-height: 1;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.font-bold {
  font-weight: 700;
}

.font-light {
  font-weight: 300;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.capitalize {
  text-transform: capitalize;
}

.italic {
  font-style: italic;
}

.leading-relaxed {
  line-height: 1.625;
}

.tracking-tight {
  letter-spacing: -0.025em;
}

.tracking-wide {
  letter-spacing: 0.025em;
}

.tracking-wider {
  letter-spacing: 0.05em;
}

.text-blue-600 {
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}

.text-gray-100 {
  --tw-text-opacity: 1;
  color: rgb(243 244 246 / var(--tw-text-opacity, 1));
}

.text-gray-200 {
  --tw-text-opacity: 1;
  color: rgb(229 231 235 / var(--tw-text-opacity, 1));
}

.text-gray-300 {
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity, 1));
}

.text-gray-600 {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}

.text-gray-700 {
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}

.text-gray-900 {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}

.text-transparent {
  color: transparent;
}

.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.text-white\/60 {
  color: rgb(255 255 255 / 0.6);
}

.text-white\/85 {
  color: rgb(255 255 255 / 0.85);
}

.text-white\/90 {
  color: rgb(255 255 255 / 0.9);
}

.text-yellow-400 {
  --tw-text-opacity: 1;
  color: rgb(250 204 21 / var(--tw-text-opacity, 1));
}

.opacity-0 {
  opacity: 0;
}

.opacity-10 {
  opacity: 0.1;
}

.opacity-100 {
  opacity: 1;
}

.opacity-30 {
  opacity: 0.3;
}

.shadow-2xl {
  --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-md {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-xl {
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.outline {
  outline-style: solid;
}

.blur {
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.blur-2xl {
  --tw-blur: blur(40px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.blur-3xl {
  --tw-blur: blur(64px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.drop-shadow-lg {
  --tw-drop-shadow: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.backdrop-blur-sm {
  --tw-backdrop-blur: blur(4px);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

.backdrop-blur-xl {
  --tw-backdrop-blur: blur(24px);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.duration-500 {
  transition-duration: 500ms;
}

.duration-700 {
  transition-duration: 700ms;
}

.ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

/* CSS Reset */

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

/**
 * CSS Variables (Design Tokens)
 * 
 * These variables are used throughout the application for consistent theming.
 * Update these values to change the overall color scheme.
 */

:root {
  /* Primary Colors */
  --primary-color: #2563eb;
  --secondary-color: #1e40af;
  
  /* Text Colors */
  --text-color: #1f2937;
  --text-light: #6b7280;
  --text-dark: #111827;
  
  /* Background Colors */
  --bg-color: #ffffff;
  --bg-light: #f9fafb;
  --bg-dark: #1f2937;
  
  /* Border Colors */
  --border-color: #e5e7eb;
  --border-dark: #d1d5db;
  
  /* Shadow Utilities */
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Base Typography - Radhika Das Style */

body {
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.6;
  overflow-x: hidden;
  overflow-y: auto; /* Ensure page is scrollable */
  font-weight: 400;
  /* overflow-y will be managed by Lenis when active, but allow fallback scrolling */
}

/* Headings use elegant serif font */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Inter', serif;
  font-weight: 500;
  letter-spacing: -0.02em;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

/* Common Element Styles */

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--primary-color);
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* OptimizedImage Mobile Responsive Styles */

.optimized-image-responsive {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  -o-object-position: center center !important;
     object-position: center center !important;
  display: block !important;
}

/* Mobile - Ensure images are properly sized */

@media (max-width: 768px) {
  /* Only apply contain for Swami ji images on mobile */
  .join-journey__image-wrapper img.optimized-image-responsive,
  .about-story__image-wrapper img.optimized-image-responsive {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    -o-object-fit: contain !important;
       object-fit: contain !important;
    -o-object-position: center center !important;
       object-position: center center !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
  }

  .optimized-image-responsive {
    min-height: 300px !important;
    width: 100% !important;
    height: auto !important;
    max-height: 100vh !important;
    -o-object-fit: cover !important;
       object-fit: cover !important;
    -o-object-position: center center !important;
       object-position: center center !important;
  }
}

/* Small Mobile - Enhanced image responsiveness */

@media (max-width: 480px) {
  /* Only apply contain for Swami ji images on mobile */
  .join-journey__image-wrapper img.optimized-image-responsive,
  .about-story__image-wrapper img.optimized-image-responsive {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    -o-object-fit: contain !important;
       object-fit: contain !important;
    -o-object-position: center center !important;
       object-position: center center !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
  }

  .optimized-image-responsive {
    min-height: 250px !important;
    width: 100% !important;
    height: auto !important;
    max-height: 100vh !important;
    -o-object-fit: cover !important;
       object-fit: cover !important;
    -o-object-position: center center !important;
       object-position: center center !important;
  }
}

/* Tawk.to Chat Widget - Positioned in Header Section */

#tawkchat-container {
  position: fixed !important;
  top: 80px !important;
  right: 20px !important;
  bottom: auto !important;
  left: auto !important;
  z-index: 1001 !important;
  width: auto !important;
  height: auto !important;
}

#tawkchat-container iframe {
  position: fixed !important;
  top: 80px !important;
  right: 20px !important;
  bottom: auto !important;
  left: auto !important;
  z-index: 1001 !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

/* Tawk.to widget button/bubble */

#tawkchat-minifiedBox {
  position: fixed !important;
  top: 80px !important;
  right: 20px !important;
  bottom: auto !important;
  left: auto !important;
  z-index: 1001 !important;
}

/* Mobile adjustments */

@media (max-width: 768px) {
  #tawkchat-container {
    top: 70px !important;
    right: 15px !important;
  }

  #tawkchat-container iframe {
    top: 70px !important;
    right: 15px !important;
  }

  #tawkchat-minifiedBox {
    top: 70px !important;
    right: 15px !important;
  }
}

.hover\:scale-105:hover {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:bg-blue-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
}

.hover\:bg-blue-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(29 78 216 / var(--tw-bg-opacity, 1));
}

.hover\:bg-gray-300:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1));
}

.hover\:bg-white\/20:hover {
  background-color: rgb(255 255 255 / 0.2);
}

.hover\:bg-white\/25:hover {
  background-color: rgb(255 255 255 / 0.25);
}

.hover\:bg-white\/60:hover {
  background-color: rgb(255 255 255 / 0.6);
}

.hover\:from-blue-700:hover {
  --tw-gradient-from: #1d4ed8 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(29 78 216 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.hover\:from-purple-700:hover {
  --tw-gradient-from: #7e22ce var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(126 34 206 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.hover\:from-yellow-600:hover {
  --tw-gradient-from: #ca8a04 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(202 138 4 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.hover\:to-cyan-700:hover {
  --tw-gradient-to: #0e7490 var(--tw-gradient-to-position);
}

.hover\:to-indigo-700:hover {
  --tw-gradient-to: #4338ca var(--tw-gradient-to-position);
}

.hover\:to-orange-600:hover {
  --tw-gradient-to: #ea580c var(--tw-gradient-to-position);
}

.hover\:text-purple-200:hover {
  --tw-text-opacity: 1;
  color: rgb(233 213 255 / var(--tw-text-opacity, 1));
}

.hover\:shadow-2xl:hover {
  --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:shadow-xl:hover {
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:shadow-purple-500\/50:hover {
  --tw-shadow-color: rgb(168 85 247 / 0.5);
  --tw-shadow: var(--tw-shadow-colored);
}

.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:ring-2:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus\:ring-blue-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity, 1));
}

.focus\:ring-gray-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(107 114 128 / var(--tw-ring-opacity, 1));
}

.focus\:ring-white\/50:focus {
  --tw-ring-color: rgb(255 255 255 / 0.5);
}

.focus\:ring-offset-2:focus {
  --tw-ring-offset-width: 2px;
}

.disabled\:cursor-not-allowed:disabled {
  cursor: not-allowed;
}

.disabled\:opacity-50:disabled {
  opacity: 0.5;
}

.group:hover .group-hover\:translate-x-1 {
  --tw-translate-x: 0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group:hover .group-hover\:translate-x-2 {
  --tw-translate-x: 0.5rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group:hover .group-hover\:translate-y-0 {
  --tw-translate-y: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group:hover .group-hover\:scale-110 {
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group:hover .group-hover\:text-purple-200 {
  --tw-text-opacity: 1;
  color: rgb(233 213 255 / var(--tw-text-opacity, 1));
}

@media (min-width: 640px) {

  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sm\:flex-row {
    flex-direction: row;
  }

  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 768px) {

  .md\:right-8 {
    right: 2rem;
  }

  .md\:flex {
    display: flex;
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:p-12 {
    padding: 3rem;
  }

  .md\:p-16 {
    padding: 4rem;
  }

  .md\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .md\:pb-20 {
    padding-bottom: 5rem;
  }

  .md\:pb-24 {
    padding-bottom: 6rem;
  }

  .md\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .md\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }

  .md\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }

  .md\:text-7xl {
    font-size: 4.5rem;
    line-height: 1;
  }

  .md\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .md\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1024px) {

  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:gap-16 {
    gap: 4rem;
  }

  .lg\:gap-8 {
    gap: 2rem;
  }

  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .lg\:py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .lg\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .lg\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .lg\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .lg\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }

  .lg\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }

  .lg\:text-7xl {
    font-size: 4.5rem;
    line-height: 1;
  }

  .lg\:text-8xl {
    font-size: 6rem;
    line-height: 1;
  }

  .lg\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

