* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
.header_img {
    height: 60px;  /* Adjust based on your needs */
    width: auto;   /* Maintains aspect ratio */
    max-width: 250px; /* Prevents logo from getting too wide */
    object-fit: contain; /* Ensures image isn't distorted */
    padding: 10px; /* Gives some breathing room */
    margin: 0;
}
.ncert_img {
    height: 70px;  /* Adjust based on your needs */
    width: auto;   /* Maintains aspect ratio */
    max-width: 250px; /* Prevents logo from getting too wide */
    object-fit: contain; /* Ensures image isn't distorted */
    padding: 10px; /* Gives some breathing room */
    margin: 0;
}


@media screen and (max-width: 768px) {
    .header_img {
        height: 40px; /* Smaller size for mobile */
    }
}


.company{
    padding-right: 5px;
}


ul {
    list-style: none;
}

.footer_a {
    text-decoration: none;  /* Removed underline */
    color: inherit; /* Ensure color remains */
}

.footer_a:hover {
    text-decoration: none;  /* Removed underline on hover */
}

ul > li > .footer_a {
    color: #fff;
}

ul > li {
    line-height: 1.5em;
}

.footer_ {
    display: block;
    width: 100%;
    position: relative;
    padding-top: 150px;
    padding-right: 25px;
    padding-bottom: 50px;
    padding-left: 25px;
    background: #150c21;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.footer_footer-start {
    display: flex;
    position: relative;
    width: 90%;
    max-width: 1280px;
    margin: auto;
    background: #705df2;
    border-radius: 14px;
    justify-content: space-between;
    align-items: center;
    padding: 70px 100px;
}

.footer_start-learning {
    position: absolute;
    left: 0;
    right: 0;
    top: -150px;
}

.footer_ .footer_inner {
    display: flex;
    column-gap: 20px;
    row-gap: 20px;
    justify-content: space-between;
    max-width: 1180px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    color: #fff;
}

.footer_main-logo {
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;  /* Removed underline */
    color: inherit; /* Ensure color remains */
}

.footer_main-logo .footer_logo {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.footer_main-logo .footer_logo > .footer_img {
    display: block;
    width: 100%;
    min-width: 40px;
}

.footer_logo-info {
    text-align: left;
    line-height: 20px;
}

.footer_text {
    font-size: 17px;
    line-height: 17px;
    color: #fff;
    letter-spacing: .18em;
    font-weight: 600;
}

.footer_copyright {
    color: #fff;
    font-size: 12px;
    line-height: 12px;
  text-decoration: none;
}

.footer_is-logo > .footer_a {
    text-decoration: none;
}

.footer_ .footer_column {
    width: 100%;
    font-size: 14px;
    text-align: left;
}

.footer_ .footer_column .footer_column-title {
    margin-bottom: 0.5em;
    font-weight: 700;
    font-size: 16px;
}

.footer_ .footer_column .footer_column-title:not(:first-child) {
    margin-top: 1.5em;
}

.footer_illustration {
    position: absolute;
    top: -28px;
    left: 8%;
}

.footer_a.footer_button {
    display: inline-flex;
    position: relative;
    height: 60px;
    margin-right: 20px;
    flex-direction: row;
    align-items: center;
    overflow: hidden;
    background: #fff;
    color: #705df2;
    border-radius: 36px;
    box-shadow: 0px 24px 74px rgb(60 0 189 / 20%);
    font-size: 16px;
    font-weight: 700;
    padding: 0 30px;
    text-decoration: none;
}

.footer_section-title {
    font-size: 44px;
    font-weight: 700;
    color: #fff;
}

h3.footer_section-sub-title {
    font-size: 22px;
    font-weight: 400;
    color: #fff;
}

.footer_section-sub-title span {
    opacity: 0.6;
}

h3.footer_section-sub-title strong {
    font-weight: 600;
}

@media only screen and (max-width: 990px) and (min-width: 200px) {
    body {
        height: 200vh;
        overflow-x: hidden;
        overflow-y: scroll;
    }
.footer{
        padding-top: 20px;
    }

    .footer_ .footer_inner {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .footer_start-learning {
        position: unset;
    }

    .footer_footer-start {
        width: 100%;
        display: block;
        padding: 30px 20px;
        margin: 30px auto;
    }

    .footer_section-title {
        font-size: 30px;
    }

    h3.footer_section-sub-title {
        font-size: 18px;
    }

    .footer_ {
        padding-top: 0;
    }

    .footer_a.footer_button {
        height: 50px;
        margin-top: 10px;
    }

    .footer_column.footer_is-logo {
        order: 4;
    }
}
