/* Admin Panel Custom Styles */

.admin-footer {
  border-top: 1px solid rgba(67, 89, 113, 0.075);
  background-color: #ffffff !important;
  transition: all 0.3s ease;
}

.admin-footer .footer-link {
  font-weight: 500;
  transition: color 0.2s ease-in-out, transform 0.2s ease-in-out;
  display: inline-flex;
  align-items: center;
}

.admin-footer .footer-link:hover {
  color: #696cff !important;
  transform: translateY(-1px);
}

.admin-footer .footer-link i {
  font-size: 1.1rem;
  transition: transform 0.2s ease-in-out;
}

.admin-footer .footer-link:hover i {
  transform: scale(1.15);
}

.heart-beat {
  display: inline-block;
  color: #ff3e1d;
  animation: heartBeat 1.2s infinite;
}

@keyframes heartBeat {
  0% {
    transform: scale(1);
  }

  14% {
    transform: scale(1.12);
  }

  28% {
    transform: scale(1);
  }

  42% {
    transform: scale(1.12);
  }

  70% {
    transform: scale(1);
  }
}

/* Dark mode compatibility */
.dark-style .admin-footer {
  background-color: #2b2c40 !important;
  border-top-color: rgba(255, 255, 255, 0.05);
}

/* Fixed footer adjustments */
.layout-footer-fixed .content-wrapper {
  padding-bottom: 74px;
}

.layout-footer-fixed .admin-footer {
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
  z-index: 10;
  /* Ensures it stays visible relative to content */
}

/* Base adjustment for desktop (when sidebar is open) */
@media (min-width: 1200px) {
  .layout-menu-fixed.layout-footer-fixed .admin-footer {
    left: 16.25rem !important;
  }

  /* When sidebar is collapsed on desktop */
  .layout-menu-collapsed.layout-footer-fixed .admin-footer {
    left: 5rem !important;
    /* Width of the collapsed sidebar */
  }
}

/* For lg devices if sidebar is somehow fixed/open */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .layout-menu-fixed.layout-footer-fixed .admin-footer {
    left: 16.25rem !important;
  }

  .layout-menu-collapsed.layout-footer-fixed .admin-footer {
    left: 5rem !important;
  }
}

/* On smaller devices (<992px), the sidebar is an overlay, so footer starts at 0 */
@media (max-width: 991.98px) {
  .layout-footer-fixed .admin-footer {
    left: 0 !important;
  }
}

/* Override uppercase branding text to capitalize only the first letters */
.app-brand-text {
  text-transform: capitalize !important;
}

/* ========================================= */
/* Web Frontend Custom Styles (Multi-page) */
/* ========================================= */

.page-header {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  position: relative;
  overflow: hidden;
  padding-top: 130px !important;
  /* Clear the fixed navbar */
  padding-bottom: 60px !important;
}

.page-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg opacity="0.05" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><polygon fill="white" points="0,100 100,0 100,100"/></svg>') no-repeat bottom right;
  background-size: cover;
  pointer-events: none;
}

/* Navbar active state (unscrolled & scrolled) */
.navbar-nav .nav-link.active {
  color: var(--coral) !important;
  font-weight: 700;
}

/* Utilities for new pages matching home page */
.text-coral {
  color: var(--coral) !important;
}

.bg-coral {
  background-color: var(--coral) !important;
}

.border-coral {
  border-color: var(--coral) !important;
}

/* About Page Unique Layout Styles */
.about-image-wrapper {
  padding-bottom: 2rem;
  padding-right: 2rem;
}

.about-image-wrapper .about-shape-1 {
  width: 300px;
  height: 300px;
  top: -30px;
  right: -10px;
  z-index: 1;
}

.experience-badge {
  bottom: 0;
  right: 0;
  width: 180px;
  border-top: 4px solid var(--coral);
  animation: float 4s ease-in-out infinite;
}

.z-index-2 {
  z-index: 2;
}

.z-index-3 {
  z-index: 3;
}

.feature-item {
  transition: transform 0.3s ease, background 0.3s ease;
  padding: 1rem;
  border-radius: 12px;
  background: transparent;
}

.feature-item:hover {
  transform: translateX(10px);
  background: rgba(255, 127, 80, 0.04);
}

.tracking-wide {
  letter-spacing: 2px;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* ========================================= */
/* Responsive Custom Layout Styles           */
/* ========================================= */

@media (max-width: 991.98px) {
  .page-header {
    padding-top: 100px !important;
    padding-bottom: 40px !important;
  }

  .display-4 {
    font-size: 2.5rem;
  }

  .display-5 {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  .about-image-wrapper {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .about-image-wrapper .about-shape-1 {
    width: 200px;
    height: 200px;
    top: -20px;
    right: 0;
  }

  .experience-badge {
    width: 140px;
    padding: 15px !important;
  }

  .experience-badge h2 {
    font-size: 1.8rem;
  }

  .experience-badge span {
    font-size: 0.75rem;
  }

  .page-header .display-4 {
    font-size: 2rem;
  }

  .page-header .lead {
    font-size: 1rem;
  }

  .d-flex.feature-item {
    flex-direction: column;
    text-align: center;
  }

  .d-flex.feature-item .ms-4 {
    margin-left: 0 !important;
    margin-top: 1rem;
  }

  .d-flex.feature-item .icon-box {
    margin: 0 auto;
  }
}

/* ========================================= */
/* Admin UI Pro-Responsive Layout Styles     */
/* ========================================= */

@media (max-width: 991.98px) {

  /* Adjust layout for smaller screens */
  .layout-page {
    padding-top: 0 !important;
  }

  /* Tables inside cards */
  .card .table-responsive {
    border-radius: 0;
    margin-bottom: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Form input sizing */
  .form-control,
  .form-select {
    font-size: 16px !important;
    /* Prevents iOS zoom on focus */
  }
}

@media (max-width: 767.98px) {

  /* Smaller padding on mobile for content */
  .container-p-y {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .container-xxl {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  /* Card adjustments */
  .card-header,
  .card-body {
    padding: 1.25rem 1rem !important;
  }

  /* Buttons */
  .btn-sm-block {
    display: block;
    width: 100%;
    margin-bottom: 0.5rem;
  }

  /* Datatable pagination and search responsive */
  .dataTables_wrapper .row {
    margin-left: 0;
    margin-right: 0;
  }

  .dataTables_wrapper .col-sm-12 {
    padding: 0;
  }

  div.dataTables_wrapper div.dataTables_filter input {
    width: 100%;
    margin-left: 0;
    margin-top: 0.5rem;
  }
}

/* ========================================= */
/* Event Module Styles (Admin & Web)         */
/* ========================================= */

/* Admin Table & Form Image Previews */
.admin-table-img {
  width: 55px;
  height: 55px;
  object-fit: cover;
  border: 1px solid rgba(67, 89, 113, 0.15);
}

.admin-preview-img {
  width: 120px;
  height: 80px;
  object-fit: cover;
}

/* Frontend Event Cards */
.event-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border-radius: 1rem;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(255, 127, 80, 0.15) !important;
}

.event-img-wrap {
  overflow: hidden;
  height: 220px;
  background-color: #f8f9fa;
}

.event-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-card:hover .event-card-img {
  transform: scale(1.08);
}

/* Date Badge */
.event-date-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--coral, #ff7f50);
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 2;
  min-width: 58px;
}

.event-date-badge .event-day {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
}

.event-date-badge .event-month {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-detail-badge {
  top: 20px;
  left: 20px;
  padding: 10px 18px;
}

.event-detail-badge .event-day {
  font-size: 1.5rem;
}

.event-detail-badge .event-month {
  font-size: 0.85rem;
}

/* Event Metadata */
.event-title {
  font-size: 1.25rem;
  line-height: 1.4;
}

.event-meta-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: #6c757d;
}

.event-meta-item {
  display: flex;
  align-items: center;
}

.hover-coral {
  transition: color 0.2s ease;
}

.hover-coral:hover {
  color: var(--coral, #ff7f50) !important;
}

/* Event Detail Page */
.event-detail-cover {
  max-height: 440px;
  object-fit: cover;
  border-radius: 1rem;
}

.info-icon-box {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.event-body-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #495057;
}

.sidebar-event-thumb {
  width: 75px;
  height: 60px;
  object-fit: cover;
  flex-shrink: 0;
}

.max-w-500 {
  max-width: 500px;
}

/* ========================================= */
/* Roles & Permissions Management Styles     */
/* ========================================= */

.permission-module-card {
  border: 1px solid #e7e7e8;
  border-radius: 0.5rem;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  background-color: #fff;
  height: 100%;
}

.permission-module-card:hover {
  border-color: #696cff;
  box-shadow: 0 4px 14px rgba(105, 108, 255, 0.08);
}

.permission-module-header {
  padding: 0.85rem 1.15rem;
  background: #f8f9fa;
  border-bottom: 1px solid #eceef1;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.permission-module-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: #384551;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.permission-module-body {
  padding: 1rem 1.15rem;
}

.permission-checkbox-item {
  padding: 0.45rem 0.5rem;
  border-radius: 0.35rem;
  transition: background-color 0.15s ease;
}

.permission-checkbox-item:hover {
  background-color: #f5f5f9;
}

.permission-checkbox-item .form-check-label {
  cursor: pointer;
}

.permission-desc-text {
  font-size: 0.75rem;
  color: #a1acb8;
  margin-top: 0.1rem;
}

.role-badge {
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 0.35em 0.7em;
}

.user-avatar-sm {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e9ecef;
}

.table-user-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.karyakarta-preview-img {
  max-width: 130px;
  max-height: 130px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px dashed #696cff;
  margin-top: 10px;
}

.karyakarta-preview {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #e9ecef;
}

.badge-status {
  font-size: 12px;
  padding: 5px 12px;
}

.karyakarta-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
}

.karyakarta-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(255, 127, 80, 0.15) !important;
}

/* Karyakarta Admin Table UI */
.karyakarta-avatar-wrap {
  display: inline-flex;
  position: relative;
}

.karyakarta-avatar-img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(67, 89, 113, 0.15);
}

.karyakarta-contact-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: #566a7f;
  margin-bottom: 0.2rem;
}

.karyakarta-contact-item a {
  color: #566a7f;
  text-decoration: none;
  transition: color 0.2s ease;
}

.karyakarta-contact-item a:hover {
  color: #696cff;
}

.karyakarta-social-icons {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.karyakarta-social-btn {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 13px;
  background: #f5f5f9;
  color: #697a8d;
  transition: all 0.2s ease;
}

.karyakarta-social-btn:hover {
  background: #696cff;
  color: #fff;
  transform: translateY(-2px);
}

.karyakarta-order-badge {
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.3em 0.7em;
  border-radius: 6px;
  background: #f1f1f5;
  color: #566a7f;
}

/* ========================================= */
/* Jangarna (Census) Module Styles           */
/* ========================================= */

.jangarna-family-row {
  background: #fcfdfe;
  border: 1px solid #e8edf3;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 12px;
  position: relative;
  transition: all 0.2s ease;
}

.jangarna-family-row:hover {
  border-color: #696cff;
  box-shadow: 0 2px 8px rgba(105, 108, 255, 0.08);
}

.jangarna-detail-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(67, 89, 113, 0.2);
}

.jangarna-web-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 16px;
  background: #ffffff;
}

.jangarna-web-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(255, 127, 80, 0.12) !important;
}

.jangarna-gotra-badge {
  background-color: rgba(255, 127, 80, 0.12);
  color: var(--coral, #ff7f50);
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

.family-count-badge {
  background: #f0f4f9;
  color: #495057;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.82rem;
}

.admin-table-img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #e7e7e8;
  background-color: #f8f9fa;
  display: inline-block;
}

.gallery-thumb {
  width: 60px;
  height: 45px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #e7e7e8;
  background-color: #f8f9fa;
}

.slider-preview {
  width: 80px;
  height: 45px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #e7e7e8;
  background-color: #f8f9fa;
}

.user-avatar-sm {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid #e7e7e8;
}

/* Matrimony Module Custom Styles */
.hover-scale {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hover-scale:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.admin-avatar-show {
  width: 110px;
  height: 110px;
  border: 3px solid #e7e7e8;
  border-radius: 50%;
  padding: 2px;
}

.admin-thumb-preview {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #e7e7e8;
}

/* ============================================================
   ADMIN TABLET & MOBILE RESPONSIVENESS
   ============================================================ */
@media (max-width: 1199.98px) {
  .table-responsive table {
    min-width: 850px;
  }
}

@media (max-width: 991.98px) {
  .table-responsive {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
  }

  .table-responsive table {
    min-width: 800px;
  }

  .card-header .d-flex {
    flex-wrap: wrap;
  }

  .card-header form {
    width: 100%;
    margin-top: 10px;
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {

  /* Tablet Status Cards Grid */
  .admin-status-grid .col-6 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

@media print {

  #layout-menu,
  .layout-navbar,
  .footer,
  .btn,
  .d-flex.gap-2 {
    display: none !important;
  }

  .content-wrapper {
    padding: 0 !important;
  }

  .card {
    box-shadow: none !important;
    border: 1px solid #ddd !important;
  }
}

/* ============================================================
   GALLERY PAGE CUSTOM STYLES
   ============================================================ */
.gallery-overview-section {
  background-color: #fcf8f6;
}

.gallery-highlight-card {
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(230, 81, 0, 0.08);
}

.gallery-highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(230, 81, 0, 0.12) !important;
}

.gallery-highlight-icon {
  width: 60px;
  height: 60px;
  font-size: 24px;
}

.gallery-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.gallery-filter-btn {
  background-color: #f4f5f7;
  color: #4a5568;
  border: 1px solid #e2e8f0;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s ease;
  cursor: pointer;
}

.gallery-filter-btn:hover {
  background-color: #fff1eb;
  color: var(--coral, #ff5722);
  border-color: var(--coral, #ff5722);
}

.gallery-filter-btn.active {
  background-color: var(--coral, #ff5722);
  color: #ffffff;
  border-color: var(--coral, #ff5722);
  box-shadow: 0 6px 16px rgba(255, 87, 34, 0.3);
}

.gallery-photo-card {
  border: 1px solid #edf2f7;
  transition: all 0.35s ease;
}

.gallery-photo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08) !important;
}

.gallery-photo-img-wrap {
  aspect-ratio: 4 / 3;
  background-color: #f1f5f9;
}

.gallery-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-photo-card:hover .gallery-photo-img {
  transform: scale(1.08);
}

.gallery-photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.65);
  opacity: 0;
  backdrop-filter: blur(2px);
  transition: opacity 0.3s ease;
}

.gallery-photo-card:hover .gallery-photo-overlay {
  opacity: 1;
}

.gallery-zoom-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: transform 0.2s ease;
}

.gallery-zoom-btn:hover {
  transform: scale(1.15);
}

.gallery-cta-section {
  background: linear-gradient(135deg, var(--coral, #ff5722) 0%, var(--coral-dark, #e64a19) 100%);
}

.gallery-modal-img {
  max-height: 75vh;
  object-fit: contain;
}

/* ============================================================
   VYAPAR / BUSINESS DIRECTORY PAGE CUSTOM STYLES
   ============================================================ */
.vyapar-countdown-section {
  background-color: #ffffff;
}

.vyapar-pill-stat {
  font-size: 13px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.vyapar-feature-card {
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.vyapar-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(255, 87, 34, 0.12) !important;
}

.vyapar-card-icon {
  width: 65px;
  height: 65px;
  font-size: 26px;
}

.vyapar-cat-box {
  transition: all 0.3s ease;
  border: 1px solid #e9ecef !important;
}

.vyapar-cat-box:hover {
  transform: translateY(-5px);
  border-color: var(--coral, #ff5722) !important;
  background-color: #fff9f6 !important;
  box-shadow: 0 10px 24px rgba(255, 87, 34, 0.08);
}

.vyapar-form-section .card {
  border-radius: 20px;
}

/* ============================================================
   PREMIUM HEADER & NAVBAR CUSTOM STYLES
   ============================================================ */

/* Main Navbar */
.main-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 12px 0;
  background: rgba(18, 20, 32, 0.90) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.main-navbar.scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(20px);
  padding: 8px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* Brand */
/* Brand */
.main-navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar-logo {
  height: 50px;
  width: 50px;
  object-fit: cover;
  border-radius: 50%;
  background: #ffffff;
  padding: 2px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.navbar-brand:hover .navbar-logo {
  transform: scale(1.05);
}

.brand-info {
  line-height: 1.2;
}

.brand-title {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.2px;
  transition: color 0.3s ease;
}

.brand-tagline {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}

.main-navbar.scrolled .brand-title {
  color: #1a1a2e;
}

.main-navbar.scrolled .brand-tagline {
  color: #6c757d;
}

/* Navbar Links */
.main-navbar .navbar-nav {
  gap: 4px;
}

.main-navbar .nav-link {
  color: rgba(255, 255, 255, 0.92) !important;
  font-weight: 600;
  font-size: 14.5px;
  padding: 8px 12px !important;
  border-radius: 8px;
  white-space: nowrap !important;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

@media (min-width: 992px) and (max-width: 1200px) {
  .brand-title {
    font-size: 0.95rem;
  }

  .brand-tagline {
    font-size: 0.65rem;
  }

  .main-navbar .nav-link {
    font-size: 13.5px;
    padding: 6px 9px !important;
  }

  .btn-nav-join {
    font-size: 12.5px !important;
    padding: 7px 14px !important;
  }
}

.main-navbar .nav-link::after {
  display: none !important;
}

.nav-arrow {
  font-size: 10px;
  transition: transform 0.25s ease;
  opacity: 0.7;
  display: inline-block;
  margin-left: 4px;
}

.custom-nav-dropdown:hover .nav-arrow,
.custom-nav-dropdown.show .nav-arrow,
.dropdown-toggle[aria-expanded="true"] .nav-arrow {
  transform: rotate(180deg);
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link:focus {
  color: var(--coral, #ff7f50) !important;
  background: rgba(255, 255, 255, 0.08);
}

.main-navbar .nav-link.active {
  color: var(--coral, #ff7f50) !important;
  background: rgba(255, 127, 80, 0.12);
  font-weight: 700;
}

.main-navbar.scrolled .nav-link {
  color: #2c2c2c !important;
}

.main-navbar.scrolled .nav-link:hover,
.main-navbar.scrolled .nav-link:focus {
  color: var(--coral, #ff7f50) !important;
  background: #fff5f0;
}

.main-navbar.scrolled .nav-link.active {
  color: var(--coral, #ff7f50) !important;
  background: rgba(255, 127, 80, 0.12);
}

/* Dropdown Menus */
@media (min-width: 992px) {
  .custom-nav-dropdown {
    position: relative;
  }

  .custom-nav-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: block !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
    min-width: 300px;
    border-radius: 16px;
    padding: 10px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12) !important;
    pointer-events: none;
    margin-top: 0;
  }

  /* Bridge to prevent hover gap flickering */
  .custom-nav-dropdown .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
  }

  .custom-nav-dropdown:hover>.dropdown-menu,
  .custom-nav-dropdown .dropdown-menu:hover,
  .custom-nav-dropdown.show>.dropdown-menu,
  .custom-nav-dropdown .dropdown-menu.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
  }

  .custom-nav-dropdown .dropdown-menu-end {
    left: auto;
    right: 0;
    min-width: 200px;
  }
}

.custom-nav-dropdown .dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  transition: all 0.2s ease;
  text-decoration: none;
  color: #2c2c2c;
  white-space: nowrap;
}

.custom-nav-dropdown .dropdown-item:hover {
  background: #fff5f0;
  color: var(--coral, #ff7f50);
  transform: translateX(4px);
}

.custom-nav-dropdown .dropdown-item.active {
  background: rgba(255, 127, 80, 0.12);
  color: var(--coral-dark, #e86835);
  font-weight: 600;
}

.drop-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #fff0eb;
  color: var(--coral, #ff7f50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.custom-nav-dropdown .dropdown-item:hover .drop-icon {
  background: var(--coral, #ff7f50);
  color: #ffffff;
}

.drop-title {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.3;
  display: flex;
  align-items: center;
}

.custom-nav-dropdown .dropdown-item:hover .drop-title {
  color: var(--coral, #ff7f50);
}

.drop-desc {
  font-size: 11.5px;
  color: #718096;
  line-height: 1.2;
  margin-top: 1px;
}

/* Vyapar Glow Badge */
.vyapar-badge-glow {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #ffffff;
  font-size: 9.5px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.35);
  text-transform: uppercase;
}

/* Language Switcher */
.lang-btn {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 30px !important;
  padding: 6px 14px !important;
  font-size: 13.5px;
  color: #ffffff !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.main-navbar.scrolled .lang-btn {
  border-color: #e2e8f0;
  color: #2c2c2c !important;
}

.lang-nav-item .dropdown-menu {
  min-width: 170px;
  padding: 6px;
}

.lang-nav-item .dropdown-item {
  padding: 8px 12px;
  font-size: 13.5px;
  border-radius: 8px;
}

/* Nav Join Action Button */
.btn-nav-join {
  background: linear-gradient(135deg, var(--coral, #ff7f50) 0%, var(--coral-dark, #e86835) 100%);
  color: #ffffff !important;
  padding: 9px 20px !important;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(255, 127, 80, 0.35);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  white-space: nowrap !important;
  text-decoration: none;
  margin-left: 6px;
}

.btn-nav-join:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 127, 80, 0.5);
  background: linear-gradient(135deg, var(--coral-dark, #e86835) 0%, var(--coral, #ff7f50) 100%);
  color: #ffffff !important;
}

/* Mobile Navigation */
@media (max-width: 991.98px) {
  .main-navbar {
    padding: 10px 0 !important;
    background: rgba(18, 20, 32, 0.97) !important;
  }

  .main-navbar .navbar-toggler {
    border: 1.5px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 10px !important;
    color: #ffffff !important;
    padding: 7px 12px !important;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: none !important;
  }

  .main-navbar.scrolled .navbar-toggler {
    border-color: var(--coral, #ff7f50) !important;
    color: var(--coral, #ff7f50) !important;
    background: #fff5f0 !important;
  }

  .main-navbar .navbar-collapse {
    background: #181a27 !important;
    border-radius: 16px !important;
    padding: 16px !important;
    margin-top: 14px !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45) !important;
    max-height: 75vh !important;
    overflow-y: auto !important;
  }

  .main-navbar.scrolled .navbar-collapse {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12) !important;
  }

  .main-navbar .navbar-nav {
    gap: 6px !important;
  }

  .main-navbar .nav-link {
    color: rgba(255, 255, 255, 0.92) !important;
    font-size: 15px !important;
    padding: 11px 16px !important;
    width: 100% !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 8px !important;
  }

  .main-navbar .nav-link i.d-lg-none {
    color: var(--coral, #ff7f50) !important;
    width: 22px;
    text-align: center;
    font-size: 15px;
  }

  .main-navbar .nav-link .nav-arrow {
    margin-left: auto !important;
    font-size: 11px;
    opacity: 0.75;
  }

  .main-navbar .nav-link:hover,
  .main-navbar .nav-link:focus {
    color: var(--coral, #ff7f50) !important;
    background: rgba(255, 255, 255, 0.08) !important;
  }

  .main-navbar .nav-link.active {
    color: #ffffff !important;
    background: linear-gradient(135deg, rgba(255, 127, 80, 0.3) 0%, rgba(232, 104, 53, 0.2) 100%) !important;
    border-left: 4px solid var(--coral, #ff7f50) !important;
    font-weight: 700 !important;
  }

  /* Scrolled State for Nav Links */
  .main-navbar.scrolled .nav-link {
    color: #2c2c2c !important;
  }

  .main-navbar.scrolled .nav-link:hover,
  .main-navbar.scrolled .nav-link:focus {
    color: var(--coral, #ff7f50) !important;
    background: #fff5f0 !important;
  }

  .main-navbar.scrolled .nav-link.active {
    color: var(--coral, #ff7f50) !important;
    background: rgba(255, 127, 80, 0.12) !important;
    border-left: 4px solid var(--coral, #ff7f50) !important;
  }

  /* Dropdown Menus in Mobile */
  .custom-nav-dropdown .dropdown-menu {
    position: static !important;
    float: none !important;
    width: 100% !important;
    display: none;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 12px !important;
    padding: 8px !important;
    margin: 6px 0 8px 0 !important;
  }

  .custom-nav-dropdown .dropdown-menu.show {
    display: block !important;
  }

  .main-navbar.scrolled .custom-nav-dropdown .dropdown-menu {
    background: #f8fafc !important;
    border: 1px solid #edf2f7 !important;
  }

  .custom-nav-dropdown .dropdown-item {
    color: rgba(255, 255, 255, 0.88) !important;
    padding: 9px 12px !important;
    border-radius: 8px !important;
    gap: 10px !important;
  }

  .custom-nav-dropdown .dropdown-item:hover,
  .custom-nav-dropdown .dropdown-item:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    color: var(--coral, #ff7f50) !important;
    transform: none !important;
  }

  .custom-nav-dropdown .dropdown-item.active {
    background: rgba(255, 127, 80, 0.22) !important;
    color: var(--coral, #ff7f50) !important;
  }

  .main-navbar.scrolled .custom-nav-dropdown .dropdown-item {
    color: #2c2c2c !important;
  }

  .main-navbar.scrolled .custom-nav-dropdown .dropdown-item:hover,
  .main-navbar.scrolled .custom-nav-dropdown .dropdown-item:focus {
    background: #fff5f0 !important;
    color: var(--coral, #ff7f50) !important;
  }

  .main-navbar.scrolled .custom-nav-dropdown .dropdown-item.active {
    background: rgba(255, 127, 80, 0.12) !important;
    color: var(--coral-dark, #e86835) !important;
  }

  .drop-title {
    color: #ffffff !important;
    font-size: 13.5px !important;
  }

  .main-navbar.scrolled .drop-title {
    color: #1a1a2e !important;
  }

  .drop-desc {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 11.5px !important;
  }

  .main-navbar.scrolled .drop-desc {
    color: #64748b !important;
  }

  .drop-icon {
    width: 34px !important;
    height: 34px !important;
    font-size: 13.5px !important;
    background: rgba(255, 127, 80, 0.18) !important;
    color: var(--coral, #ff7f50) !important;
  }

  .main-navbar.scrolled .drop-icon {
    background: #fff0eb !important;
    color: var(--coral, #ff7f50) !important;
  }

  /* Language Switcher in Mobile */
  .lang-btn {
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    width: 100% !important;
    justify-content: flex-start !important;
    padding: 10px 16px !important;
    border-radius: 10px !important;
    font-size: 14.5px !important;
  }

  .lang-btn .nav-arrow {
    margin-left: auto !important;
  }

  .main-navbar.scrolled .lang-btn {
    border-color: #e2e8f0 !important;
    color: #2c2c2c !important;
  }

  .lang-nav-item .dropdown-menu {
    background: rgba(255, 255, 255, 0.05) !important;
  }

  .main-navbar.scrolled .lang-nav-item .dropdown-menu {
    background: #f8fafc !important;
  }

  .nav-action-item {
    margin-top: 10px !important;
    padding-top: 12px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  }

  .main-navbar.scrolled .nav-action-item {
    border-top-color: #e2e8f0 !important;
  }

  .btn-nav-join {
    width: 100% !important;
    justify-content: center !important;
    margin-left: 0 !important;
    padding: 12px 20px !important;
    font-size: 15px !important;
    box-sizing: border-box !important;
  }
}

/* ============================================================
   PREMIUM HOMEPAGE VISUAL ENHANCEMENTS
   ============================================================ */

/* ---------- Section Header Polish ---------- */
.section-header .section-subtitle {
  background: linear-gradient(135deg, rgba(255, 127, 80, 0.12), rgba(255, 160, 122, 0.12)) !important;
  border: 1px solid rgba(255, 127, 80, 0.25) !important;
  color: var(--coral, #ff7f50) !important;
  padding: 6px 22px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  font-size: 13px !important;
  text-transform: uppercase !important;
  display: inline-flex !important;
  align-items: center !important;
  box-shadow: 0 2px 10px rgba(255, 127, 80, 0.08) !important;
}

.section-header .section-title {
  font-weight: 800 !important;
  letter-spacing: -0.5px !important;
  color: #1a1a2e !important;
  margin-top: 8px !important;
}

.section-header .section-title span {
  background: linear-gradient(135deg, #ff7f50 0%, #e86835 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

/* ---------- 1. Hero Slider Polish (Fit Image Correctly & Transparent Overlay) ---------- */
.hero-slider {
  margin-top: 90px !important;
  height: calc(85vh - 76px) !important;
  min-height: 520px !important;
  max-height: 800px !important;
  position: relative !important;
  width: 100% !important;
  overflow: hidden !important;
}

@media (max-width: 991.98px) {
  .hero-slider {
    margin-top: 68px !important;
    height: calc(75vh - 68px) !important;
    min-height: 450px !important;
  }
}

.hero-slide-bg {
  position: absolute !important;
  inset: 0 !important;
  background-size: cover !important;
  background-position: center top !important;
  background-repeat: no-repeat !important;
  transform: none !important;
  transition: opacity 1s ease-in-out !important;
}

.hero-slide.active .hero-slide-bg {
  transform: none !important;
}

.hero-slide-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(180deg,
      rgba(17, 19, 30, 0.28) 0%,
      rgba(17, 19, 30, 0.08) 45%,
      rgba(17, 19, 30, 0.45) 100%) !important;
  z-index: 2 !important;
}

.hero-slide-content {
  position: absolute !important;
  inset: 0 !important;
  z-index: 3 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 80px 20px 50px !important;
}

.hero-slide-content .hero-subtitle {
  background: rgba(15, 23, 42, 0.45) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  padding: 8px 24px !important;
  border-radius: 50px !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  letter-spacing: 3px !important;
  font-weight: 700 !important;
  color: #ff9e79 !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25) !important;
}

.hero-slide-content h1 {
  font-weight: 800 !important;
  letter-spacing: -0.5px !important;
  color: #ffffff !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8), 0 4px 30px rgba(0, 0, 0, 0.6) !important;
  margin-bottom: 16px !important;
}

.hero-slide-content p {
  color: rgba(255, 255, 255, 0.95) !important;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.8) !important;
  font-weight: 500 !important;
  max-width: 720px !important;
  margin: 0 auto 28px !important;
}

.hero-arrow {
  background: rgba(255, 255, 255, 0.15) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
  color: #ffffff !important;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.hero-arrow:hover {
  background: linear-gradient(135deg, #ff7f50, #e86835) !important;
  border-color: #ff7f50 !important;
  transform: translateY(-50%) scale(1.1) !important;
  box-shadow: 0 10px 30px rgba(255, 127, 80, 0.5) !important;
}

.hero-dots {
  position: absolute !important;
  bottom: 25px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 10 !important;
}

.hero-dot {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  border: 2px solid rgba(255, 255, 255, 0.6) !important;
  background: rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
  transition: all 0.35s ease !important;
}

.hero-dot.active {
  width: 32px !important;
  border-radius: 20px !important;
  background: linear-gradient(135deg, #ff7f50, #ffa07a) !important;
  border-color: transparent !important;
  box-shadow: 0 0 16px rgba(255, 127, 80, 0.7) !important;
}

.scroll-indicator {
  display: none !important;
}

/* ---------- 2. About Section Polish ---------- */
.about-section {
  background: radial-gradient(circle at 10% 20%, rgba(255, 127, 80, 0.04) 0%, transparent 50%), radial-gradient(circle at 90% 80%, rgba(255, 160, 122, 0.04) 0%, transparent 50%), #ffffff !important;
  position: relative;
}

.about-img-wrapper {
  border-radius: 24px !important;
  overflow: hidden !important;
  box-shadow: 0 20px 45px rgba(26, 26, 46, 0.12) !important;
  border: 4px solid #ffffff !important;
  position: relative !important;
}

.about-img-wrapper img {
  border-radius: 20px !important;
}

.about-img-wrapper .about-badge {
  background: linear-gradient(135deg, #ff7f50 0%, #e86835 100%) !important;
  border-radius: 18px !important;
  padding: 18px 24px !important;
  box-shadow: 0 12px 30px rgba(232, 104, 53, 0.4) !important;
  border: 2px solid rgba(255, 255, 255, 0.25) !important;
  backdrop-filter: blur(8px) !important;
}

.about-content h2 {
  font-weight: 800 !important;
  letter-spacing: -0.5px !important;
  color: #1a1a2e !important;
  line-height: 1.25 !important;
}

.about-content h2 span {
  background: linear-gradient(135deg, #ff7f50 0%, #e86835 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.about-features {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  margin: 24px 0 !important;
}

.about-feature-item {
  background: #fff9f6 !important;
  border: 1px solid rgba(255, 127, 80, 0.15) !important;
  border-radius: 14px !important;
  padding: 12px 18px !important;
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.about-feature-item:hover {
  transform: translateX(8px) !important;
  background: #ffffff !important;
  box-shadow: 0 8px 22px rgba(255, 127, 80, 0.12) !important;
  border-color: var(--coral, #ff7f50) !important;
}

.about-feature-item i {
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #ff7f50, #e86835) !important;
  color: #ffffff !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 12px !important;
  flex-shrink: 0 !important;
  box-shadow: 0 4px 10px rgba(255, 127, 80, 0.3) !important;
}

.about-feature-item span {
  font-weight: 600 !important;
  color: #2c2c2c !important;
  font-size: 15px !important;
}

/* ---------- 3. Counter Statistics Polish ---------- */
.counter-section {
  background: linear-gradient(135deg, #131524 0%, #1c1e33 50%, #151728 100%) !important;
  position: relative !important;
  overflow: hidden !important;
}

.counter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255, 127, 80, 0.08) 0%, transparent 60%), radial-gradient(circle at 80% 70%, rgba(255, 160, 122, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.counter-item {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 20px !important;
  padding: 32px 20px !important;
  backdrop-filter: blur(10px) !important;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  text-align: center !important;
  margin-bottom: 20px !important;
}

.counter-item:hover {
  transform: translateY(-8px) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 127, 80, 0.4) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 127, 80, 0.15) !important;
}

.counter-icon {
  width: 65px !important;
  height: 65px !important;
  border-radius: 18px !important;
  background: linear-gradient(135deg, rgba(255, 127, 80, 0.2), rgba(255, 160, 122, 0.1)) !important;
  border: 1px solid rgba(255, 127, 80, 0.3) !important;
  color: var(--coral, #ff7f50) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 26px !important;
  margin: 0 auto 16px !important;
  transition: all 0.3s ease !important;
}

.counter-item:hover .counter-icon {
  background: linear-gradient(135deg, #ff7f50, #e86835) !important;
  color: #ffffff !important;
  transform: scale(1.1) !important;
  box-shadow: 0 8px 20px rgba(255, 127, 80, 0.4) !important;
}

.counter-number {
  font-size: 42px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  letter-spacing: -1px !important;
}

.counter-suffix {
  font-size: 32px !important;
  font-weight: 800 !important;
  color: var(--coral, #ff7f50) !important;
}

.counter-label {
  font-size: 15px !important;
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 600 !important;
  margin-top: 6px !important;
  letter-spacing: 0.5px !important;
}

/* ---------- 4. Events Cards Polish ---------- */
.events-home-section {
  background: #fdf8f5 !important;
}

.event-card {
  border-radius: 20px !important;
  border: 1px solid rgba(255, 127, 80, 0.08) !important;
  background: #ffffff !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04) !important;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.event-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 40px rgba(255, 127, 80, 0.15) !important;
  border-color: rgba(255, 127, 80, 0.25) !important;
}

.event-img-wrap {
  height: 230px !important;
  border-radius: 18px 18px 0 0 !important;
  overflow: hidden !important;
}

.event-date-badge {
  background: linear-gradient(135deg, #ff7f50 0%, #e86835 100%) !important;
  border-radius: 14px !important;
  box-shadow: 0 6px 16px rgba(232, 104, 53, 0.35) !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
}

/* ---------- 5. Gallery Grid Polish ---------- */
.gallery-section {
  background: #ffffff !important;
}

.gallery-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
  gap: 24px !important;
}

.gallery-item {
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06) !important;
  transition: all 0.35s ease !important;
  position: relative !important;
  aspect-ratio: 4 / 3 !important;
  background: #f1f5f9 !important;
}

.gallery-item:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 18px 40px rgba(255, 127, 80, 0.18) !important;
}

.gallery-item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.gallery-item:hover img {
  transform: scale(1.08) !important;
}

.gallery-overlay {
  background: linear-gradient(to top, rgba(17, 19, 30, 0.92) 0%, rgba(17, 19, 30, 0.4) 60%, transparent 100%) !important;
  backdrop-filter: blur(2px) !important;
}

.gallery-icon {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  background: var(--coral, #ff7f50) !important;
  color: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 18px !important;
  box-shadow: 0 6px 20px rgba(255, 127, 80, 0.5) !important;
}

.gallery-cat {
  background: rgba(255, 127, 80, 0.3) !important;
  border: 1px solid rgba(255, 127, 80, 0.5) !important;
  color: #ffffff !important;
  padding: 4px 12px !important;
  border-radius: 20px !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
}

/* ---------- 6. Team Cards Polish ---------- */
.team-section {
  background: #fdf8f5 !important;
}

.team-card {
  border-radius: 22px !important;
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  padding: 20px !important;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.04) !important;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  text-align: center !important;
}

.team-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 40px rgba(255, 127, 80, 0.14) !important;
  border-color: rgba(255, 127, 80, 0.25) !important;
}

.team-img {
  border-radius: 18px !important;
  overflow: hidden !important;
  aspect-ratio: 1 / 1 !important;
  position: relative !important;
  margin-bottom: 16px !important;
  background: #f8fafc !important;
}

.team-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.5s ease !important;
}

.team-card:hover .team-img img {
  transform: scale(1.06) !important;
}

.team-info h4 {
  font-size: 17px !important;
  font-weight: 700 !important;
  color: #1a1a2e !important;
  margin-bottom: 4px !important;
}

.team-info span {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--coral, #ff7f50) !important;
  background: #fff2ec !important;
  padding: 4px 12px !important;
  border-radius: 20px !important;
  display: inline-block !important;
  margin-bottom: 6px !important;
}

/* ---------- 7. Contact Cards Polish ---------- */
.contact-section {
  background: #ffffff !important;
}

.contact-card {
  border-radius: 22px !important;
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  padding: 36px 24px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04) !important;
  text-align: center !important;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  height: 100% !important;
}

.contact-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 45px rgba(255, 127, 80, 0.14) !important;
  border-color: rgba(255, 127, 80, 0.3) !important;
}

.contact-icon {
  width: 70px !important;
  height: 70px !important;
  border-radius: 20px !important;
  background: linear-gradient(135deg, #fff0eb, #ffe4d9) !important;
  color: var(--coral, #ff7f50) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 28px !important;
  margin: 0 auto 20px !important;
  transition: all 0.3s ease !important;
}

.contact-card:hover .contact-icon {
  background: linear-gradient(135deg, #ff7f50, #e86835) !important;
  color: #ffffff !important;
  transform: scale(1.08) !important;
  box-shadow: 0 8px 25px rgba(255, 127, 80, 0.35) !important;
}

.contact-card h5 {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #1a1a2e !important;
  margin-bottom: 12px !important;
}

.contact-card p {
  color: #64748b !important;
  line-height: 1.6 !important;
  margin-bottom: 0 !important;
}

.contact-card a {
  color: #475569 !important;
  font-weight: 500 !important;
  transition: color 0.2s ease !important;
}

.contact-card a:hover {
  color: var(--coral, #ff7f50) !important;
}

.contact-map {
  border-radius: 22px !important;
  overflow: hidden !important;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08) !important;
  border: 4px solid #ffffff !important;
  margin-top: 40px !important;
}

.contact-map iframe {
  width: 100% !important;
  height: 400px !important;
  border: 0 !important;
  display: block !important;
}

/* ============================================================
   ABOUT US PAGE STYLES
   ============================================================ */
.header-badge span {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.max-w-700 {
  max-width: 700px;
}

.about-page-section {
  background: radial-gradient(circle at 5% 10%, rgba(255, 127, 80, 0.04) 0%, transparent 40%), radial-gradient(circle at 95% 90%, rgba(255, 160, 122, 0.04) 0%, transparent 40%), #ffffff;
  position: relative;
  overflow: hidden;
}

.about-main-img {
  height: 480px;
  object-fit: cover;
  border-radius: 24px !important;
  border: 4px solid #ffffff;
  box-shadow: 0 20px 45px rgba(26, 26, 46, 0.12) !important;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-image-wrapper:hover .about-main-img {
  transform: scale(1.03);
}

.badge-num-glow {
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ff7f50 0%, #e86835 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.about-tag-badge {
  background: linear-gradient(135deg, rgba(255, 127, 80, 0.1), rgba(255, 160, 122, 0.1));
  border: 1px solid rgba(255, 127, 80, 0.25);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
}

.about-main-title {
  font-weight: 800;
  color: #1a1a2e;
  letter-spacing: -0.5px;
  line-height: 1.25;
}

.about-lead-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #475569 !important;
}

.about-pillar-card {
  background: #ffffff !important;
  border: 1px solid rgba(255, 127, 80, 0.1) !important;
  border-radius: 22px !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04) !important;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  position: relative;
  overflow: hidden;
}

.about-pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff7f50, #ffa07a);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-pillar-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 40px rgba(255, 127, 80, 0.14) !important;
  border-color: rgba(255, 127, 80, 0.3) !important;
}

.about-pillar-card:hover::before {
  opacity: 1;
}

.pillar-icon-box {
  width: 65px;
  height: 65px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff0eb, #ffe4d9);
  color: var(--coral, #ff7f50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(255, 127, 80, 0.15);
}

.about-pillar-card:hover .pillar-icon-box {
  background: linear-gradient(135deg, #ff7f50, #e86835);
  color: #ffffff;
  transform: scale(1.08);
  box-shadow: 0 8px 25px rgba(255, 127, 80, 0.35);
}

.pillar-title {
  color: #1a1a2e;
  font-size: 1.25rem;
}

.pillar-desc {
  line-height: 1.7;
  color: #64748b !important;
}

/* ============================================================
   GLOBAL INNER PAGES PREMIUM STYLING
   ============================================================ */

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #181a28 0%, #22263d 50%, #1a1d30 100%) !important;
  position: relative !important;
  overflow: hidden !important;
  padding-top: 140px !important;
  padding-bottom: 70px !important;
  border-bottom: 1px solid rgba(255, 127, 80, 0.15) !important;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255, 127, 80, 0.15) 0%, transparent 60%), radial-gradient(circle at 80% 70%, rgba(255, 160, 122, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.page-header .display-4 {
  font-weight: 800 !important;
  letter-spacing: -0.5px !important;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
}

.page-header .lead {
  font-size: 1.15rem !important;
  max-width: 700px !important;
  margin: 0 auto !important;
  color: rgba(255, 255, 255, 0.8) !important;
}

/* ---------- Events Page ---------- */
.events-section {
  background: #fdf8f5;
}

.event-card {
  border-radius: 22px !important;
  border: 1px solid rgba(255, 127, 80, 0.08) !important;
  background: #ffffff !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04) !important;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.event-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 45px rgba(255, 127, 80, 0.15) !important;
  border-color: rgba(255, 127, 80, 0.3) !important;
}

.event-img-wrap {
  height: 230px !important;
  border-radius: 20px 20px 0 0 !important;
  overflow: hidden !important;
}

.event-card-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.5s ease !important;
}

.event-card:hover .event-card-img {
  transform: scale(1.08) !important;
}

.event-date-badge {
  position: absolute !important;
  top: 15px !important;
  left: 15px !important;
  background: linear-gradient(135deg, #ff7f50 0%, #e86835 100%) !important;
  color: #ffffff !important;
  padding: 8px 14px !important;
  border-radius: 14px !important;
  text-align: center !important;
  box-shadow: 0 6px 16px rgba(232, 104, 53, 0.35) !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  z-index: 2 !important;
  min-width: 58px !important;
}

.event-meta-item {
  display: flex !important;
  align-items: center !important;
  font-size: 0.9rem !important;
  color: #64748b !important;
  margin-bottom: 6px !important;
}

.empty-events-box {
  background: #ffffff !important;
  border-radius: 24px !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
}

/* ---------- Team Page & Section ---------- */
.team-page-section,
.team-section {
  background: radial-gradient(circle at 10% 10%, rgba(255, 127, 80, 0.04) 0%, transparent 40%), radial-gradient(circle at 90% 90%, rgba(255, 160, 122, 0.04) 0%, transparent 40%), #fdf8f5;
  position: relative;
  overflow: hidden;
}

.team-grid-card,
.team-card {
  border-radius: 20px !important;
  background: #ffffff !important;
  border: 1px solid rgba(255, 127, 80, 0.14) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04) !important;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  overflow: hidden !important;
  position: relative !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
}

.team-grid-card:hover,
.team-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 16px 36px rgba(255, 127, 80, 0.16) !important;
  border-color: rgba(255, 127, 80, 0.35) !important;
}

.team-card-img-wrap,
.team-img {
  border-radius: 20px 20px 0 0 !important;
  overflow: hidden !important;
  aspect-ratio: 1 / 1 !important;
  position: relative !important;
  background: #f8fafc !important;
  width: 100% !important;
}

.team-card-img,
.team-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: top center !important;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.team-grid-card:hover .team-card-img,
.team-card:hover .team-img img {
  transform: scale(1.06) !important;
}

.team-card-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(to top, rgba(17, 19, 30, 0.85) 0%, rgba(17, 19, 30, 0.25) 50%, transparent 100%) !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.3s ease !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: center !important;
  padding-bottom: 18px !important;
  backdrop-filter: blur(2px) !important;
  z-index: 2 !important;
}

.team-grid-card:hover .team-card-overlay,
.team-card:hover .team-card-overlay {
  opacity: 1 !important;
  pointer-events: auto !important;
}

.team-card-social-links,
.team-social {
  display: flex !important;
  gap: 10px !important;
  transform: translateY(12px) !important;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.team-grid-card:hover .team-card-social-links,
.team-card:hover .team-card-social-links,
.team-card:hover .team-social {
  transform: translateY(0) !important;
}

.team-social-btn,
.team-social a {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  color: var(--coral, #ff7f50) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 15px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
  transition: all 0.25s ease !important;
  text-decoration: none !important;
}

.team-social-btn:hover,
.team-social a:hover {
  background: var(--coral, #ff7f50) !important;
  color: #ffffff !important;
  transform: translateY(-3px) scale(1.08) !important;
  box-shadow: 0 6px 16px rgba(255, 127, 80, 0.45) !important;
}

.team-card-body,
.team-info {
  padding: 22px 18px !important;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  flex-grow: 1 !important;
}

.team-card-name,
.team-info h4 {
  font-size: 1.2rem !important;
  font-weight: 800 !important;
  color: #1a1a2e !important;
  letter-spacing: -0.2px !important;
  margin-bottom: 8px !important;
  line-height: 1.35 !important;
}

.team-role-pill,
.team-info>span {
  background: linear-gradient(135deg, #fff0eb, #ffe4d9) !important;
  color: var(--coral-dark, #d9531e) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  padding: 5px 14px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(255, 127, 80, 0.25) !important;
  letter-spacing: 0.3px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  line-height: 1.4 !important;
  margin-bottom: 12px !important;
  text-align: center !important;
  max-width: 95% !important;
  box-shadow: 0 2px 6px rgba(255, 127, 80, 0.06) !important;
}

.team-role-pill i {
  font-size: 12px !important;
  flex-shrink: 0 !important;
}

.team-card-desc,
.team-info p {
  font-size: 13.5px !important;
  line-height: 1.65 !important;
  color: #556270 !important;
  text-align: center !important;
  margin-top: 2px !important;
  margin-bottom: 0 !important;
}

.team-card-desc strong {
  font-weight: 700 !important;
  color: #1e293b !important;
}

.team-card-footer {
  margin-top: auto !important;
  padding-top: 12px !important;
  border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
  width: 100% !important;
}

.font-12 {
  font-size: 12px !important;
}

.team-cta-card {
  background: #ffffff !important;
  border: 1px solid rgba(255, 127, 80, 0.18) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
  max-width: 800px !important;
  border-radius: 24px !important;
}

/* ---------- Global Coral Button Variants ---------- */
.btn-coral {
  background: linear-gradient(135deg, #ff7f50, #ff6347) !important;
  color: #ffffff !important;
  border: 2px solid transparent !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 15px rgba(255, 127, 80, 0.35) !important;
  transition: all 0.3s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  text-decoration: none !important;
}

.btn-coral:hover,
.btn-coral:focus {
  background: linear-gradient(135deg, #e86835, #ff5722) !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(255, 127, 80, 0.5) !important;
}

.btn-outline-coral {
  background: transparent !important;
  color: #ff7f50 !important;
  border: 2px solid #ff7f50 !important;
  font-weight: 700 !important;
  transition: all 0.3s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  text-decoration: none !important;
}

.btn-outline-coral:hover,
.btn-outline-coral:focus {
  background: #ff7f50 !important;
  color: #ffffff !important;
  border-color: #ff7f50 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 18px rgba(255, 127, 80, 0.35) !important;
}

/* Hero Section outline button on dark background */
.hero-slider .btn-outline-coral,
.hero-slide .btn-outline-coral,
.page-header .btn-outline-coral {
  color: #ffffff !important;
  border: 2px solid rgba(255, 255, 255, 0.8) !important;
  background: transparent !important;
}

.hero-slider .btn-outline-coral:hover,
.hero-slide .btn-outline-coral:hover,
.page-header .btn-outline-coral:hover {
  background: #ffffff !important;
  color: #ff7f50 !important;
  border-color: #ffffff !important;
}

/* ---------- Karyakarta Page ---------- */
.karyakarta-section {
  background: #fdf8f5;
}

.karyakarta-card {
  border-radius: 22px !important;
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04) !important;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.karyakarta-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 40px rgba(255, 127, 80, 0.15) !important;
  border-color: rgba(255, 127, 80, 0.3) !important;
}

.karyakarta-card img {
  border: 3px solid var(--coral, #ff7f50) !important;
  padding: 3px !important;
  transition: transform 0.3s ease !important;
}

.karyakarta-card:hover img {
  transform: scale(1.08) !important;
}

/* ---------- Members Page ---------- */
.members-section {
  background: #ffffff;
}

.members-section .card {
  border-radius: 22px !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04) !important;
  transition: all 0.35s ease !important;
}

.members-section .card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 18px 36px rgba(255, 127, 80, 0.12) !important;
  border-color: rgba(255, 127, 80, 0.25) !important;
}

.avatar-circle {
  width: 75px !important;
  height: 75px !important;
  border-radius: 50% !important;
  border: 3px solid #fff0eb !important;
  box-shadow: 0 4px 12px rgba(255, 127, 80, 0.15) !important;
}

/* ---------- Contact Page ---------- */
.contact-info {
  border-radius: 24px !important;
  background: linear-gradient(135deg, #181a28 0%, #20243a 100%) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12) !important;
}

.contact-info h3,
.contact-info h5 {
  color: #ffffff !important;
}

.contact-info .text-muted {
  color: rgba(255, 255, 255, 0.75) !important;
}

.contact-info .icon-box {
  background: linear-gradient(135deg, #ff7f50, #e86835) !important;
  box-shadow: 0 6px 16px rgba(255, 127, 80, 0.4) !important;
}

.contact-form {
  border-radius: 24px !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05) !important;
}

.contact-form .form-control {
  border-radius: 12px !important;
  border: 1px solid #e2e8f0 !important;
  padding: 12px 16px !important;
  font-size: 15px !important;
  transition: all 0.25s ease !important;
}

.contact-form .form-control:focus {
  border-color: var(--coral, #ff7f50) !important;
  box-shadow: 0 0 0 4px rgba(255, 127, 80, 0.15) !important;
}

/* Admin About Page Custom Styles */
.preview-img {
  max-width: 200px;
  max-height: 120px;
  object-fit: contain;
  border: 2px dashed #d9dee3;
  border-radius: 8px;
  padding: 8px;
  margin-top: 10px;
  background-color: #fcfdfd;
}

.about-lang-tab .nav-link {
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px 8px 0 0;
}

.about-lang-tab .nav-link.active {
  background-color: #696cff;
  color: #fff !important;
}

.lang-badge-hi {
  background-color: #ffefe5;
  color: #e86835;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
}

.lang-badge-en {
  background-color: #e8f4fd;
  color: #0d6efd;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
}

/* ==========================================================================
   GRAND WEBSITE LAUNCH / LUNCH CEREMONY PAGE STYLES (ULTRA-PREMIUM)
   ========================================================================== */
.launch-body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  width: 100vw;
  overflow: hidden;
  position: relative;
  background: radial-gradient(ellipse at center, #1f0b35 0%, #120420 50%, #06010a 100%);
  color: #ffffff;
  font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

/* Background Canvas for Golden Stars, Sparks & Flower Petals */
#launch-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Sacred Mandala Aura Background */
.launch-mandala-bg {
  position: absolute;
  width: 800px;
  height: 800px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  opacity: 0.18;
  animation: mandalaSpin 60s linear infinite;
  background-image: radial-gradient(circle, transparent 30%, #ffd700 31%, transparent 32%),
    radial-gradient(circle, transparent 50%, #ff9100 51%, transparent 52%),
    radial-gradient(circle, transparent 70%, #ffd700 71%, transparent 72%);
  border-radius: 50%;
}

.launch-mandala-svg {
  width: 100%;
  height: 100%;
  fill: #ffd700;
}

@keyframes mandalaSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Radial Glow Ambient Lights */
.launch-ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: 0.5;
  z-index: 1;
  animation: launchGlowPulse 6s ease-in-out infinite alternate;
}

.launch-ambient-glow-1 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, #ff6d00, #d50000);
  top: -120px;
  left: -120px;
}

.launch-ambient-glow-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #aa00ff, #4a148c);
  bottom: -140px;
  right: -140px;
  animation-delay: -3s;
}

.launch-ambient-glow-3 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, #ffd700, #ff6f00);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.3;
}

@keyframes launchGlowPulse {
  0% {
    transform: scale(0.88) translate(0, 0);
    opacity: 0.4;
  }

  100% {
    transform: scale(1.18) translate(25px, -25px);
    opacity: 0.7;
  }
}

/* Royal Curtains with Velvet Texture */
.curtain-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  pointer-events: auto;
  cursor: pointer;
  display: flex;
}

.curtain-panel {
  width: 50%;
  height: 100%;
  position: relative;
  transition: transform 2s cubic-bezier(0.77, 0, 0.175, 1);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.9);
}

.curtain-left {
  background: linear-gradient(90deg, #38020a 0%, #680816 25%, #9e0e24 60%, #520511 100%);
  border-right: 5px solid #ffd700;
  transform-origin: left;
}

.curtain-right {
  background: linear-gradient(270deg, #38020a 0%, #680816 25%, #9e0e24 60%, #520511 100%);
  border-left: 5px solid #ffd700;
  transform-origin: right;
}

.curtain-wrapper.open {
  pointer-events: none;
}

.curtain-wrapper.open .curtain-left {
  transform: translateX(-105%) skewX(-5deg);
}

.curtain-wrapper.open .curtain-right {
  transform: translateX(105%) skewX(5deg);
}

.curtain-gold-trim {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 16px;
  background: repeating-linear-gradient(45deg, #ffe082, #ffe082 12px, #b38728 12px, #b38728 24px);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.curtain-left .curtain-gold-trim {
  right: 0;
}

.curtain-right .curtain-gold-trim {
  left: 0;
}

/* Ceremonial Ribbon & Central Interactive Bow */
.ribbon-wrapper {
  position: fixed;
  top: 50%;
  left: 0;
  width: 100%;
  height: 140px;
  transform: translateY(-50%);
  z-index: 105;
  pointer-events: auto;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.ribbon-strap {
  position: absolute;
  width: 100%;
  height: 54px;
  background: linear-gradient(180deg, #ff1744 0%, #d50000 50%, #880e4f 100%);
  box-shadow: 0 12px 35px rgba(213, 0, 0, 0.7), inset 0 2px 5px rgba(255, 255, 255, 0.5);
  border-top: 3px dashed #fff9c4;
  border-bottom: 3px dashed #fff9c4;
}

.ribbon-bow-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.ribbon-bow {
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, #fff59d 0%, #ffb300 50%, #e65100 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 50px rgba(255, 215, 0, 0.9), 0 10px 30px rgba(0, 0, 0, 0.6);
  border: 4px solid #ffffff;
  font-size: 2.8rem;
  color: #ffffff;
  animation: bowGlow 1.8s infinite alternate;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ribbon-bow:hover {
  transform: scale(1.12);
  box-shadow: 0 0 70px rgba(255, 215, 0, 1), 0 15px 40px rgba(255, 61, 0, 0.8);
}

.ribbon-prompt-pill {
  margin-top: 14px;
  background: rgba(18, 6, 30, 0.88);
  border: 1.5px solid #ffd700;
  color: #ffe082;
  padding: 8px 22px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6), 0 0 15px rgba(255, 215, 0, 0.4);
  letter-spacing: 0.5px;
  pointer-events: none;
  animation: promptPulse 1.5s infinite alternate;
}

@keyframes promptPulse {
  0% {
    transform: scale(0.96);
    opacity: 0.85;
  }

  100% {
    transform: scale(1.04);
    opacity: 1;
    filter: drop-shadow(0 0 8px #ffd700);
  }
}

@keyframes bowGlow {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 12px #ffd700);
  }

  100% {
    transform: scale(1.08);
    filter: drop-shadow(0 0 35px #ff9100);
  }
}

.ribbon-wrapper.cut {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) scale(1.4);
}

/* Luxury Glassmorphic Card with Animated Border Stream */
.launch-card-border-wrap {
  position: relative;
  z-index: 10;
  border-radius: 32px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.8), rgba(255, 87, 34, 0.4), rgba(255, 215, 0, 0.8), rgba(156, 39, 176, 0.4));
  background-size: 300% 300%;
  animation: borderGradientShift 6s ease infinite;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 50px rgba(255, 152, 0, 0.25);
  max-width: 980px;
  width: 92%;
}

@keyframes borderGradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.launch-container {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 42px 40px 35px;
  text-align: center;
  background: rgba(14, 6, 26, 0.85);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 30px;
  box-sizing: border-box;
}

/* Auspicious Corner Motifs */
.corner-ornament {
  position: absolute;
  width: 40px;
  height: 40px;
  pointer-events: none;
  opacity: 0.7;
}

.corner-ornament-tl {
  top: 15px;
  left: 15px;
  border-top: 3px solid #ffd700;
  border-left: 3px solid #ffd700;
  border-top-left-radius: 12px;
}

.corner-ornament-tr {
  top: 15px;
  right: 15px;
  border-top: 3px solid #ffd700;
  border-right: 3px solid #ffd700;
  border-top-right-radius: 12px;
}

.corner-ornament-bl {
  bottom: 15px;
  left: 15px;
  border-bottom: 3px solid #ffd700;
  border-left: 3px solid #ffd700;
  border-bottom-left-radius: 12px;
}

.corner-ornament-br {
  bottom: 15px;
  right: 15px;
  border-bottom: 3px solid #ffd700;
  border-right: 3px solid #ffd700;
  border-bottom-right-radius: 12px;
}

/* Sound Control Switch */
.launch-sound-toggle {
  position: absolute;
  top: 22px;
  right: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: #ffe082;
  border-radius: 30px;
  padding: 7px 16px;
  font-size: 0.88rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 20;
}

.launch-sound-toggle:hover {
  background: rgba(255, 215, 0, 0.25);
  border-color: #ffd700;
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

/* Auspicious Header Mantra */
.launch-mantra {
  font-size: 1.25rem;
  letter-spacing: 4px;
  color: #ffca28;
  font-weight: 700;
  text-shadow: 0 0 16px rgba(255, 202, 40, 0.7);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.launch-mantra-line {
  height: 2px;
  width: 60px;
  background: linear-gradient(90deg, transparent, #ffd700, transparent);
}

.launch-mantra-badge {
  font-size: 1.4rem;
  color: #ff9100;
  filter: drop-shadow(0 0 8px #ff6d00);
}

/* Organization Logo & Golden Ring Aura */
.launch-logo-box {
  width: 130px;
  height: 130px;
  margin: 0 auto 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.launch-logo-aura {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px dashed rgba(255, 215, 0, 0.7);
  animation: rotateAura 16s linear infinite;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.launch-logo-aura-2 {
  position: absolute;
  width: 120%;
  height: 120%;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 107, 0, 0.5);
  box-shadow: 0 0 35px rgba(255, 140, 0, 0.4);
  animation: rotateAuraRev 22s linear infinite;
}

@keyframes rotateAura {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes rotateAuraRev {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

.launch-logo-img {
  width: 105px;
  height: 105px;
  object-fit: contain;
  border-radius: 50%;
  background: #ffffff;
  padding: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
}

.launch-logo-box:hover .launch-logo-img {
  transform: scale(1.08) rotate(5deg);
}

/* Titles with Luxury Golden Gradient */
.launch-title-hi {
  font-size: 2.35rem;
  font-weight: 800;
  margin: 0 0 8px;
  background: linear-gradient(135deg, #ffffff 0%, #fff176 30%, #ffd700 60%, #ff8f00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 15px rgba(255, 179, 0, 0.5));
  line-height: 1.35;
  letter-spacing: 0.5px;
}

.launch-title-en {
  font-size: 1.15rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #eeeeee;
  font-weight: 600;
  margin-bottom: 22px;
  opacity: 0.95;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Badge Banner */
.launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 26px;
  border-radius: 50px;
  background: linear-gradient(90deg, rgba(230, 81, 0, 0.35), rgba(255, 215, 0, 0.25), rgba(230, 81, 0, 0.35));
  border: 1.5px solid rgba(255, 215, 0, 0.5);
  color: #ffe082;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 30px;
  box-shadow: 0 6px 20px rgba(230, 81, 0, 0.3);
}

/* INAUGURATION CEREMONIAL DIYAS (दीप प्रज्ज्वलन) */
.launch-action-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: 15px 0 30px;
}

.ceremonial-diya {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.diya-flame {
  width: 22px;
  height: 34px;
  background: radial-gradient(ellipse at bottom, #fff 0%, #ffeb3b 40%, #ff5722 80%, transparent 100%);
  border-radius: 50% 50% 35% 35% / 60% 60% 40% 40%;
  filter: drop-shadow(0 0 15px #ff9800) drop-shadow(0 0 25px #ff5722);
  animation: flameFlicker 1.4s ease-in-out infinite alternate;
  transform-origin: bottom center;
}

@keyframes flameFlicker {
  0% {
    transform: scale(1) rotate(-2deg);
  }

  50% {
    transform: scale(1.12, 0.92) rotate(3deg);
  }

  100% {
    transform: scale(0.95, 1.08) rotate(-1deg);
  }
}

.diya-bowl {
  width: 54px;
  height: 22px;
  background: linear-gradient(180deg, #ffd700 0%, #b8860b 70%, #8b6508 100%);
  border-radius: 0 0 50px 50px;
  border-top: 2px solid #fff8e1;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5), inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

.diya-label {
  font-size: 0.8rem;
  color: #ffca28;
  font-weight: 600;
  margin-top: 6px;
  letter-spacing: 1px;
}

/* THE GRAND 3D LAUNCH BUTTON */
.launch-button-area {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.launch-pulse-ring {
  position: absolute;
  width: 360px;
  height: 100px;
  border-radius: 60px;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.6), transparent 70%);
  filter: blur(18px);
  animation: buttonPulse 1.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes buttonPulse {
  0% {
    transform: scale(0.88);
    opacity: 0.35;
  }

  50% {
    transform: scale(1.25);
    opacity: 0.85;
  }

  100% {
    transform: scale(0.88);
    opacity: 0.35;
  }
}

.launch-btn-main {
  position: relative;
  z-index: 5;
  background: linear-gradient(135deg, #ff8f00 0%, #ff3d00 45%, #c2185b 85%, #7b1fa2 100%);
  background-size: 200% 200%;
  animation: btnBgShift 4s ease infinite;
  border: 2.5px solid #fff59d;
  color: #ffffff;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 22px 58px;
  border-radius: 60px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 16px 40px rgba(255, 61, 0, 0.6),
    0 0 35px rgba(255, 215, 0, 0.5),
    inset 0 2px 6px rgba(255, 255, 255, 0.5);
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  outline: none;
}

@keyframes btnBgShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.launch-btn-main:hover {
  transform: translateY(-5px) scale(1.06);
  box-shadow: 0 25px 55px rgba(255, 61, 0, 0.8),
    0 0 50px rgba(255, 215, 0, 0.85),
    inset 0 2px 8px rgba(255, 255, 255, 0.7);
  border-color: #ffffff;
  color: #ffffff;
}

.launch-btn-main:active {
  transform: translateY(2px) scale(0.97);
}

.launch-btn-icon {
  font-size: 2rem;
  color: #fff9c4;
  filter: drop-shadow(0 0 10px #ffd700);
  animation: rocketHover 1.5s ease-in-out infinite alternate;
}

@keyframes rocketHover {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  100% {
    transform: translate(5px, -5px) rotate(10deg);
  }
}

/* Launch Subtext */
.launch-hint {
  font-size: 0.95rem;
  color: #cfd8dc;
  margin-top: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Ceremony Meta Footer */
.launch-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 25px;
  margin-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.launch-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: #eceff1;
}

.launch-meta-item i {
  color: #ffd700;
  font-size: 1.15rem;
  filter: drop-shadow(0 0 6px #ffb300);
}

/* COUNTDOWN / BLAST-OFF OVERLAY */
.launch-countdown-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 200;
  background: rgba(6, 1, 12, 0.95);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.launch-countdown-overlay.active {
  opacity: 1;
  visibility: visible;
}

.countdown-number {
  font-size: 10.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff 0%, #fff59d 30%, #ffd700 60%, #ff3d00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 50px rgba(255, 215, 0, 0.9));
  animation: countPulse 0.9s ease-in-out infinite;
  line-height: 1;
}

.countdown-text {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 5px;
  margin-top: 25px;
  text-transform: uppercase;
  text-shadow: 0 0 25px rgba(255, 215, 0, 0.9);
}

@keyframes countPulse {
  0% {
    transform: scale(0.55);
    opacity: 0;
  }

  50% {
    transform: scale(1.18);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 0.95;
  }
}

/* Shockwave Expanding Ring */
.launch-shockwave {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 8px solid #ffd700;
  box-shadow: 0 0 50px #ff6d00, inset 0 0 50px #ff6d00;
  pointer-events: none;
  z-index: 150;
  opacity: 1;
  transition: transform 1.2s cubic-bezier(0.1, 0.8, 0.2, 1), opacity 1.2s ease-out;
}

.launch-shockwave.blast {
  transform: translate(-50%, -50%) scale(15);
  opacity: 0;
}

/* Hyperdrive Portal Warp Effect */
.launch-portal-warp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 300;
  background: radial-gradient(circle at center, #ffffff 0%, #fff176 25%, #ffd700 50%, #ff5722 75%, #000000 100%);
  opacity: 0;
  pointer-events: none;
  transform: scale(0);
  border-radius: 50%;
  transition: transform 1s cubic-bezier(0.85, 0, 0.15, 1), opacity 1s ease;
}

.launch-portal-warp.warp-in {
  transform: scale(3.5);
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .launch-container {
    padding: 32px 20px 25px;
    width: 100%;
  }

  .launch-action-wrapper {
    gap: 12px;
  }

  .ceremonial-diya {
    display: none;
  }

  .launch-title-hi {
    font-size: 1.6rem;
  }

  .launch-title-en {
    font-size: 0.88rem;
    letter-spacing: 1.5px;
  }

  .launch-btn-main {
    font-size: 1.2rem;
    padding: 18px 40px;
  }

  .countdown-number {
    font-size: 6.5rem;
  }

  .countdown-text {
    font-size: 1.4rem;
  }
}

/* Skip Button on Countdown Overlay */
.launch-skip-btn {
  margin-top: 35px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.4);
  color: #ffe082;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.launch-skip-btn:hover {
  background: rgba(255, 215, 0, 0.3);
  border-color: #ffd700;
  color: #ffffff;
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* Footer Bottom Developer Credit */
.developer-credit {
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: 13.5px !important;
  margin: 0 !important;
}

.developer-credit a {
  color: #ff7f50 !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.developer-credit a:hover {
  color: #ffa07a !important;
  text-decoration: underline !important;
}

/* ========================================= */
/* Maharshi Gautam Static Page Styles        */
/* ========================================= */

.gautam-page-header {
  background: linear-gradient(135deg, #8a2405 0%, #c0392b 45%, #d35400 80%, #e67e22 100%);
  position: relative;
  overflow: hidden;
  padding-top: 140px !important;
  padding-bottom: 70px !important;
  color: #ffffff;
}

.gautam-page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.gautam-hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.4);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff9e6;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.gautam-portrait-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 20px 45px rgba(184, 56, 14, 0.18);
  border: 4px solid #fff;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gautam-portrait-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 55px rgba(184, 56, 14, 0.25);
}

.gautam-portrait-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.gautam-portrait-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
  padding: 30px 24px 20px;
  color: #ffffff;
  text-align: center;
}

.gautam-quote-box {
  background: linear-gradient(135deg, #fff9f5 0%, #fff1e6 100%);
  border-left: 5px solid #d35400;
  border-radius: 16px;
  padding: 24px 30px;
  box-shadow: 0 6px 20px rgba(211, 84, 0, 0.08);
  position: relative;
}

.gautam-quote-icon {
  font-size: 2.2rem;
  color: #d35400;
  opacity: 0.3;
  position: absolute;
  top: 15px;
  right: 20px;
}

.gautam-quote-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #8a2405;
  line-height: 1.6;
  margin-bottom: 0;
}

.section-title-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 50px;
  background: rgba(211, 84, 0, 0.1);
  color: #b8380e;
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pramana-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 22px;
  height: 100%;
  border: 1px solid #f2e1d9;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.pramana-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d35400, #f39c12);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pramana-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(211, 84, 0, 0.12);
  border-color: #f5cba7;
}

.pramana-card:hover::before {
  opacity: 1;
}

.pramana-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fff2eb 0%, #ffe6d9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #d35400;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(211, 84, 0, 0.12);
}

.panchavayava-container {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  border: 1px solid #f0dfd5;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.panchavayava-step-card {
  background: #fdfaf8;
  border: 1px solid #f3e5dc;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
}

.panchavayava-step-card:hover {
  background: #ffffff;
  border-color: #d35400;
  box-shadow: 0 8px 24px rgba(211, 84, 0, 0.1);
  transform: translateY(-4px);
}

.panchavayava-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b8380e, #e67e22);
  color: #ffffff;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  margin-bottom: 12px;
  box-shadow: 0 4px 10px rgba(184, 56, 14, 0.3);
}

.story-feature-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid #f2e2d8;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  height: 100%;
  transition: all 0.35s ease;
}

.story-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(184, 56, 14, 0.1);
  border-color: #f7d2bc;
}

.story-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: #fff0e6;
  color: #b8380e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.gotra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 16px;
}

.gotra-chip {
  background: #ffffff;
  border: 1px solid #ecdcd3;
  border-radius: 14px;
  padding: 16px 14px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.gotra-chip:hover {
  background: linear-gradient(135deg, #8a2405 0%, #b8380e 100%);
  color: #ffffff !important;
  border-color: #8a2405;
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(184, 56, 14, 0.25);
}

.gotra-chip:hover .gotra-icon {
  color: #ffd700;
  transform: scale(1.15);
}

.gotra-chip:hover .gotra-name {
  color: #ffffff;
}

.gotra-chip:hover .gotra-sub {
  color: rgba(255, 255, 255, 0.8);
}

.gotra-icon {
  font-size: 1.3rem;
  color: #d35400;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.gotra-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 2px;
  transition: color 0.3s ease;
}

.gotra-sub {
  font-size: 0.78rem;
  color: #7f8c8d;
  transition: color 0.3s ease;
}

.lineage-track {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #f2e2d8;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.lineage-node {
  background: linear-gradient(135deg, #fff7f2 0%, #ffede2 100%);
  border: 1px solid #f5cfba;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  color: #8a2405;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(211, 84, 0, 0.08);
  transition: all 0.3s ease;
}

.lineage-node:hover {
  transform: scale(1.05);
  background: #b8380e;
  color: #ffffff;
  border-color: #8a2405;
}

.lineage-arrow {
  color: #e67e22;
  font-size: 1.2rem;
  font-weight: 900;
}

.ai-card {
  background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
  border-radius: 20px;
  padding: 36px;
  color: #ffffff;
  box-shadow: 0 16px 40px rgba(26, 37, 47, 0.25);
  position: relative;
  overflow: hidden;
}

.ai-card::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(230, 126, 34, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.ai-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #f1c40f;
  margin-right: 8px;
  margin-bottom: 8px;
}

.teaching-list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #ffffff;
  border: 1px solid #f2e2d8;
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.teaching-list-item:hover {
  transform: translateX(8px);
  border-color: #b8380e;
  box-shadow: 0 8px 20px rgba(184, 56, 14, 0.1);
}

.teaching-check-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b8380e, #e67e22);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(184, 56, 14, 0.3);
}

.sacred-salutation-card {
  background: linear-gradient(135deg, #8a2405 0%, #b8380e 60%, #d35400 100%);
  border: 2px solid rgba(255, 215, 0, 0.5);
  border-radius: 20px;
  padding: 36px 24px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 16px 40px rgba(138, 36, 5, 0.3);
}

.salutation-line {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff6e0;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.reference-card {
  background: #ffffff;
  border: 1px solid #eddcd2;
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.reference-card:hover {
  transform: translateY(-6px);
  border-color: #b8380e;
  box-shadow: 0 14px 30px rgba(184, 56, 14, 0.12);
}

.ref-num-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #fff0e6;
  color: #b8380e;
  font-weight: 800;
  font-size: 0.85rem;
  margin-right: 8px;
}

.btn-ref-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 8px;
  background: #fff0e6;
  color: #b8380e;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  border: 1px solid #f5cfba;
  transition: all 0.25s ease;
}

.btn-ref-link:hover {
  background: #b8380e;
  color: #ffffff;
  border-color: #b8380e;
}

@media (max-width: 991.98px) {
  .gautam-portrait-img {
    height: 380px;
  }

  .gautam-hero-tagline {
    font-size: 0.85rem;
    padding: 6px 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .salutation-line {
    font-size: 1.15rem;
  }
}

@media (max-width: 767.98px) {
  .gautam-page-header {
    padding-top: 110px !important;
    padding-bottom: 45px !important;
  }

  .gautam-portrait-img {
    height: 300px;
  }

  .lineage-arrow {
    display: none;
  }

  .lineage-track {
    flex-direction: column;
    align-items: stretch;
  }

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

/* ========================================= */
/* Members Directory Coming Soon Styles      */
/* ========================================= */

.members-cs-header {
  background: linear-gradient(135deg, #1f2937 0%, #374151 50%, #4b5563 100%);
  position: relative;
  overflow: hidden;
  padding-top: 140px !important;
  padding-bottom: 70px !important;
  color: #ffffff;
}

.members-cs-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 127, 80, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.members-cs-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 127, 80, 0.2);
  border: 1px solid rgba(255, 127, 80, 0.5);
  color: #ff9f7d;
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.members-cs-card {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid #e5e7eb;
  padding: 40px 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
  transition: all 0.35s ease;
}

.members-cs-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(255, 127, 80, 0.12);
  border-color: #fcd3c1;
}

.members-cs-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff0e6 0%, #ffe4d6 100%);
  color: var(--coral, #ff7f50);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 24px;
  box-shadow: 0 8px 20px rgba(255, 127, 80, 0.15);
}

.members-benefit-card {
  background: #ffffff;
  border: 1px solid #eef0f3;
  border-radius: 18px;
  padding: 24px 20px;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.members-benefit-card:hover {
  transform: translateY(-5px);
  border-color: var(--coral, #ff7f50);
  box-shadow: 0 12px 25px rgba(255, 127, 80, 0.1);
}

.benefit-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fff4ed;
  color: var(--coral, #ff7f50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.members-cs-progress-step {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  padding: 14px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
}

@media (max-width: 767.98px) {
  .members-cs-header {
    padding-top: 110px !important;
    padding-bottom: 45px !important;
  }
}

/* Member Receipt Styles */
.receipt-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.receipt-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.receipt-header-banner {
  background: linear-gradient(135deg, #7c1315 0%, #a81c20 100%);
  color: #ffffff;
  padding: 24px 30px;
}

.receipt-badge-chip {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
}

.receipt-meta-box {
  background-color: #f8fafc;
  border-bottom: 1px solid #eef2f6;
  padding: 16px 30px;
}

.receipt-table th {
  background-color: #f1f5f9;
  color: #475569;
  font-weight: 600;
  font-size: 0.85rem;
}

@media print {
  body * {
    visibility: hidden;
  }
  .receipt-wrapper,
  .receipt-wrapper * {
    visibility: visible;
  }
  .receipt-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }
  .no-print {
    display: none !important;
  }
  .receipt-card {
    border: 1px solid #ccc !important;
    box-shadow: none !important;
  }
}