body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #fffaf3;
  color: #333;
}
.hero {
  display: flex;
  justify-content: space-between;
  padding: 40px;
  margin-bottom: 40px;
}
.hero-text {
  width: 50%;
}
.hero-text h1 {
  font-size: 36px;
}
.hero-text .vedic {
  color: #f97316;
}
.hero-image {
  position: relative;
}
.hero-image img {
  width: 500px;
  border-radius: 12px;
}
.live {
  position: absolute;
  top: 10px;
  left: 10px;
  background: white;
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 14px;
}
.price-tag {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: white;
  padding: 10px;
  border-radius: 8px;
  font-weight: bold;
}
.features span {
  display: inline-block;
  margin-right: 10px;
  font-size: 14px;
}
.cta {
  margin: 20px 0;
}
.btn {
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
}
.primary {
  background: #f97316;
  color: white;
}
.secondary {
  background: white;
  color: #f97316;
  border: 2px solid #f97316;
}
.stats {
  display: flex;
  gap: 30px;
}
.stats div {
  text-align: center;
  font-size: 14px;
}

/* Testimonials Section */
.testimonial-section {
  background: #fff7df;
  padding: 60px 20px;
  text-align: center;
}
.testimonial-section h2 {
  font-size: 32px;
}
.testimonial-slider {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  margin-top: 30px;
}
.testimonial-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  min-width: 300px;
  text-align: left;
}
.stars {
  color: gold;
  font-size: 18px;
}
.reviewer {
  display: flex;
  align-items: center;
  margin-top: 15px;
  gap: 10px;
}
.avatar {
  width: 50px;
  height: 50px;
  background: orange;
  border-radius: 50%;
}

/* Final CTA */
.puja-help-cta {
  background: linear-gradient(to right, #f97316, #facc15);
  padding: 60px 20px;
  text-align: center;
  color: white;
}
.puja-help-cta h2 {
  font-size: 32px;
  margin-bottom: 10px;
}
.puja-help-cta p {
  font-size: 18px;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.cta-btn {
  background: white;
  color: #f97316;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: 0.3s;
}
.cta-btn img {
  width: 20px;
  height: 20px;
}
.cta-btn:hover {
  background: #fff0dc;
}

.puja-process {
  background: #f4f7ff;
  padding: 60px 20px;
  text-align: center;
}
.puja-process h2 {
  font-size: 32px;
  margin-bottom: 10px;
}
.puja-process .subtext {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}
.process-steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}
.step-box {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  width: 200px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.step-box .icon img {
  width: 48px;
  margin-bottom: 12px;
}
.step-box h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 6px;
}
.arrow {
  font-size: 24px;
  align-self: center;
}
.metrics {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}
.metric-box {
  background: #fff;
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.metric-box strong {
  display: block;
  font-size: 18px;
  color: #f97316;
}
.metric-box span {
  font-size: 14px;
  color: #666;
}
.cta-bottom {
  margin-top: 50px;
}
.cta-bottom h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.cta-bottom p {
  font-size: 15px;
  color: #444;
  margin-bottom: 20px;
}
.cta-bottom .buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.btn-primary {
  background: #f97316;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
}
.btn-outline {
  border: 1px solid #f97316;
  color: #f97316;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
} 

/* Responsive Design */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    align-items: center;
    padding: 24px 10px;
  }
  .hero-text, .hero-image {
    width: 100%;
    max-width: 100%;
  }
  .hero-image img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: block;
  }
  .stats {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    align-items: center;
    padding: 16px 5px;
    margin-bottom: 24px;
  }
  .hero-text {
    width: 100%;
    text-align: center;
  }
  .hero-image {
    width: 100%;
    margin-top: 20px;
    text-align: center;
  }
  .hero-image img {
    width: 100%;
    max-width: 320px;
  }
  .features span {
    display: block;
    margin: 6px 0;
  }
  .stats {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  .testimonial-card {
    min-width: 0;
    width: 100%;
    max-width: 350px;
  }
  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .arrow {
    display: none;
  }
  .metrics {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .cta-bottom .buttons {
    flex-direction: column;
    gap: 10px;
  }
  .puja-help-cta {
    padding: 32px 8px;
  }
  .cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 8px 2px;
  }
  .hero-text h1 {
    font-size: 22px;
  }
  .hero-image img {
    max-width: 100%;
    width: 100%;
  }
  .testimonial-section h2,
  .puja-process h2,
  .puja-help-cta h2 {
    font-size: 20px;
  }
  .step-box {
    width: 90vw;
    min-width: 0;
    padding: 12px;
  }
  .cta-bottom h3 {
    font-size: 16px;
  }
  .btn, .btn-primary, .btn-outline, .cta-btn {
    padding: 10px 12px;
    font-size: 15px;
  }
  .price-tag, .live {
    font-size: 12px;
    padding: 4px 8px;
  }
  .metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    justify-items: center;
    align-items: stretch;
  }
  .metric-box {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
} 

.zodiac-scrollbar-wrapper {
  width: 100%;
  overflow-x: auto;
  background: #fff;
  padding: 12px 0 4px 0;
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}
.zodiac-scrollbar {
  display: flex;
  flex-direction: row;
  gap: 20px;
  min-width: 600px;
  width: max-content;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #f97316 #eee;
  -webkit-overflow-scrolling: touch;
  justify-content: center;
}
.zodiac-icon-item {
  flex: 0 0 auto;
  text-align: center;
  min-width: 70px;
  max-width: 90px;
}
.zodiac-icon-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 4px;
}
.zodiac-icon-item span {
  font-size: 13px;
  color: #f97316;
  font-weight: 500;
  display: block;
  margin-top: 2px;
}
.zodiac-scrollbar::-webkit-scrollbar {
  height: 6px;
}
.zodiac-scrollbar::-webkit-scrollbar-thumb {
  background: #f97316;
  border-radius: 4px;
}
.zodiac-scrollbar::-webkit-scrollbar-track {
  background: #eee;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .zodiac-scrollbar {
    gap: 12px;
    min-width: 480px;
  }
  .zodiac-icon-item img {
    width: 38px;
    height: 38px;
  }
  .zodiac-icon-item {
    min-width: 60px;
    max-width: 70px;
  }
}
@media (max-width: 480px) {
  .zodiac-scrollbar {
    gap: 8px;
    min-width: 340px;
  }
  .zodiac-icon-item img {
    width: 32px;
    height: 32px;
  }
  .zodiac-icon-item {
    min-width: 44px;
    max-width: 60px;
  }
} 

#b-header {
  background: #fff !important;
  padding-bottom: 18px;
}

@media (max-width: 768px) {
  #b-header {
    padding-bottom: 12px;
  }
} 

.zodiac-icon-item a {
  display: block;
  background: #fff7e6;
  border-radius: 16px;
  padding: 10px 6px 6px 6px;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 4px rgba(249, 115, 22, 0.06);
}
.zodiac-icon-item a:hover {
  background: #ffe0b3;
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.12);
} 

.form-row-flex {
  display: flex;
  gap: 24px;
  flex-direction: row !important;
}
.form-row-flex .form-group {
  flex: 1 1 0;
}
.form-row-flex .form-group > div {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.form-row-flex .form-group > div input,
.form-row-flex .form-group > div select {
  min-width: 0;
  flex: 1 1 0;
  width: 100%;
  max-width: 100px;
}
@media (max-width: 600px) {
  .form-row-flex {
    flex-direction: column !important;
    gap: 0;
  }
  .form-row-flex .form-group {
    width: 100%;
    margin-bottom: 8px;
  }
} 

.free-tool-form-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 2px solid #e3f2fd;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(33, 150, 243, 0.1);
  padding: 32px 28px 24px 28px;
  margin: 24px 0;
  position: relative;
  overflow: hidden;
}

.free-tool-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2196f3, #64b5f6, #42a5f5);
}

.free-tool-form-card .form-group {
  margin-bottom: 20px;
}

.free-tool-form-card label {
  font-weight: 600;
  color: #1976d2;
  margin-bottom: 8px;
  display: block;
}

.free-tool-form-card input,
.free-tool-form-card select {
  border: 2px solid #e3f2fd;
  border-radius: 8px;
  padding: 12px 16px;
  transition: all 0.3s ease;
  background: #ffffff;
}

.free-tool-form-card input:focus,
.free-tool-form-card select:focus {
  border-color: #2196f3;
  box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
  outline: none;
}

.free-tool-form-card .btn {
  background: linear-gradient(135deg, #2196f3, #1976d2);
  border: none;
  border-radius: 8px;
  padding: 14px 32px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.free-tool-form-card .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(33, 150, 243, 0.3);
}

/* Additional form styling */
.free-tool-form-card .form-row-flex {
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #e3f2fd;
  margin-bottom: 20px;
}

.free-tool-form-card .form-row-flex .form-group {
  margin-bottom: 0;
}

.free-tool-form-card .form-row-flex label {
  color: #1565c0;
  font-size: 14px;
  margin-bottom: 6px;
}

.free-tool-form-card .form-row-flex input,
.free-tool-form-card .form-row-flex select {
  border: 1px solid #bbdefb;
  padding: 8px 12px;
  font-size: 14px;
}

.free-tool-form-card .form-row-flex input:focus,
.free-tool-form-card .form-row-flex select:focus {
  border-color: #1976d2;
  box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.1);
}

/* Alert styling */
.free-tool-form-card .alert {
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
  border-left: 4px solid #2196f3;
  color: #1565c0;
}

.free-tool-form-card .alert i {
  color: #1976d2;
}

/* Checkbox styling */
.free-tool-form-card input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #2196f3;
}

.free-tool-form-card .clearfix label {
  color: #424242;
  font-weight: 500;
  cursor: pointer;
}

.free-tool-form-card .clearfix label:hover {
  color: #1976d2;
}
@media (max-width: 600px) {
  .free-tool-form-card {
    padding: 14px 4vw 10px 4vw;
  }
} 