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

.key-about {
    background-color: #e4f8ed;
    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: #000000;
    margin-bottom: 15px;
    border-bottom: 2px solid #188d40;
    padding-bottom: 5px;
    font-family: "Lora", serif;
}

.key-links {
    background-color: #e4f8ed;
    /* 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-links:hover {
    transform: translateY(-5px);
}

.key-links h3 {
    font-size: 1.6rem;
    color: #000000;
    margin-bottom: 15px;
    border-bottom: 2px solid #188d40;
    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: #000000;
    font-size: 1rem;
    padding: 8px 12px;
    display: block;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.key-contact {
    background-color: #e4f8ed;
    /* 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: #000000;
    margin-bottom: 15px;
    border-bottom: 2px solid #188d40;
    padding-bottom: 5px;
    font-family: "Lora", serif;
}

.key-contact p a {
    color: rgb(0, 0, 0);
    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;
}

.menu-headings h2,
h3,
h4,
h5,
h6 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 6px;
}

.share-section {
    border-left: 5px solid #1e9348;
    padding: 18px;
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    height: 280px;
    margin-bottom: 30px;

}

.share-hover .share-section:hover {
    background-color: #e4f8ed;
    color: #000000;
    transform: translateX(5px);
    transition: all 0.4s ease;
}

.share-section h5 {
    font-size: 18px;
}





/* FAQ Section */
.faq-section {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
    font-family: 'Segoe UI', sans-serif;
}

/* .faq-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
    color: #222;
} */

/* FAQ Item */
.faq-item {
    border-radius: 10px;
    margin-bottom: 15px;
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* Question */
.faq-question {
    padding: 18px 22px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

/* Icon */
.faq-question span {
    font-size: 24px;
    transition: transform 0.3s ease;
}

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

.faq-answer p {
    padding: 18px 22px;
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* Active State */
.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}





.services-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    /* text-align: center; */
}

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

.service-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card i {
    font-size: 35px;
    color: #e67817;
    margin-bottom: 10px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    font-size: 1em;
    color: #666;
    line-height: 1.6;
}

.service-card ul {
    padding-left: 1rem !important;
}


.chart-img {
    height: 100%;
    width: 100%;
    padding-right: 15px;
}

.chart-img img {
    height: 100%;
    width: 100%;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.invertors {
    display: flex;
}

.locally-box {
    background: #e4f8ed;
    padding: 20px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

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

.locally-list li i {
    color: #228f45;
    margin-right: 5px;
}


.mutual-h {
    height: 240px !important;
}



table {
    border-collapse: collapse;
    width: 90%;
    max-width: 800px;
    background-color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

thead {
    background-color: #e67817;
    color: #ffffff;
}

thead th {
    padding: 15px 10px;
    text-align: left;
    font-size: 1rem;
}

tbody td {
    padding: 12px 10px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.95rem;
    color: #333;
}

tbody tr:hover {
    background-color: #f1f7ff;
}

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

@media (max-width: 600px) {

    table,
    thead,
    tbody,
    th,
    td,
    tr {
        display: block;
    }

    thead {
        display: none;
    }

    tbody td {
        position: relative;
        padding-left: 50%;
        text-align: left;
        border-bottom: 1px solid #e0e0e0;
    }

    tbody td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        top: 12px;
        font-weight: bold;
        color: #4a90e2;
    }
}



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

.card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card ul {
    padding-left: 1rem;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.card h2 {
    color: #000000;
    margin-bottom: 15px;
    font-size: 21px;
    font-weight: 600;
}

.card p {
    font-size: 1rem;
    color: #555;
}

/* Step number badges */
.card::before {
    content: counter(step);
    counter-increment: step;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background-color: #138f3d;
    color: #fff;
    text-align: center;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .card h2 {
        font-size: 1.3rem;
    }
}


.mutual-chart-img {
    height: 100%;
    width: 100%;
}

.mutual-chart-img img {
    height: 100%;
    width: 100%;
}

.peer-box {
    height: 130px !important;
}

.unclaimed-box {
    height: 300px;
}

.unclaimed-box ul{
    padding-left: 1rem;
}




@media (max-width: 768px) {
    .key-about {
        max-width: 100%;
    }

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

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

    .share-section {
        height: 215px;
    }

    .invertors {
        display: grid;
    }

    .menu-headings h2,
    h3,
    h4,
    h5,
    h6 {
        font-size: 27px;
    }
    .key-baner-div img {
    height: auto;
}
.key-baner-div {
    height: auto;
}
.mutual-h {
    height: 190px !important;
}
.chart-img {
    padding-right: 0px;
    padding-bottom: 20px;
}
}


.internal-link {
    color: #000000;
}