/* ========================================
   GLOBAL RESET & TYPOGRAPHY
   ======================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ========================================
   ROOT VARIABLES (Design Tokens)
   ======================================== */
:root {
  --primary:        #6d28d9;
  --primary-light:  #a78bfa;
  --primary-dark:   #5b21b6;
  --accent:         #1fd2d0;
  --accent-dark:    #00b8b6;
  --blue:           #4187e2;
  --blue-dark:      #1a5bb8;
  --bg-light:       #f8fafc;
  --surface:        #ffffff;
  --text:           #1f1f2e;
  --text-light:     #6b7280;
  --text-muted:     #777;
  --radius-sm:      12px;
  --radius-md:      16px;
  --radius-lg:      24px;
  --shadow-sm:      0 4px 12px rgba(0,0,0,0.08);
  --shadow-md:      0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg:      0 20px 50px rgba(0,0,0,0.2);
  --transition:     all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-long: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center { text-align: center; }
.container1 { max-width: 1400px; margin: 0 auto; padding: 0 20px; }

/* ========================================
   BUTTONS
   ======================================== */
button {
  cursor: pointer;
  transition: var(--transition);
}

#pay-btn,
.view-details-btn,
.save-form-data,
.next-btn-form {
  padding: 14px 30px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#pay-btn {
  background: var(--blue);
  color: white;
  width: 27%;
  min-width: 200px;
}

#pay-btn:hover { background: #2474dd; }
#pay-btn:active { background: #1a5bb8; transform: scale(0.97); }

.view-details-btn {
  background: #3b82f6;
  color: white;
  margin-top: 25px;
}
.view-details-btn:hover {
  background: #2563eb;
  transform: scale(1.08);
}

.evnt-join-meeting {
  background: var(--accent);
  color: #000;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
}

.save-form-data,
.next-btn-form {
  background: #007bff;
  color: white;
}
.save-form-data:hover { background: #0056b3; }

#scrollToTopBtn {
  position: fixed;
  bottom: 120px;
  right: 20px;
  width: 50px; height: 50px;
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  box-shadow: var(--shadow-md);
  z-index: 999;
  display: none;
}
#scrollToTopBtn:hover { background: var(--accent-dark); }

/* ========================================
   MODALS & POPUPS
   ======================================== */
.modal,
#feedback-form-popup,
.show-pop-phone {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 20px;
  overflow-y: auto;
}

#feedback-form-popup.active,
#popupForm.show,
.show-pop-phone.show {
  display: flex;
}

.popup-content,
.modal-content {
  background: white;
  padding: 30px 40px;
  border-radius: 16px;
  width: 90%;
  max-width: 520px;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.4s ease-out;
  max-height: 90vh;
  overflow-y: auto;
}

.close-btn-new,
#closeBtn,
#closeBtn-phone {
  position: absolute;
  top: 12px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: #aaa;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.close-btn-new:hover,
#closeBtn:hover {
  background: #f1f1f1;
  color: #e74c3c;
  transform: rotate(90deg);
}

/* Success Message */
#successMessage {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #4caf50;
  color: white;
  padding: 12px 32px;
  border-radius: 8px;
  z-index: 10000;
  box-shadow: var(--shadow-md);
  display: none;
}

/* ========================================
   FEEDBACK FORM
   ======================================== */
#feedback-form label {
  display: block;
  margin: 18px 0 8px;
  font-weight: 600;
  color: #444;
}

#feedback-form input[type="text"],
#feedback-form input[type="email"],
#feedback-form textarea,
#feedback-form input[type="file"] {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #ddd;
  border-radius: 10px;
  font-size: 16px;
  transition: var(--transition);
}

#feedback-form input:focus,
#feedback-form textarea:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 4px rgba(52,152,219,0.2);
}

#feedback-form textarea {
  min-height: 120px;
  resize: vertical;
}

.star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 10px;
  margin: 15px 0;
}

.star-rating input { display: none; }
.star-rating label {
  font-size: 40px;
  color: #ddd;
  cursor: pointer;
  transition: var(--transition);
}
.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
  color: #f1c40f;
  transform: scale(1.1);
}

/* ========================================
   PACKAGES SECTION
   ======================================== */
.benefits-container{
  justify-content: center;
  align-items: center;
}
.packages-section {
  text-align: center;
  padding: 80px 0;
  margin: 10px;
  position: relative;
  overflow: hidden;
  background-color: #000;
  border-radius: 10px;
}

.Package_sub_heading h3 {
  color: var(--accent);
  font-size: 1.5rem;
  margin: -6% 0 3% 10%; /* combines your margins */
  font-weight: 600;
  width: 80%;
  border-bottom: 1px solid #1fd2d0; /* only bottom border */
  border-radius: 0 0 10px 10px; /* optional: round only bottom corners */
  box-shadow: 0px 0px 42px -20px; /* optional: shadow */
}


.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  transition: var(--transition-long);
}

.package-card {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,0.1);
  transition: var(--transition-long);
}
.package-card:hover {
  transform: translateY(-20px) scale(1.02);
  box-shadow: 0 40px 80px rgba(0,0,0,0.22);
}
.package-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.card-body {
  padding: 28px 20px;
}
.card-body h3 {
  font-size: 1.35rem;
  color: #0f172a;
  margin: 15px 0;
  font-weight: 700;
}

/* Horizontal Scroll Mode */
.packages-section.horizontal {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 40px;
}
.packages-section.horizontal::-webkit-scrollbar { display: none; }
.packages-section.horizontal .packages-grid {
  display: flex !important;
  gap: 40px;
  padding: 0 60px;
  width: max-content;
}
.packages-section.horizontal .package-card {
  flex: 0 0 390px;
  scroll-snap-align: center;
}

/* ========================================
   MIND-BODY SECTION
   ======================================== */
.mind-body .grid {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr;
  gap: 4rem;
  padding: 0% 4%;
  /* box-shadow: var(--shadow-lg); */
  border-radius: var(--radius-lg);
  /* background: var(--bg-light); */
}

.mind-body .content { order: 2; }
.mind-body .items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.mind-body .item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: #f8f5ff;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: var(--transition);
}
.mind-body .item:hover {
  background: #ede4ff;
  border-color: var(--primary-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.mind-body .circle {
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.mind-body .item-text strong {
  color: var(--accent);
  font-size: 1.125rem;
  display: block;
}
.mind-body .item-text span {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.h1{
  margin-bottom: 0px;
}
/* ========================================
   EVENTS & USER GRID
   ======================================== */
.user-event {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
  border-top: 1px solid var(--accent);
}

.event-contant {
  border: 2px solid var(--accent);
  border-radius: 12px;
  padding: 15px;
  height: 24vh;
  margin: 0 20px;
}

.event-left-right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

h2.event-sub-heading,
h3.event-title,
.event-timing {
  color: white;
  text-align: center;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
  .user-event { grid-template-columns: repeat(2, 1fr); }
  .mind-body .items { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-section.horizontal .package-card { flex: 0 0 340px; }
  .mind-body .items { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  #pay-btn { width: 100%; }
  .user-event { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .packages-section.horizontal .package-card { flex: 0 0 300px; }
  .popup-content { padding: 25px 20px; }
  .star-rating label { font-size: 34px; }
}

@media (max-width: 480px) {
  .popup-content h2 { font-size: 24px; }
  .close-btn-new { font-size: 28px; }
}

/* Large Screens */
@media (min-width: 1900px) {
  .nav-li a { font-size: 20px; }
}