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

.key-about {
    background: linear-gradient(135deg, #fe5d37, #ffa387);
    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 #ffffff;
    padding-bottom: 5px;
    /* font-family: "Lora", serif; */
}

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

.key-links {
    background: linear-gradient(135deg, #fe5d37, #ffa387);
    /* 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: #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: linear-gradient(135deg, #fe5d37, #ffa387);
    /* 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 #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 {
    font-weight: 700;
    /* margin-bottom: 12px; */
    font-size: 35px;
    color: #013f87;
}


.key-sub-head {
    color: #001580;
    font-size: 30px;
}


.section-sub-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.section-sub-head::before,
.section-sub-head::after {
    content: "";
    width: 50px;
    height: 2px;
    background: #f4a300;
}

.section-sub-head h3 {
    font-size: 40px;
    font-weight: 700;
    color: #03056d;
    /* text-transform:uppercase; */
    font-family: 'Lobster Two', cursive;
}




.table-wrapper {
    max-width: 900px;
    margin: auto;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

thead {
    background: #fe5d37;
    color: #fff;
}

th,
td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

tr:hover {
    background: #f0f8ff;
}

th {
    font-size: 16px;
}

td {
    font-size: 15px;
    color: #333;
}

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

@media(max-width:768px) {

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







.program-section {
    padding: 60px 5%;
    background: #f8fafc;
}

.program-section .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.program-card {
    display: flex;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: .3s;
}

.program-card:hover {
    transform: translateY(-8px);
}

.program-img {
    width: 40%;
}

.program-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.program-content {
    width: 60%;
    padding: 25px;
}

.age-group {
    display: inline-block;
    background: #ff4f28;
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.program-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #1e293b;
}

.program-content p {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 15px;
    line-height: 1.6;
}

.program-content ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.program-content ul li {
    padding: 6px 0;
    font-size: 15px;
    color: #334155;
    border-bottom: 1px solid #eee;
}

.program-content ul li:last-child {
    border-bottom: none;
}

/* Responsive */

@media(max-width:991px) {
    .program-section .container {
        grid-template-columns: 1fr;
    }
}

@media(max-width:767px) {

    .program-card {
        flex-direction: column;
    }

    .program-img,
    .program-content {
        width: 100%;
    }

    .program-img {
        height: 250px;
    }

    .program-content h3 {
        font-size: 22px;
    }
}


.learning-icon i {
    font-size: 50px;
    padding: 20px;
    color: #fe5d37;
}

.decades {
    font-size: 20px;
    font-weight: 600;
    color: #1d2b53;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;

}




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

.step-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 45px;
    height: 45px;
    background: #f74d27;
    color: #fff;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    top: -20px;
    left: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.step-card h3 {
    margin-top: 20px;
    font-size: 22px;
    color: #222;
}

.step-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-top: 10px;
}






.benefits-section {
    padding: 60px 20px;
    max-width: 1100px;
    margin: auto;
}


.benefits-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); */
    gap: 20px;
    height: 100%;
}

.benefit-card {
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    border-left: 4px solid #f4a300;
    margin-bottom: 20px;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card h5 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #333;
}

.benefit-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.highlight-box {
    margin-top: 35px;
    background: linear-gradient(135deg, #fe5d37, #ffa387);
    color: #fff;
    padding: 25px;
    border-radius: 14px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}





/* Testimonial css */


.testimonial-section {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(0deg, white, #cad9ff 80%);
}

.section-title {
    font-size: 32px;
    margin-bottom: 40px;
    color: #222;
}

.testimonial-slider {
    max-width: 800px;
    margin: auto;
    position: relative;
    min-height: 220px;
}

.testimonial {
    display: none;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease-in-out;
}

.testimonial.active {
    display: block;
}

.message {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

.name {
    margin-top: 20px;
    font-size: 20px;
    color: #ff4f28;
    font-weight: bold;
}

.controls {
    margin-top: 20px;
}

.controls button {
    background: #fcc510;
    color: white;
    border: none;
    padding: 10px 14px;
    margin: 0 5px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s;
}

.controls button:hover {
    background: #0f5bd1;
}


.best-play {
    padding: 30px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    height: 295px;
}

.best-play h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

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

.parent li i {
    color: #fe5d37;
    padding-right: 8px;
}

.quality-box {
    height: 355px !important;
}

.contact-all {
    color: #1b2c55;
    font-family: "Lora", serif;
}

/* 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%;
    }

    .section-sub-head h3 {
        font-size: 24px;
        text-align: center;
    }

    .kinder-scl {
        font-size: 28px !important;
    }

    .key-sub-head {
        font-size: 22px;
    }

    .best-play {
        height: auto !important;
        margin-bottom: 20px;
    }
}