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

.key-about {
    background-image: linear-gradient(to right, rgb(15, 103, 176), rgb(36, 144, 235)) !important;
    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;
}

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

.key-about h3 {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 15px;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 5px;
    font-family: "Lora", serif;
}

.key-links {
    background-image: linear-gradient(to right, rgb(15, 103, 176), rgb(36, 144, 235)) !important;
    /* 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;
}

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

.key-links h3 {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 15px;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 5px;
    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-image: linear-gradient(to right, rgb(15, 103, 176), rgb(36, 144, 235)) !important;
    /* 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;
}

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

.key-contact h3 {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 15px;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 5px;
    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;
}

.key-baner-div img {
    width: 100%;
    height: 340px;
    /* margin-bottom: 30px; */
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.key-main h2 {
    text-align: left;
    color: #f92400;
}


.carrer-para {
    font-size: 28px;
    /* font-weight: 600; */
}





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

.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;
}







.table-container {
    max-width: 1000px;
    margin: auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

thead {
    background-image: linear-gradient(to right, #0f67b0, #2490eb) !important;
    color: #fff;
}

th,
td {
    padding: 14px 12px;
    border-bottom: 1px solid #e0e0e0;
}

th {
    font-weight: 600;
    font-size: 16px;
}

tbody tr:hover {
    background: #f1f5ff;
    transition: 0.3s;
}

.highlight {
    color: #198754;
    font-weight: bold;
}

.weak {
    color: #dc3545;
    font-weight: bold;
}

@media (max-width: 600px) {

    th,
    td {
        padding: 10px;
        font-size: 14px;
    }
}








/* Section */

/* Grid */
.tbc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Card */
.tbc-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid #248fea;
}

.tbc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Icon */
.tbc-icon {
    font-size: 35px;
    color: #0f67b0;
    margin-bottom: 15px;
}

/* Title */
.tbc-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000000;
}

/* Description */
.tbc-desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

/* List */
.tbc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tbc-list li {
    font-size: 14px;
    margin-bottom: 8px;
    color: #333;
    display: flex;
    align-items: center;
}

.tbc-list li i {
    color: #f3612a;
    margin-right: 8px;
}

/* Responsive */
@media (max-width: 992px) {
    .tbc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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




.dental-img {
    height: 100%;
    width: 100%;
}

.dental-img img {
    height: 100%;
    width: 100%;
}

.core-box {

    background-color: white;
    color: black !important;
    padding: 20px;
}

.core-box h6 {
    font-size: 23px;
}

.box-list {
    list-style: none;
    padding-left: 0rem;
    line-height: 2rem;
}

.box-list li i {
    padding-right: 25px;
    color: #f3612a !important;
}

.industry {
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 15px;
    background: rgb(255, 255, 255);
}

.industry p {
    font-size: 20px;
    font-weight: 600;
    color: black;
    text-align: center;
    margin-bottom: 0rem;
}





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

.card-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    border-top: 4px solid #248fea;
    margin-bottom: 20px;
}

.card-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.card-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #222;
}

.card-box ul {
    padding-left: 18px;
    margin: 0;
}

.card-box ul li {
    margin-bottom: 8px;
    color: #555;
    line-height: 1.5;
}

.helping {
    height: 155px;
}

.consume {
    height: 130px;
}

/* Mobile rexponsive */
@media only screen and (max-width:768px) {
    .key-about {
        max-width: 100%;
    }

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

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

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

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

    .title {
        font-size: 22px;
    }

    .dental-img img {
        height: auto;
        width: 100%;
    }

    .dental-img {
        height: auto;
        width: 100%;
    }

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

    .helping {
        height: auto;
    }

    .consume {
    height: auto;
}
}