/* ======= NUMEROLOGY PAGE STYLES ======= */

/* Override some default styles for better layout */
.hs_services_tabs_wrapper {
  padding: 60px 20px;
  background: #f8f9fa;
}

/* Life Path Numbers Grid - Better Layout */
.service_features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.feature_item {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 1px solid rgba(245, 135, 31, 0.1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature_item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(245, 135, 31, 0.3);
}

.feature_item.featured {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-color: rgba(245, 135, 31, 0.3);
  box-shadow: 0 8px 25px rgba(245, 130, 32, 0.2);
}

.feature_item.featured:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(245, 130, 32, 0.3);
}

.feature_item.featured .feature_icon {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.feature_item.featured h4 {
  color: #222;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.feature_item.featured p {
  color: #222;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.feature_icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(245, 135, 31, 0.1), rgba(255, 107, 43, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 28px;
  color: #f5871f;
  transition: all 0.3s ease;
}

.feature_item:hover .feature_icon {
  background: linear-gradient(135deg, rgba(245, 135, 31, 0.15), rgba(255, 107, 43, 0.1));
  transform: scale(1.1);
}

.feature_item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #222;
  margin-bottom: 12px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.feature_item:hover h4 {
  color: #f5871f;
}

.feature_item p {
  color: #666;
  line-height: 1.6;
  font-size: 15px;
  margin: 0;
  transition: color 0.3s ease;
}

.feature_item:hover p {
  color: #555;
}

/* Feature Header Styling */
.feature_header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px dashed #ddd;
}

.feature_header .feature_icon {
  margin-bottom: 0;
}

.feature_header h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #222;
  margin-bottom: 12px;
  font-weight: 600;
  text-align: center;
}

.feature_header p {
  color: #666;
  line-height: 1.6;
  font-size: 15px;
  margin: 0;
  text-align: center;
}

/* Service Intro Sections */
.service_intro {
  background: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  margin: 40px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(245, 135, 31, 0.1);
}

/* Contact Form Styling */
.contact_form {
  background: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  margin: 40px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(245, 135, 31, 0.1);
}

.appointment-form {
  background: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  margin: 40px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(245, 135, 31, 0.1);
}

/* Form Styling */
.form_row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  align-items: stretch;
}

.form_group {
  flex: 1;
  margin-bottom: 20px;
}

.form_group.full_width {
  flex: 1;
}

.form_group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #222;
  font-size: 16px;
}

.form_group input,
.form_group textarea,
.form_group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
  background: #fff;
}

.form_group input:focus,
.form_group textarea:focus,
.form_group select:focus {
  outline: none;
  border-color: rgba(245, 135, 31, 0.5);
  box-shadow: 0 0 0 5px rgba(245, 135, 31, 0.2);
}

.submit_btn,
.reset_btn {
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit_btn {
  background: linear-gradient(135deg, #f58220 0%, #f57c00 100%);
  color: #fff;
}

.reset_btn {
  background: #6c757d;
  color: #fff;
}

.submit_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(245, 130, 32, 0.3);
}

.reset_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(108, 117, 125, 0.3);
}

.service_intro h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #222;
  margin-bottom: 20px;
  font-weight: 600;
  text-align: center;
}

.service_intro p {
  color: #666;
  line-height: 1.7;
  font-size: 16px;
  margin-bottom: 20px;
  text-align: center;
}

.explore_btn {
  display: inline-block;
  background: linear-gradient(135deg, #f5871f, #ff6b2b);
  color: #fff;
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 15px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(245, 135, 31, 0.25);
  text-align: center;
}

.explore_btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(245, 135, 31, 0.35);
}

/* Process Section */
.process_section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.process_card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(245, 135, 31, 0.1);
}

.process_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(245, 135, 31, 0.15);
  border-color: rgba(245, 135, 31, 0.2);
}

.process_card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #222;
  margin-bottom: 15px;
  font-weight: 600;
}

.process_card p {
  color: #666;
  line-height: 1.6;
  font-size: 15px;
}

/* Transit List */
.transit_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.transit_item {
  background: rgba(245, 135, 31, 0.05);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(245, 135, 31, 0.1);
  transition: all 0.3s ease;
}

.transit_item:hover {
  background: rgba(245, 135, 31, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(245, 135, 31, 0.15);
}

.transit_item strong {
  color: #f5871f;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.transit_item {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

/* CTA Buttons */
.cta_buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.cta_primary_btn,
.cta_secondary_btn {
  padding: 18px 40px;
  border-radius: 35px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.cta_primary_btn {
  background: linear-gradient(135deg, #f5871f, #ff6b2b);
  color: #fff;
  box-shadow: 0 4px 20px rgba(245, 135, 31, 0.3);
}

.cta_secondary_btn {
  background: transparent;
  color: #f5871f;
  border: 2px solid #f5871f;
}

.cta_primary_btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(245, 135, 31, 0.4);
}

.cta_secondary_btn:hover {
  background: #f5871f;
  color: #fff;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .service_features {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .process_section {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .transit_list {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .service_intro {
    padding: 30px 20px;
    margin: 30px 0;
  }

  .service_intro h3 {
    font-size: 24px;
  }

  .cta_buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .cta_primary_btn,
  .cta_secondary_btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .service_features {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .feature_item {
    padding: 25px 20px;
  }

  .feature_icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
  }

  .feature_item h4 {
    font-size: 18px;
  }

  .feature_item p {
    font-size: 14px;
  }

  .process_card {
    padding: 25px 20px;
  }

  .transit_item {
    padding: 15px;
  }
}

/* ======= LIFE PATH SECTION ======= */
.life_path_section {
  padding: 80px 0;
  background: #fff;
}

.life_path_numbers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.number_card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(245, 135, 31, 0.1);
  transition: all 0.3s ease;
}

.number_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(245, 135, 31, 0.15);
  border-color: rgba(245, 135, 31, 0.2);
}

.number_card.master_number {
  background: linear-gradient(135deg, rgba(245, 135, 31, 0.05), rgba(255, 107, 43, 0.02));
  border-color: rgba(245, 135, 31, 0.2);
}

.number_icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5871f, #ff6b2b);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(245, 135, 31, 0.3);
}

.number_card.master_number .number_icon {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
}

.number_info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #222;
  margin-bottom: 8px;
  font-weight: 600;
}

.number_info p {
  color: #666;
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

/* ======= PERSONALITY INSIGHTS SECTION ======= */
.personality_insights_section {
  padding: 80px 0;
  background: #f8f9fa;
}

.insights_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.insight_card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(245, 135, 31, 0.1);
}

.insight_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(245, 135, 31, 0.15);
  border-color: rgba(245, 135, 31, 0.2);
}

.insight_icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(245, 135, 31, 0.1), rgba(255, 107, 43, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 28px;
  color: #f5871f;
  transition: all 0.3s ease;
}

.insight_card:hover .insight_icon {
  background: linear-gradient(135deg, rgba(245, 135, 31, 0.15), rgba(255, 107, 43, 0.1));
  transform: scale(1.1);
}

.insight_card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #222;
  margin-bottom: 15px;
  font-weight: 600;
}

.insight_card p {
  color: #666;
  line-height: 1.6;
  font-size: 15px;
}

.roadmap_box {
  background: linear-gradient(135deg, #f5871f, #ff6b2b);
  color: #fff;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.roadmap_box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
}

.roadmap_box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 600;
}

.roadmap_box p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  opacity: 0.95;
}

.consultation_btn {
  display: inline-block;
  background: #fff;
  color: #f5871f;
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.consultation_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* ======= WHY NUMEROLOGY SECTION ======= */
.why_numerology_section {
  padding: 80px 0;
  background: #fff;
}

.benefits_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.benefit_item {
  text-align: center;
  padding: 30px 20px;
}

.benefit_icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(45, 184, 232, 0.1), rgba(31, 168, 224, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 32px;
  color: #2db8e8;
  transition: all 0.3s ease;
}

.benefit_item:hover .benefit_icon {
  background: linear-gradient(135deg, rgba(45, 184, 232, 0.15), rgba(31, 168, 224, 0.1));
  transform: scale(1.1);
}

.benefit_item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #222;
  margin-bottom: 15px;
  font-weight: 600;
}

.benefit_item p {
  color: #666;
  line-height: 1.6;
  font-size: 15px;
}

.application_areas {
  background: rgba(245, 135, 31, 0.05);
  padding: 40px;
  border-radius: 15px;
  margin-top: 40px;
  text-align: center;
}

.application_areas h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: #222;
  margin-bottom: 30px;
  font-weight: 600;
}

.areas_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.area_item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.area_item:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.area_item i {
  color: #f5871f;
  font-size: 18px;
}

.area_item span {
  color: #222;
  font-weight: 500;
  font-size: 15px;
}

/* ======= SERVICES SECTION ======= */
.numerology_services_section {
  padding: 80px 0;
  background: #f6f6f6;
}

.services_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.service_item {
  background: #fff;
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(245, 135, 31, 0.1);
}

.service_item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(245, 135, 31, 0.15);
  border-color: rgba(245, 135, 31, 0.2);
}

.service_icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5871f, #ff6b2b);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: #fff;
  transition: all 0.3s ease;
}

.service_item:hover .service_icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(245, 135, 31, 0.25);
}

.service_item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #222;
  margin-bottom: 12px;
  font-weight: 600;
}

.service_item p {
  color: #666;
  line-height: 1.5;
  font-size: 14px;
}

/* ======= CTA SECTION ======= */
.numerology_cta_section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a103d 0%, #0a0518 50%, #1a103d 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.numerology_cta_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(245,135,31,0.1)"/></svg>');
  background-size: 50px 50px;
  animation: float 20s linear infinite;
}

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

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

.cta_box {
  max-width: 600px;
  margin: 0 auto;
  padding: 50px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.cta_box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta_box p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 35px;
  opacity: 0.9;
}

.cta_buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}

/* Testimonials Styling */
.testimonials_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.testimonial_item {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(245, 135, 31, 0.1);
  position: relative;
  overflow: hidden;
}

.testimonial_item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(245, 135, 31, 0.3);
}

.testimonial_content {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.testimonial_header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.client_avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}

.client_avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client_info {
  flex: 1;
}

.client_info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #222;
  margin-bottom: 8px;
  font-weight: 600;
}

.rating {
  display: flex;
  gap: 5px;
  margin-top: 5px;
}

.rating i {
  color: #f58220;
  font-size: 14px;
}

.testimonial_text {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  border-left: 3px solid #f58220;
}

.testimonial_text p {
  font-style: italic;
  color: #555;
  line-height: 1.6;
  font-size: 15px;
  margin: 0;
}

/* CTA Button Styling */
.cta_buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}

.cta_primary_btn,
.cta_secondary_btn {
  padding: 18px 40px;
  border-radius: 35px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta_primary_btn {
  background: linear-gradient(135deg, #f5871f, #ff6b2b);
  color: #fff;
  box-shadow: 0 4px 20px rgba(245, 135, 31, 0.3);
}

.cta_secondary_btn {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.cta_primary_btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(245, 135, 31, 0.4);
}

.cta_secondary_btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-3px);
}

/* ======= RESPONSIVE DESIGN ======= */
@media (max-width: 768px) {
  .hero_text h1 {
    font-size: 36px;
  }

  .hero_subtitle {
    font-size: 18px;
  }

  .life_path_numbers {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .number_card {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .insights_grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .benefits_grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .areas_list {
    flex-direction: column;
    align-items: center;
  }

  .services_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .cta_buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta_primary_btn,
  .cta_secondary_btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .numerology_hero_wrapper {
    height: 400px;
  }

  .hero_text h1 {
    font-size: 28px;
  }

  .services_grid {
    grid-template-columns: 1fr;
  }

  .roadmap_box {
    padding: 30px 20px;
  }

  .application_areas {
    padding: 30px 20px;
  }

  .cta_box {
    padding: 35px 25px;
  }

  .cta_box h2 {
    font-size: 28px;
  }
}

.life_path_cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}

/* CARD */
.life_card {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
  border: 1px solid #f2f2f2;
}

.life_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* NUMBER */
.life_card_number {
  position: absolute;
  top: 15px;
  right: 18px;
  font-size: 40px;
  font-weight: 700;
  color: rgba(255, 112, 16, 0.08);
}

/* TOP */
.life_card_top {
  background: linear-gradient(135deg, #ff7010, #ff8c42);
  padding: 15px 25px;
  text-align: center;
  color: #fff;
}

.life_card_icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  font-size: 32px;
}

.life_card_top h4 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

/* BOTTOM */
.life_card_bottom {
  padding: 28px 24px;
  text-align: center;
}

.life_card_bottom p {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: #666;
}

/* FEATURED CARD */
.life_card.featured .life_card_top {
  background: linear-gradient(135deg, #ff7010, #ff8c42);
}

/* RESPONSIVE */
@media(max-width:991px) {
  .life_path_cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:767px) {
  .life_path_cards {
    grid-template-columns: 1fr;
  }
}

/* linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) padd 
forecasting css
*/

/* FORECAST SECTION */
.forecast_cards_wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
  width: 100%;
}

.forecast_main_card {
  width: 100%;
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  border: 1px solid #f1e3d3;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.forecast_main_card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.forecast_card_header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 112, 16, 0.15);
}

.forecast_card_icon {
  width: 65px;
  height: 65px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ff7010, #ff9a4d);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.forecast_card_icon i {
  color: #fff;
  font-size: 28px;
}

.forecast_card_header h3 {
  margin: 0;
  font-size: 26px;
  color: #2c2c2c;
  font-weight: 700;
}

.forecast_card_header p {
  margin: 5px 0 0;
  color: #777;
  font-size: 15px;
}

.forecast_points {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 25px;
}

.forecast_point {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px dashed #e6d7c8;
}

.forecast_point:hover {
  background: #fffaf6;
  transform: translateX(5px);
}

.point_icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
  border-radius: 12px;
  background: rgba(255, 112, 16, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.point_icon i {
  color: #ff7010;
  font-size: 18px;
}

.point_content h4 {
  margin: 0 0 6px;
  font-size: 17px;
  color: #222;
  font-weight: 600;
}

.point_content p {
  margin: 0;
  color: #666;
  line-height: 1.6;
  font-size: 14px;
}

@media(max-width:768px) {

  .forecast_main_card {
    padding: 20px;
  }

  .forecast_card_header {
    flex-direction: column;
    text-align: center;
  }

  .forecast_point {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* side bar */

.sidebar_widget {
  background: #fff;
  border: 1px dashed rgba(255, 112, 16, 0.45);
  border-radius: 16px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

/* SIDEBAR TITLE */
.sidebar_widget h3 {
  background: linear-gradient(90deg, #f5871f 0%, #f29120 100%);
  color: #fff;
  padding: 14px 18px;
  margin: -25px -25px 20px -25px;
  border-radius: 14px 14px 0 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* testimonial */

/* TESTIMONIAL GRID */
.testimonials_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

/* TESTIMONIAL CARD */
.testimonial_card {
  position: relative;
  background: linear-gradient(135deg, #fff7f0 0%, #ffe8d6 100%);
  border-radius: 22px;
  padding: 35px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: 0.4s ease;
  overflow: hidden;
  border: 1px solid rgba(245, 135, 31, 0.18);
}

.testimonial_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(245, 135, 31, 0.15);
}

/* QUOTE ICON */
.quote_icon {
  width: 65px;
  height: 65px;
  border-radius: 18px;
  background: linear-gradient(90deg, #f5871f 0%, #f29120 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.quote_icon i {
  color: #fff;
  font-size: 26px;
}

/* TEXT */
.testimonial_text p {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 30px;
}

/* FOOTER */
.testimonial_footer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px dashed rgba(245, 135, 31, 0.25);
}

/* AVATAR */
.client_avatar img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* CLIENT INFO */
.client_info h4 {
  margin: 0;
  font-size: 20px;
  color: #222;
  font-weight: 700;
}

.client_info span {
  display: block;
  color: #777;
  margin: 5px 0 10px;
  font-size: 14px;
}

/* RATING */
.rating {
  display: flex;
  gap: 4px;
}

.rating i {
  color: #f5a623;
  font-size: 14px;
}

/* MOBILE */
@media(max-width:768px) {

  .testimonial_card {
    padding: 25px 20px;
  }

  .testimonial_text p {
    font-size: 15px;
  }

  .client_avatar img {
    width: 60px;
    height: 60px;
  }
}


/* numerology css */

/* MAIN GRID */
.service_features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 35px;
}

/* CARD */
.feature_item {
  display: block !important;
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid #ececec;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

/* TOP ROW */
.feature_header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #ddd;
}

/* ICON */
.feature_icon {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
}

/* TITLE */
.feature_header h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: #222;
}

/* DESCRIPTION */
.feature_description {
  width: 100%;
  display: block;
}

.feature_description p {
  margin: 0;
  color: #666;
  line-height: 1.9;
  font-size: 15px;
}

.consultation_packages .service_features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.consultation_packages .feature_item {
  flex: 1 1 calc(33.33% - 20px);
}

@media(max-width:768px) {

  .consultation_packages .feature_item {
    flex: 1 1 100%;
  }

  .form_row {
    display: block;
  }

  .form_group {
    width: 100%;
    margin-bottom: 15px;
  }

  .contact_form {
    padding: 15px;
  }

  .contact_form input,
  .contact_form select,
  .contact_form textarea {
    width: 100%;
    box-sizing: border-box;
  }
}