@import url('https://fonts.googleapis.com/css2?family=Jameel+Noori+Nastaleeq&display=swap');
:root {
  --bg: #0A0B1A;
  --text: #FFFFFF;
  --accent-gold: #FFD700;
  --accent-gold-dark: #DAA520;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg, #0a0b1a 0%, #0d1225 33%, #0a0f1f 66%, #0c1022 100%);
  color: var(--text);
  font-family: 'Jameel Noori Nastaleeq', 'Noto Nastaliq Urdu', 'Poppins', serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.glass-card {
  background: rgba(15, 20, 40, 0.5);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 25px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(255, 215, 0, 0.15),
    rgba(218, 165, 32, 0.1),
    transparent
  );
  animation: rotateGlow 15s linear infinite;
  opacity: 0.7;
  z-index: -1;
}

@keyframes rotateGlow {
  to { transform: rotate(360deg); }
}

/* Section-Specific Glows (Updated to Gold) */
#hero .glass-card { border: 1px solid rgba(255, 215, 0, 0.4); box-shadow: 0 0 20px rgba(255, 215, 0, 0.2); }
#courses .glass-card { border: 1px solid rgba(255, 215, 0, 0.4); box-shadow: 0 0 20px rgba(255, 215, 0, 0.2); }
#single-products .glass-card { border: 1px solid rgba(255, 215, 0, 0.4); box-shadow: 0 0 20px rgba(255, 215, 0, 0.2); }
#general-health .glass-card { border: 1px solid rgba(255, 215, 0, 0.4); box-shadow: 0 0 20px rgba(255, 215, 0, 0.2); }
#testimonials .glass-card { border: 1px solid rgba(255, 215, 0, 0.4); box-shadow: 0 0 20px rgba(255, 215, 0, 0.2); }

header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: 0.4s;
}

header.scrolled {
  background: rgba(10, 11, 26, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.logo {
  height: 40px;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
}

section {
  padding: 80px 5%;
}

.section-title {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 50px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
  margin: 10px auto;
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  border: none;
  margin-top: 15px;
  transition: all 0.3s ease;
}

/* Primary Button (Updated to Gold) */
.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
  color: #0A0B1A;
  font-weight: bold;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.7);
}

/* Secondary Button (Updated to Gold) */
.btn-secondary {
  background: transparent;
  color: var(--accent-gold);
  border: 2px solid var(--accent-gold);
}

.btn-secondary:hover {
  background: rgba(255, 215, 0, 0.1);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

/* Hero Section */
#hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.hero-content {
  z-index: 2;
  max-width: 800px;
}

.hero-title {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.product-showcase {
  margin: 40px auto;
  max-width: 400px;
  z-index: 3;
}

.product-image-container {
  width: 250px;
  height: 250px;
  margin: 0 auto 15px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  background: rgba(0, 10, 20, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image-container img {
  width: 90%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.product-caption {
  font-size: 1.3rem;
  opacity: 0.9;
  margin-top: 10px;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.product-card h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.benefits ul {
  padding-right: 20px;
  margin: 15px 0;
  line-height: 1.8;
}

.benefits li {
  margin-bottom: 8px;
}

/* Premium Note (Updated to Gold) */
.premium-note {
  background: rgba(255, 215, 0, 0.1);
  border-left: 3px solid var(--accent-gold);
  padding: 12px;
  margin: 15px 0;
  border-radius: 0 8px 8px 0;
}

/* Testimonials */
.testimonials {
  background: rgba(10, 12, 30, 0.7);
}

.testimonial-section {
  margin: 50px 0;
}

.testimonial-subtitle {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card audio {
  width: 100%;
  border-radius: 12px;
  margin-top: 15px;
}

.rating {
  color: var(--accent-gold);
  margin: 8px 0;
}

.auto-scroll-container {
  max-width: 600px;
  margin: 0 auto;
  height: 150px;
  overflow: hidden;
  position: relative;
}

.comment-card {
  position: absolute;
  width: 100%;
  opacity: 0;
  animation: scrollComments 10s linear infinite;
  text-align: center;
  padding: 20px;
}

.comment-card p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

@keyframes scrollComments {
  0% { transform: translateY(100%); opacity: 0; }
  15%, 85% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(-100%); opacity: 0; }
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
  z-index: 1000;
  animation: pulse 2s infinite;
}

.whatsapp-float i {
  color: white;
  font-size: 24px;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Footer */
footer {
  background: #080915;
  padding: 40px 5%;
  text-align: center;
}

/* Order Modal */
.order-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.4s;
  align-items: center;
  justify-content: center;
}

.order-modal-content {
  position: relative;
  width: 90%;
  max-width: 500px;
  padding: 30px;
  max-height: 90vh;
  overflow-y: auto;
}

.close-btn {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 28px;
  color: #aaa;
  cursor: pointer;
  line-height: 1;
}

.close-btn:hover {
  color: var(--accent-gold);
}

/* Form Styling (Updated to Gold) */
#orderForm input,
#orderForm textarea {
  width: 100%;
  padding: 14px;
  margin: 12px 0;
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-family: 'Jameel Noori Nastaleeq', 'Noto Nastaliq Urdu', 'Poppins', serif;
  font-size: 1rem;
  direction: rtl;
  text-align: right;
}

#orderForm input::placeholder,
#orderForm textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.sticky-submit {
  width: 100%;
  margin-top: 20px;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 768px) {
  .section-title { font-size: 2rem; }
  .product-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.2rem; }
  .product-image-container { width: 200px; height: 200px; }
  nav a { font-size: 1rem; }
}

/* Image and Video Sizing */
.product-image-wrapper {
  width: 100%;
  height: 220px;
  margin-bottom: 20px;
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}

/* Testimonial Video Styling (Updated to Gold) */
.testimonial-card video {
  width: 100%;
  height: auto;
  max-height: 400px;
  border-radius: 12px;
  margin-top: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}