@media(min-width:600) and (max-width:1000px){
    .demobutton{
        font-size:15px !important;
    }
}

.nav-tabs {
    border-bottom: 1px solid #ddd;
}
.nav-tabs .nav-link {
    color: #333;
    font-weight: bold;
}
.nav-tabs .nav-link.active {
    color: #007bff;
    border-bottom: 2px solid #007bff;
}
.course-content {
    padding: 20px;
}
.course-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.course-card img {
    width: 100%;
    height: auto;
}
.course-card h4 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0;
}
.course-price {
    font-size: 22px;
    font-weight: bold;
    color: #007bff;
}
.buy-btn {
    display: block;
    text-align: center;
    color: #ccc;
    font-size: 16px;
    margin: 10px 0;
    font-weight: bold;
}
.buy-btn:hover {
    color: #007bff;
}
.filter-buttons button {
    margin-right: 5px;
}








/* second css */
.language-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    width: 100%;
    height: auto;
    max-height: 400px;
    overflow: hidden;
margin-top: 128px;
    padding: 20px; /* Added padding for better spacing */
}

.text-content {
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.language-title {
    font-size: 2rem;
    font-weight: bold;
    color: #002868;
    margin-bottom: 10px;
}

p {
    font-size: 1rem;
    line-height: 1.4;
    color: #444;
    margin-bottom: 15px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #079499;
    color: white;
    font-size: 16px;
    font-weight: bold;
    /*padding: 10px 20px;*/
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
    text-align: center;
    width: fit-content;
}

.btn-whatsapp i {
    margin-right: 8px;
}

.btn-whatsapp:hover {
    background-color: #079499;
    transform: scale(1.05);
}
.btn-call:hover{
    background-color: #28a745;
    transform: scale(1.05);
}

.image-container {
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container img {
    width: 100%;
    max-width: 350px;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .language-section {
        flex-direction: column;
        text-align: center;
        max-height: none;
        padding: 15px;
    }

    .text-content, .image-container {
        width: 100%;
    }

    .image-container img {
        max-width: 250px;
    }

    .language-title {
        font-size: 1.8rem;
    }

    p {
        font-size: 0.95rem;
    }

    .btn-whatsapp {
        width: 100%;
        /* max-width: 200px; */
        margin: 10px auto 0;
    }
    .btn-custom{
        margin: 10px auto 0;
    }
}
  
 .class-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #F5F5F5;
    border-radius: 12px;
    padding: 20px;
    width: 98%;
    height: auto;
    border: none;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.class-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
    width: 50%;
}

.class-header {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
}

.class-header i {
    font-size: 24px;
    margin-right: 10px;
}

.checkbox-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #333;
}

.checkbox-item i {
    color: #0B5ED7;
    font-size: 16px;
    margin-right: 8px;
}

/* Price Section */
.class-price {
    font-size: 18px;
    font-weight: bold;
    color: black;
    text-align: center;
    width: 15%;
}

.class-price .price {
    font-size: 22px;
    font-weight: bold;
}

/* Button */
.enquire {
    white-space: nowrap;
    width: 20%;
    text-align: center;
}

.btn-enquiry {
    display: inline-block;
    background: #E1E1E1;
    color: #079499;
    border: 2px solid #079499;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.btn-enquiry:hover {
    background: #D0D0D0;
    border: 1px solid #079499;
}

/* Responsive Design */
@media (max-width: 768px) {
    .class-box {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .class-content {
        width: 100%;
    }

    .checkbox-list {
        grid-template-columns: 1fr;
        text-align: left;
        justify-content: center;
    }

    .class-price {
        width: 100%;
        font-size: 16px;
        margin: 10px 0;
    }

    .enquire {
        width: 100%;
        margin-top: 10px;
    }

    .btn-enquiry {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
}
