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

.key-about {
    background: linear-gradient(135deg, #abe6b3, #2af53e);
    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;
    font-weight: 700;
    border-bottom: 2px solid #000000;
    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: #000000;
}

.key-links {
    background: linear-gradient(135deg, #abe6b3, #2af53e) !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;
    background-image: url();
    object-fit: cover;
    /* border: 1px solid #188d40; */
}

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

.key-links h3 {
    font-size: 1.6rem;
    color: #000000;
    font-weight: 700;
    margin-bottom: 15px;
    border-bottom: 2px solid #000000;
    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: #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: #ffffff;
    color: #000000;
    transform: translateX(5px);
    border-left: 4px solid rgb(10, 10, 10);
}

.key-contact {
    background: linear-gradient(135deg, #abe6b3, #2af53e);
    /* 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;
    font-weight: 700;
    margin-bottom: 15px;
    border-bottom: 2px solid #000000;
    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(0, 0, 0) !important;
    text-decoration: none;
}


.online-text h2 {
    color: #000000;
    font-family: Stardos Stencil;
    font-size: 45px;
    font-weight: 800;
    margin-top: 15px;
    margin-bottom: 10px;
}

.key-main {
    color: #000;
    font-size: 35px;
    font-weight: 700;
}

.knowledge-head {
    color: #000;
    font-size: 28px;
    font-weight: 700;
}

.science-box {
    /* border: 1px solid #2df540; */
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 20px;
    border-radius: 10px;
    /* margin-bottom: 20px; */
    height: 100%;
}




.online-text {
    text-align: center;
}

.online-text h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.online-text h2::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 5px;
    width: 180px;
    height: 4px;
    background: #2cf540;
    border-radius: 5px;
}



/* 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: rgb(171 230 179) 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 css */
.info-section {
    max-width: 900px;
    margin: auto;
        width: 900px;
}

.info-section h2 {
    text-align: center;
    font-size: 34px;
    color: #0a3d62;
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
}

.info-section h2::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #f39c12;
    display: block;
    margin: 12px auto 0;
    border-radius: 20px;
}

.helios-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.helios-table tr {
    transition: .3s;
}

.helios-table tr:nth-child(even) {
    background: #f8fbff;
}

.helios-table tr:hover {
    background: #eef7ff;
}

.helios-table th {
    width: 32%;
    background: #0a4b78;
    color: #fff;
    text-align: left;
    padding: 15px;
    font-size: 17px;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.helios-table td {
    padding: 15px;
    font-size: 16px;
    color: #444;
    border-bottom: 1px solid #e9eef3;
    line-height: 1.7;
}

.helios-table th i {
    color: #ffc107;
    margin-right: 10px;
    width: 22px;
    text-align: center;
}

.helios-table tr:last-child th,
.helios-table tr:last-child td {
    border-bottom: none;
}

/* Responsive */

@media(max-width:768px) {

    .helios-table,
    .helios-table tbody,
    .helios-table tr,
    .helios-table th,
    .helios-table td {
        display: block;
        width: 100%;
    }

    .helios-table tr {
        margin-bottom: 18px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
    }

    .helios-table th {
        border: none;
        width: 100%;
    }

    .helios-table td {
        border: none;
        background: #fff;
    }
}


.quick-bg {
    background: #f4fff6;
}




.features-grid {
    display: grid;
    /* grid-template-columns: repeat(4, 1fr); */
    gap: 25px;
    height: 100%;
}

.feature-box {
    background: #fff;
    padding: 23px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

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

.icon-box {
    width: 60px;
    height: 60px;
    line-height: 65px;
    margin: auto;
    background: #abe6b3;
    color: #000000;
    border-radius: 50%;
    font-size: 28px;
    margin-bottom: 20px;
}

.feature-box h4 {
    font-size: 17px;
    color: #1a2b4c;
    margin-bottom: 10px;
}

.feature-box p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}


/* Responsive */

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

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

.inter-bg {
    background: #f5f5f5;
}






/* Why choose css */
/* Cards Grid */

.feat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-card {
    background: #ffffff;
    padding: 25px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all .4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background: #2cf540;
    top: 0;
    left: 0;
    transform: scaleX(0);
    transition: .4s;
}

.feature-card:hover:before {
    transform: scaleX(1);
}

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


.icon-sec {
    width: 75px;
    height: 75px;
    background: #123c78;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    font-size: 32px;
    margin-bottom: 20px;
    transition: .4s;
}


.feature-card:hover .icon-sec {
    background: #2cf540;
    transform: rotateY(360deg);
}


.feature-card h5 {
    font-size: 21px;
    font-weight: 700;
    color: #123c78;
    margin-bottom: 15px;
}


.feature-card p {
    font-size: 15px;
    color: #555;
    /* line-height: 1.7; */
}


/* Responsive */

@media(max-width:1200px) {
    .feat-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


@media(max-width:768px) {
    .feat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


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

    .section-title h2 {
        font-size: 28px;
    }
}



.why-bg {
    position: relative;
    background-image: url('../img/keyword-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.why-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}






/* steps css */

.process-section {
    position: relative;
    background-image: url('../img/keyword-bg-steps.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.process-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.process-title {
    text-align: center;
    margin-bottom: 50px;
}

.process-title h2 {
    font-size: 36px;
    color: #1c2b50;
    margin-bottom: 10px;
}

.process-title p {
    color: #666;
    font-size: 16px;
}

.timeline {
    max-width: 1000px;
    margin: auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 3px;
    background: #ffffff;
    top: 25px;
    bottom: 163px;
    left: 50%;
    transform: translateX(-50%);
}

.step-box {
    width: 50%;
    padding: 15px 40px;
    position: relative;
}

.step-box:nth-child(odd) {
    left: 0;
    text-align: right;
}

.step-box:nth-child(even) {
    left: 50%;
}

.step-content {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: .3s;
}

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

.step-number {
    width: 50px;
    height: 50px;
    background: #ffffff;
    color: rgb(0, 0, 0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    font-weight: 700;
    position: absolute;
    top: 25px;
    z-index: 2;
}

.step-box:nth-child(odd) .step-number {
    right: -25px;
}

.step-box:nth-child(even) .step-number {
    left: -25px;
}

.step-content h3 {
    color: #1e3a8a;
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 700;
}

.step-content p {
    color: #555;
    line-height: 1.7;
    font-size: 15px;
}


/* Responsive */

@media(max-width:768px) {

    .timeline::before {
        left: 25px;
    }

    .step-box,
    .step-box:nth-child(even),
    .step-box:nth-child(odd) {
        width: 100%;
        left: 0;
        text-align: left;
        padding-left: 70px;
        padding-right: 10px;
    }

    .step-box .step-number,
    .step-box:nth-child(odd) .step-number,
    .step-box:nth-child(even) .step-number {
        left: 0;
        right: auto;
    }

}










/* .learning-wrapper{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:30px;
    align-items:start;
} */


.platform-content {
    background: #ffffff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.platform-content h4 {
    color: #000000;
    font-size: 24px;
    margin-bottom: 25px;
}


.feature-grid-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}


.feature-card-sec {
    background: #f4f8ff;
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    transition: .3s;
}

.feature-card-sec:hover {
    transform: translateY(-8px);
    background: #0a4b78;
    color: white;
}

.feature-card-sec i {
    font-size: 30px;
    color: #0a4b78;
    margin-bottom: 15px;
}

.feature-card-sec:hover i {
    color: white;
}

.feature-card-sec:hover h5 {
    color: white;
}

.feature-card-sec h5 {
    font-size: 14px;
    margin-bottom: 10px;
    color: rgb(0, 0, 0);
}


.feature-card-sec p {
    font-size: 14px;
    line-height: 1.6;
}



.parent-box {
    background: linear-gradient(135deg, #0b63ce, #062b75);
    color: white;
    padding: 35px;
    border-radius: 20px;
}

.parent-box h3 {
    color: white;
}

.parent-box p {
    line-height: 1.7;
}

.parent-box ul {
    padding: 0;
    list-style: none;
}

.parent-box li {
    margin: 15px 0;
}

.parent-box i {
    margin-right: 10px;
}



.assessment-grid {
    display: grid;
    /* grid-template-columns: repeat(3, 1fr); */
    gap: 25px;
    height: 100%;
}


.assessment-card {
    background: white;
    padding: 20px;
    /* text-align: center; */
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: .3s;
    border-left: 4px solid #abe6b3;
    margin-bottom: 20px;
}

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

.assessment-card h5 {
    color: #466280;
    font-weight: 700;
    font-size: 20px;
}

.assessment-card p {
    color: #000000;
    /* line-height: 1.6; */
    font-weight: 600;
}



.teacher-note {
    margin-top: 40px;
    padding: 25px;
    background: #eaf3ff;
    border-left: 5px solid #0b63ce;
    display: flex;
    gap: 20px;
    align-items: center;
    border-radius: 10px;
}


.teacher-note i {
    font-size: 40px;
    color: #0b63ce;
}


.teacher-note p {
    margin: 0;
    line-height: 1.7;
}



/* Responsive */

@media(max-width:992px) {

    .learning-wrapper {
        grid-template-columns: 1fr;
    }

    .feature-grid-box,
    .assessment-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media(max-width:600px) {

    /* .feature-grid-box,
    .assessment-grid {
        grid-template-columns: 1fr;
    } */

}



.doubt-box {
    background: #000;
}

.learn-list li{
color: #ffffff;
}





.alg-topics-grid{
    display:grid;
    /* grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); */
    gap:30px;
        height: 100%;
}

.alg-topic-card{
    background:#fff;
    padding:25px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.07);
    transition:.35s;
    position:relative;
    overflow:hidden;
    margin-bottom: 15px;
}

.alg-topic-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:5px;
    height:100%;
    background:#2ff543;
    transform:scaleY(0);
    transform-origin:top;
    transition:.35s;
}

.alg-topic-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 45px rgba(0,0,0,.12);
}

.alg-topic-card:hover::before{
    transform:scaleY(1);
}

.alg-icon{
    width: 55px;
    height: 55px;
    background: #abe6b3;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.alg-topic-card h3{
    font-size:23px;
    color:#1f2937;
    /* margin-bottom:15px; */
}

.alg-topic-card p{
    color:#6b7280;
    /* line-height:1.8; */
    font-size:16px;
}








.journey-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* .journey-wrapper::before {
    content: "";
    position: absolute;
    left: 32px;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(#2563eb, #9333ea);
} */


.journey-item {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
}


.journey-number {
    width: 65px;
    height: 65px;
    min-width: 65px;
    border-radius: 50%;
        background: linear-gradient(135deg, #abe6b3, #2ff443);
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(37,99,235,0.25);
    z-index: 2;
}


.journey-content {
    background: #fff;
    padding: 22px 30px;
    border-radius: 15px;
    flex: 1;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: .3s ease;
}


.journey-content:hover {
    transform: translateX(8px);
}


.journey-content h3 {
    margin: 0 0 8px;
    color: #1e293b;
    font-size: 22px;
}


.journey-content p {
    margin: 0;
    color: #64748b;
    line-height: 1.6;
}



/* Responsive */

@media(max-width:768px){

    .learning-heading h2{
        font-size:28px;
    }

    .journey-item{
        gap:15px;
    }

    .journey-number{
        width:50px;
        height:50px;
        min-width:50px;
        font-size:14px;
    }

    .journey-wrapper::before{
        left:24px;
    }

    .journey-content{
        padding:18px;
    }

    .journey-content h3{
        font-size:18px;
    }
}


.inter-link {
        color: #429e4b !important;
    font-weight: 600;
}


/* Mobile Responsive */

@media(max-width:768px) {
.online-text h2 {
    font-size: 30px;
}

.key-main {
    font-size: 25px;
}

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

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

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

.assessment-grid {
    display: flex;
    /* grid-template-columns: repeat(3, 1fr); */
    gap: 25px;
    height: 100%;
}
}