body {
    font-family: 'Inter',sans-serif;
    background: #f5f6f8;
    color: #2b2b2b;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter',sans-serif;
}

.mainwrapper {
    overflow-x: hidden;
}
/* ================= COMMON ================= */

.section-title {
    font-weight: 600;
    font-size: 28px;
    margin-bottom: 35px;
}

.card-ui {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(0,0,0,.06);
    transition: .4s ease;
}

    .card-ui:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0,0,0,.12);
    }

/* BUTTON */
.explore-btn {
    background: #2d2d2d;
    color: #ffc107;
    width: fit-content;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    transition: .3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

    .explore-btn:hover {
        background: #111;
        transform: translateX(4px);
    }

/* ================= HERO ================= */

.hero {
    background: linear-gradient(90deg,#dff3d5,#bfe6aa);
    padding: 50px 0;
}

    .hero h1 {
        font-weight: 700;
        color: #1f4f1d;
        letter-spacing: .3px;
    }

    .hero .btn {
        background: #1e6a2c;
        border-radius: 10px;
        padding: 12px 28px;
        font-weight: 500;
    }

.banner_addimage {
    border-radius: 30px;
    overflow: hidden;
}

    .banner_addimage img {
        max-height: 350px;
        width: 100%;
        object-fit: cover;
    }

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.banner_addtext h1 {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    margin: 0;
    padding-bottom: 15px;
}

.banner_addtext p {
    font-size: 25px;
    color: #1e6a2c;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 20px;
}

.banner_addtext .event_date svg path {
    stroke: #feedc2;
}

.banner_addtext .event_date {
    background: #2a4556;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #feedc2;
    display: inline-block;
    vertical-align: middle;
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.banner_addtext .btn.btn-success {
    border: 0;
    background: #ffffff;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #2a4556;
    display: inline-block;
    box-shadow: 0px 3px 7px rgb(0 0 0 / 07%);
    margin-left: 10px;
    transition: 600ms all;
}

    .banner_addtext .btn.btn-success:hover {
        background: #feedc2;
    }
/* ================= STATS ================= */

.stat-box {
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    background: #fff;
    transition: .3s;
}

    .stat-box.yellow {
        background: #f3e3b4;
    }

    .stat-box:hover {
        transform: translateY(-5px);
    }

/* ================= IMAGE HOVER ================= */

.img-hover {
    overflow: hidden;
    border-radius: 14px;
}

    .img-hover img {
        width: 100%;
        transition: transform .6s ease;
    }

.card-ui:hover img {
    transform: scale(1.08);
}

/* ================= EDUCATOR ================= */
.educator-section {
    padding: 50px 0;
    background: #fff;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
}

/* Outer Dark Border */
.educator-card {
    background: #2f4b5a;
    padding: 20px;
    border-radius: 20px;
}

/* Inner White Box */
.educator-inner {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
}

/* Video */
.video-wrapper iframe {
    width: 100%;
    height: 280px;
    border-radius: 12px;
}

/* Person Info */
.educator-info {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.educator-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.educator-info h5 {
    margin: 0;
    font-weight: 600;
}

.educator-info span {
    color: #777;
    font-size: 14px;
}

/* Slick Spacing */
.educator-item {
    padding: 0 15px;
}

/* Arrows */
.nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #cfd3d7;
    background: transparent;
    margin-left: 5px;
}

    .nav-btn:hover {
        background: #000;
        color: #fff;
    }

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
}

    .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

/* ================= BLOG ================= */

.blog-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,.07);
    transition: .4s;
}

    .blog-card:hover {
        transform: translateY(-8px);
    }

.blog-body {
    padding: 18px;
}

    .blog-body h6 {
        font-weight: 600;
        line-height: 1.4;
    }

.blog-date {
    font-size: 13px;
    color: #777;
}



/*new header css*/

/*<!--top strip-->*/
.top_straplink a svg {
    height: 18px;
    width: auto;
    fill: #fff;
}

.Head_upperstrip {
    background: #2a4556;
}

.top_straplink {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

    .top_straplink a {
        display: flex;
        gap: 10px;
        color: #fff;
        font-size: 14px;
        align-items: center;
    }

        .top_straplink a svg path {
            fill: #fff;
        }

.Head_upperstrip marquee.welcomemsg {
    padding: 0;
    font-size: 14px;
    line-height: normal;
    color: #ffffff;
    font-weight: 300;
    position: relative;
}

.Head_upperstrip .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.Head_upperstrip marquee.welcomemsg::before, .Head_upperstrip marquee.welcomemsg::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 100%;
    left: 0;
    right: 0;
    transform: scale(1.2);
    z-index: 1;
    background: linear-gradient(90deg,rgba(42, 69, 86, 1) 5%, rgba(42, 69, 86, 0) 27%);
}

.Head_upperstrip marquee.welcomemsg::after {
    left: auto;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(90deg,rgba(42, 69, 86, 0) 0%, rgba(42, 69, 86, 1) 100%);
}

.userarea {
    background: #feedc2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    width: calc(100% - 70%);
}

header .top_row {
    background: #feedc2;
    padding: 8px 0 0 0;
}

.userarea a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    background: #fff;
    border-radius: 50px;
    color: #000;
    font-weight: 400;
    min-height: 40px;
    padding: 5px 15px;
    min-width: 95px;
    box-shadow: 0px 3px 7px rgb(0 0 0 / 07%);
}

    .userarea a svg {
        height: 17px;
        width: 17px;
    }

    .userarea a.login svg {
        width: 18px;
        height: 18px;
    }

.top_row .container > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-n-search {
    width: 70%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

    .logo-n-search .logo::before {
        content: none;
    }

    .logo-n-search .mob_serch {
        width: calc(100% - 190px);
    }

        .logo-n-search .mob_serch .searcharea {
            padding: 0;
        }

            .logo-n-search .mob_serch .searcharea .serchbar {
                width: 100%;
            }

                .logo-n-search .mob_serch .searcharea .serchbar input {
                    border-radius: 50px;
                    border: 1px solid #d4d6db;
                    min-height: 42px;
                    padding-left: 15px;
                    outline:none;
                }

                    .logo-n-search .mob_serch .searcharea .serchbar input::placeholder {
                        font-size: 14px;
                        color: #899aa0;
                    }

                .logo-n-search .mob_serch .searcharea .serchbar button {
                    background: transparent;
                    border-radius: 50px;
                    width: 33px;
                    right: 5px;
                    height: 33px;
                    top: 4px;
                    transition: 600ms all;
                    line-height: 41px;
                }

                    .logo-n-search .mob_serch .searcharea .serchbar button:hover {
                        background: #2a4556;
                    }

                    .logo-n-search .mob_serch .searcharea .serchbar button svg {
                        width: 20px;
                    }

                    .logo-n-search .mob_serch .searcharea .serchbar button:hover svg path {
                        stroke: #feedc2;
                    }


.head_link {
    background: #4c4c4e;
}

header nav ul.nav li a svg {
    height: 18px;
    width: 18px;
}

header nav ul.nav li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 400;
}

header nav ul.nav.navbar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

header nav ul.nav li a svg path {
    stroke: #fff;
}

header nav ul.nav li a.active, header nav ul.nav li a:focus, header nav ul.nav li a:hover {
    background: #2a4556 !important;
    color: #feedc2 !important;
}

.wrapper {
    padding-top: 138px;
    overflow-x: hidden;
}


@media (max-width:768px) {
    .logo-n-search {
        width: 100%;
        gap: 0;
    }

        .logo-n-search .mob_serch .searcharea .serchbar button {
            top: 13px;
        }

    .top_straplink {
        justify-content: center;
    }

    .userarea {
        display: none;
    }

    .wrapper {
        padding-top: 98px;
    }
}

@media (min-width: 220px) and (max-width: 767px) {
    .bar_menu a {
        margin-top: 50px;
        margin-right: 10px;
    }
}

section.home_stats {
    background: #f1f1f1;
    padding: 50px 0;
}

.statslist ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

    .statslist ul li {
        width: calc(100% / 5 - 16px);
        background: #fff;
        min-height: 100px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        align-content: center;
        clip-path: polygon(0 0, 80% 0%, 100% 27%, 100% 100%, 0 100%);
        border-radius: 15px;
        transition: 600ms all;
        color: #000;
    }

        .statslist ul li * {
            width: 100%;
            text-align: center;
        }

.container.stats {
    padding: 0;
}

.statslist ul li:nth-child(even) {
    background: #feedc2;
}

.statslist ul li b {
    font-size: 22px;
    font-weight: 600;
}

.statslist ul li small {
    font-size: 15px;
    font-weight: 500;
}

.statslist ul li:hover {
    background: #2a4556;
    color: #feedc2;
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    transform: translateY(-10px);
}

/* Section spacing */
.custom-section {
    background: #fff;
    padding: 50px 0;
}

/* Top Main Card */
.main-card {
    background: #f7f0c8;
    padding: 30px 50px;
    border-radius: 30px;
    margin-bottom: 30px;
}

/* Bottom Cards */
.sub-card {
    padding: 40px;
    border-radius: 30px;
    min-height: 320px;
}

.bottom-row {
    margin-top: 10px;
}

/* Colors */
.blue-card {
    background: #cfe2e2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.yellow-card {
    background: #f3e0b8;
}

/* Typography */
.card-title {
    font-weight: bold;
    margin-bottom: 20px;
}

.card-text {
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}



.explore-btn:hover {
    background: #000;
    color: #fff;
}

/* Tagline */
.tagline {
    display: inline-block;
    background: #a33ea1;
    color: #fff;
    padding: 8px 18px;
    border-radius: 6px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

/* Extra Styling */
.forti-title {
    font-weight: bold;
    margin-bottom: 4px;
}

.yellow-card h4 {
    font-size: 16px;
    font-weight: 600;
}

.banner-content .logo {
    height: 80px;
}

.main-title1 {
    font-family: "Oswald", sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #000;
    margin-top: 0;
}


.highlight-text {
    display: inline-block;
    background: #9c3f7b;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
    color: #fff;
    margin: 10px 0;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 16px;
}

.sub-title {
    font-weight: 600;
    color: #000;
}


.solution-text {
    margin-top: 14px;
    font-size: 16px;
    font-weight: 600;
}

/* Image spacing */
.image-wrapper {
    padding-left: 20px;
}

/* MUN Program */
/* Section Background */
.program-section {
    background: #f2f2f2;
    padding: 50px 0;
}

/* Main Card */
.program-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
}

/* Title */
.program-title {
    font-weight: bold;
    margin-bottom: 20px;
}

/* Paragraph */
.program-text {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Colored Links */
.program-links span {
    font-size: 14px;
}

.green {
    color: #2ca24c;
}

.blue {
    color: #1e88e5;
}

.orange {
    color: #f57c00;
}

.red {
    color: #d32f2f;
}

.navy {
    color: #2c3e50;
}

/* Explore Button */
.explore-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 25px;
    background: #2b2b2b;
    color: #ffc107;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s ease;
}

    .explore-btn:hover {
        background: #000;
        color: #fff;
    }

/* Image Box */
.program-image1, .program-image2 {
    border-radius: 20px;
    width: fit-content;
    overflow: hidden;
}

.program-image img {
    border-radius: 20px;
}

/* brand */
.brand-section {
    background: #f4f4f4;
    padding: 60px 0;
    overflow: hidden;
}

.small-title {
    color: #777;
    margin-bottom: 10px;
}

.main-title {
    font-weight: bold;
    margin-bottom: 40px;
}

/* Row container */
.logo-row {
    overflow: hidden;
    white-space: nowrap;
    margin-bottom: 30px;
}

/* Track */
.logo-track {
    display: inline-flex;
    gap: 40px;
}

/* Logo Placeholder Box */
.logo-box {
    width: 140px;
    height: 80px;
    background: #fff;
    border-radius: 8px;
}

    .logo-box img {
        height: 100%;
        width: 100%;
        object-fit: contain;
    }
/* Animation */
.scroll-left .logo-track {
    animation: scrollLeft 40s linear infinite;
}

.scroll-right .logo-track {
    animation: scrollRight 40s linear infinite;
}
.copyrightrow > div {
    padding: 0;
    width: auto;
    float: none;
}

    .copyrightrow > div p {
        margin: 0;
        padding: 5px 0;
    }

.copyrightrow p a {
    color: #fff;
    opacity: 0.6;
}

    .copyrightrow p a:hover {
        opacity: 1;
    }

.copyrightrow > div:last-child p { /* text-align:right; */
}

.copyrightrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    margin: 10px auto !important;
}

    .copyrightrow::before, .copyrightrow::after {
        content: none;
    }
/* Keyframes */
@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}


/* testimonial */
.testimonial-section {
    padding: 0;
    background: #f5f5f5;
}

.main-title {
    font-size: 38px;
    margin-top: 0;
    font-weight: 700;
}

.small-title {
    color: #123847;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0px;
}

/* Buttons */
.view-btn {
    display: inline-block;
    margin-right: 20px;
    padding: 10px 25px;
    font-size: 15px;
    background: #2b2b2b;
    color: #ffc107;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s ease;
}


.nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #cfd3d7;
    background: transparent;
    margin-left: 5px;
}

    .nav-btn:hover {
        background: #000;
        color: #fff;
    }

/* Slider spacing */
.testimonial-item {
    padding: 0 12px;
}

/* Card */
.testimonial-card {
    background: #f4e9b7;
    padding: 30px;
    border-radius: 18px;
    min-height: 300px;
}

/* Stars */
.stars {
    color: #f4b400;
    margin-bottom: 15px;
    font-size: 18px;
}

.testimonial-card h4 {
    font-weight: 600;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: #555;
    line-height: 1.7;
}

/* VIDEO */

.video-box {
    height: 200px;
}

    .video-box iframe {
        width: 100%;
        height: 100%; /* Match image proportion */
        border-radius: 12px;
    }

/* PERSON SECTION */
.person-info {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.quote-icon {
    width: 55px;
    height: 55px;
    background: #123847;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

    .quote-icon i {
        color: #fff;
        font-size: 20px;
    }

.person-text h5 {
    font-weight: 600;
    margin: 0;
}

.person-text span {
    color: #777;
    font-size: 14px;
}

.video-box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
/* blog */
.blog-section {
    padding: 50px 0;
    background: #f4f4f4;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
}

.blog-item {
    padding: 0 12px;
}

.blog-card {
    background: #f4e9b7;
    height: 370px;
    border-radius: 15px;
    overflow: hidden;
    padding: 15px;
}

.blog-img {
    border-radius: 10px;
    margin-bottom: 15px;
    min-height: 200px;
    width: 100%;
    max-height:200px;
    object-fit:cover;
}

    .blog-img img {
        object-fit: cover;
    }

.blog-date {
    color: #777;
    font-size: 14px;
    margin-bottom: 8px;
}

.blog-content h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

/* Pagination Style */
.blog-pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

    .blog-pagination button {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        border: 1px solid #ccc;
        background: #fff;
        transition: 0.3s;
    }

        .blog-pagination button:hover {
            background: #000;
            color: #fff;
        }

/* Custom Dots */
.blog-dots {
    display: flex;
    gap: 10px;
}

    .blog-dots .slick-dot {
        width: 10px;
        height: 10px;
        background: #cfcfcf;
        border-radius: 50%;
        cursor: pointer;
        transition: 0.3s;
    }

        .blog-dots .slick-dot.active {
            width: 25px;
            border-radius: 20px;
            background: #001f3f;
        }
/* Slick Default Dots Custom */
.blog-slider .slick-dots {
    position: relative;
    bottom: -40px;
    display: flex !important;
    justify-content: center;
    gap: 10px;
}

    .blog-slider .slick-dots li {
        margin: 0;
    }

        .blog-slider .slick-dots li button:before {
            font-size: 10px;
            color: #cfcfcf;
            opacity: 1;
        }

        .blog-slider .slick-dots li.slick-active button:before {
            color: #001f3f;
            font-size: 12px;
        }
/* footer */
.footer-section {
    background: #2a4556;
    color: rgba(255, 255, 255, 0.85);
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-text1 {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.4;
    font-size: 14px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    font-size: 14px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.newsletter-row {
    display: flex;
    align-items: end;
}

.footer-links li a {
    margin-bottom: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    cursor: pointer;
    transition: 0.3s;
    display: block;
}

.footer-links li:hover a {
    color: #fff;
}

.footer-btn {
    background: #f2f2f2;
    border: none;
    border-radius: 50px;
    padding: 8px 8px 8px 25px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-weight: 500;
    font-size: 16px;
    color: #111;
    transition: all 0.3s ease;
}

    .footer-btn .icon-circle {
        width: 35px;
        height: 35px;
        background: #2a4556;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
    }

.icon-circle2 {
    width: 30px;
    height: 30px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

    .icon-circle2 i {
        color: #000;
        border-radius: 50%;
        font-size: 18px;
    }

.footer-btn .icon-circle i {
    color: #fff;
    font-size: 18px;
}


.footer-btn:hover .icon-circle {
    background: #000;
}

.google-logo {
    width: 150px;
    height: 51px;
    border-radius: 50px;
    background-color: #fff;
    overflow: hidden;
}

    .google-logo img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

.social-links a {
    display: inline-block;
    margin-right: 15px;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}



.newsletter-box {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

    .newsletter-box input {
        width: 100%;
        background: transparent;
        border: none;
        padding: 10px 0;
        color: #fff;
        outline: none;
    }

    .newsletter-box span {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
    }


.copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.educator_personeinfo .quote-icon img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    padding: 5px;
    box-shadow: inset 0 0 0 4px #fff;
}

.educator_personeinfo .quote-icon {
    border: 1px solid #2f4b5a;
}
.view-btn:hover {
    color: #f4e9b7;
}
.blog-card > a {
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
    top: 0;
    left: 0;
}

.blog-card {
    position: relative;
}
@media (max-width:768px) {
    .banner_addtext h1 {
        margin: 15px 0;
    }

    .banner_addtext .btn.btn-success {
        margin: 10px 0;
    }


    /* stats */
    .statslist ul li b {
        font-size: 16px;
    }

    .statslist ul li {
        width: calc(100% / 3 - 16px);
        gap: 10px;
    }

    .main-card, .sub-card {
        padding: 20px;
        margin-bottom: 30px;
    }

    .image-wrapper {
        padding-left: 0px;
        margin-top: 20px;
    }

    .program-card {
        padding: 20px;
    }

    .program-image1 {
        margin-top: 20px;
    }


    /* education */
    .arrow-box {
        display: none;
    }

    .section-title {
        font-size: 30px;
        text-align: center;
    }

    .banner-content .logo {
        margin-top: 20px;
    }

    .educator-inner {
        padding: 0;
    }


    /* associate */
    .main-title {
        font-size: 30px;
    }

    .small-title {
        font-size: 15px;
    }

    .nav-toggle-bar, .nav-toggle-bar::after, .nav-toggle-bar::before {
        background-color: #123847;
    }

   
    @media (min-width: 220px) and (max-width: 767px) {

        footer > .container {
            padding: 0 15px;
        }

        .newsletter-row {
            flex-direction: column;
            gap: 10px;
            align-items: flex-start;
        }

        header nav ul.nav.navbar-nav {
            flex-wrap: wrap;
            padding: 15px;
        }

            header nav ul.nav.navbar-nav li {
                width: 100%;
            }

        header nav ul.nav li a.active, header nav ul.nav li a:focus, header nav ul.nav li a:hover {
            border-radius: 5px;
        }
    }

    .logo-n-search .mob_serch {
        position: absolute;
        top: -7px;
        background: #feedc2;
        width: 80%;
        padding: 0;
        margin: 0;
        transition: 600ms all;
        width: 1px;
        transform: translateX(-10px);
    }

    .mob_serch.active {
        width: calc(100% - 100px);
        transform: translateX(0px);
    }

    .searchopen svg {
        width: 28px;
        height: 28px;
    }

    .head_link {
        background: #feedc2;
    }
}
