body {
    margin: 0px;
}

* {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden !important;
}

html {
    scroll-behavior: smooth !important;
}




a {
    text-decoration: none !important;
    font-family: "Poppins", sans-serif;
}

h1 {
    font-family: "Poppins", sans-serif;
}

h2 {
    font-family: "Poppins", sans-serif;
}

h3 {
    font-family: "Poppins", sans-serif;
}

h4 {
    font-family: "Poppins", sans-serif;
}

h5 {
    font-family: "Poppins", sans-serif;
}

h6 {
    font-family: "Poppins", sans-serif;
}

p {
    font-family: "Poppins", sans-serif;
}

/* tag font end */

/* section title */

.section-title {
    font-size: 36px;
    font-weight: 500;
    color: #1f3356;
    margin-bottom: 10px;
    font-family: "Merriweather Sans", sans-serif;

}

.section-title span {
    color: #c29232;
}

.section-subtitle {
    font-size: 15px;
    color: #000000;
    margin: 0 auto;
}


@media (max-width: 575px) {
    .section-title {
        font-size: 30px;
    }
}

/* section title end*/




/* header start */


/* =========================================
   HEADER
========================================= */

.navbar-custom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    background: transparent;
    transition: all 0.35s ease;
}

.navbar-custom.sticky-scroll {
    position: fixed;
    background: rgba(13, 32, 77, 0.97);
    padding: 12px 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.navbar-custom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.navbar-custom .navbar-brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.navbar-custom .navbar-brand img {
    width: 80px;
    height: auto;
    display: block;
}

.navbar-custom .offcanvas {
    flex: 1;
    background: transparent;
    border: 0;
}

.navbar-custom .offcanvas-body {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.navbar-custom .navbar-nav {
    display: flex;
    align-items: center;
    /* gap: 25px; */
    gap: 40px;
}

.navbar-custom .nav-link {
    position: relative;
    padding: 8px 0 !important;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.navbar-custom .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #c29232;
    transition: width 0.3s ease;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-item.active .nav-link {
    color: #c29232;
}

.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-item.active .nav-link::after {
    width: 100%;
}

.header-btn {
    flex-shrink: 0;
}

.header-btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 45px;
    padding: 0 20px;
    border-radius: 5px;
    background: #c29232;
    color: #0d204d;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
}

.header-btn a i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.header-btn a:hover {
    background: #ffffff;
    color: #0d204d;
}

.header-btn a:hover i {
    transform: translateX(4px);
}

.navbar-toggler {
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 5px;
    color: #ffffff;
    box-shadow: none !important;
}

.navbar-toggler span {
    font-size: 18px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.offcanvas-header {
    display: none;
}

/* Keep the navigation centred independently of the logo and action button. */
@media (min-width: 992px) {
    .navbar-custom .container {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    }

    .navbar-custom .offcanvas {
        flex: initial;
    }

    .navbar-custom .offcanvas-body {
        justify-content: center;
    }

    .navbar-custom .header-btn {
        justify-self: end;
    }
}

@media (max-width: 1199px) {
    .navbar-custom .navbar-nav {
        gap: 17px;
    }

    .navbar-custom .nav-link {
        font-size: 11px;
    }

    .navbar-custom .navbar-brand img {
        width: 80px;
    }

    .header-btn a {
        padding: 0 16px;
        font-size: 11px;
    }
}

@media (max-width: 991px) {
    .navbar-custom {
        padding: 15px 0;
    }

    .navbar-custom .navbar-brand img {
        width: 80px;
    }

    .navbar-custom .offcanvas {
        width: 310px;
        max-width: 88%;
        background: #0d204d;
    }

    .navbar-custom .offcanvas-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 25px 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .offcanvas-logo img {
        width: 80px;
        height: auto;
    }

    .navbar-custom .btn-close {
        width: 15px;
        height: 15px;
        opacity: 1;
        filter: brightness(0) invert(1);
        box-shadow: none;
    }

    .navbar-custom .offcanvas-body {
        display: block;
        padding: 30px 25px;
    }

    .navbar-custom .navbar-nav {
        display: flex;
        align-items: flex-start;
        gap: 0;
    }

    .navbar-custom .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .navbar-custom .nav-link {
        display: block;
        padding: 15px 0 !important;
        font-size: 13px;
    }

    .navbar-custom .nav-link::after {
        display: none;
    }

    .header-btn {
        display: none !important;
        margin-left: auto;
        margin-right: 12px;
    }

    .header-btn a {
        min-height: 40px;
        padding: 0 15px;
        font-size: 11px;
    }
}

@media (max-width: 575px) {
    .navbar-custom .container {
        gap: 12px;
    }

    .navbar-custom .navbar-brand img {
        width: 80px;
    }

    .header-btn a {
        min-height: 38px;
        padding: 0 12px;
        font-size: 10px;
        gap: 7px;
    }

    .navbar-toggler {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 400px) {
    .header-btn {
        display: none;
    }

    .navbar-custom .navbar-brand img {
        width: 80px;
    }
}

/* header end */



/* banner section */

.knm-hero-section {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    height: 100vh;
    height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image: url("../images/banner-1.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.knm-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg,
            rgba(13, 32, 77, 0.98) 0%,
            rgba(13, 32, 77, 0.92) 30%,
            rgba(13, 32, 77, 0.58) 58%,
            rgba(13, 32, 77, 0.12) 100%);
}

.knm-hero-section .container {
    position: relative;
    z-index: 2;
}

.knm-hero-content {
    width: 58%;
    padding-top: 95px;
    padding-bottom: 70px;
}

.knm-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    color: #c29232;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.knm-hero-label b {
    color: #ffffff;
    font-size: 12px;
}

.knm-hero-content h1 {
    max-width: 650px;
    margin: 0 0 22px;
    color: #ffffff;
    font-family: "Playfair Display", serif;
    font-size: clamp(42px, 4.2vw, 64px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -1px;
}

.knm-hero-meta {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.9;
}

.knm-hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 32px;
}

.knm-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 50px;
    padding: 0 23px;
    border-radius: 5px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
}

.knm-hero-btn i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.knm-hero-btn-primary {
    background: #c29232;
    color: #0d204d;
    border: 1px solid #c29232;
}

.knm-hero-btn-primary:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #0d204d;
}

.knm-hero-btn-primary:hover i {
    transform: translateX(4px);
}

.knm-hero-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.75);
}

.knm-hero-btn-secondary:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #0d204d;
}

.knm-admission-badge {
    position: absolute;
    right: 8%;
    bottom: 65px;
    z-index: 3;
    width: 125px;
    height: 125px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px solid #c29232;
    border-radius: 50%;
    background: #0d204d;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 0 0 6px rgba(13, 32, 77, 0.2);
}

.knm-admission-badge span {
    margin-bottom: 5px;
    color: #c29232;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 600;
}

.knm-admission-badge strong {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

@media (max-width: 1199px) {
    .knm-hero-content {
        width: 65%;
    }

    .knm-hero-content h1 {
        font-size: 50px;
    }

    .knm-admission-badge {
        right: 5%;
        bottom: 55px;
        width: 110px;
        height: 110px;
    }

    .knm-admission-badge span,
    .knm-admission-badge strong {
        font-size: 11px;
    }
}

@media (max-width: 991px) {
    .knm-hero-section {
        background-position: 65% center;
    }

    .knm-hero-overlay {
        background:
            linear-gradient(90deg,
                rgba(13, 32, 77, 0.96) 0%,
                rgba(13, 32, 77, 0.82) 55%,
                rgba(13, 32, 77, 0.4) 100%);
    }

    .knm-hero-content {
        width: 75%;
        padding-top: 100px;
    }

    .knm-hero-content h1 {
        font-size: 48px;
    }

    .knm-admission-badge {
        right: 5%;
        bottom: 35px;
    }
}

@media (max-width: 767px) {
    .knm-hero-section {
        align-items: center;
        background-position: 68% center;
    }

    .knm-hero-overlay {
        background:
            linear-gradient(90deg,
                rgba(13, 32, 77, 0.97) 0%,
                rgba(13, 32, 77, 0.82) 70%,
                rgba(13, 32, 77, 0.45) 100%);
    }

    .knm-hero-content {
        width: 100%;
        padding-top: 0;
        padding-bottom: 0;
        text-align: center;
    }

    .knm-hero-label {
        margin-bottom: 18px;
        font-size: 10px;
        letter-spacing: 3px;
    }

    .knm-hero-content h1 {
        max-width: 550px;
        margin-right: auto;
        margin-left: auto;
        font-size: 42px;
        line-height: 1.18;
    }

    .knm-hero-meta {
        max-width: 480px;
        margin-right: auto;
        margin-left: auto;
        font-size: 13px;
    }

    .knm-hero-buttons {
        justify-content: center;
        gap: 10px;
    }

    .knm-hero-btn {
        min-height: 47px;
        padding: 0 17px;
        font-size: 12px;
    }

    .knm-admission-badge {
        right: auto;
        left: 50%;
        bottom: 28px;
        transform: translateX(-50%);
        width: 105px;
        height: 105px;
    }

}

@media (max-width: 480px) {
    .knm-hero-content {
        padding-top: 0;
        padding-bottom: 0;
    }

    .knm-hero-content h1 {
        font-size: 35px;
        letter-spacing: -0.5px;
    }

    .knm-hero-meta {
        font-size: 14px;
        line-height: 1.8;
    }

    .knm-hero-buttons {
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
    }

    .knm-hero-btn {
        flex: 1;
        min-width: 0;
        min-height: 44px;
        padding: 0 8px;
        gap: 7px;
        font-size: 14px;
        white-space: nowrap;
    }

    .knm-admission-badge {
        right: auto;
        bottom: 66px;
        width: 92px;
        height: 92px;
        border-width: 2px;
    }

    .knm-admission-badge span,
    .knm-admission-badge strong {
        font-size: 9px;
    }

}

/* banner end */



/* footer start */


.footer-section {
    padding-bottom: 15px;
    /* background-color: #f7f7f7; */
    background-color: #0d204d;
}


/* .footer-section {
    position: relative;
    padding-bottom: 15px;
    background: url('../');
    background-repeat: no-repeat;
    background-position:center;
    background-size: cover;
}

.footer-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(36, 15, 126, 0.85);
}

.footer-section > * {
    position: relative;
    z-index: 2;
} */

.footer-bg {

    padding-top: 50px;
    /* padding-bottom: 10px; */
    border-radius: 15px;
}

/* .footer-row{
    border-bottom: 1px solid #ffffff;
} */



.footer-logo img {
    width: 80px;
}

.footer-about p {
    margin-top: 15px;
    color: #f7f7f7;
    font-size: 15px;
    font-weight: 400;
}

.social-icon {
    padding-top: 5px;
}

.social-icon a {
    font-size: 20px;
    color: #f7f7f7;
    padding: 0px 25px 0px 0px;

    transition: all 0.4s ease-in-out;
    opacity: 1;
    display: inline-block;
}

.social-icon a:hover {

    /* opacity: 0.6; */
    transform: translateY(-5px);
    color: #c29232;
}


.footer-menu {
    display: flex;
    justify-content: center;
}

.footer-menu ul {
    padding: 0px;
}

.footer-menu li {
    list-style: none;
    margin: 10px;
    margin-left: 0px;

}

.footer-menu h2 {
    color: #f7f7f7;

    font-weight: 500;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0%;
    padding-bottom: 10px;

}

.footer-menu a {
    color: #f7f7f7;
    font-weight: 400;
    font-size: 15px;
    line-height: 100%;
    letter-spacing: 0%;

}

.footer-menu a:hover {
    color: #c29232;
}

.copy-right {
    display: flex;

    justify-content: center;
    padding-top: 25px;
    /* padding: 30px 20px 0px 20px; */
}

.copy-right p {

    font-weight: 400;
    font-size: 15px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #f7f7f7;

}

.copy-right a {
    color: #f7f7f7;
}





@media(max-width:768px) {
    .footer-menu {
        padding: 20px;
        display: flex;
        justify-content: left;
    }

    .footer-content {
        padding: 20px;
    }
}

@media(max-width:432px) {
    .footer-menu h2 {
        font-size: 18px;
    }

    .footer-menu li {
        margin: 5px;
        margin-left: 0px;
    }

    .footer-menu a {
        font-size: 15px;
    }

    .copy-right {
        display: flex;
        flex-direction: column;
    }

    .copy-right p {
        font-size: 13px;
    }

    .footer-section {
        padding-bottom: 0px;
    }
}

/* footer end */





/* about start */

.about-section {
    padding: 50px 0px;
}



.about-btn {
    padding-top: 10px;
}

.about-btn a {
    padding: 7px 26px 7px 26px;
    /* background-color: #0d204d; */
    background-color: #0d204d;
    color: #ffffff;
    border-radius: 50px;
    font-size: 15px;
}

.about-btn a:hover {
    color: #0d204d;
    background: transparent;
    border: 1px solid #0d204d;


}

.about-image-col {
    display: flex;
    align-items: center;
}

.about-image img {
    border-radius: 10px;
}

.about-content h2 {
    font-size: 40px;
    font-weight: 500;
    color: #1f3356;
    margin-bottom: 15px;
    font-family: "Merriweather Sans", sans-serif;
}

.about-content span {
    color: #c29232;
}

.about-content p {
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    text-align: left;
}



@media(max-width:992px) {
    .about-content {
        padding-top: 30px;
    }
}




@media(max-width:432px) {
    .about-section {
        padding-top: 27px;
    }

    .about-content h2 {
        font-size: 30px;
        line-height: 37px;
    }

    .about-content p {
        font-size: 15px;
        text-align: left;
    }


}

/* about end */



/* floating btn */

.floating-buttons-left {
    position: fixed;
    left: 15px;
    bottom: 3%;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
}


.float-btn.whatsapp {
    background: #25d366;
}


.float-btn.call {
    background: #c29232;
}

/* end */

/* bootom to top */

.back-to-top {
    position: fixed;
    right: 15px;
    bottom: 3%;
    width: 40px;
    height: 40px;
    background: #c29232;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    z-index: 999;
}

/* end */



/* cta section */

.cta-section {
    position: relative;
    overflow: hidden;
    background-color: #f7f7f7;
}

.cta-section::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: #c29232;
    clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 1;
}


.cta-content,
.cta-btn,
.cta-box,
.cta-section * {
    position: relative;
    z-index: 2;
}




.cta-content h2 {
    font-size: 45px;
    font-weight: 900;
    line-height: 1.3;
    color: #000000;
    font-family: "Philosopher", sans-serif;

}

.cta-content p {
    font-size: 16px;
    color: #444;
}

.cta-image {
    text-align: center;
}


.cta-btn {
    display: inline-block;
    padding: 7px 25px;
    /* background: linear-gradient(90deg, #334891, #67a3e4); */
    background: #0d204d;

    color: #ffffff;
    font-weight: 500;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s ease;
}

.cta-btn:hover {
    background-color: #240f7e;
    color: #fff;
}


/* @media (max-width: 768px) {
    .cta-section::after {
        width: 100%;
        clip-path: none;
    }
} */

@media (max-width: 768px) {

    .cta-section {
        padding-top: 30px;
    }

    .cta-section::after {
        width: 100%;
        height: 35%;
        top: auto;
        bottom: 0;
        clip-path: none;
    }

    .cta-content h2 {
        font-size: 35px;
    }
}


@media (max-width: 432px) {

    .cta-content h2 {
        font-size: 25px;
    }

    .cta-content p {
        font-size: 14px;
    }
}

/* cta end */


/* course page start*/

.course-section {
    padding: 50px 0;
    background: #ffffff;
}

/* Section Heading */
.section-tag {
    display: inline-block;
    background: rgba(194, 146, 50, 0.12);
    color: #c29232;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-title {
    font-size: 40px;
    font-family: "Merriweather Sans", sans-serif;
    font-weight: 500;
    color: #1f3356;
    margin-bottom: 20px;
}

.section-title span {
    color: #c29232;
}

.section-subtitle {
    color: #666;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 60px;
}

/* Category */
.course-category {
    margin-bottom: 35px;
}

.course-category h2 {
    font-size: 28px;
    font-family: "Merriweather Sans", sans-serif;
    color: #1f3356;
    position: relative;
    display: inline-block;
    padding-left: 18px;
}

.course-category h2::before {
    content: "";
    width: 6px;
    height: 100%;
    background: #c29232;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 20px;
}

/* Card */
.course-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    transition: .4s;
}

.course-card:hover {
    transform: translateY(-12px);
}

.course-image {
    position: relative;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: .5s;
}

.course-card:hover .course-image img {
    transform: scale(1.08);
}

.course-overlay {
    position: absolute;
    left: 20px;
    bottom: 20px;
}

.course-overlay span {
    background: rgba(31, 51, 86, .90);
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Content */
.course-content {
    /* padding: 30px; */
    padding: 23px;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.course-content h4 {
    font-size: 18px;
    color: #1f3356;
    font-weight: 500;
    margin-bottom: 18px;
    line-height: 1.4;
}

.course-content p {
    font-size: 15px;
    line-height: 28px;
    color: #666;
    margin-bottom: 25px;
}

/* Button */
.course-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    gap: 10px;
    padding: 12px 28px;
    background: #1f3356;
    color: #fff;
    border-radius: 40px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: .4s;
}

.course-btn:hover {
    background: #c29232;
    color: #fff;
    transform: translateX(5px);
}

/* Responsive */
@media (max-width:991px) {

    .course-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 38px;
    }

    .course-content {
        padding: 25px;
    }
}

@media (max-width:576px) {

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

    .course-category h2 {
        font-size: 24px;
    }

    .course-content h4 {
        font-size: 18px;
    }

    .course-content {
        padding: 22px;
    }
}








/* .course-section {
  padding: 50px 0;
  background: #ffffff;
}


.course-category h2{
    font-size: 22px;
    
    color: #c29232;
    text-transform: uppercase;
    
}

.course-row-2 {
    margin-top: 30px;
}

.course-row {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    transition: all 0.4s ease;

    padding:15px;
    border-top: 4px solid #0d204d;
    border-left: 4px solid #0d204d;
}


.row > .col-lg-12:nth-child(odd) .course-row {
    border-top: 4px solid #0d204d;
    border-left: 4px solid #0d204d;
    border-right: none;
}


.row > .col-lg-12:nth-child(even) .course-row {
    border-top: 4px solid #0d204d;
    border-right: 4px solid #0d204d;
    border-left: none;
}





.course-row:hover {
    transform: translateY(-10px);
}

.course-row.reverse {
    flex-direction: row-reverse;
}


.course-row .course-img {
    width: 45%;
    overflow: hidden;
}

.course-row .course-img img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 22px;
}

.course-row:hover .course-img img {
    transform: scale(1.08);
    border-radius: 22px;
}


.course-row .course-content {
    width: 55%;
    padding: 40px;
}

.course-content h4 {
    font-size: 22px;
    font-weight: 600;
    color: #1f3356;
    margin-bottom: 14px;
}

.course-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 22px;
}


.course-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 14px;
    font-size: 15px;
    font-weight: 500;
    color: #287fd6;
}

.course-meta i {
    color: #178f90;
    margin-right: 6px;
}


.course-btn {
    display: inline-block;
    padding: 11px 28px;
    background: #0d204d;
    color: #ffffff;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.35s ease;
}

.course-btn:hover {
    background: #1f3356;
    box-shadow: 0 10px 25px rgba(31,51,86,0.35);
}


@media (max-width: 991px) {
    .course-row,
    .course-row.reverse {
        flex-direction: column;
    }

    .course-row .course-img,
    .course-row .course-content {
        width: 100%;
    }

    .course-row .course-content {
        padding: 15px 0px;
    }
}

@media (max-width: 432px) {
    .course-category h2{
        text-align: center;
    }
} */




/* course page end */


/* course detail page */

.course-detail {
    background: #ffffff;
    padding: 50px 0;
    font-family: "Merriweather Sans", sans-serif;
}


.course-detail-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}


.detail-course-content {
    margin-top: 25px;
}

.course-title {
    color: #1f3356;
    font-weight: 600;
    font-size: 26px;
    margin-bottom: 15px;
}

.course-desc {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}


.course-form {
    background: #ffffff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(194, 146, 50, 0.15);
    border-top: 4px solid #c29232;
}

.form-title {
    font-size: 20px;
    font-weight: 600;
    color: #1f3356;
    margin-bottom: 15px;
}


.course-form .form-control {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 12px 14px;
    font-size: 14px;
    transition: 0.3s;
}

.course-form .form-control:focus {
    border-color: #c29232;
    box-shadow: 0 0 0 2px rgba(194, 146, 50, 0.15);
}


.form-btn {
    background: #1f3356;
    color: #fff;
    padding: 12px;
    border-radius: 25px;
    border: none;
    font-weight: 500;
    transition: 0.3s;
}

.form-btn:hover {
    background: #c29232;
    color: #fff;
}


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


.col-lg-4 .facility-list {
    grid-template-columns: 1fr;
}


.detail-facility {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #f8f9fb;
    padding: 15px 18px;
    border-radius: 14px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    cursor: pointer;
}


.detail-facility i {
    width: 42px;
    height: 42px;
    background: #1f3356;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: 0.3s;
}


.detail-facility span {
    font-weight: 500;
    color: #1f3356;
    font-size: 15px;
}


.detail-facility:hover {
    background: #ffffff;
    border-color: #c29232;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.detail-facility:hover i {
    background: #c29232;
}


@media(max-width:992px) {

    .course-title {
        font-size: 22px;
    }

    .detail-course-content {
        text-align: center;
    }

    .course-form {
        margin-top: 30px;
    }

}

@media(max-width:768px) {

    .facility-list {
        grid-template-columns: 1fr;
    }

}


/* course detail page end*/




/* gallery slider start*/

.gallery-slider {}

.gallery-slider-item {
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(31, 51, 86, 0.12);
}

.gallery-slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-slider-item:hover img {
    transform: scale(1.08);
}

.gallery-slider-carousel .owl-stage {
    display: flex;
}

.gallery-slider-carousel .owl-item {
    display: flex;
}

.gallery-slider-carousel .owl-dots {
    margin-top: 24px;
    text-align: center;
}

.gallery-slider-carousel .owl-dot span {
    width: 9px;
    height: 9px;
    margin: 0 5px;
    background: rgba(31, 51, 86, 0.25);
    display: block;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.gallery-slider-carousel .owl-dot.active span {
    width: 26px;
    border-radius: 20px;
    background: #c29232;
}

@media(max-width:575px) {
    .gallery-slider-item {
        height: 220px;
    }
}

/* gallery slider end */







/* contact page */


.contact-section {
    padding: 50px 0;
    /* background: linear-gradient(135deg, #0d204d, #c29232); */
    background-color: #0d204d;
    position: relative;
    overflow: hidden;

    /* background-image: url(..//image/blog.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; */
}

.contact-section-title {
    font-size: 36px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 10px;
    font-family: "Merriweather Sans", sans-serif;

}

.contact-section-title span {
    color: #c29232;
}

.contact-section-subtitle {
    font-size: 15px;
    color: #e0dfdf;
    margin: 0 auto;
}


.contact-info-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px 22px;
    border-radius: 18px;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-card:hover {
    background: #ffffff;
    color: #0d204d;
    transform: translateX(8px);
}

.contact-card .icon {
    width: 55px;
    height: 55px;
    background: #ffffff;
    color: #c29232;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-card h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-card p {
    font-size: 14px;
    margin: 0;
}


.contact-form-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 35px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    /* box-shadow: 0 20px 40px rgba(0,0,0,0.25); */
}

.contact-form-box h4 {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 25px;
}

.contact-form-box .form-control {
    /* background: rgba(255,255,255,0.2); */
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    padding: 12px 15px;
    border-radius: 12px;
    font-size: 14px;
}

.contact-form-box .form-control::placeholder {
    color: #e6e6e6;
}

.contact-form-box .form-control:focus {
    background: rgba(255, 255, 255, 0.25);
    border-color: #ffffff;
    box-shadow: none;
}

.contact-btn {
    /* background: #ffffff;
    color: #0d204d; */
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    /* border: none; */
    padding: 7px 26px;
    border-radius: 50px;
    font-weight: 500 !important;
    transition: all 0.4s ease;
}

.contact-btn:hover {
    background: #eaf2fb;
    color: #c29232;
    transform: translateY(-3px);
    /* box-shadow: 0 12px 30px rgba(0,0,0,0.25); */
}


.map-box iframe {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    border: none;
    /* box-shadow: 0 15px 35px rgba(0,0,0,0.25); */
}



@media (max-width: 991px) {
    .contact-form-box {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {

    .contact-card {
        padding: 18px;
    }

    .contact-form-box {
        padding: 25px;
    }
}

/* contact page end */




/* faculty start */

.faculty-alt-section {
    padding: 50px 0;
    background: #f7f9fb;
}

.faculty-alt-card {
    position: relative;
    height: 360px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transition: transform 0.5s ease;
    margin-top: 15px;
}

.faculty-alt-card:hover {
    transform: translateY(-18px);
}

.faculty-alt-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faculty-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(
    to top,
    rgba(31,51,86,0.92),
    rgba(23,143,144,0.35)
  ); */

    background: linear-gradient(to top,
            rgba(31, 51, 86, 8.92),
            rgba(40, 127, 214, 0.35));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 26px;
    opacity: 1;
    transition: all 0.5s ease;
}

.faculty-alt-card:hover .faculty-overlay {
    opacity: 0;
}

.faculty-overlay h4 {
    color: #fff;
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 6px;
}

.faculty-overlay span {
    color: #e0f5f4;
    font-size: 14px;
    line-height: 1.5;
}

.faculty-overlay p {
    margin-top: 10px;
    color: #e0f5f4;
}


@media(max-width:992px) {
    .faculty-alt-card {
        margin-top: 15px;
    }
}

/* faculty end */





/* group entities */

.group-entities-alt {
    padding: 50px 0;
    background: #ffffff;
}

.entity-block {
    position: relative;
    background: #ffffff;
    padding: 45px 40px;
    border-radius: 24px;
    height: 100%;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    transition: all 0.4s ease;
}


.entity-bg {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 90px;
    font-weight: 800;
    color: rgba(31, 51, 86, 0.06);
    line-height: 1;
    z-index: 0;
    font-family: "Merriweather Sans", sans-serif;
}


.entity-icon {
    font-size: 32px;
    color: #c29232;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}


.entity-block h4 {
    font-size: 20px;
    font-weight: 500;
    color: #1f3356;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.entity-block p {
    font-size: 14.5px;
    line-height: 1.8;
    color: #444;
    position: relative;
    z-index: 1;
}


.entity-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(40, 127, 214, 0.25);
}


@media (max-width: 576px) {
    .entity-bg {
        font-size: 62px;
    }

    .entity-block {
        padding: 35px 28px;
    }
}

/* group entities end */




/* programe section start */

.programs-section {
    padding: 40px 0;
    /* background-color: #e5f2fe; */
    background-color: #fbfbfb;

}

.programs-section .section-title {
    font-size: 40px;
    font-weight: 500;
    color: #1f3356;
}

.programs-section .section-title span {
    color: #c29232;
}

.programs-desc {
    margin-top: 20px;
    color: #555;
    line-height: 1.8;
    max-width: 420px;
}


.program-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.program-box {
    position: relative;
    background: #ffffff;
    padding: 35px;
    border-radius: 22px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    transition: all 0.45s ease;
}

.program-box.offset {
    margin-top: 40px;
}

.program-box.wide {
    grid-column: span 1;
}

.program-index {
    position: absolute;
    top: -25px;
    right: 20px;
    font-size: 60px;
    font-weight: 800;
    color: rgba(40, 127, 214, 0.12);
}

.program-box h4 {
    font-size: 18px;
    font-weight: 500;
    color: #1f3356;
    margin-bottom: 12px;
}

.program-box p {
    color: #555;
    line-height: 1.7;
    margin: 0;
}


.program-box:hover {
    transform: translateY(-10px);
    /* box-shadow: 0 30px 60px rgba(40, 127, 214, 0.25); */
    box-shadow: 0 30px 60px rgba(194, 146, 50, 0.35);
    border-left: 5px solid #c29232;
}


@media (max-width: 991px) {
    .program-grid {
        grid-template-columns: 1fr;
    }

    .program-box.offset {
        margin-top: 0;
    }

    .program-box.wide {
        grid-column: span 1;
    }
}

@media (max-width:432px) {
    .programs-section .section-title {
        font-size: 30px;
        text-align: center;
    }

    .programs-desc {
        font-size: 15px;
        text-align: center;
    }
}

/* program end */



/* heder top */

/* .top-header {
    background-color: #0d204d;
    padding: 8px 0;
    font-size: 14px;
}



.top-titles a{
    color: #ffffff !important;
    text-decoration: none;
    text-align: end !important;
    font-size: 18px;
}



@media (max-width:992px) {
    .top-header {
        display: none;
    }
}


@media (max-width: 767px) {
    .top-header {
        text-align: center;
    }

    .top-contact {
        margin-bottom: 8px;
    }

    .top-social {
        text-align: center;
    }
} */

/* header top end */



.facility-section {
    background: linear-gradient(135deg, #0d204d, #09142b);
    color: #fff;
}



.facility-section .section-title {
    font-size: 36px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 10px;
    font-family: "Merriweather Sans", sans-serif;
}

.facility-section .section-subtitle {
    color: #ffffff !important;
    font-size: 15px;
}

.facility-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}


.facility-card:hover {
    transform: translateY(-8px);
    border-color: #c29232;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}


.icon {
    font-size: 36px;
    margin-bottom: 12px;
    transition: 0.3s;
}


.facility-card:hover .icon {
    color: #c29232;
    transform: scale(1.1);
}


.facility-card h5 {
    color: #fff;
    margin-bottom: 10px;
}

.facility-card p {
    color: #ccc;
    font-size: 14px;
}


@media (max-width:432px) {
    .facility-section .section-title {
        font-size: 30px;
    }
}

/* Facility Section End */





/* gallery page */

.gallery-asym {
    background: #ffffff;
}

.g-item {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.g-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.col-md-6>.g-item {
    height: 100%;
    min-height: 460px;
}

.g-item:not(.wide) {
    height: 220px;
}

.g-item.wide {
    height: 220px;
}

.g-item:hover img {
    transform: scale(1.1);
}

.g-item:hover {
    transform: translateY(-6px);
}

@media(max-width:768px) {
    .col-md-6>.g-item {
        min-height: 300px;
    }

    .g-item,
    .g-item.wide {
        height: 180px;
    }
}

/* gallery end */



/* mission start */

.mission-vision-section {
    background: linear-gradient(to bottom, #f8f9fc, #ffffff);
    position: relative;
    overflow: hidden;
}



/* Cards */
.mv-card {
    background: #fff;
    padding: 45px 35px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s ease;
    z-index: 1;

    box-shadow:
        rgba(17, 17, 26, 0.05) 0px 8px 24px,
        rgba(17, 17, 26, 0.08) 0px 16px 56px;
}

/* Decorative Shapes */
.shape {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
}

.shape-1 {
    width: 180px;
    height: 180px;
    background: rgba(31, 51, 86, 0.06);
    top: -70px;
    right: -70px;
}

.shape-2 {
    width: 180px;
    height: 180px;
    background: rgba(194, 146, 50, 0.08);
    bottom: -70px;
    right: -60px;
}

/* Borders */
.mission-card {
    border-top: 5px solid #1f3356;
}

.vision-card {
    border-top: 5px solid #c29232;
}

/* Icon */
.icon-box {
    width: 78px;
    height: 78px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 30px;
    color: #fff;
    position: relative;
}

.mission-card .icon-box {
    background: linear-gradient(135deg, #1f3356, #2f4d82);
}

.vision-card .icon-box {
    background: linear-gradient(135deg, #c29232, #e1b04c);
}

/* Heading */
.mv-card h4 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #222;
}

/* Paragraph */
.mv-card p {
    font-size: 15.5px;
    color: #666;
    line-height: 1.9;
    margin-bottom: 22px;
}

/* List */
.mv-card ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.mv-card ul li {
    font-size: 15px;
    color: #444;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mv-card ul li i {
    color: #c29232;
    font-size: 15px;
}

/* Hover */
.mv-card:hover {
    transform: translateY(-10px);
}

.mv-card:hover .icon-box {
    transform: rotate(-6deg) scale(1.05);
    transition: 0.4s ease;
}

/* Responsive */
@media(max-width:768px) {

    .section-title h2 {
        font-size: 32px;
    }

    .mv-card {
        text-align: center;
        padding: 35px 25px;
    }

    .icon-box {
        margin: 0 auto 20px;
    }

    .mv-card ul li {
        justify-content: center;
    }
}

/* mision end  */


/* ncte certificate start */

/* .ncte-section {
  position: relative;
  padding: 80px 0;
  background: url('..//image/gallery-1.jpeg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  background-attachment: fixed;
}


.ncte-section::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(2px);
  background: rgba(31, 51, 86, 0.45);
  z-index: 1;
}


.ncte-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
}


.ncte-logo img {
  max-width: 450px;
  width: 100%;
  filter: drop-shadow(0 10px 25px rgba(0,0,0,0.4));
}


.ncte-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
}

.ncte-text {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.7;
  color: #f1f1f1;
}


.ncte-link {
  color: #c29232;
  font-weight: 600;
  text-decoration: none;
}

.ncte-link:hover {
  text-decoration: underline;
  color: #fff;
}


.ncte-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 28px;
  background: #c29232;
  color: #fff;
  border-radius: 30px;
  font-weight: 400;
  text-decoration: none;
  transition: 0.3s;
}

.ncte-btn:hover {
  background: #ffffff;
  color: #1f3356;
}


@media(max-width:768px){
  .ncte-title {
    font-size: 22px;
  }

  .ncte-logo {
    text-align: center;
    margin-bottom: 25px;
  }

  .ncte-content {
    text-align: center;
  }
} */

/* ncte certificate end */



/* faq section start */


.faq-section {
    background: #fbfbfb;
}


.faq-title {
    color: #1f3356;
    font-size: 36px;
    font-weight: 500;
    font-family: "Merriweather Sans", sans-serif;
}

.faq-title span {
    color: #c29232;
}

.faq-subtitle {
    color: #000000;
    font-size: 15px;
}


.custom-faq .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}


.custom-faq .accordion-button {
    background: #ffffff;
    color: #1f3356;
    font-weight: 600;
    font-size: 16px;
    padding: 18px 20px;
    box-shadow: none;
}


.custom-faq .accordion-button:not(.collapsed) {
    background: #1f3356;
    color: #fff;
}


.custom-faq .accordion-body {
    background: #ffffff;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    padding: 18px 20px;
}


.accordion-button::after {
    filter: brightness(0) invert(0);
}

.custom-faq .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}


.custom-faq .accordion-button:hover {
    background: #f1f3f7;
}


@media(max-width:768px) {
    .faq-title {
        font-size: 30px;
    }
}

/* faq section end */



/* Core Values Section */

.knm-core-section {
    padding: 100px 0;
    background: #ffffff;
}


.knm-core-left h5 {
    color: #c29232;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    font-size: 18px;
}

.knm-core-left h2 {
    font-size: 34px;
    color: #1f3356;
    font-weight: 500;
    margin: 10px 0;
    line-height: 1.3;
    font-family: "Merriweather Sans", sans-serif;
}

.knm-core-left h2 span {
    color: #c29232;
}

.knm-core-line {
    width: 70px;
    height: 4px;
    background: #c29232;
    margin: 20px 0;
}

.knm-core-left p {
    color: #555;
    line-height: 1.8;
}


.knm-core-timeline {
    position: relative;
    padding-left: 40px;
}


.knm-core-timeline::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 0;
    width: 2px;
    height: 100%;
    background: #c29232;
}


.core-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    position: relative;
}


.core-item span {
    min-width: 30px;
    height: 30px;
    background: #1f3356;
    color: #fff;
    font-size: 13px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}


.core-item h4 {
    margin: 0;
    font-size: 18px;
    color: #1f3356;
    font-weight: 600;
}

.core-item p {
    margin: 5px 0 0;
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}


.core-item:hover h4 {
    color: #c29232;
}


@media (max-width: 991px) {
    .knm-core-left {
        margin-bottom: 40px;
    }

    .knm-core-left h2 {
        font-size: 27px;
    }
}

@media (max-width: 432px) {
    .knm-core-left {
        text-align: center;
    }

    .knm-core-line {
        width: 100%;
        height: 1px;
    }
}

/* Core Values Section end*/



/* Admission Section */
.knm-admission-section {
    padding: 100px 0;
    background: #f9f9f9;
}


.knm-admission-header h5 {
    color: #c29232;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    font-size: 18px;
}

.knm-admission-header h2 {
    font-size: 34px;
    color: #1f3356;
    font-weight: 500;
    margin: 10px 0;
    font-family: "Merriweather Sans", sans-serif;

}

.knm-adm-line {
    width: 100px;
    height: 4px;
    background: #c29232;
    margin: 15px auto 50px;
}


.knm-admission-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    gap: 20px;
}


.knm-admission-steps::before {
    content: "";
    position: absolute;
    top: 25px;
    left: 5%;
    width: 90%;
    height: 2px;
    background: #c29232;
    z-index: 0;
}


.step {
    text-align: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.circle {
    width: 50px;
    height: 50px;
    background: #1f3356;
    color: #fff;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}


.step h4 {
    color: #1f3356;
    font-size: 18px;
    margin-bottom: 8px;
}

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


.step:hover .circle {
    background: #c29232;
}


@media (max-width: 991px) {
    .knm-admission-steps {
        flex-direction: column;
        gap: 40px;
    }

    .knm-admission-steps::before {
        display: none;
    }
}


@media (max-width: 432px) {
    .knm-admission-header h2 {
        font-size: 27px;
    }
}

/* Admission Section end */



/* marquee start */
.knm-marquee-section {
    background: #0d204d;
    padding: 10px 0;
    overflow: hidden;
    position: relative;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marqueeMove 20s linear infinite;
}

.marquee-content span {
    color: #ffffff;
    font-size: 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    margin-right: 50px;
    font-family: Arial, sans-serif;
}

.marquee-content .divider {
    font-size: 22px;
    opacity: 0.8;
}

@keyframes marqueeMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


@media (max-width: 768px) {
    .marquee-content span {
        font-size: 20px;
        margin-right: 30px;
    }
}

/* marquee end */



/* psc page start*/

.psc-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.psc-content .psc-tag {
    background: rgba(194, 146, 50, 0.12);
    color: #c29232;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 15px;
}

.psc-content h2 {

    line-height: 1.2;
    margin-bottom: 25px;
    font-size: 36px;
    font-weight: 500;
    color: #1f3356;
    font-family: "Merriweather Sans", sans-serif;
}

.psc-content h4 {
    color: #c29232;
    line-height: 1.4;
}

.psc-content h2 span {
    color: #c29232;
}

.psc-content p {
    color: #000000;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 20px;
}

.psc-features {
    margin-top: 35px;
}

.psc-feature-box {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
    padding: 20px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: 0.4s;
}

.psc-feature-box:hover {
    transform: translateY(-5px);
}

.psc-feature-box i {
    width: 60px;
    height: 60px;
    background: #1f3356;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.psc-feature-box h5 {
    color: #1f3356;
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 600;
}

.psc-feature-box p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
}

.psc-btn {
    display: inline-block;
    margin-top: 20px;
    background: #c29232;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.4s;
}

.psc-btn:hover {
    background: #1f3356;
    color: #fff;
}


.psc-image-card {
    background: linear-gradient(135deg, #1f3356, #2f4c7f);
    border-radius: 30px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.psc-circle {
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(194, 146, 50, 0.15);
    border-radius: 50%;
    top: -60px;
    right: -60px;
}

.psc-card-content {
    position: relative;
    z-index: 2;
}

.psc-card-content h3 {
    color: #fff;
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 30px;
    font-family: "Merriweather Sans", sans-serif;
}

.psc-card-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.psc-card-content ul li {
    color: #fff;
    margin-bottom: 18px;
    font-size: 18px;
    position: relative;
    padding-left: 35px;
}

.psc-card-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #c29232;
    font-weight: bold;
    font-size: 20px;
}

.psc-badge {
    display: inline-block;
    margin-top: 35px;
    background: #c29232;
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
}


@media (max-width: 991px) {

    .psc-content h2 {
        font-size: 38px;
    }

    .psc-image-card {
        min-height: auto;
        padding: 40px 30px;
    }

    .psc-card-content h3 {
        font-size: 30px;
    }
}

@media (max-width: 576px) {

    .psc-content h2 {
        font-size: 29px;
    }

    .psc-feature-box {
        flex-direction: column;
    }

    .psc-card-content h3 {
        font-size: 26px;
    }

    .psc-card-content ul li {
        font-size: 16px;
    }
}



/* edn */



/* founder */

.message-section {
    padding: 50px 0;
    background: #f8f9fc;
    overflow: hidden;
}

.section-heading {
    text-align: center;
    max-width: 750px;
    margin: auto;
    margin-bottom: 40px;
}

.section-heading span {
    display: inline-block;
    padding: 12px 28px;
    background: rgba(194, 146, 50, .12);
    color: #c29232;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-heading h2 {
    font-family: "Merriweather Sans", sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #1f3356;
    margin-bottom: 20px;
}

.section-heading h2 span {
    background: none;
    padding: 0;
    color: #c29232;
}

.section-heading p {
    color: #666;
    line-height: 30px;
}

/* Card */
.message-card {
    background: #fff;
    border-radius: 30px;
    padding: 40px;
    height: 100%;
    position: relative;
    /* box-shadow: 0 25px 70px rgba(0,0,0,.08); */
    transition: .4s;
}

.message-card:hover {
    transform: translateY(-10px);
}

.message-card::before {
    content: "";
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg,
            #1f3356,
            #c29232);
    position: absolute;
    top: 0;
    left: 0;
}

/* Top */
.message-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
}

.message-image img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #c29232;
}

.designation {
    color: #c29232;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.message-info h3 {
    font-family: "Merriweather Sans", sans-serif;
    color: #1f3356;
    font-size: 24px;
    margin-bottom: 5px;
}

.message-info p {
    color: #666;
    margin: 0;
}

/* Quote */
.quote-icon {
    position: absolute;
    right: 35px;
    top: 35px;
    font-size: 65px;
    color: rgba(194, 146, 50, .12);
}

/* Content */
.message-content p {
    color: #555;
    line-height: 32px;
    margin-bottom: 20px;
    font-size: 16px;
}

/* Responsive */
@media(max-width:991px) {

    .message-section {
        padding: 80px 0;
    }

    .section-heading h2 {
        font-size: 38px;
    }

    .message-card {
        padding: 35px 30px;
    }
}

@media(max-width:576px) {

    .section-heading h2 {
        font-size: 30px;
    }

    .message-info h3 {
        font-size: 20px;
    }

    .message-top {
        flex-direction: column;
        text-align: center;
    }

    .quote-icon {
        display: none;
    }

    .message-card {
        padding: 30px 25px;
    }

    .message-content p {
        font-size: 15px;
        line-height: 30px;
    }
}


/* end */



/* why  */


.why-knm-section {
    padding: 50px 0;
    background: #f8f9fc;
    overflow: hidden;
}

/* Image */
.why-knm-image {
    position: relative;
}

.image-bg {
    position: absolute;
    width: 420px;
    height: 420px;
    background: linear-gradient(135deg,
            rgba(194, 146, 50, .15),
            rgba(31, 51, 86, .08));
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.why-knm-image img {
    width: 100%;
    border-radius: 35px;
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .12);
    animation: floatImage 5s infinite ease-in-out;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(12px);
    padding: 18px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
    z-index: 3;
    animation: floatingCard 4s infinite ease-in-out;
}

.floating-card i {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg,
            #1f3356,
            #c29232);
    color: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card h4 {
    font-size: 17px;
    color: #1f3356;
    margin-bottom: 3px;
}

.floating-card p {
    font-size: 13px;
    margin: 0;
    color: #666;
}

.card-one {
    top: 60px;
    left: -30px;
}

.card-two {
    right: -30px;
    bottom: 60px;
}

/* Content */
.section-tag {
    display: inline-block;
    background: rgba(194, 146, 50, .12);
    color: #c29232;
    padding: 12px 26px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 25px;
}

.why-knm-content h2 {
    font-family: "Merriweather Sans", sans-serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.2;
    color: #1f3356;
    margin-bottom: 25px;
}

.why-knm-content h2 span {
    color: #c29232;
}

.section-desc {
    color: #666;
    line-height: 30px;
    margin-bottom: 40px;
    font-size: 15px;
}

/* Cards */
.why-grid {
    display: grid;
    gap: 20px;
}

.why-card {
    background: #fff;
    border-radius: 25px;
    padding: 25px;
    display: flex;
    gap: 20px;
    /* box-shadow: 0 20px 50px rgba(0,0,0,.06); */
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    transition: .4s;
}

.why-card:hover {
    transform: translateY(-8px);
}

.why-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: linear-gradient(135deg,
            #1f3356,
            #c29232);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon i {
    color: #fff;
    font-size: 26px;
}

.why-text h4 {
    color: #1f3356;
    font-size: 22px;
    margin-bottom: 12px;
    font-family: "Merriweather Sans", sans-serif;
}

.why-text p {
    color: #666;
    line-height: 28px;
    margin: 0;
}

/* Animation */
@keyframes floatImage {
    50% {
        transform: translateY(-15px);
    }
}

@keyframes floatingCard {
    50% {
        transform: translateY(-12px);
    }
}

/* Responsive */
@media(max-width:991px) {

    .why-knm-section {
        padding: 30px 0;
    }

    .why-knm-image {
        margin-bottom: 60px;
    }

    .why-knm-content h2 {
        font-size: 38px;
    }

    .floating-card {
        display: none;
    }
}

@media(max-width:576px) {

    .why-knm-content h2 {
        font-size: 30px;
    }

    .why-card {
        flex-direction: column;
        text-align: left;
    }

    .why-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }

    .why-text h4 {
        font-size: 20px;
    }
}

/*  */





/* top header slice */

.top-header {
    background-color: #0d204d;
    overflow: hidden;
    padding: 12px 0;
}

.top-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.top-marquee-content {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    white-space: nowrap;
    animation: topMarquee 30s linear infinite;
}

.top-marquee-content span {
    color: #ffffff;
    font-size: 17px;
    font-weight: 500;
    font-family: "Nunito", sans-serif;
    letter-spacing: .5px;
}

.top-marquee-content .divider {
    color: #f1cf76;
    font-size: 18px;
    flex-shrink: 0;
}

/* Pause on hover */
.top-header:hover .top-marquee-content {
    animation-play-state: paused;
}

@keyframes topMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Mobile */
@media (max-width: 767px) {
    .top-header {
        padding: 10px 0;
    }

    .top-marquee-content span {
        font-size: 15px;
    }

    .top-marquee-content {
        gap: 25px;
    }
}

@media (max-width: 550px) {
    .top-header {
        display: none;
    }
}



/*  */


/* pages banner */


.knm-breadcrumb-section {
    position: relative;
    width: 100%;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url("../images/banner-1.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.knm-breadcrumb-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(13, 32, 77, 0.94) 0%,
            rgba(13, 32, 77, 0.82) 50%,
            rgba(13, 32, 77, 0.55) 100%
        );
}

.knm-breadcrumb-section .container {
    position: relative;
    z-index: 2;
}

.knm-breadcrumb-content {
    width: 100%;
    padding-top: 75px;
    padding-bottom: 45px;
    text-align: center;
}

.knm-breadcrumb-label {
    display: inline-block;
    margin-bottom: 16px;
    color: #c29232;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 5px;
    line-height: 1.5;
    text-transform: uppercase;
}

.knm-breadcrumb-content h1 {
    margin: 0 0 20px;
    color: #ffffff;
    font-family: "Playfair Display", serif;
    font-size: 38px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.knm-breadcrumb-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.knm-breadcrumb-list .breadcrumb-item {
    color: rgba(255, 255, 255, 0.75);
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.6;
}

.knm-breadcrumb-list .breadcrumb-item + .breadcrumb-item {
    padding-left: 15px;
}

.knm-breadcrumb-list .breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    padding-right: 15px;
    color: #c29232;
}

.knm-breadcrumb-list a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.knm-breadcrumb-list a:hover {
    color: #c29232;
}

.knm-breadcrumb-list .active {
    color: #c29232;
}

/* =========================================
   RESPONSIVE - LARGE TABLET
========================================= */

@media (max-width: 1199px) {

    .knm-breadcrumb-section {
        min-height: 335px;
    }

    .knm-breadcrumb-content {
        padding-top: 85px;
        padding-bottom: 40px;
    }

    .knm-breadcrumb-content h1 {
        font-size: 48px;
    }
}

/* =========================================
   RESPONSIVE - TABLET
========================================= */

@media (max-width: 991px) {

    .knm-breadcrumb-section {
        min-height: 315px;
        background-position: 60% center;
    }

    .knm-breadcrumb-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(13, 32, 77, 0.96) 0%,
                rgba(13, 32, 77, 0.84) 100%
            );
    }

    .knm-breadcrumb-content {
        padding-top: 100px;
        padding-bottom: 35px;
        text-align: center;
    }

    .knm-breadcrumb-label {
        font-size: 11px;
        letter-spacing: 4px;
    }

    .knm-breadcrumb-content h1 {
        font-size: 43px;
    }

    .knm-breadcrumb-list .breadcrumb-item {
        font-size: 12px;
    }
}

/* =========================================
   RESPONSIVE - MOBILE
========================================= */

@media (max-width: 767px) {

    .knm-breadcrumb-section {
        min-height: 285px;
        background-position: 65% center;
    }

    .knm-breadcrumb-content {
        padding-top: 105px;
        padding-bottom: 30px;
        text-align: center;
    }

    .knm-breadcrumb-label {
        margin-bottom: 12px;
        font-size: 10px;
        letter-spacing: 3px;
    }

    .knm-breadcrumb-content h1 {
        margin-bottom: 15px;
        font-size: 37px;
        line-height: 1.2;
    }

    .knm-breadcrumb-list {
        gap: 5px;
    }

    .knm-breadcrumb-list .breadcrumb-item {
        font-size: 12px;
    }

    .knm-breadcrumb-list .breadcrumb-item + .breadcrumb-item {
        padding-left: 10px;
    }

    .knm-breadcrumb-list .breadcrumb-item + .breadcrumb-item::before {
        padding-right: 10px;
    }
}

/* =========================================
   RESPONSIVE - SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .knm-breadcrumb-section {
        min-height: 260px;
        background-position: 68% center;
    }

    .knm-breadcrumb-content {
        padding-top: 100px;
        padding-bottom: 25px;
    }

    .knm-breadcrumb-label {
        font-size: 9px;
        letter-spacing: 2.5px;
    }

    .knm-breadcrumb-content h1 {
        font-size: 32px;
    }

    .knm-breadcrumb-list .breadcrumb-item {
        font-size: 11px;
    }
}

@media (max-width: 360px) {

    .knm-breadcrumb-content h1 {
        font-size: 29px;
    }

    .knm-breadcrumb-label {
        font-size: 8px;
        letter-spacing: 2px;
    }

    .knm-breadcrumb-list .breadcrumb-item {
        font-size: 10px;
    }
}