/*------------------------- nav-bar-start--------------------------- */


/* -------------------------------------------------------------- */


/* ------------------------------------------------------------- */

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

:root {
    --blue: #15177c;
    --orange: #9f330b;
    --green: #d3d707;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 270px;
}

a {
    text-decoration: none;
}

.header-top {
    background-color: #1a2a6c;
    color: #ffffff;
    font-size: 12px;
    text-transform: uppercase;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.trust-ms p {
    margin: 0;
    font-weight: 500;
}

.reg-symbol {
    font-size: 12px;
    vertical-align: super;
    margin-left: 2px;
}

.Admission-apply p {
    margin: 0;
    font-weight: 500;
}

.admission-modal .form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer .blink-text {
    color: #ffcc00;
    font-weight: 700;
    animation: blinkFade 1.5s infinite;
}

.Admission-apply a {
    color: #ffffff;
    background-color: #ffcc00;
    padding: 4px 10px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    margin-left: 8px;
    transition: background-color 0.3s ease;
}

.Admission-apply a:hover {
    background-color: #e6b800;
}


/* ===================== */

.nav-link {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 13px;
    color: var(--blue);
}

.nav-top {
    display: flex;
    justify-content: end;
    align-items: center;
    padding: 10px 0px;
}

.nav-top .fa-facebook {
    color: #4267b2;
}

.nav-top .fa-youtube {
    color: #c4302b;
}

.nav-top .fa-instagram {
    background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-top a i {
    color: #2c314a;
    font-size: 18px;
}

.logo-section img {
    width: 250px;
}

.nav-top a {
    color: #2c314a;
    font-size: 13px;
}

.nav-top .fa-phone,
.nav-top .fa-envelope {
    font-size: 13px;
}

.aply-btn {
    border: 2px solid #2c314a;
    border-radius: 8px;
    padding: 6px 15px;
    font-weight: 500;
    text-transform: uppercase;
}


/* ---------- DROPDOWN ---------- */

.dropdown-menu {
    background: #fff;
    border: none;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: 230px;
    padding: 0;
}

.dropdown-item {
    font-size: 12px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    color: var(--blue);
    border-bottom: 1px solid #eee;
}

.dropdown-item:hover {
    background: var(--blue);
    color: #fff;
}


/* Arrow styling */

.dropdown-toggle::after {
    border-top: 0.35em solid currentColor;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    margin-left: 6px;
    vertical-align: middle;
}

.dropend>.dropdown-toggle::after {
    position: absolute;
    right: 10px;
    /* push arrow to right */
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    margin: 0;
}


/* ---------- DESKTOP HOVER ---------- */

@media (min-width: 992px) {
    .dropdown:hover>.dropdown-menu {
        display: block;
    }
    .dropdown-menu .dropend:hover>.dropdown-menu {
        display: block;
        position: absolute;
        top: 0;
        left: 100%;
    }
}


/* ---------- MOBILE OFFCANVAS ---------- */

@media (max-width: 991px) {
    .dropdown-menu .dropdown-menu {
        position: static;
        margin-left: 1rem;
        border-left: 2px solid var(--blue);
    }
}


/*------------------------- nav-bar-end--------------------------- */


/* -------------------------------------------------------------- */


/* ------------------------------------------------------------- */

h1 {
    color: #2c3e50;
    font-size: 2.8rem;
    margin-bottom: 10px;
    /* background: linear-gradient(to right, #1a2a6c, #b21f1f); */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    color: #7f8c8d;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.5;
}

.carousel-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.owl-theme .owl-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

.owl-theme .owl-dots .owl-dot span {
    width: 14px;
    height: 14px;
    margin: 0 6px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid #fff;
    transition: all 0.3s ease;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #b21f1f;
    transform: scale(1.2);
}


/* Caption Styling */

.slide-caption {
    position: absolute;
    bottom: 100px;
    left: 40px;
    transform: none;
    width: auto;
    text-align: left;
    color: #ffffff;
    padding: 0;
    z-index: 2;
    animation: captionFadeUp 0.8s ease-out forwards;
}

.slide-caption h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 6px;
    color: #fffafa;
    text-transform: uppercase;
}

.slide-caption p {
    font-size: 1.3rem;
    font-weight: 300;
    margin: 0;
    color: #ffffff;
    opacity: 0.85;
}


/* Animation keyframes */

@keyframes captionFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner .item {
    position: relative;
}

.banner .item img {
    width: 100%;
    height: auto;
    display: block;
}


/* Strong black gradient overlay */

.banner .item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, -0.35) 0%, rgba(0, 0, 0, -0.25) 50%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
}


/* ------------------------------------------- */


/* ----------------About-section------------- */


/* ----------------------------------------- */

.hoook-line {
    padding: 0px 0px 60px 0px;
    text-align: center;
}

.hook-title {
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--blue);
}

.hook-title span {
    display: inline-block;
    margin-right: 10px;
}

.hoook-line p {
    max-width: 850px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

@media (max-width: 768px) {
    .hook-title {
        font-size: 2rem;
    }
}

.about-college {
    padding: 0px 0px;
}


/* Content */

.content-college {
    margin-bottom: 40px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background-color: var(--orange);
    position: absolute;
    left: 0;
    bottom: -8px;
}

.content-college p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
}


/* Counters */

.counter-college {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.counter-box {
    background: #ffffff;
    padding: 25px 15px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.counter-box:hover {
    transform: translateY(-6px);
}

.counter-box h4 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 8px;
}

.counter-box span {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.4;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}


/* --------------------------------------------- */


/*--------------- cources-section --------------*/


/* ------------------------------------------- */

.pu-section-content {
    padding: 20px 10px;
}

.pu-section-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--blue);
    line-height: 1.3;
    margin-bottom: 15px;
}

.pu-section-content p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #333;
    margin-bottom: 15px;
}

.cources {
    padding: 80px 0 40px;
}

.course-card-new {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #eee;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card-new:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.course-image-new {
    position: relative;
}

.course-image-new img {
    width: 100%;
    height: auto;
    display: block;
}

.course-tag-new {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--blue);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.course-content-new {
    padding: 24px;
}

.course-abbr-new {
    font-size: 15px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 10px;
}

.course-desc-new {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 22px;
}

.course-actions-new {
    display: flex;
    gap: 12px;
}

.btn-outline-new {
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    color: var(--blue);
    border: 1px solid var(--blue);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-outline-new:hover {
    background: var(--blue);
    color: #fff;
}

.btn-solid-new {
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    background: var(--orange);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-solid-new:hover {
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    color: var(--orange);
    border: 1px solid var(--orange);
    border-radius: 6px;
    transition: all 0.3s ease;
    background-color: transparent;
}

.tag-title {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #15177c;
    margin-bottom: 10px;
    position: relative;
    padding-left: 18px;
}

.tag-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 10px;
    height: 2px;
    background-color: #f4b400;
    /* accent color */
    transform: translateY(-50%);
}

.section-heading-pu {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
}


/* -------------------------------------------- */


/* ---------------Degree-cources-------------- */


/* ------------------------------------------ */

.degree-cources {
    padding: 30px 0;
}

.facilities-ms {
    padding: 40px 0px 30px 0px;
}

.facilities-ms h2 {
    font-size: 34px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 10px;
}

.facilities-intro {
    font-size: 16px;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}


/* ---------------------------------------- */


/* ---------------Infrastracture---------- */


/* -------------------------------------- */

.facilities-ms {
    background-color: var(--light-bg);
}

.facilities-ms .facility-text {
    max-width: 900px;
    margin: 0 auto 50px auto;
    text-align: center;
    color: var(--blue);
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 400;
}

.facilities-ms .infrastructure-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(21, 23, 124, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background-color: var(--white);
    height: 300px;
}

.facilities-ms .infrastructure-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(21, 23, 124, 0.25);
}

.facilities-ms .infrastructure-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.facilities-ms .infrastructure-card:hover img {
    transform: scale(1.1);
}

.facilities-ms .card-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.facilities-ms .title-section {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent);
    padding: 20px;
}

.facilities-ms .title-section h3 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 600;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.facilities-ms .overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent 100%);
    color: var(--white);
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.facilities-ms .infrastructure-card:hover .overlay {
    opacity: 1;
    transform: translateY(0);
}

.facilities-ms .overlay p {
    font-size: 0.95rem;
    color: #eaeaff;
    margin-bottom: 15px;
    line-height: 1.5;
}

.facilities-ms .overlay a {
    display: inline-block;
    background-color: var(--blue);
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s ease;
    align-self: flex-start;
}

.facilities-ms .overlay a:hover {
    background-color: var(--blue);
}

.facilities-ms .btn_all {
    display: inline-block;
    background-color: var(--blue);
    color: var(--white);
    padding: 12px 35px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.facilities-ms .btn_all:hover {
    background-color: var(--orange);
    transform: scale(1.05);
}

.faci-btn {
    text-align: center;
}

.fva {
    display: inline-block;
    background-color: var(--orange);
    color: #fff;
    padding: 12px 35px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}


/* --------------------------------------------- */


/* ---------------Activities------------------- */


/* ------------------------------------------- */

.activities {
    padding: 40px 0px 80px 0px;
}

.bg-text-activities {
    background-color: #243b98;
    padding: 70px;
}

.bg-text-activities p {
    color: #fff;
    line-height: 1.7;
}

.text-big-isec {
    font-size: 2em;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.overlap-left {
    margin-left: -30px;
}


/* SWIPER SLIDES */

.activities-swiper .swiper-slide {
    position: relative;
    overflow: hidden;
}

.activities-swiper .swiper-slide img {
    width: 100%;
    display: block;
}

.activities-swiper .swiper-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(0, 0, 0, 0.4); */
}


/* TEXT OVER IMAGE */

.activities-swiper .slide-text {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    z-index: 2;
    width: 100%;
    text-align: center;
}


/* NAV */

.custom-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.btn-nav {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--orange);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-nav:hover {
    background-color: #000;
}


/* ---------------------------------------------- */


/* -----------------Placements-partners---------- */


/* ---------------------------------------------- */

.placements {
    padding: 0px 0px 90px 0px;
    background-color: #ffffff;
}

.placements-heading {
    font-size: 36px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 10px;
}

.placements-subtext {
    max-width: 720px;
    margin: 0 auto;
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}


/* Content Text */

.placements-content {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.placements-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.placements-text {
    font-weight: 600;
    color: var(--blue);
}


/* Marquee */

.marquee-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}


/* Left & Right Gradient Fade */

.marquee-container::before,
.marquee-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 90px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, #fff 20%, transparent);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, #fff 20%, transparent);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 70px;
    width: max-content;
    animation: marquee-scroll 28s linear infinite;
}

.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}


/* Logos */

.logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    max-width: 150px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.85;
    transition: all 0.35s ease;
}

.logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.08);
}


/* Animation */

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* Responsive */


/* --------------------------------------- */


/* --------------workshops-carosal------- */


/* ------------------------------------- */

.empower-workshops {
    padding: 40px 0px 80px 0px;
}


/* Heading */

.empower-work {
    max-width: 900px;
    margin: 0 auto 50px;
}

.empower-tag {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 10px;
}

.empower-heading {
    font-size: 32px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 16px;
}

.empower-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0px;
}


/* Tabs */

.workshop-tabs .nav-link {
    font-weight: 600;
    padding: 12px 32px;
    border: none;
    background: transparent;
    color: var(--blue);
}

.workshop-tabs .nav-link.active {
    color: var(--orange);
    border-bottom: 3px solid var(--orange);
}

.carousel-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-inner {
    width: 100%;
    overflow: hidden;
    border-radius: 14px;
}

.carousel-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.workshops-carousel .carousel-control-prev,
.workshops-carousel .carousel-control-next {
    display: none;
}

.workshops-carousel .carousel-indicators {
    bottom: -55px;
}

.workshops-carousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #bbb;
    opacity: 1;
    margin: 0 5px;
}

.workshops-carousel .carousel-indicators .active {
    background-color: #9f330b;
}

.workshops-carousel .carousel-item img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .carousel-inner {
        height: 260px;
    }
    .custom-arrow {
        width: 42px;
        height: 42px;
        font-size: 24px;
    }
    .custom-arrow.left {
        left: 6px;
    }
    .custom-arrow.right {
        right: 6px;
    }
    .empower-heading {
        font-size: 26px;
    }
}


/* -------------------------------------- */


/* --------------Footer----------------- */


/* ------------------------------------ */

.college-footer {
    background-color: #212529;
    padding: 60px 0 20px;
    color: #b0b0b0;
    font-size: 14px;
}

.college-footer .footer-col {
    margin-bottom: 30px;
}

.footer-title {
    font-size: 15px;
    font-weight: 600;
    color: #ffff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #d1d1d1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--light-lavender);
    padding-left: 4px;
}


/* FOOTER BOTTOM */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    margin-top: 20px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: #bdbdbd;
}

.footer-bottom a {
    color: #d1d1d1;
}

.footer-address p {
    margin-bottom: 12px;
    line-height: 1.6;
    color: #d1d1d1;
    font-size: 14px;
}

.footer-address a {
    color: #d1d1d1;
    text-decoration: none;
}

.footer-address a:hover {
    color: var(--light-lavender);
}

.ar-logos {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ar-logos img {
    background-color: #fff;
    padding: 6px;
    border-radius: 4px;
    max-height: 80px;
    width: auto;
    object-fit: contain;
}


/* Modal Card */

.modal.fade .modal-dialog {
    transform: perspective(1000px) rotateX(-90deg);
    transition: all 0.5s ease-in-out;
    transform-origin: top center;
    opacity: 0;
}

.modal.fade.show .modal-dialog {
    transform: perspective(1000px) rotateX(0);
    opacity: 1;
}

.admission-modal {
    border-radius: 14px;
    border: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}


/* Header */

.admission-modal .modal-header {
    background: linear-gradient(90deg, var(--blue), #1f23a5);
    color: #fff;
    border-radius: 14px 14px 0 0;
    padding: 12px 20px;
}

.admission-modal .modal-title {
    font-size: 15px;
    font-weight: 600;
}

.admission-modal .btn-close {
    filter: invert(1);
}


/* Body */

.admission-modal .modal-body {
    padding: 22px;
}


/* Labels */

.admission-form .form-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 6px;
}


/* Inputs */

.admission-form .form-control,
.admission-form .form-select {
    border-radius: 8px;
    border: 1px solid #dcdcdc;
    font-size: 13px;
    padding: 8px 10px;
}

.admission-form .form-control:focus,
.admission-form .form-select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 2px rgba(159, 51, 11, 0.15);
}


/* Entrance Exam Pills */

.exam-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.exam-pill {
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid var(--blue);
    color: var(--blue);
    cursor: pointer;
    transition: all 0.3s ease;
}

.exam-pill input {
    display: none;
}

.exam-pill:hover {
    background: var(--blue);
    color: #fff;
}


/* Footer */

.admission-modal .modal-footer {
    border-top: none;
    padding: 12px 20px 18px;
}


/* Brand Button */

.btn-brand {
    background: var(--orange);
    color: #fff;
    border-radius: 20px;
    padding: 6px 20px;
    border: none;
}

.btn-brand:hover {
    background: #7f2607;
    color: #fff;
}

.exam-radio-group {
    margin-top: 6px;
}

.exam-radio-group .form-check-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--blue);
    cursor: pointer;
}


/* Bootstrap radio customization */

.form-check-input:checked {
    background-color: var(--orange);
    border-color: var(--orange);
}

.form-check-input:focus {
    box-shadow: 0 0 0 2px rgba(159, 51, 11, 0.2);
}


/* -------------------------------------- */


/* ------------news-marquee------------- */


/* ------------------------------------ */

.news-marquee {
    padding: 50px 0;
    overflow: hidden;
    position: relative;
}

.box-news {
    background-color: var(--orange);
    padding: 10px 20px;
    border-radius: 4px;
    text-align: center;
}

.box-news p {
    color: white;
    font-weight: bold;
    margin: 0;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-scroll-container {
    overflow: hidden;
    position: relative;
    height: 40px;
    display: flex;
    align-items: center;
}

.news-scroll-content {
    display: inline-flex;
    animation: scrollHorizontal 50s linear infinite;
    white-space: nowrap;
    align-items: center;
    gap: 40px;
    padding-left: 20px;
}


/* Pause animation on hover */

.news-scroll-container:hover .news-scroll-content {
    animation-play-state: paused;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    font-size: 0.95rem;
}

.news-date {
    color: var(--orange);
    font-weight: 600;
    min-width: 90px;
}

.news-separator {
    color: #555;
}

.news-text {
    color: #555;
}

.news-marquee .col-lg-10 {
    padding-left: 0px;
}

.news-marquee .col-lg-2 {
    padding-right: 0px;
}


/* Marquee animation */

@keyframes scrollHorizontal {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* Duplicate content for seamless scrolling */

.news-scroll-content::after {
    content: '';
    display: inline-flex;
    gap: 40px;
    padding-left: 20px;
}


/* Responsive adjustments */

@media (max-width: 992px) {
    .box-news {
        margin-bottom: 15px;
        padding: 8px 15px;
    }
    .news-scroll-container {
        height: auto;
        min-height: 40px;
    }
    .news-scroll-content {
        animation: scrollHorizontal 40s linear infinite;
    }
}

@media (max-width: 768px) {
    .news-item {
        font-size: 0.85rem;
        gap: 10px;
    }
    .news-date {
        min-width: 80px;
    }
    .news-scroll-content {
        gap: 30px;
    }
}


/* About US */


/* =========================
   Manasa Inner Section
========================= */

.manasa-inner-section {
    padding: 60px 0 100px;
    background-image: url(../images/AboutUs/College-front-view.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.manasa-inner-section .manasa-inner-container {
    max-width: 800px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
}


/* Image */

.manasa-inner-section .manasa-inner-image {
    position: relative;
    flex: 0 0 40%;
}

.manasa-inner-section .manasa-inner-image img {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
}


/* Experience Badge */

.manasa-inner-section .manasa-exp-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #1e3a8a;
    color: #ffffff;
    padding: 14px 18px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.35);
}

.manasa-inner-section .manasa-exp-badge strong {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.manasa-inner-section .manasa-exp-badge small {
    font-size: 12px;
    line-height: 1.2;
    opacity: 0.9;
}


/* Content */

.manasa-inner-section .manasa-inner-content {
    flex: 1;
}

.manasa-inner-section .manasa-inner-title {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
}

.manasa-inner-section .manasa-inner-title::before {
    background-color: #7b819b;
    content: '';
    position: absolute;
    bottom: -8px;
    width: 50px;
    height: 4px;
    left: 50%;
}

.manasa-inner-section .manasa-inner-text {
    font-size: 15.5px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 14px;
}


/* Responsive */

@media (max-width: 768px) {
    .manasa-inner-section .manasa-inner-container {
        flex-direction: column;
    }
    .manasa-inner-section .manasa-exp-badge {
        top: 12px;
        left: 12px;
        padding: 12px 14px;
    }
    .manasa-inner-section .manasa-exp-badge strong {
        font-size: 22px;
    }
}


/* =========================
   Editorial Panel Layout
========================= */

.community-panel-section {
    padding-top: 60px;
    background-color: #f8fafc;
    padding-bottom: 0;
}

.community-panel-section .community-panel-image {
    position: relative;
    top: -125px;
}

.community-panel-section .community-panel-image img {
    width: 100%;
    /* height: 420px; */
    object-fit: cover;
    border-radius: 18px;
}


/* Content Panel */

.community-panel-section .community-panel-content {
    position: relative;
    background: #ffffff;
    padding: 40px 35px;
    margin-left: -80px;
    border-radius: 18px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}


/* Accent Strip */

.community-panel-section .community-panel-content::before {
    content: "";
    position: absolute;
    left: 0;
    top: 40px;
    width: 10px;
    height: 40px;
    background: #1e3a8a;
    border-radius: 10px;
}


/* Decorative Shape */

.community-panel-section .community-panel-content::after {
    content: "";
    position: absolute;
    bottom: -25px;
    right: -25px;
    width: 120px;
    height: 120px;
    background: #e0f2fe;
    border-radius: 50%;
    z-index: -1;
}


/* Text */

.community-panel-section .community-panel-title {
    font-size: 26px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
}

.community-panel-section .community-panel-text {
    font-size: 15.5px;
    line-height: 1.9;
    color: #475569;
    margin-bottom: 14px;
}


/* Responsive */

.vision-mission-section {
    position: relative;
    background: linear-gradient(135deg, #f6f9ff 0%, #eef2ff 100%);
}

.vision-mission-section::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient(135deg, #0d6efd0f 0%, #0d6efd08 60%); */
    transform: skewY(-2deg);
    transform-origin: top left;
    z-index: 0;
}

.vision-mission-section .container {
    position: relative;
    z-index: 2;
}

.vision-mission-section .section-title {
    font-weight: 800;
    letter-spacing: .5px;
    margin-bottom: 30px;
}

.vision-mission-section .section-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background-color: var(--orange);
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
}

.vision-mission-section .section-subtitle {
    color: #6c757d;
    font-size: 15px;
}


/* Shared card style */

.vision-mission-section .vision-card,
.vision-mission-section .mission-card {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e7ebf3;
    backdrop-filter: blur(6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .05);
    transition: transform .25s ease, box-shadow .25s ease;
}

.vision-mission-section .vision-card:hover,
.vision-mission-section .mission-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 55px rgba(0, 0, 0, .12);
}


/* Icons inside circles */

.vision-mission-section .vision-icon,
.vision-mission-section .mission-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 24px;
}

.vision-mission-section .vision-icon {
    background: #e9f2ff;
    color: #0d6efd;
}

.vision-mission-section .mission-icon {
    background: #e9fff2;
    color: #198754;
}


/* ---------- MOBILE / SMALL DEVICES ---------- */


/* ---------- TABLET ---------- */

@media (min-width: 576px) and (max-width: 991.98px) {
    .vision-mission-section .section-title {
        font-size: 26px;
    }
    .vision-mission-section .vision-card,
    .vision-mission-section .mission-card {
        border-radius: 18px;
    }
    .vision-mission-section .vision-icon,
    .vision-mission-section .mission-icon {
        width: 56px;
        height: 56px;
        font-size: 21px;
    }
}


/* ---------- LARGE DESKTOP POLISH ---------- */

@media (min-width: 1200px) {
    .vision-mission-section .vision-card,
    .vision-mission-section .mission-card {
        max-width: 95%;
    }
}

.principal-section {
    padding: 100px 0px;
    /* background-image: url(../images/AboutUs/bg.webp); */
    /* background-position: center; */
    /* background-size: cover; */
    /* background-repeat: no-repeat; */
}

.principal-section .principal-title {
    font-weight: 800;
}

.principal-section .principal-text {
    color: #495057;
    line-height: 1.7;
}

.principal-section .principal-image img {
    box-shadow: 0 25px 45px rgba(0, 0, 0, .08);
}

.team-management {
    padding: 60px 0px;
    background-color: #f0f0f0;
}

.team-management .section-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background-color: var(--orange);
    position: absolute;
    left: 50%;
    bottom: -8px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.team-member {
    background: #ffffff;
    border-radius: 16px;
    padding: 18px;
    text-align: center;
    border: 1px solid #eee;
    transition: .3s;
}

.team-member:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.team-member img {
    border-radius: 14px;
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.team-member h6 {
    margin-top: 10px;
    font-weight: 700;
    color: #1d2b5b;
    font-size: 20px;
}

.team-member small {
    font-size: 20px;
}

@media(max-width:992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:576px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

.ar-sec {
    padding: 80px 18px;
    background: linear-gradient(135deg, #eef3ff 0%, #f7fbff 45%, #f4f9ff 100%);
}

.ar-wrap {
    max-width: 1200px;
    margin: auto;
}

.ar-wrap .ar-head {
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


/* Head */

.ar-head h2 {
    font-weight: 800;
    margin-bottom: 6px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.ar-head i {
    color: #dc2626;
}

.ar-head p {
    max-width: 780px;
    line-height: 1.8;
    margin-bottom: 25px;
}


/* Grid */

.ar-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 26px;
}


/* LEFT sticky */

.ar-left {
    position: relative;
}

.ar-panel {
    position: sticky;
    top: 85px;
    border-radius: 22px;
    padding: 20px 18px;
    backdrop-filter: blur(9px);
    background: rgba(255, 255, 255, .75);
    border: 1px solid rgba(255, 255, 255, .6);
    box-shadow: 0 25px 45px rgba(0, 0, 0, .08);
}

.panel-head {
    font-weight: 800;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.panel-head i {
    color: #ff3b3b;
}

.panel-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.panel-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #e0e4ef;
}

.panel-list li:last-child {
    border-bottom: none;
}

.panel-list span {
    font-size: .9rem;
    color: #555;
    display: block;
}

.panel-note {
    margin-top: 10px;
    font-size: .85rem;
    color: #0f5132;
    background: #e7f6ee;
    padding: 8px 10px;
    border-radius: 8px;
}


/* Cards */

.ar-right {}

.ar-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 20px 20px 14px;
    margin-bottom: 14px;
    border: 1px solid #eef1f6;
    box-shadow: 0 14px 35px rgba(0, 0, 0, .05);
    transition: .25s;
}

.ar-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, .07);
}

.ar-card .icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #eff3ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3352ff;
    margin-bottom: 6px;
}

.ar-card h4 {
    margin-bottom: 6px;
    font-weight: 800;
}

.ar-card ul {
    margin: 6px 0 0;
    padding-left: 18px;
}

.ar-card li {
    margin: 4px 0;
}


/* Responsive */

@media(max-width:900px) {
    .ar-grid {
        grid-template-columns: 1fr;
    }
    .ar-panel {
        position: static;
    }
}

@media(max-width:600px) {
    .ar-head h2 {
        font-size: 26px;
    }
}

.affiliation_recognition {
    padding: 80px 0px;
}

.affiliation_recognition .section-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background-color: var(--orange);
    position: absolute;
    left: 50%;
    bottom: -8px;
}

.affiliation_recognition_awards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* grid-template-rows: repeat(2, 1fr); */
    gap: 20px;
}

.affiliation_recognition_award {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background-color: #e5e5e5;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 24px;
}

.affiliation_recognition_award img {
    width: 30%;
}

.affiliation_recognition_award h4 {
    font-size: 20px;
    color: var(--blue-color);
}


/* PCMB */

.academis-section {
    padding: 60px 0px;
    background-image: url("../images/Courses/banner.webp");
    background-size: cover;
    background-position: center;
    color: #fff;
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-align: center;
    background-blend-mode: darken;
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.academis-section .section-title h2 {
    color: #fff;
    text-shadow: 2px 2px #1a2a6c;
}

.academis-section .section-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background-color: var(--orange);
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
}

.academis-section p strong {
    font-size: 1.2rem;
    color: #fff;
}


/* =========================
   Course Details Section
========================= */

.course-details-section {
    background-color: #f8fafc;
}


/* Image */

.course-details-section .course-image-wrap img {
    border-radius: 18px;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.15);
}


/* Content Box */

.course-details-section .course-content-box {
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 18px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}


/* Tag */

.course-details-section .course-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #1e3a8a;
    background: #e0f2fe;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 15px;
    display: none;
}


/* Titles */

.course-details-section .course-title {
    font-size: 30px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
}

.course-details-section .course-subtitle {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 18px;
}


/* Text */

.course-details-section .course-text {
    font-size: 15.5px;
    line-height: 1.9;
    color: #475569;
    margin-bottom: 14px;
}

.ms-activities-page {
    font-family: 'Poppins', sans-serif;
}

.ms-section {
    padding: 80px 0;
}

.ms-section.light {
    background: #f8f9fa;
}

.ms-title {
    text-align: center;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
}

.ms-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #0d6efd;
    display: block;
    margin: 15px auto 0;
}

.ms-img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 12px;
    transition: .4s;
}

.ms-img:hover {
    transform: scale(1.05);
}

.ms-card {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    transition: .4s;
    height: 100%;
}

.ms-card i {
    font-size: 36px;
    color: #0d6efd;
    margin-bottom: 15px;
}

.ms-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .1);
}

.ms-workshop {
    display: flex;
    gap: 25px;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    align-items: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .05);
}

.ms-workshop img {
    width: 400px;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
}

@media(max-width:768px) {
    .ms-workshop {
        flex-direction: column;
        text-align: center;
    }
}

.ms-life-section {
    padding: 80px 0;
}

.ms-life-section.light {
    background: #f9fbff;
}

.ms-life-section h3 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #0d6efd;
}

.ms-life-section h3 i {
    margin-right: 10px;
}

.ms-life-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.ms-life-section ul {
    padding-left: 0;
    margin-top: 15px;
}

.ms-life-section ul li {
    list-style: none;
    padding-left: 28px;
    margin-bottom: 10px;
    position: relative;
}

.ms-life-section ul li:before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #0d6efd;
    position: absolute;
    left: 0;
    top: 2px;
}

.ms-life-img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
    transition: .4s;
}

.ms-life-img:hover {
    transform: scale(1.05);
}

.scroll-box {
    max-height: 320px;
    overflow-y: auto;
    padding-right: 8px;
}


/* scrollbar (optional) */

.scroll-box::-webkit-scrollbar {
    width: 6px;
}

.scroll-box::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 10px;
}

.scroll-item {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 12px;
}

.scroll-item h6 {
    margin-bottom: 6px;
    font-weight: 600;
}

.scroll-item p {
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
}

.read-more {
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
}


/* Responsive */


/* =========================
   Why Choose PCMB
========================= */

.why-pcmb-section {
    padding: 80px 0px;
}


/* Heading */

.why-pcmb-section .why-pcmb-title {
    font-size: 30px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.why-pcmb-section .why-pcmb-intro {
    font-size: 15.5px;
    line-height: 1.8;
    color: #475569;
}


/* Feature Box */

.why-pcmb-section .why-pcmb-feature {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease;
}

.why-pcmb-section .why-pcmb-feature:hover {
    transform: translateY(-6px);
}


/* Number */

.why-pcmb-section .feature-number {
    font-size: 42px;
    font-weight: 700;
    color: #e0e7ff;
    position: absolute;
    top: 20px;
    right: 25px;
}


/* Titles */

.why-pcmb-section .feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 10px;
}


/* Text */

.why-pcmb-section .feature-text {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 0;
    color: #475569;
}


/* Responsive */

@media (max-width: 768px) {
    .why-pcmb-section .why-pcmb-title {
        font-size: 26px;
    }
    .why-pcmb-section .why-pcmb-feature {
        padding: 30px 25px;
    }
}


/* =========================
   Sticky Facilities Layout
========================= */

.facilities-sticky-section {
    padding: 80px 0px;
    background-color: #f8fafc;
}


/* Sticky Left Content */

.facilities-sticky-content {
    position: sticky;
    top: 200px;
    /* adjust based on header height */
}

.facilities-sticky-title {
    font-size: 30px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.facilities-sticky-intro {
    font-size: 15.5px;
    line-height: 1.9;
    color: #475569;
}


/* Right Cards */

.showcase .facility-card,
.facilities-card-wrapper .facility-card {
    background: #ffffff;
    padding: 30px 28px;
    border-radius: 14px;
    margin-bottom: 24px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease;
}

.facilities-card-wrapper .facility-card:hover {
    transform: translateY(-4px);
}

.facilities-card-wrapper .facility-card h5 {
    font-size: 18px;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 8px;
}

.facilities-card-wrapper .facility-card p {
    font-size: 15.5px;
    line-height: 1.8;
    color: #475569;
    margin: 0;
}


/* Responsive */

@media (max-width: 991px) {
    .facilities-sticky-content {
        position: relative;
        top: auto;
        margin-bottom: 30px;
    }
    .facilities-sticky-title {
        font-size: 26px;
    }
}


/* =========================
   PCMB Career End Section
========================= */

.pcmb-career-end {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}


/* Content */

.pcmb-career-end-title {
    font-size: 30px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 14px;
}

.pcmb-career-end-intro {
    font-size: 15.5px;
    line-height: 1.9;
    color: #475569;
    margin-bottom: 18px;
}


/* Inline Career Tags */

.pcmb-career-end-list {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px 14px;
    margin-bottom: 18px;
    flex-direction: column;
}

.pcmb-career-end-list span {
    font-size: 14.5px;
    color: #1e40af;
    background: #e0f2fe;
    padding: 6px 14px;
    border-radius: 30px;
    width: fit-content;
}


/* Closing Note */

.pcmb-career-end-note {
    font-size: 15px;
    line-height: 1.8;
    color: #64748b;
    max-width: 600px;
}


/* Image */

.pcmb-career-end-image img {
    border-radius: 16px;
    opacity: 0.9;
}


/* Responsive */

@media (max-width: 991px) {
    .pcmb-career-end-title {
        font-size: 24px;
    }
    .pcmb-career-end-image {
        margin-top: 30px;
    }
}


/* =========================
   Admission CTA Band
========================= */

.admission-cta-band {
    /* padding: 70px 0; */
    background-color: #ffffff;
    border-top: 1px solid #e2e8f0;
}


/* Content */

.admission-band-title {
    font-size: 30px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.admission-band-text {
    font-size: 15.5px;
    line-height: 1.9;
    color: #475569;
    max-width: 720px;
}


/* Action */

.admission-band-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #e2e7eb;
    height: 100%;
    padding: 200px 20px;
}

.admission-band-btn {
    background-color: #1e40af;
    color: #ffffff;
    padding: 14px 34px;
    font-size: 15.5px;
    font-weight: 600;
    border-radius: 40px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.admission-band-btn:hover {
    background-color: #1e3a8a;
    color: #ffffff;
}

.admission-band-note {
    margin-top: 10px;
    font-size: 13.5px;
    color: #64748b;
}


/* Responsive */

@media (max-width: 991px) {
    .admission-band-action {
        align-items: flex-start;
    }
    .admission-band-title {
        font-size: 24px;
    }
}

.bca-special-section {
    background: #f4f7fb;
}

.bca-special-section .bca-special-title {
    font-size: 32px;
}

.bca-special-section .bca-special-intro {
    color: #555;
    max-width: 750px;
    margin: 0 auto;
}


/* Feature Items */

.bca-special-section .bca-special-item {
    display: flex;
    gap: 16px;
    background: #fff;
    border-radius: 18px;
    padding: 20px 18px;
    box-shadow: 0 15px 28px rgba(0, 0, 0, .06);
    transition: .3s;
}

.bca-special-section .bca-special-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 35px rgba(0, 0, 0, .1);
}


/* Icons */

.bca-special-section .bca-special-icon {
    height: 56px;
    width: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8f0ff;
    color: #0a3a7a;
    font-size: 24px;
}


/* Text */

.bca-special-section .bca-special-content h5 {
    margin-bottom: 6px;
    font-weight: 700;
    font-size: 18px;
    color: #243b98;
}

.bca-special-section .bca-special-content p {
    margin: 0;
    color: #555;
}


/* Mobile */

@media (max-width: 767px) {
    .bca-special-section .bca-special-item {
        flex-direction: column;
        text-align: left;
    }
}


/* Facilities */

.facilities-details-section {
    padding: 60px 0px;
}

.facilities-details-section .fst-italic {
    color: #0a3a7a;
}

.facilities-details img {
    width: 100%;
    position: relative;
    z-index: 1;
}

.facilities-details-content-right-col,
.facilities-details-content-left-col {
    background-color: #003f7f;
}

.all-facilities .all-facilities-facility {
    font-size: 12px;
}

.all-facilities .all-facilities-facility i {
    color: #0a3a7a;
}

.facilities-details .facilities-details-content-left {
    background-color: #003f7f;
    color: #fff;
    padding: 60px 120px 60px 35px;
    position: relative;
    left: 10%;
}

.facilities-details-content-right {
    background-color: #003f7c;
    color: #fff;
    padding: 60px 35px 60px 100px;
    position: relative;
    right: 10%;
}

.facilities-details {
    background-color: #fff;
    margin-bottom: 30px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.facilities-details h2 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.facilities-details p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.facilities-details ul {
    list-style: none;
    padding-left: 0;
}

.facilities-details ul li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.facilities-details ul li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #ccc;
}

.facilities-details {
    background-color: #fff;
    margin-bottom: 30px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.facilities-details h2 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.facilities-details p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.facilities-details ul {
    list-style: none;
    padding-left: 0;
}

.facilities-details ul li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.facilities-details ul li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #ccc;
}

.placement-cell-partners {
    padding: 80px 0px;
}

.logo-grid {
    --border-color: #ccc;
}

.logo-grid a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    /* consistent tile height */
    border: 1px solid var(--border-color);
    background: #fff;
    overflow: hidden;
    text-decoration: none;
}


/* Logo images */

.logo-grid img {
    /* max-width: 60%; */
    max-height: 63%;
    filter: grayscale(100%);
    transition: filter 0.4s ease, transform 0.4s ease;
    width: 60%;
}

.logo-grid a:hover img,
.logo-grid a:focus img {
    filter: grayscale(0%);
    transform: scale(1.05);
}


/* Labels (top-right corner, hidden by default) */

.logo-label {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 0.25rem 0.5rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
    /* don't block clicks */
    text-transform: uppercase;
    display: none;
}

.logo-grid a:hover .logo-label,
.logo-grid a:focus .logo-label {
    opacity: 1;
    transform: translateY(0);
}


/* Border cleanup */


/* Root Section */

.career-polygon-section {
    background: #dce8ff;
    overflow: hidden;
    padding: 0px 0px 80px;
}


/* Image Side */


/* Polygon Overlay */

.career-polygon-section .career-polygon-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(59, 108, 255, 0.85));
    clip-path: polygon(0 0, 100% 0, 88% 100%, 0% 100%);
}


/* Content Side */

.career-polygon-section .career-polygon-content-wrap {
    display: flex;
    align-items: center;
    background: #dce8ff;
}


/* Floating Content Card */

.career-polygon-section .career-polygon-content {
    background: #ffffff;
    padding: 70px 60px;
    /* margin-left: -120px; */
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
    border-radius: 18px;
    /* max-width: 520px; */
    position: relative;
    z-index: 2;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.career-polygon-section .career-polygon-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #3b6cff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.career-polygon-section .career-polygon-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
}

.career-polygon-section .career-polygon-text {
    margin-top: 18px;
    font-size: 1.05rem;
    color: #444;
    line-height: 1.75;
}

.career-polygon-section .career-polygon-email {
    margin-top: 30px;
    padding: 22px 26px;
    background: #f1f5ff;
    border-left: 5px solid #3b6cff;
    border-radius: 14px;
}

.career-polygon-section .career-polygon-email span {
    display: block;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 6px;
}

.career-polygon-section .career-polygon-email a {
    font-size: 1.2rem;
    font-weight: 700;
    color: #3b6cff;
    text-decoration: none;
}

.career-polygon-section .career-polygon-note {
    margin-top: 12px;
    font-size: 0.85rem;
    color: #777;
}

.contact-main-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7ff, #ffffff);
}


/* Header */

.contact-main-section .contact-page-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #243b98 !important;
    background-color: #243b98 !important;
}

.contact-main-section .contact-page-subtitle {
    margin-top: 12px;
    font-size: 1.05rem;
    color: #555;
}


/* Info Wrapper */

.contact-main-section .contact-info-wrapper {
    margin-top: 20px;
}


/* Cards */

.contact-main-section .contact-info-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.contact-main-section .contact-info-card:hover {
    transform: translateY(-6px);
}


/* Icon */

.contact-main-section .contact-info-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b6cff, #5f8cff);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-main-section .contact-info-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}


/* Text */

.contact-main-section .contact-info-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #1f2d5a;
}

.contact-main-section .contact-info-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.contact-main-section .contact-info-card a {
    color: #3b6cff;
    text-decoration: none;
    font-weight: 500;
}

.contact-main-section .contact-info-card a:hover {
    text-decoration: underline;
}

.Main-gallery {
    padding-top: 100px;
    padding-bottom: 50px;
    background-image: url(../Images/Album/Shading-background.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}

.main-gallery-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.main-gallery-buttons button {
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
}


/* Portfolio - Active state with star */

.main-gallery-buttons button:first-child {
    background-color: var(--primary-color);
    color: white;
    border: none;
}


/* Star indicator before the active text */

.main-gallery-buttons button:first-child::before {
    content: 'â˜…';
    display: inline-block;
    margin-right: 8px;
    font-size: 14px;
}


/* Prints - Inactive state */

.main-gallery-buttons button:last-child {
    background-color: #f8f9fa;
    color: #6c757d;
    border: 1px solid #dee2e6;
}


/* Hover effects */

.main-gallery-buttons button:first-child:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.main-gallery-buttons button:last-child:hover {
    background-color: #e9ecef;
    color: #495057;
}

.main-gallery-buttons button.active::after {
    content: "";
    position: absolute;
    background-color: var(--primary-color);
    border-radius: 0;
    width: 16px;
    height: 16px;
    top: 32px;
    left: calc(50% - 10px);
    z-index: -1;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.main-gallery-buttons button.active:hover::after {
    background-color: var(--accent-color);
}

.spl-footer {
    text-align: center;
}

.spotlight-group {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 20px;
}

.spotlight-group .badge-title {
    position: absolute;
    left: 16px;
    bottom: 16px;
    background: rgba(0, 0, 0, 0.75);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    backdrop-filter: blur(4px);
}


/* custom classes are always prefixed by "spl-" automatically */

.spl-like {
    background-image: url(demo/gallery/heart-outline.svg);
    background-size: 23px;
}


/* optionally, additional state to toggle the button: */

.spl-like.on {
    background-image: url(demo/gallery/heart.svg);
}


/*
         * Custom Animation:
         * -----------------
         */


/* custom scene transition (slide effect) */

.only-this-gallery.show .spl-scene {
    transition: transform 0.2s ease;
}


/* custom animation "visible state" (css context by custom classname "only-this-gallery" to apply these animation just on a specific gallery) */

.only-this-gallery.show .spl-pane>* {
    clip-path: circle(100% at center);
    transition: transform 0.35s ease, opacity 0.65s ease, clip-path 0.8s ease;
}


/* custom animation "hidden state" ("custom" is the name of the animation you pass as gallery option) */

.only-this-gallery .spl-pane .custom {
    clip-path: circle(0px at center);
    transition: transform 0.65s ease, opacity 0.65s ease;
}


/* animation state when gallery is hidden */

#spotlight.only-this-gallery {
    clip-path: circle(0px at center);
}


/* animation state when gallery will open */

#spotlight.only-this-gallery.show {
    clip-path: circle(100% at center);
    transition: clip-path 0.65s ease 0.15s;
}

.ms-admission-tabs {
    background: linear-gradient(180deg, #f8fafc, #ffffff);
}


/* Title */

.ms-admission-tabs .ms-admission-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
}

.ms-admission-tabs .ms-admission-brief {
    color: #475569;
    font-size: 1rem;
    line-height: 1.8;
}


/* Tabs */

.ms-admission-tabs .ms-admission-nav {
    justify-content: center;
    border-bottom: none;
    margin-bottom: 30px;
}

.ms-admission-tabs .ms-admission-nav .nav-link {
    border: none;
    border-radius: 40px;
    padding: 12px 26px;
    margin: 0 6px;
    background: #e5e7eb;
    color: #475569;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ms-admission-tabs .ms-admission-nav .nav-link.active {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
}


/* Content Box */

.ms-admission-tabs .ms-admission-content {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    position: relative;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.ms-admission-tabs .ms-admission-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, #2563eb, #22c55e);
    border-radius: 24px 24px 0 0;
}


/* Section Header */

.ms-admission-tabs .ms-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.ms-admission-tabs .ms-section-header i {
    width: 42px;
    height: 42px;
    background: #e0e7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
}

.ms-admission-tabs .ms-section-header h4 {
    margin: 0;
    font-size: 1.45rem;
    font-weight: 600;
    color: #0f172a;
}


/* Text */

.ms-admission-tabs .ms-tab-desc {
    color: #475569;
    margin-bottom: 18px;
    max-width: 95%;
}


/* List */

.ms-admission-tabs .ms-tab-list {
    list-style: none;
    padding: 0;
}

.ms-admission-tabs .ms-tab-list li {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 18px;
    color: #334155;
}

.ms-admission-tabs .ms-tab-list li i {
    color: #22c55e;
    margin-top: 4px;
}


/* Mobile: Show All Content */

@media (max-width: 768px) {
    .ms-admission-tabs .ms-admission-nav {
        display: none;
    }
    .ms-admission-tabs .tab-pane {
        display: block !important;
        opacity: 1 !important;
        margin-bottom: 45px;
    }
    .ms-admission-tabs .ms-admission-content {
        padding: 28px;
    }
    .ms-admission-tabs .ms-mobile-section {
        position: relative;
        padding-bottom: 35px;
    }
    .ms-admission-tabs .ms-mobile-section::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: linear-gradient(to right, transparent, #c7d2fe, transparent);
    }
    .ms-admission-tabs .ms-admission-title {
        font-size: 2rem;
    }
}


/* Responsive */

@media (max-width: 991px) {
    .contact-main-section {
        padding: 70px 0;
    }
    .contact-main-section .contact-page-title {
        font-size: 2.1rem;
    }
}


/* Responsive */


/* Desktop (3×3) */

@media (min-width: 992px) {
    .logo-grid .col-lg-3:nth-child(-n+4) a {
        border-top: none;
    }
    /* top row */
    .logo-grid .col-lg-3:nth-child(n+7) a {
        border-bottom: none;
    }
    /* bottom row */
    .logo-grid .col-lg-3:nth-child(4n+1) a {
        border-left: none;
    }
    /* first col */
    .logo-grid .col-lg-3:nth-child(4n) a {
        border-right: none;
    }
    /* last col */
}


/* Mobile (2×2) */

@media (max-width: 991.98px) {
    .logo-grid .col-6:nth-child(-n+2) a {
        border-top: none;
    }
    /* top row */
    .logo-grid .col-6:nth-last-child(-n+2) a {
        border-bottom: none;
    }
    /* bottom row */
    .logo-grid .col-6:nth-child(2n+1) a {
        border-left: none;
    }
    /* first col */
    .logo-grid .col-6:nth-child(2n) a {
        border-right: none;
    }
    /* last col */
}