 
body {
    background-color: #f0f1f7;
}

.bannerMain {
    width: 100%;
    position: relative;
    padding: 100px 0px;
    background-color: #24a9e01c;
}

.courseHeading h2 {
    font-size: 25px;
    margin-top: 10px;
    margin-bottom: 15px;
    color: #222;
}

.courseHeading p {
    font-size: 15px;
    color: #444;
    font-weight: 600;
}

    .courseHeading p span {
        color: var(--color-primary);
    }

.courseDetTabs {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    background: #fff;
    padding: 25px 0px;
    padding-left: 10px;
    border-radius: 10px;
    position: sticky;
    top: 0px;
    z-index: 99
}

    .courseDetTabs ul {
        display: flex;
        width: 100%;
        align-items: center;
        list-style: none;
        padding: 0px;
        margin: 0px;
    }

        .courseDetTabs ul li {
            margin: 0px 5px;
            display:flex;
            justify-content:center;
            align-items:center;
        }

            .courseDetTabs ul li a {
                padding: 10px 25px;
                border: 1px solid;
                color: var(--color-primary);
                transition: var(--transition);
                background-color: #fff;
                border: 1px solid var(--color-primary);
                border-radius: 10px;
            }

.courseDtInner {
    width: 100%;
    display: block;
    background-color: #fff;
    padding: 20px;
    margin: 20px 0px;
    border-radius: 15px;
}

    .courseDtInner h2 {
        font-size: 20px;
        font-weight: 500;
        color: #222;
        margin-bottom: 15px;
    }

    .courseDtInner ul {
        background-color: #f9f9f9;
        border-radius: 15px;
        padding: 25px;
        display: flex;
        padding-left: 25px;
        flex-wrap: wrap;
        justify-content: space-between;
    }

        .courseDtInner ul li {
            padding: 10px 0px;
            width: 45%;
        }

            .courseDtInner ul li:nth-child(2n) {
                margin-left: 35px;
            }

.courseDf {
    display: flex;
    align-items: center;
    gap: 10px;
}






.scf-container input,
.scf-container textarea {
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0px;
}

    .scf-container input:focus,
    .scf-container textarea:focus {
        border-radius: 0px;
        background-color: none;
        box-shadow: none;
    }

.scf-container {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    position: sticky;
    top: 0px;
    margin-bottom: 20px;
}

.scf-heading {
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.scf-label {
    font-weight: 500;
    font-size: 14px;
}

.scf-input::placeholder,
.scf-textarea::placeholder {
    color: #b0b0b0;
    font-size: 15px;
}

.scf-button {
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .scf-button:hover {
        opacity: 0.9;
    }


.sftp-heading {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.sftp-form label {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 5px;
}

.sftp-form .form-control,
.sftp-form .form-select {
    background-color: #fff;
    color: #fff;
    border: 1px solid #ddd;
}

    .sftp-form .form-control::placeholder {
        color: #aaa;
    }

.sftp-form .form-check-label {
    font-size: 14px;
}


.sftp-link {
    color: #1da1f2;
    font-size: 14px;
    text-decoration: none;
}

    .sftp-link:hover {
        text-decoration: underline;
    }

.sftp-form .form-check-input {
    background-color: #fff;
    border: 1px solid #ddd;
}

.sftp-form {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
}


.cc-card {
    border: none;
    margin-bottom: 10px;
    background-color: #fff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.cc-header {
    background-color: #fff;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    border-radius: 20px;
}

    .cc-header:hover {
        background-color: #fff;
    }

.cc-arrow {
    transition: transform 0.3s ease;
}

    .cc-arrow.rotate {
        transform: rotate(90deg);
    }

.cc-body {
    padding: 20px;
    background-color: #fff;
    border-top: 1px solid #283b91;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.cc-meta {
    color: #ccc;
    font-size: 14px;
}

.cc-register a {
    color: #2ea3f2;
    font-weight: bold;
    text-decoration: none;
}

    .cc-register a:hover {
        text-decoration: underline;
    }

.cc-icon {
    margin-right: 6px;
    color: #a5a5a5;
}

.numberFeild {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

    .numberFeild select {
        border: none;
    }

.cntpopu {
    width: 100%;
    display: none;
    background-color: rgba(0, 0, 0, 0.7);
    height: 100%;
    z-index: 9999;
    position: fixed;
    top: 0px;
    left: 0px;
}

    .cntpopu .scf-container {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

        .cntpopu .scf-container form {
            position: relative;
        }

            .cntpopu .scf-container form i {
                position: absolute;
                right: -10px;
                top: -80px;
                color: #222;
                font-size: 20px;
                cursor: pointer;
            }




.ccfaq-item {
    background-color: #f9f9f9;
    border-radius: 6px;
    margin-bottom: 10px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.ccfaq-question {
    padding: 15px 20px;
    cursor: pointer;
    position: relative;
    font-weight: 500;
}



.ccfaq-answer {
    display: none;
    padding: 15px 20px;
    background-color: #fff;
    color: #222;
    border-top: 1px solid #000;
}

.ccfaq-toggle-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

    .ccfaq-toggle-icon.rotate {
        transform: translateY(-50%) rotate(90deg);
    }

@media(max-width: 992px) {
    .courseDetTabs ul {
        flex-wrap: wrap;
        justify-content: center;
    }

        .courseDetTabs ul li {
            margin:  5px;
        }
    .bannerMain {
        padding: 20px 0px;
    }
    .bannerText h1{
        font-size: 20px;
    }
    .cntpopu .scf-container{
        width: 90%;
    }
}