.text-justify {
    text-align: justify;
}

.key-about {
    background-color: #520d0d;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    max-width: 300px;
    /* font-family: "Lora", serif; */
    font-family: 'Arial', sans-serif;
    transition: transform 0.3s;
    /* border: 1px solid #188d40; */
}

.key-about:hover {
    transform: translateY(-5px);
}

.key-about h3 {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 15px;
    border-bottom: 2px solid #ffc700;
    padding-bottom: 5px;
    justify-content: center;
    align-items: center;
    /* padding-left:40%; */
    margin: auto;
    /* font-family: "Lora", serif; */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    /* Ensures horizontal centering */
    text-align: center;
    /* Ensures the text is centered inside the <h3> */
}

.key-about p {
    color: #ffffff;
}

.key-links {
    background-color: #520d0d;
    /* soft background */
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    max-width: 300px;
    font-family: 'Arial', sans-serif;
    transition: transform 0.3s;
    background-image: url();
    object-fit: cover;
    /* border: 1px solid #188d40; */
}

.key-links:hover {
    transform: translateY(-5px);
}

.key-links h3 {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 15px;
    border-bottom: 2px solid #f39c0a;
    padding-bottom: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    /* Ensures horizontal centering */
    text-align: center;
    /* Ensures the text is centered inside the <h3> */
    /* font-family: "Lora", serif; */
}

.key-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.key-links ul li {
    margin: 0px 0;
}

.key-links ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1rem;
    padding: 8px 12px;
    display: block;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.key-links ul li a:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateX(5px);
}

.key-contact {
    background-color: #520d0d;
    /* soft background */
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    max-width: 300px;
    font-family: 'Arial', sans-serif;
    transition: transform 0.3s;
    /* border: 1px solid #188d40; */
}

.key-contact:hover {
    transform: translateY(-5px);
}

.key-contact h3 {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 15px;
    border-bottom: 2px solid #f39c0a;
    padding-bottom: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    /* Ensures horizontal centering */
    text-align: center;
    /* Ensures the text is centered inside the <h3> */
    /* font-family: "Lora", serif; */
}

.key-contact p a {
    color: rgb(255, 255, 255);
    text-decoration: none;
}



.key-baner-div {
    width: 100%;
    height: 340px;
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
}


@media (max-width: 768px) {

    .my-key-banner img {
        object-fit: cover;
    }
}


@media (max-width: 480px) {
    .key-baner-div {
        height: auto;
        margin-bottom: 0px;
    }

    .my-key-banner img {
        object-fit: cover;
    }
}




.key-baner-div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}





/* FAQ css */
.faq-contain {
    max-width: 800px;
    margin: auto;
}

.faq-title {
    text-align: center;
    font-size: 35px;
    margin-bottom: 30px;
    color: #222;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.faq-question {
    width: 100%;
    padding: 18px 20px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    background: #ffffff;
    border: none;
    outline: none;
    cursor: pointer;
    position: relative;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f1f1f1;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 20px;
    transition: transform 0.3s;
}

.faq-question.active::after {
    content: '-';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #fafafa;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 15px 20px;
    margin: 0;
    color: #555;
}





.analysis-table-wrapper {
    width: 100%;
    /* overflow-x: auto; */
    /* margin: 30px 0; */
}

.analysis-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Segoe UI', sans-serif;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.analysis-table thead {
    background: linear-gradient(135deg, #572124, #520d0d);
    color: #fff;
}

.analysis-table th {
    padding: 16px;
    text-align: left;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.analysis-table td {
    padding: 14px 16px;
    font-size: 15px;
    color: #444;
    border-bottom: 1px solid #eee;
}

.analysis-table tbody tr {
    transition: all 0.3s ease;
}

.analysis-table tbody tr:hover {
    background-color: #f9fbff;
    transform: scale(1.01);
}

.analysis-table tbody tr:last-child td {
    border-bottom: none;
}

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

    .analysis-table th,
    .analysis-table td {
        padding: 9px;
        font-size: 14px;
    }
}


.vedic-img {
    /* height: 100%; */
    width: 100%;

}

.vedic-img img {
    /* height: 100%; */
    width: 100%;

}

.astro h5 {
    font-size: 23px;
}


.astro-list {
    padding-left: 0rem;
    list-style: none;
}

.astro-list li i {
    color: #ff4500;
    padding-right: 22px;
    line-height: 2rem;
}

.generic {
    padding: 30px;
    border-left: 6px solid #06a3da;
    border-radius: 20px;
    background: #f5fcff;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}


.special {
    list-style: none;
    padding-left: 1rem;
}

.special li {
    color: #b3b3b3;
}

.special li i {
    color: #06a3da;
    padding-right: 25px;
}





.section {
    text-align: center;
}

.section p {
    max-width: 800px;
    margin: auto;
    line-height: 1.6;
    color: #c0c0c0;
}

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

.card-box {
    background: linear-gradient(145deg, #1e293b, #020617);
    padding: 25px;
    border-radius: 15px;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.card-box:hover {
    transform: translateY(-10px);
}

.card-box h4 {
    margin-bottom: 10px;
    font-size: 20px;
    color: #facc15;
}

.card-box span {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
    color: #38bdf8;
}




/* Title */
.main-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 700;
    color: #facc15;
}

/* Cards */
.card-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

/* Card Design */
.card {
    background: linear-gradient(145deg, #1e293b, #020617);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    transition: 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(250, 204, 21, 0.3);
}

/* Card Title */
.card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #facc15;
}

/* Text */
.card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #e2e8f0;
}

/* Responsive */
@media (max-width: 768px) {
    .main-title {
        font-size: 28px;
    }
}


.why-list i {
    font-size: 50px;
    color: #ffc700;
}




/* Mobile responsive */
@media (max-width: 768px) {
    .key-baner-div img {
        width: 100%;
        height: auto;
    }

    .key-baner-div {
        width: 100%;
        height: auto;
    }

    .key-about {
        max-width: 100%;
    }

    .key-links {
        max-width: 100%;
    }

    .key-contact {
        max-width: 100%;
    }
}