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

.key-about {
    background-color: #ffdebf;
    padding: 10px 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: 30px;
    color: #000000;
    margin-bottom: 15px;
    border-bottom: 2px solid #ee903a;
    padding-bottom: 5px;
    /* font-family: "Lora", serif; */
}

.key-links {
    background-color: #ffdebf;
    /* soft background */
    padding: 10px 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: 30px;
    color: #000000;
    margin-bottom: 15px;
    border-bottom: 2px solid #ee903a;
    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: 15px;
    padding: 8px 12px;
    display: block;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.key-contact {
    background-color: #ffdebf;
    /* soft background */
    padding: 10px 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: 30px;
    color: #000000;
    margin-bottom: 15px;
    border-bottom: 2px solid #ee903a;
    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;
}

.mb-3 {
    margin-bottom: 15px;
}

.mt-3 {
    margin-top: 15px;
}

.py-5 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.key-main h1 {
    font-weight: 700;
    color: #ee903a;
    font-size: 40px;
}






/* Testimonial Section Styles */
.advantages {
    /* background-image: url('/images/keyword-bg-img.jpg');  */
    background: #323333;
    background-size: cover;
    /* Ensures the image covers the whole section */
    background-position: center;
    /* Centers the image */
    background-repeat: no-repeat;
    /* Prevents repeating the image */
    padding: 60px 0;
    /* Adjust padding for spacing */
    position: relative;
    color: #fff;
    /* Optional: makes text readable if image is dark */
}


.section-title {
    font-size: 30px;
    color: #ffffff;
    margin-bottom: 40px;
    font-weight: 600;
}

.testimonial-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial {
    display: none;
    flex-direction: column;
    align-items: center;
    transition: opacity 0.5s ease;
}

.testimonial.active {
    display: flex;
}

.testimonial-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    /* border: 3px solid #d35400; */
}

.testimonial-text {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 15px;
    font-style: italic;
    text-align: center;
}

.testimonial-name {
    font-weight: bold;
    color: #ffffff;
}

.test-para {
    color: #ffffff;
    font-size: 15px;
}

.testimonial-nav {
    position: absolute;
    top: 25%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.testimonial-nav span {
    font-size: 30px;
    cursor: pointer;
    color: #ffffff;
    padding: 10px;
    transition: 0.3s;
}

.testimonial-nav span:hover {
    color: #ffffff;
}




/* Why choose css */
.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    width: 100%;
}

.card {
    background: white;
    border-radius: 15px;
    padding: 25px 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #ee903a;
}

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

.card i {
    font-size: 40px;
    color: #ee903a;
    margin-bottom: 15px;
}

.card h6 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}




/* 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;
    border-left: 4px solid #ee903a;
    border-top: 4px solid #ee903a;
    border-radius: 10px;
}

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



/* Table css */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.comparison-table th,
.comparison-table td {
    padding: 15px 20px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.comparison-table th {
    background-color: #ee903a;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-table tr:hover {
    background-color: #ffe6cf;
}

.feature-column {
    text-align: left;
    font-weight: bold;
    background-color: #ffe6cf;
}

@media screen and (max-width: 768px) {

    .comparison-table th,
    .comparison-table td {
        padding: 12px 10px;
        font-size: 14px;
    }
}






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

.course-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

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

.course-icon {
    font-size: 40px;
    color: #25407c;
    margin-bottom: 15px;
}

.course-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.course-points {
    list-style: none;
    padding: 0;
    text-align: left;
    color: #555;
}

.course-points li {
    margin-bottom: 8px;
    position: relative;
    /* padding-left: 20px; */
}

.course-points li i {
    color: #25407c;
    padding-right: 15px;
}

/* .course-points li::before {
        content: "\f00c";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        left: 0;
        color: #0077cc;
    } */




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

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

.gravity-list {
    list-style: none;
    margin-left: -30px;
    line-height: 2.5;
}

.gravity-list li i {
    color: #ee903a;
    padding-right: 20px;
}






.gravity-contain {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    width: 100%;
    /* max-width: 1000px; */
    padding: 30px;
}

.card-sec {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 25px 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #ee903a;
    border-left: 10px solid #ee903a;
}

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

.card-sec h5 {
    margin-top: 0;
    color: #25407c;
    font-size: 1.5em;
    /* margin-bottom: 15px; */
    font-weight: 600;
        line-height: 1.5;
}

.card-sec ul {
    list-style-type: disc;
    padding-left: 20px;
    color: #333;
    line-height: 1.6;
}

.card-sec ul li {
    margin-bottom: 10px;
}



.learn {
    background: #fff7f0;
}


.neet {
        display: flex;
}

.compl-neet {
        height: 350px;
}




/* Section Background */
.jee-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
}

/* Card Design */
.single-box {
    background: rgb(255 255 255);
    backdrop-filter: blur(12px);
    border-radius: 15px;
    padding: 30px 30px;
    color: #000000;
    transition: all 0.4s ease;
    /* height: 100%; */
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Hover Effect */
.single-box:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

/* Heading */
.single-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

/* Underline Effect */
.single-box h4::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #25407c;
    position: absolute;
    bottom: 0;
    left: 0;
}

/* List Styling */
.single-box ul {
    list-style: none;
    padding: 0;
}

.single-box ul li {
    margin-bottom: 15px;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
}

/* Custom Bullet Icon */
.single-box ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #25407c;
    font-weight: bold;
}


.jee-cls {
    background-color: #eaeaea;
}

.syllabus {
    list-style: none;
        padding-left: 1px;
}

.syllabus li i{
    color: #ee903a;
    padding-right: 25px;
}


/* Mobile responsive */
@media 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;
}
.key-baner-div {
    width: 100%;
    height: auto;
}
.key-main h1 {
    font-size: 30px;
}
.neet {
    display: grid;
}
.compl-neet {
    height: 100%;
}
    
}