
.box {
    background: #fff;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    text-align: center;
    width: 600px;
    max-width: 100%;
    padding: 30px;

}

.result-Box {
    display: none;
    margin-top: 30px;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    animation: fadeIn 0.5s ease-in-out;
    width: 600px;
    max-width: 100%;
    word-wrap: break-word;

}

.result-Box h3 {
    color: black;
    margin-bottom: 15px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.box p {
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
}

input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

.buttons {
    display: flex;
}

button {
    padding: 10px 20px;
    margin: 5px;
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    width: 50%;
}

.calculate {
    background: #067125;
}

.reset {
    background: #b81c21;
}

.result {
    margin-top: 25px;
    text-align: left;
}

.number-badge {
    background: #0a92ef;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: bold;

}

.Compound-Name-Number {
    margin: 10px 0px;
}

.Destiny-Number {
    margin: 10px 0px;
}

.Meaning {
    font-size: 1.1rem;
}

.letters {
    margin-top: 10px;
    font-size: 1.4rem;
    letter-spacing: 5px;
    color: #0a92ef;
    font-weight: bold;
}

.numbers {
    font-size: 1.4rem;
    letter-spacing:6px;
    color: #2c3e50;
    font-weight: bold;
}

.Numerology-Reading {
    padding: 15px 10px;
    background: #f2f2f2;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    animation: fadeIn 0.5s ease-in-out;
    margin: 10px;
}

.Numerology-Reading h3 {
    margin: 0px;
    font-size: 1.1rem;
    text-align: center;
}

.letter-number-section {
    padding: 15px 10px;
    background: #f2f2f2;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    animation: fadeIn 0.5s ease-in-out;
    margin: 10px;
    text-align: center;
    
}

.meaning-section {
    padding: 15px 10px;
    background: #f2f2f2;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    animation: fadeIn 0.5s ease-in-out;
    margin: 10px;
}

.warning-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 99999999;
}

.warning-content {
    background: #fffbea;
    border: 2px solid #ffb84d;
    border-radius: 14px;
    width: 420px;
    max-width: 90%;
    margin: 12% auto;
    padding: 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    animation: fadeIn 0.3s ease-in-out;
    font-family: Arial, sans-serif;
    text-align: center;
    overflow: hidden;
    position: absolute;
    top: 0%;
    left: 40%;
}

.warning-header {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffcc80;
    padding: 14px;
    border-bottom: 1px solid #ffb84d;
}

.warning-header .icon {
    font-size: 22px;
    margin-right: 8px;
    color: #e65100;
}

.warning-header .title {
    font-weight: bold;
    font-size: 20px;
    color: #e65100;
}

.warning-body {
    font-size: 16px;
    color: #333;
    padding: 20px;
    line-height: 1.5;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 12px;
    font-size: 28px;
    cursor: pointer;
    color: #e65100;
    font-weight: bold;
}

/* chart css  */
.num-table-wrap {
    width: 100%;
    overflow-x: auto !important; /* mobile pe scroll ho */
    -webkit-overflow-scrolling: touch;
    margin-top: 20px;
  }
  
  .num-table {
    border-collapse: collapse;
    width: 100%;
    min-width: 500px; /* table scroll hone ke liye min-width */
    text-align: center;
    font-family: Arial, sans-serif;
  }
  
  .num-table th,
  .num-table td {
    border: 1px solid #000;
    padding: 10px;
    font-size: 16px;
  }
  
  .num-table th {
    font-weight: bold;
    background: #fff;
  }

/* Responsive section start */

@media (max-width:1400px) {
    .warning-content {
        left: 36%;
        top: 15%
    }
}

@media (max-width:992px) {
    .warning-content {
        left: 28%;
        top: 15%
    }
}

@media (max-width:768px) {
    .warning-content {
        top: 25%;
        left: 25%;
    }
    p{
        line-height: 30px;
    }

 
}
@media(max-width:576px) {
    .hero-section {
        padding: 20px 0px !important;
    }

    .num-table th,
  .num-table td {
    padding: 8px;
    font-size: 14px;
  }
     
}
@media (min-width:575px) and (max-width:767px){
     .box,
    .result-Box {
        width: 500px;
        max-width: 100%;
        padding: 20px;
    }
     .warning-content {
        top: 30%;
        left: 15%;
    }
}

@media (min-width:420px) and (max-width:574px) {
      .box,
    .result-Box {
        width: 400px;
        max-width: 100%;
        padding: 20px;
    }
     .warning-content {
        top: 30%;
        left: 5%;
    }
}
@media (max-width:425px) {
    .hero-section {
        margin: 0px;
    }

}

@media (min-width:319px) and (max-width:419px) {
      .box,
    .result-Box {
        width: 300px;
        max-width: 100%;
        padding: 20px;
    }
     .warning-content {
        top: 30%;
        left: 5%;
       
    }
}





