.main-title {
    font-size: 42px;
    color: #2d1b4e;
    font-weight: 700;
    margin-bottom: 60px;
}

.card-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.numerology-section {
    text-align: center;
    padding: 80px 20px;
}

.info-card {
    background: #eee;
    padding: 40px 30px;
    border-radius: 15px;
    width: 380px;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}


/* How newmerology works */

element.style {
    text-align: center;
}

.cards {
    display: grid;
    grid-template-columns: repeat(4, 250px);
    justify-content: center;
    gap: 30px;
}

.card {
  width: 260px;
  height: 320px; /* same height */
  background: #f8f5ef;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  /* transition: all 0.3s ease; */
  cursor: pointer;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* .card {
    width: 260px;
    background: #f8f5ef;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
} */

.card_row {
  display: flex;
  gap: 20px;
  justify-content: flex-start; /* move left */
  align-items: stretch;
  flex-wrap: nowrap;
  margin: 0 auto;
  width: fit-content;
}

/* .card_row {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: nowrap;
    margin: 0 auto;
    width: fit-content;
} */


.box {
    margin-top: 20px;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
} 

.icon {
    font-size: 30px;
    margin-bottom: 10px;
}

.card h3 {
    font-size: 16px;
    color: #2d1b4e;
}

.card p {
    font-size: 13px;
    color: #444;
}


.title {
  font-size: 26px;
  color: #2d1b4e;
  margin-bottom: 40px; /* add spacing */
}


/* .title {
    font-size: 26px;
    color: #2d1b4e;
    margin-bottom: 10px;
} */

.how-works {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(180deg, #eccb8c);
}


.card.center {
    background: linear-gradient(135deg, #f6a94c,);
    color: #3f3d3d;
    transform: scale(1.05); 
}

 /* card hover */


/* Smooth transition */
.card {
  transition: all 0.5s ease;
}

/* Hover Effect */
.card:hover {
  /* transform: translateY(-10px) scale(1.03); */
  background: linear-gradient(135deg, #f6a94c, #ff7a18);
  color: #fff;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* Change text inside card */
.card:hover h3,
.card:hover p {
  color: #fff;
  /* font-family: "Brush Script MT", cursive; */
}

/* Inner box styling on hover */
.card:hover .box {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

/* Icon color change */
.card:hover .icon {
  transform: scale(1.2);
}

/* the core principle */

.title {
    font-size: 28px;
    color: #2d1b4e;
}

.subtitle {
    font-size: 14px;
    margin-bottom: 40px;
}

.content-box {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1200px) {
    .container {
        width: 1200px;
    }
}

.core-principle {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(180deg, #f0ca98);
}