/* =====================
   Profile Header
===================== */
.faculty_details_section {
    padding-top: 60px;
}

.faculty_details_section .profile-header {
    background: linear-gradient(135deg, #cd2122, #a71819);
    border-radius: 20px;
    padding: 48px;
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.faculty_details_section .profile-header::after {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}


.faculty_details_section .profile-img-wrapper {
    position: relative;
    display: inline-block;
}

.faculty_details_section .profile-img-wrapper .img-bg {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 18px;
    transition: 0.4s ease;
}

.faculty_details_section .profile-img {
    position: relative;
    z-index: 1;
    max-width: 300px;
    border-radius: 18px;
    background: #fff;
    padding: 6px;
    transition: 0.4s ease;
    height: 300px;
}

.faculty_details_section .profile-img-wrapper:hover .profile-img {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.faculty_details_section .profile-img-wrapper:hover .img-bg {
    transform: translate(-6px, -6px);
}


.faculty_details_section .action-btns .btn {
    border-radius: 25px;
    padding: 10px 20px;
    font-weight: 500;
    font-size: 14px;
    font-style: normal;
}

.faculty_details_section .action-btns .btn:hover {
    color: #FFFFFF;
    background: transparent;
}


.faculty_details_section .faculty-designation {
    font-size: 18px;
}

.faculty_details_section .faculty-institute {
    font-size: 14px;
    margin: 0;
}

.faculty_details_section .teaching-philosophy {
    margin-top: 28px;
    background: rgba(255, 255, 255, 0.12);
    padding: 20px 24px;
    border-radius: 10px;
}

.faculty_details_section .teaching-philosophy h5 {
    font-size: 16px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faculty_details_section .teaching-philosophy p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.faculty_details_section .faculty-email-label {
    font-size: 14px;
    margin-top: 12px;
}

.faculty_details_section .faculty-email-label .icon-img {
    height: 17px;
}


.faculty_details_section .section-card {
    background: #F0F9FA;
    border-radius: 15px;
    padding: 10px 17px 17px 17px;
    margin-bottom: 30px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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


.faculty_details_section .section-title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 18px;
    padding-bottom: 8px;
    margin-bottom: 0;
    color: #000000;
}


.faculty_details_section .research-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 12px;
    padding-left: 18px;
}

.faculty_details_section .research-list li {
    font-size: 15px;
}


.faculty_details_section ol,
.faculty_details_section ul {
    padding-left: 18px;
}

.faculty_details_section ol li,
.faculty_details_section ol li, .faculty_details_section ul li {
    margin-bottom: 8px;
    font-size: 15px;
    list-style-type: disclosure-closed;
    text-align: justify;
}

.faculty_details_section a {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 14px;
    font-style: italic;
    border-bottom: 1px solid #FFFFFF;
}

.faculty_details_section .research-title {
    font-size: 18px;
}


.faculty_details_section h1 {
    font-size: 24px;
    margin-bottom: 0;
}

.faculty_details_section p {
    font-size: 15px;
    margin-bottom: 12px;
    text-align: justify;
}

.faculty_details_section .header-icon {
    width: 25px;
    height: auto;
    margin-bottom: 14px;
}

.faculty_details_section .section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #cd2122;
    margin-bottom: 10px;
}


/* Faculty page css start */
/* ===== Faculty Card ===== */
.faculty_box_inner {
    background: linear-gradient(to bottom, #ffffff, #f4f4f7, #e7eaef);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-top: 25px;
}

.faculty_box_inner:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}


.faculty_profile {
    overflow: hidden;
    position: relative;
}

.ssla-txt {
    text-align: justify;
    margin: 30px 0;
}

/* .faculty_profile::after {
        content: "";
        position: absolute;
        background-color: #00000082;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        opacity: 1;
        visibility: visible;
        transition-duration: 0.4S;
    } */
/* 
.faculty_box_inner:hover .faculty_profile::after {
    opacity: 0;
    visibility: hidden;
} */


/* .faculty_profile img {
    width: 100%;
    transition: transform 0.6s ease;
    height: 300px;
    object-fit: cover;
}

.faculty_profile:hover img {
    transform: scale(1.08);
} */

.faculty_profile {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.faculty_profile img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: opacity 0.5s ease, transform 0.6s ease;
}

/* Default image */
.faculty_profile .hover-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

/* On hover: show second image */
.faculty_profile:hover .hover-img {
    opacity: 1;
    /* transform: scale(1.08); */
}

/* On hover: hide first image */
.faculty_profile:hover .normal-img {
    opacity: 0;
    transform: scale(1.08);
}




/* ===== Content ===== */
.faculty_content_box {
    padding: 15px;
}

/* ===== Name ===== */
.faculty_name {
    font-size: 16px;
    margin-bottom: 4px;
}

/* ===== Position ===== */
.faculty_position {
    /* font-family: Montserrat-Medium; */
    font-family: Montserrat-Bold;
    font-size: 14px;
    color: #6a6a6a;
}

.faculty_position span {
    display: block;
    font-family: Montserrat-Bold;
    font-size: 12px;
    color: #000;
    margin-top: 5px;
}

/* ===== Email ===== */
.faculty_mail {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    color: #c32f33;
    text-decoration: none;
    margin: 6px 0 10px;
}

.faculty_mail svg {
    width: 14px;
}

/* ===== Button ===== */
.know_more_btn a {
    display: inline-block;
    padding: 7px 18px 7px 18px;
    font-size: 12px;
    color: #212529;
    background-color: #fff;
    background-image: url(../images/inner_pages/black_right_arrow.png);
    background-repeat: no-repeat;
    background-size: 11px;
    background-position: 90% center;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.know_more_btn a:hover {
    background-color: #CB2E33;
    color: #fff;
    background-image: url(../images/inner_pages/white_right_arrow.png);
}

/* fACULTY CSS END */

/* VISION MISSION CSS START */

.vision-mission-section {
    padding: 10px 0;
    background: url('../images/about/wavesbg.webp');
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.vision-mission-section .vision-box,
.mission-box {
    padding: 30px;
    margin-top: 30px;
}

.vision-mission-section .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #ec3536;
    margin-bottom: 20px;
    position: relative;
}

.vision-mission-section .section-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #ec3536;
    display: block;
    margin-top: 10px;
}

.vision-mission-section .section-text {
    font-size: 16px;
    color: #000;
    line-height: 1.6;
    text-align: justify;
}

.vision-mission-section .mission-list {
    padding-left: 0;
    margin-top: 20px;
}

.vision-mission-section .mission-list li {
    list-style: none;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #000;
}

.vision-mission-section .mission-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #ec3536;
    font-weight: bold;
}

.vision-mission-section .lottie-anim {
    width: 300px;
    height: 300px;
    margin: auto;
}

.vision-img-wrapper {
    overflow: hidden;
    border-radius: 10px;
    /* optional */
}

.vision-mission-img {
    transition: transform 0.4s ease, filter 0.4s ease;
}

.vision-img-wrapper:hover .vision-mission-img {
    transform: scale(1.1);
    filter: brightness(85%);
}


.main-banner-box {
    padding: 130px 0 40px 0;
    text-align: center;
    background: hsl(187, 100%, 25%);
    overflow: hidden;
    color: #fff;
}


.main-banner-box .sub-main-banner {
    position: relative;
}


.main-banner-box .animated-bg span {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    animation: float 10s infinite ease-in-out;
}


.main-banner-box .animated-bg span:nth-child(1) {
    top: -50px;
    left: -50px;
    animation-delay: 0s;
}


.main-banner-box .animated-bg span:nth-child(2) {
    bottom: -80px;
    right: 10%;
    animation-delay: 3s;
}


.main-banner-box .animated-bg span:nth-child(3) {
    top: 30%;
    right: -60px;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }
}


.main-banner-box .inner_heading {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 35px;
}

.main-banner-box .inner_heading::before,
.main-banner-box .inner_heading::after {
    display: none;
}

/* Breadcrumb styling */
.breadcrumb-wrapper {
    display: flex;
    justify-content: center;
}

.breadcrumb {
    background: transparent;
    margin-bottom: 0;
    padding: 0;
}

.breadcrumb-item a {
    color: #dff5f4;
    text-decoration: none;
    font-size: 14px;
}

.breadcrumb-item a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #ffffff;
    font-size: 14px;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    color: #cce9e7;
    padding: 0 8px;
}

/* Vision Mission css end */

/* Director's note CSS start */
.director-profile-section {
    padding: 20px 0;
    background: url('../images/about/wavesbg.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
}

.director-profile-section .director-card {
    position: relative;
    z-index: 1;
    backdrop-filter: blur(12px);
    border-radius: 20px;
    margin: 50px;
}

.director-profile-section .director-img {
    border-radius: 25px;
    transition: transform 0.6s ease;
    width: 100%;
}

.director-profile-section .director-img-wrapper:hover .director-img {
    transform: scale(1.05);
}

.director-profile-section .director-title {
    font-size: 34px;
    font-weight: 700;
    color: #1c1c1c;
}

.director-profile-section .director-name {
    font-size: 22px;
    font-weight: 600;
    color: #cd2122;
    margin-bottom: 20px;
    margin-top: 30px;
}

.director-profile-section .director-text {
    font-size: 16px;
    line-height: 1.6;
    text-align: justify;
}

/* Accordion */
.director-profile-section .director-desk {
    margin-top: 30px;
    border-top: 1px solid #ddd;
}

.director-profile-section .desk-toggle {
    width: 100%;
    background: none;
    border: none;
    font-size: 20px;
    font-weight: 600;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}


.director-profile-section .desk-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease;
}


/* Director Notes css end */


/* RAP CSS start */


.rap_admission_main .rap-admission-section {
    background: #F0F9FA;
    padding: 40px 20px;
}

.rap_admission_main .section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #CB2E33;
    margin-bottom: 28px;
}

.rap_admission_main .rap-timeline {
    position: relative;
    max-width: 900px;
    margin: auto;
}

.rap_admission_main .rap-timeline::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #CB2E33;
}

.rap_admission_main .rap-dot {
    width: 15px;
    height: 15px;
    background: #CB2E33;
    border-radius: 50%;
    position: relative;
    left: calc(18px - 6.5px);
    margin-top: 6px;
    flex-shrink: 0;
}

.rap_admission_main .rap-item {
    position: relative;
    display: flex;
    gap: 25px;
    margin-bottom: 10px;
}

.rap_admission_main .rap-content {
    background: #fff;
    padding: 18px;
    border-radius: 14px;
    width: 100%;
}

.rap_admission_main .rap-content h4 {
    color: #007382;
    margin-bottom: 10px;
    font-weight: 600;
}

/* ACCORDION */
/* Bootstrap accordion override */
.rap_admission_main .rap-acc-btn {
    background: none !important;
    color: #007382 !important;
    font-size: 18px;
    font-weight: 600;
    padding: 0;
    box-shadow: none;
}

.rap_admission_main .rap-acc-btn::after {
    background-image: none !important;
    content: "+";
    font-size: 22px;
    transform: none !important;
}

.rap_admission_main .accordion-button:not(.collapsed)::after {
    content: "−";
}

.rap_admission_main .accordion-item {
    border: none;
}

.rap_admission_main .accordion-body {
    padding: 15px 0 0;
}



.rap_admission_main .rap-note-section {
    padding: 60px 0;
}

.rap_admission_main .rap-note-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rap_admission_main .rap-note-card:hover {
    transform: translateY(-4px);
}

.rap_admission_main .rap-note-title {
    font-size: 28px;
    font-weight: 700;
    color: #CB2E33;
    margin-bottom: 25px;
}

.rap_admission_main .rap-note-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rap_admission_main .rap-note-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    text-align: justify;
}

.rap_admission_main .rap-note-list strong {
    color: #007382;
}

.rap_admission_main .rap-note-list li::before {
    content: "➤";
    position: absolute;
    left: 0;
    top: 2px;
    color: #CB2E33;
    font-size: 16px;
}

.rap_admission_main .rap-terms-section {
    background: #F0F9FA;
    padding: 60px 0;
}

.rap_admission_main .rap-terms-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 45px 50px;
    max-width: 1000px;
    margin: auto;
    border-top: 4px solid #CB2E33;
}

.rap_admission_main .rap-terms-title {
    font-size: 30px;
    font-weight: 700;
    color: #CB2E33;
    margin-bottom: 30px;
    text-align: center;
}

.rap_admission_main .rap-terms-list {
    padding-left: 20px;
    margin: 0;
}

.rap_admission_main .rap-terms-list li {
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.75;
    color: #333;
    text-align: justify;
}

.rap_admission_main .rap-terms-list li::before {
    content: "➤";
    color: #CB2E33;
    font-size: 16px;
}

.rap_admission_main .rap-terms-list strong {
    color: #007382;
    font-weight: 600;
}

.rap_admission_main .rap_note_mainbox-disc {
    background: #F0F9FA;
    padding: 60px 0;
}

.rap_admission_main .rap_note_mainbox-disc .custom_listing_disclaimer {
    background: #ffffff;
    border-radius: 18px;
    padding: 45px 50px;
    max-width: 1000px;
    margin: auto;
    border-top: 4px solid #CB2E33;
}



.rap_admission_main .rap_note_mainbox-disc li::before {
    content: "➤";
    color: #CB2E33;
    font-size: 16px;
    margin-right: 10px;
}


.rap_admission_main .rap_note_mainbox-disc ul li {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.75;
    color: #333;
    text-align: justify;
}

.rap_admission_main .rap_note_mainbox-cancel {
    padding: 60px 0;
}

.rap_admission_main .rap_note_mainbox-cancel ul li {
    margin-top: 12px;
}


.rap_admission_main .rap_note_mainbox-cancel li::before {
    content: "➤";
    color: #CB2E33;
    font-size: 16px;
    margin-right: 10px;
}


/* RAP CSS End */

/* Alumini Page css start */

.alumni-testimonial-section .section-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: #CB2E33;
    margin-bottom: 60px;
}

.alumni-testimonial-section .alumni-card {
    display: flex;
    gap: 40px;
    align-items: center;
    background-color: #F0F9FA;
    border-right: 8px solid #007382;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    margin: auto;
    margin-bottom: 40px;
    border-radius: 10px;
}

.alumni-testimonial-section .alumni-card-alternate .alumni-card {
    border-right: none;
    border-left: 8px solid #007382;
}

.alumni-testimonial-section .alumni-image {
    position: relative;
    width: 260px;
    height: 320px;
    overflow: hidden;
    border-top-right-radius: 0px;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 50px;
    border: 4px solid #CB2E33;
}

.alumni-testimonial-section .alumni-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Overlay */

/* Accent line */
.alumni-testimonial-section .alumni-image::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 2px solid #ffffff;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Hover Effects */
.alumni-testimonial-section .alumni-image:hover img {
    transform: scale(1.1);
}

.alumni-testimonial-section .alumni-image:hover::after,
.alumni-testimonial-section .alumni-image:hover::before {
    opacity: 1;
}


.alumni-testimonial-section .alumni-content {
    flex: 1;
}

.alumni-testimonial-section .alumni-name {
    font-size: 24px;
    font-weight: 600;
    color: #007382;
    margin-bottom: 5px;
}

.alumni-testimonial-section .alumni-batch {
    font-size: 15px;
    color: #CB2E33;
    font-weight: 500;
    margin-bottom: 10px;
}

.alumni-testimonial-section .alumni-designation {
    font-size: 16px;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.5;
}

.alumni-testimonial-section .alumni-designation span {
    color: #007382;
    font-weight: 500;
}

.alumni-testimonial-section .alumni-quote {
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    position: relative;
    padding-left: 25px;
}

.alumni-testimonial-section .alumni-quote::before {
    content: "“";
    font-size: 60px;
    color: #CB2E33;
    position: absolute;
    left: 0;
    top: -31px;
}

.alumni-testimonial-section .testimonial-section {
    padding: 40px 0;
}

.alumni-testimonial-section .testimonial-card {
    display: flex;
    align-items: center;
    background: #f7f7f7;
    border-radius: 20px;
    padding: 40px;
    gap: 40px;
}

.alumni-testimonial-section .testimonial-image {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
    border-radius: 24px;
    overflow: hidden;
    border-radius: 24px 24px 24px 24px;
    clip-path: polygon(0% 0%,
            0% 12%,
            12% 0%,
            100% 0%,
            100% 12%,
            88% 100%,
            0% 100%);
}

.alumni-testimonial-section .testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.alumni-testimonial-section .testimonial-content {
    max-width: 600px;
}

.alumni-testimonial-section .testimonial-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #222;
}

.alumni-testimonial-section .testimonial-content h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.alumni-testimonial-section .testimonial-content span {
    font-size: 14px;
    color: #777;
}

/* Swiper arrows */
.alumni-testimonial-section .swiper-button-next,
.alumni-testimonial-section .swiper-button-prev {
    color: #000;
    height: 15px;
    width: 15px;
}

.main-card-secccc {
    padding: 60px 0;
}


.main-card-secccc .profile-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 320px;
}

.main-card-secccc .profile-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.main-card-secccc .profile-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.main-card-secccc .profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.main-card-secccc .profile-card:hover .profile-image img {
    transform: scale(1.08);
}

.main-card-secccc .profile-content {
    padding: 25px 20px;
}

.main-card-secccc .profile-name {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 6px;
}

.main-card-secccc .profile-degree {
    font-size: 14px;
    color: #007382;
    margin-bottom: 10px;
}

.main-card-secccc .profile-designation {
    font-size: 15px;
    color: #000000;
    line-height: 1.6;
}

.main-card-secccc .profile-designation span {
    color: #CB2E33;
    font-weight: 500;
}

.faculty-listing-section {
    padding: 70px 0;
    background-color: #ffffff;

}

.faculty-listing-section .section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: #000;
    margin-bottom: 50px;
}

.faculty-listing-section .faculty-list {
    margin: 0 auto;
}

.faculty-listing-section .faculty-item {
    display: flex;
    gap: 24px;
    padding: 24px;
    background: #FFFFFF;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    border-radius: 5px;
}

.faculty-listing-section .faculty-item:last-child {
    border-bottom: none;
}

.faculty-listing-section .faculty-image {
    width: 110px;
    height: 140px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 6px;
    background-color: #f5f5f5;
}

.faculty-listing-section .faculty-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faculty-listing-section .faculty-details h4 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 6px;
}

.faculty-listing-section .faculty-degree {
    font-size: 14px;
    color: #007382;
    margin-bottom: 4px;
}

.faculty-listing-section .faculty-role {
    font-size: 15px;
    font-weight: 500;
    color: #000;
    margin-bottom: 4px;
}

.faculty-listing-section .faculty-org {
    font-size: 14px;
    color: #CB2E33;
}

.staff-sub-inner .faculty_position {
    font-family: Montserrat-Bold;
    font-size: 15px;
    color: #CB2E33;
    text-align: center;
}

.staff-sub-inner .faculty_name {
    text-align: center;
}

/* Alumini Page css end */



/* Acievements css start */

.page-title {
    text-align: center;
    font-size: 36px;
    color: #007382;
    margin-bottom: 50px;
    position: relative;
}

.page-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background-color: #CB2E33;
    display: block;
    margin: 12px auto 0;
}

/* Achievement Card */
.acheivement_main {
    /* background: url('../images/about/wavesbg.webp'); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
}

.acheivement_main .achievement-content {
    margin-top: 30px;
}

.acheivement_main .achievement-content:first-child {
    margin-top: 0;
}

.acheivement_main .section-title {
    color: #ec3536;
    font-size: 30px;
    font-weight: 500;
}

.acheivement_main .achievement-card {
    background-color: #FFFFFF;
    border-left: 6px solid #007382;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
}

.acheivement_main .faculty-names {
    font-weight: 600;
    color: #007382;
    margin-bottom: 15px;
}

.acheivement_main .project-text {
    margin-bottom: 15px;
    font-size: 16px;
}

/* Image Gallery */
.acheivement_main .image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.acheivement_main .image-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.4s ease;
}

.acheivement_main .image-gallery img:hover {
    transform: scale(1.05);
}

.acheivement_main .image-caption {
    font-size: 14px;
    color: #555;
    margin-top: 10px;
    font-style: italic;
}

.acheivement_main .faculty-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

/* Card */
.acheivement_main .faculty-image-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Image */
.acheivement_main .faculty-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Hover Zoom */
.acheivement_main .faculty-image-card:hover img {
    transform: scale(1.06);
}

/* Name Overlay */
.acheivement_main .faculty-name {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 12px 15px;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.25));
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
}

/* Split layout */
.acheivement_main .achievement-split {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 30px;
    margin-top: 40px;
    align-items: stretch;
}

/* Image */
.acheivement_main .achievement-image {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.acheivement_main .achievement-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.acheivement_main .achievement-image:hover img {
    transform: scale(1.06);
    filter: brightness(0.9);
}

/* Content */
.acheivement_main .achievement-content-box {
    background: #ffffff;
    padding: 32px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

/* Text styles */
.acheivement_main .faculty-names {
    font-size: 17px;
    font-weight: 600;
    color: #007382;
    margin-bottom: 14px;
}

.acheivement_main .project-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 14px;
    text-align: justify;
}

.acheivement_main .achievement-image {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.acheivement_main .achievement-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.acheivement_main .achievement-image:hover img {
    transform: scale(1.06);
    filter: brightness(0.9);
}


.acheivement_main .main-class {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Red button */
.main-class-download {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.main-class-download .download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #CB2E33;
    color: #ffffff;
    padding: 12px 22px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.main-class-download .download-btn:hover {
    background: #a92428;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(203, 46, 51, 0.35);
    color: #fff;
}

.main-class-download .download-lottie {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.acheivement_main .img-studentfac img {
    height: 250px;
    object-fit: contain;
    object-position: top;
    background-color: #f4f4f4;
}



/* Acievements css end */


/* Admission prcess css start */

.main-sec-admission-process {
    margin-top: 60px;
}

.main-sec-admission-process .rap_admission_main .rap-admission-section {
    margin-bottom: 60px;
}

.main-sec-admission-process .set-registration {
    padding: 0px 20px 50px 20px;
    font-family: 'Roboto', Arial, sans-serif;
}

.main-sec-admission-process .set-container {
    max-width: 900px;
    margin: auto;
}

.main-sec-admission-process .set-registration h2 {
    color: #CB2E33;
    font-size: 28px;
    margin-bottom: 25px;
    border-left: 6px solid #007382;
    padding-left: 15px;
}

.main-sec-admission-process .info-box {
    background-color: #f9f9f9;
    border: 1px solid #007382;
    border-radius: 8px;
    padding: 25px 30px;
}

.main-sec-admission-process .info-box p {
    color: #000;
    font-size: 16px;
    margin-bottom: 15px;
    text-align: justify;
}

.main-sec-admission-process .highlight {
    color: #007382;
    font-weight: 600;
}

.main-sec-admission-process .info-box ul {
    padding-left: 20px;
    color: #000;
}

.main-sec-admission-process .info-box ul li {
    margin-bottom: 12px;
    line-height: 1.6;
    text-align: justify;
}

.main-sec-admission-process .sub-list {
    margin-top: 8px;
    padding-left: 20px;
}

.main-sec-admission-process .sub-list li {
    list-style-type: disc;
    color: #007382;
    font-weight: 500;
}

.main-sec-admission-process .warning {
    background-color: #CB2E33;
    color: #fff;
    padding: 12px 15px;
    border-radius: 6px;
    font-weight: 500;
}

/* Modern tweak */
.main-sec-admission-process .modern .intro-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.main-sec-admission-process .badge {
    display: inline-block;
    background: #007382;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    width: fit-content;
}

.main-sec-admission-process .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.main-sec-admission-process .type-card {
    background: #fff;
    border: 1px solid #dedede;
    border-left: 5px solid #CB2E33;
    border-radius: 10px;
    padding: 22px;
    transition: all 0.3s ease;
}

.main-sec-admission-process .type-card h4 {
    color: #CB2E33;
    margin-bottom: 10px;
    font-size: 17px;
}

.main-sec-admission-process .type-card p {
    color: #000;
    font-size: 14.5px;
    line-height: 1.6;
}

.main-sec-admission-process .type-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.main-sec-admission-process .action-box {
    text-align: center;
    border: 1px dashed #007382;
}

.main-sec-admission-process .cta-link {
    display: inline-block;
    margin-top: 10px;
    color: #CB2E33;
    font-weight: 600;
    text-decoration: none;
}

.main-sec-admission-process .cta-link:hover {
    text-decoration: underline;
}

.main-sec-admission-process .process-step {
    margin: 20px 0;
}

.main-sec-admission-process .process-step h3 {
    font-size: 20px;
    color: #CB2E33;
    margin: 15px 0;
}

.main-sec-admission-process .process-subtitle {
    font-size: 20px;
    color: #CB2E33;
    margin: 15px 0;
}

.set-registration .table a:hover {
    color: #FFF;
}

/* Admission prcess css end */

/* Research CSS start */
.research-main-sec .research-colloquia-bs {
    color: #000;
    font-family: "Inter", sans-serif;
}


.research-main-sec .rc-title {
    font-size: 32px;
    font-weight: 700;
    color: #CB2E33;
}

.research-main-sec .rc-subtitle {
    font-size: 16px;
    color: #007382;
    font-weight: 500;
}

.research-main-sec .rc-overview {
    padding: 30px;
    border-top: 4px solid #CB2E33;
    background-color: #f9f9f9;
}

.research-main-sec .rc-overview h4 {
    color: #007382;
    margin-bottom: 15px;
}

.research-main-sec .rc-overview p {
    font-size: 16px;
    line-height: 1.6;
    text-align: justify;
}


.research-main-sec .rc-objective {
    margin-bottom: 30px;
}

/* .research-main-sec {
    padding: 60px 0;
} */

.rc-card {
    position: relative;
    background: #ffffff;
    padding: 30px 25px 30px 70px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
}

.rc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.research-main-sec .rc-num {
    position: absolute;
    left: 20px;
    top: 25px;
    font-size: 34px;
    font-weight: 700;
    color: #CB2E33;
    line-height: 1;
}

.research-main-sec h5 {
    font-size: 18px;
    font-weight: 600;
    color: #007382;
    margin-bottom: 10px;
}

.research-main-sec p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
    color: #333;
    text-align: justify;
}


.research-main-sec .rc-series {
    background-color: #007382;
    color: #fff;
    padding: 40px 20px;
    border-radius: 15px;
}

.research-main-sec .rc-series h4 {
    font-size: 22px;
    margin-bottom: 10px;
}

.research-main-sec .rc-series p {
    color: #FFF;
    text-align: center;
}

.research-main-sec .inner_heading-red {
    color: #CB2E33;
    font-weight: 700;
    line-height: 1.3;
    animation: fadeUp 0.8s ease forwards;
}

.research-main-sec .card {
    border: none;
    border-radius: 16px;
    animation: fadeUp 1s ease forwards;
}


.research-main-sec .objective {
    margin-bottom: 20px;
}

.research-main-sec .objective h2 {
    color: #CB2E33;
    margin-bottom: 15px;
    font-size: 25px;
}

.research-main-sec .objective p {
    font-size: 16px;
    line-height: 1.6;
    text-align: justify;
}

/* ---------- PROCEEDINGS ---------- */
.research-main-sec .proceedings h2 {
    text-align: center;
    color: #007382;
    font-size: 24px;
    font-weight: 500;
}

.research-main-sec .proceedings-grid {
    display: grid;
    align-items: center;
}

.research-main-sec .proceedings-grid-workshop {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.research-main-sec .proceedings-text p {
    font-size: 15px;
    line-height: 1.6;
    text-align: justify;
}

.research-main-sec .proceedings-image img {
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    animation: fadeZoom 1s ease forwards;
    object-fit: cover;
}

.research-main-sec .speaker {
    padding: 50px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.research-main-sec .speaker h2 {
    color: #CB2E33;
    margin-bottom: 20px;
    font-size: 25px;
}

.research-main-sec .speaker-card {
    display: flex;
    gap: 30px;
}

.research-main-sec .speaker-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.research-main-sec .speaker-content p {
    line-height: 1.6;
    font-size: 15px;
    text-align: justify;
}


.research-main-sec .proceedings-collage {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0 40px;
}

.research-main-sec .proceedings-collage img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.research-main-sec .proceedings-text {
    /* max-width: 900px; */
    margin-bottom: 30px;
}

.research-main-sec .proceedings-text p {
    font-size: 15.5px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.research-main-sec .speaker {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 18px;
}

.research-main-sec .speaker-content p {
    font-size: 15.5px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.research-main-sec .rap_admission_main .rap-timeline {
    position: relative;
    max-width: 1050px;
    margin: auto;
}

.research-main-sec .facilator-heading {
    text-align: center;
    color: #007382;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
}


.read-more-wrapper {
    position: relative;
}

/* collapsed state */
.read-more-content {
    max-height: 200px;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

/* expanded state */
.read-more-wrapper.expanded .read-more-content {
    max-height: 5000px;
}


.read-more-btn {
    margin-top: 15px;
    background: none;
    border: none;
    color: #c00;
    font-weight: 600;
    cursor: pointer;
}



/* ---------- ANIMATIONS ---------- */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeZoom {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* Accordion Button Layout */
.rap-acc-btn {
    padding: 10px 30px;
}

.acc-btn-content {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* Small Rounded Image */
.accor-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
    margin-right: 15px;
}


.acc-title {
    font-size: 22px;
    font-weight: 700;
    color: #CB2E33;
    line-height: 1.3;
}

.img-name-below {
    font-size: 12px;
    font-weight: 600;
    font-style: italic;
    text-align: center;
}

.card-sub p {

    text-align: justify;

}

.card-sub strong {

    margin-top: 15px;

}

.card-sub img {
    width: 100%;
    margin-bottom: 15px;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .accor-img {
        width: 50px;
        height: 50px;
    }

    .acc-title {
        font-size: 18px;
    }
}

/* Research css end */

/* Alumni new css start */
.main-class-alumini-img {
    text-align: center;
}

.alumni-main-section {
    margin: 40px 0;
}

.alumni-main-section .alumni-image {
    position: relative;
    width: 200px;
    height: 200px;
    overflow: hidden;
    /* border: 4px solid #CB2E33; */
    border-radius: 100%;
    object-fit: cover;
    margin: auto;
}

.alumni-main-section .alumni-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.alumni-main-section .alumni-image::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 2px solid #ffffff;
    opacity: 0;
    transition: opacity 0.4s ease;
}


.alumni-main-section .alumni-image:hover img {
    transform: scale(1.1);
}


.alumni-main-section .main-class-alumini-img h3 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 0;
}

.alumni-main-section .main-class-alumini-img .batch-txtt {
    font-size: 13px;
    margin-bottom: 0;
    color: #CB2E33;
}

.alumni-main-section .main-class-alumini-img .p {
    font-size: 14px;
    margin-bottom: 0;
}

.alumni-main-section .part-seccc-title {
    font-size: 30px;
    color: #007382;
    font-weight: 600;
    text-align: center;
    margin: 40px 0px;
}


/* Alumni new css end */


/* Student research css start */

.research-section {
    padding: 60px 20px 0px 20px;
    font-family: 'Poppins', sans-serif;
}

.research-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    gap: 40px;
}

/* Individual Cards */
.research-card {
    border-left: 6px solid #ec3536;
    padding: 30px 25px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Hover Effect */
.research-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.15);
}

/* Titles */
.research-card h2 {
    color: #000;
    font-size: 25px;
    margin-bottom: 8px;
    font-weight: 700;
}

/* Underline */
.underline {
    width: 60px;
    height: 4px;
    background-color: #007382;
    margin-bottom: 20px;
    border-radius: 2px;
}

/* Paragraph text */
.research-card p {
    text-align: justify;
}

/* Coordinators box */
.coordinators {
    margin-top: 20px;
    background-color: #007382;
    padding: 15px;
    border-radius: 6px;
}

.coordinators h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 18px;
}

.coordinators ul {
    list-style-type: disc;
    padding-left: 20px;
}

.coordinators li {
    color: #fff;
    font-size: 15px;
    padding: 4px 0;
}

/* Strong highlights in text */
.research-card strong {
    color: #ec3536;
}

/* Student research css end */


/* Student css start */

.student-council {
    padding-top: 60px;
}

.student_council_img {
    width: 100%;
    border-radius: 15px;
    margin: 40px 0;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.student_council_img:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.student-council table td {
    font-size: 15px;
}

.student-council table td a {
    /* subtle red highlight */
    text-decoration: none;
    font-weight: 600;
}

.student-council table td a:hover {
    text-decoration: underline;
}

/* Student css End */

/* Financials css start */

.table-heading {
    text-align: center;
    color: #CB2E33;
    font-size: 16px;
    font-weight: 600;
    background: #F5F5F5;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
}

/* Section */
.main-financials .neft-modern {
    background: #fff;
    color: #000;
    font-family: "Segoe UI", sans-serif;
}

/* Wrapper */
.main-financials .neft-wrapper {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 6px 9px rgba(0, 0, 0, 0.08);
}

/* Title */
.main-financials .neft-title {
    text-align: center;
    margin-bottom: 40px;
}

.main-financials .neft-tag {
    display: inline-block;
    background: #CB2E33;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.main-financials .neft-title h2 {
    font-weight: 700;
    margin-bottom: 10px;
}

.main-financials .neft-title p {
    color: #007382;
    max-width: 650px;
    margin: auto;
}

/* Grid */
.main-financials .neft-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Panels */
.main-financials .neft-panel {
    background: #fff;
    border-radius: 14px;
    padding: 30px;
    position: relative;
    border-top: 6px solid #CB2E33;
    box-shadow: 0 6px 9px rgba(0, 0, 0, 0.05);
}

.main-financials .neft-panel.accent {
    border-top-color: #007382;
}

.main-financials .neft-panel h5 {
    font-weight: 700;
    margin-bottom: 20px;
}

/* List */
.main-financials .neft-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-financials .neft-panel li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #ddd;
    font-size: 15px;
}

.main-financials .neft-panel li span {
    font-weight: 600;
    color: #007382;
}

/* Footer */
.main-financials .neft-footer {
    margin-top: 40px;
    background: #007382;
    color: #fff;
    padding: 25px;
    border-radius: 14px;
    text-align: center;
}

.main-financials .neft-footer h6 {
    font-weight: 700;
    margin-bottom: 15px;
}

.main-financials .email-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.main-financials .email-list a {
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.main-financials .email-list a:hover {
    background: #fff;
    color: #007382;
    transform: translateY(-2px);
}

.main-financials .hostel-details-section {
    background: #fff;
    color: #000;
    font-family: "Segoe UI", sans-serif;
}

.main-financials .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.main-financials .section-header h2 {
    font-weight: 700;
}

.main-financials .header-line {
    display: block;
    width: 80px;
    height: 4px;
    background: #CB2E33;
    margin: 10px auto;
    border-radius: 2px;
}

.main-financials .info-card {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-left: 6px solid #CB2E33;
}

.main-financials .info-card.accent {
    border-left-color: #007382;
}

.main-financials .info-card.highlight {
    background: linear-gradient(135deg, #007382, #CB2E33);
    color: #fff;
}

.main-financials .info-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

.main-financials .info-card ul,
.main-financials .info-card ol {
    padding-left: 20px;
}

.main-financials .info-card li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.main-financials .contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.main-financials contact-grid a,
.cc-mail {
    background: #007382;
    color: #fff;
    padding: 8px 14px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
}

.main-financials .contact-grid a:hover {
    background: #CB2E33;
}

.main-financials .facility-list {
    columns: 2;
}

.main-financials .info-card a {
    color: inherit;
    text-decoration: underline;
}

/* Table styling for Admissions */
.admission-table th,
.admission-table td {
    padding: 8px 12px !important;
    font-size: 14px !important;
    text-align: left;
}


/* section */
.main-financials .hostel-section {
    padding: 40px;
    background: #f5fbfb;
    font-family: "Segoe UI", sans-serif;
}





/* row layout */
.main-financials .hostel-row {
    display: flex;
    gap: 25px;
    justify-content: space-between;
    align-items: stretch;
}

/* card */
.main-financials .hostel-card {
    background: #ffffff;
    flex: 1;
    padding: 22px 16px;
    border-radius: 18px;
    position: relative;
    transition: all 0.35s ease;
    box-shadow: 0 6px 9px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #007382;
}

/* hover */
.main-financials .hostel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 40px rgba(0, 115, 130, 0.25);
}



.main-financials .hostel-card:hover::after {
    width: 100%;
}

/* boys variation */
.main-financials .hostel-card.boys {
    border-top-color: #CB2E33;
}

/* headings */
.main-financials .hostel-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #007382;
    margin-bottom: 8px;
}

/* text */
.main-financials .hostel-section .sharing {
    font-size: 13px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}

.main-financials .hostel-section .distance {
    font-size: 13px;
    line-height: 1.6;
    color: #555;
}

/* badge */
.main-financials .badge {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: lowercase;
    color: #fff;
}

.main-financials .badge.girls {
    background-color: #CB2E33;
}

.main-financials .badge.boys {
    background-color: #007382;
}


/* hostel allotment note */
.main-financials .hostel-note {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #ffffff;
    border-left: 6px solid #CB2E33;
    padding: 22px 26px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    margin-top: 30px;
}

/* icon */
.main-financials .note-icon {
    font-size: 28px;
    color: #007382;
    flex-shrink: 0;
}

/* content */
.main-financials .note-content h5 {
    margin: 0 0 6px 0;
    font-size: 18px;
    font-weight: 700;
    color: #007382;
    text-transform: lowercase;
}

.main-financials .note-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #000;
}

/* highlight text */
.main-financials .note-content strong {
    color: #CB2E33;
}

/* hover effect */
.main-financials .hostel-note:hover {
    transform: translateY(-3px);
    transition: all 0.3s ease;
    box-shadow: 0 14px 28px rgba(0, 115, 130, 0.2);
}

/* hostel contact section */
.main-financials .hostel-contact {
    margin-top: 35px;
    padding: 30px 32px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* header */
.main-financials .contact-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.main-financials .contact-icon {
    font-size: 26px;
    color: #CB2E33;
}

/* title */
.main-financials .contact-header h5 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #007382;
    text-transform: lowercase;
}

/* info text */
.main-financials .contact-info {
    font-size: 15px;
    line-height: 1.6;
    color: #000;
    margin-bottom: 22px;
}

/* contact numbers */
.main-financials .contact-numbers {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* individual contact card */
.main-financials .contact-card {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 20px;
    border-radius: 12px;
    background: #f6fbfb;
    border-left: 5px solid #007382;
    transition: all 0.3s ease;
}

/* hover */
.main-financials .contact-card:hover {
    background: #007382;
    transform: translateY(-4px);
}

.main-financials .contact-card:hover a,
.main-financials .contact-card:hover .label,
.main-financials .contact-card:hover .separator {
    color: #fff;
}

/* labels */
.main-financials .label {
    font-weight: 700;
    color: #CB2E33;
}

/* separator */
.main-financials .separator {
    color: #000;
    font-weight: 600;
}

/* phone links */
.main-financials .contact-card a {
    text-decoration: none;
    font-weight: 600;
    color: #000;
    transition: color 0.3s ease;
}


/* Additional requirements css */

.cop-section {
    background: #FFF;
    padding: 40px 0px;
}

.cop-card {
    background: #FFF;
    border-left: 6px solid #CB2E33;
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
}

.cop-title {
    color: #CB2E33;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
}

.cop-subtitle {
    color: #007382;
    font-weight: bold;
    margin-top: 15px;
}


.cop-list {
    margin: 10px 0 0 0;
    padding-left: 0;
    list-style: none;
}

.cop-list li {
    margin-bottom: 6px;
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

.cop-list li::before {
    content: "➤";
    position: absolute;
    left: 0;
    color: #CB2E33;
    /* arrow color */
    font-size: 14px;
}


.cop-highlight {
    background: #007382;
    color: #FFF;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 25px;
}


/* responsive */
@media (max-width: 576px) {
    .hostel-note {
        padding: 18px 20px;
    }

    .note-content h5 {
        font-size: 16px;
    }

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

    .hostel-contact {
        padding: 24px 22px;
    }

    .contact-header h5 {
        font-size: 18px;
    }

    .contact-card {
        width: 100%;
    }
}


/* responsive – horizontal scroll */
@media (max-width: 992px) {
    .hostel-row {
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .hostel-card {
        min-width: 260px;
        flex: 0 0 auto;
    }
}



/* Responsive */
@media (max-width: 768px) {
    .neft-grid {
        grid-template-columns: 1fr;
    }

    .neft-wrapper {
        padding: 25px;
    }

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

    .hostel-header h2 {
        font-size: 26px;
    }
}


/* Financials css End */


/* Media Query Start */

@media(min-width:0px) and (max-width:576px) {
    .main-banner-box .inner_heading {
        font-size: 22px;
    }

    .vision-mission-section .section-title::after {
        display: none;
    }

    .vision-mission-section .section-text {
        font-size: 14px;
        line-height: 1.5;
    }

    .vision-mission-section .section-title {
        font-size: 22px;
    }

    /* Banner */
    .main-banner-box {
        display: none;
    }

    .director-profile-section .director-card {
        margin: 10px;
    }

    .director-profile-section .director-title {
        font-size: 22px;
        margin-top: 25px;
        text-align: center;
    }

    .director-profile-section .director-name {
        font-size: 18px;
        text-align: center;
    }

    .director-profile-section .director-text {
        font-size: 14px;
    }

    .vision-mission-section .mission-list li {
        font-size: 14px;
    }

    .vision-mission-section .vision-box, .mission-box {
        padding: 15px 20px;
        margin-top: 0px;
    }

    .rap_admission_main .rap-content h4 {
        font-size: 16px;
    }

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

    .rap_admission_main .rap-acc-btn {
        font-size: 16px;
    }

    .rap_admission_main .section-title {
        font-size: 25px;
    }

    .rap_admission_main .rap-note-title {
        font-size: 25px;
    }

    .rap_admission_main .rap-note-list li {
        font-size: 14px;
    }

    .rap_admission_main .rap-terms-title {
        font-size: 25px;
    }

    .rap_admission_main .rap-terms-list li {
        font-size: 14px;
    }

    .rap_admission_main .rap-terms-section {
        padding: 20px 0;
    }

    .rap_admission_main .rap-terms-card {
        padding: 25px 30px;
    }

    .rap_admission_main .rap-note-title {
        text-align: center;
        font-size: 25px;
    }


    .rap_admission_main .rap_note_mainbox-cancel ul {
        padding: 0px 20px;
    }

    .rap_admission_main .rap_note_mainbox-cancel ul li {
        font-size: 14px;
    }

    .rap_admission_main .rap_note_mainbox-disc ul li {
        font-size: 14px;
    }

    .rap_admission_main .rap_note_mainbox-disc .custom_listing_disclaimer {
        padding: 25px 30px;
    }

    .research-main-sec .rc-overview {
        padding: 20px;
    }

    .research-main-sec .rc-title {
        font-size: 25px;
    }

    .research-main-sec .rc-overview h4 {
        margin-bottom: 14px;
    }

    .research-main-sec .rc-overview p {
        font-size: 14px;
    }

    .research-main-sec h5 {
        font-size: 16px;
    }

    .research-main-sec .rc-num {
        top: 32px;
        font-size: 24px;
    }

    .research-main-sec .rc-series h4 {
        font-size: 18px;
    }

    .research-main-sec .rc-series p {
        font-size: 14px;
    }

    .research-main-sec .objective h2 {
        font-size: 18px;
    }

    .read-more-btn {
        font-size: 14px;
    }

    .research-main-sec .speaker h2 {
        font-size: 19px;
    }

    .research-main-sec .proceedings-collage {
        grid-template-columns: repeat(1, 1fr);
    }

    .faculty_name {
        font-size: 14px;
    }

    .faculty_position {
        font-size: 13px;
    }

    .faculty_mail {
        font-size: 10px;
    }

    .know_more_btn a {
        font-size: 10px;
        padding: 5px 12px;
    }

    .faculty_details_section .profile-header {
        padding: 20px 20px 20px 10px;
    }

    .faculty_details_section .teaching-philosophy h5 {
        font-size: 15px;
        text-align: center;
    }

    .faculty_details_section .teaching-philosophy p {
        font-size: 14px;
    }

    .faculty_details_section .research-title {
        font-size: 16px;
    }

    .faculty_details_section .faculty-institute {
        font-size: 13px;
    }

    .faculty_details_section .faculty-designation {
        font-size: 16px;
    }

    .faculty_details_section .section-title {
        font-size: 16px;
    }

    .faculty_details_section p {
        font-size: 13px;
    }

    .faculty_details_section .header-icon {
        width: 21px;
    }

    .faculty_details_section .section-title {
        font-size: 14px;
    }

    .faculty_details_section ol li, .faculty_details_section ol li, .faculty_details_section ul li {
        font-size: 13px;
    }

    .faculty_details_section .research-list li {
        font-size: 13px;
    }

    .alumni-main-section .part-seccc-title {
        font-size: 21px;
    }

    .alumni-main-section .main-class-alumini-img h3 {
        font-size: 16px;
    }

    .research-main-sec .objective h2 {
        font-size: 20px;
    }

    .research-main-sec .proceedings-grid-workshop {
        grid-template-columns: 2fr;
    }

    .research-main-sec .proceedings-text p {
        font-size: 13.5px;
    }

    .research-main-sec .speaker h2 {
        font-size: 21px;
    }

    .acheivement_main .faculty-names {
        font-size: 14px;
        text-align: center;
    }

    .acheivement_main .section-title {
        font-size: 22px;
    }

    .main-sec-admission-process .set-registration h2 {
        font-size: 22px;
        border-left: 4px solid #007382;
    }

    .main-sec-admission-process .info-box p {
        font-size: 14px;
    }

    .main-sec-admission-process .sub-list li {
        font-size: 13px;
    }

    .main-sec-admission-process .info-box {
        padding: 15px 10px;
    }

    .main-sec-admission-process .info-box ul li {
        font-size: 13px;
    }

    .main-sec-admission-process .type-card p {
        font-size: 13px;
    }

    .main-sec-admission-process .type-card h4 {
        margin-bottom: 6px;
        font-size: 15px;
    }

    .main-sec-admission-process .type-card {
        padding: 12px;
    }

    .rap_admission_mainbox {
        .rap_international_candi_mainbox {
            grid-template-columns: 1fr;
        }
    }
}

@media(min-width:577px) and (max-width:768px) {
    .main-banner-box .inner_heading {
        font-size: 22px;
    }

    .vision-mission-section .section-title::after {
        display: none;
    }

    .vision-mission-section .section-text {
        font-size: 14px;
        line-height: 1.5;
    }

    .vision-mission-section .section-title {
        font-size: 25px;
    }

    /* Banner */
    .main-banner-box {
        display: none;
    }

    .director-profile-section .director-card {
        margin: 20px;
    }

    .director-profile-section .director-title {
        font-size: 25px;
        margin-top: 25px;
        text-align: center;
    }

    .director-profile-section .director-name {
        font-size: 20px;
        text-align: center;
    }

    .director-profile-section .director-text {
        font-size: 15px;
    }

    .vision-mission-section .mission-list li {
        margin-bottom: 10px;
        font-size: 15px;
    }

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

    .rap_admission_main .rap-content p {
        font-size: 15px;
    }

    .rap_admission_main .rap-acc-btn {
        font-size: 18px;
    }

    .rap_admission_main .section-title {
        font-size: 27px;
    }

    .rap_admission_main .rap-note-title {
        font-size: 27px;
    }

    .rap_admission_main .rap-note-list li {
        font-size: 15px;
    }

    .rap_admission_main .rap-terms-title {
        font-size: 27px;
    }

    .rap_admission_main .rap-terms-list li {
        font-size: 15px;
    }

    .rap_admission_main .rap-terms-section {
        padding: 20px 0;
    }

    .rap_admission_main .rap-terms-card {
        padding: 35px 30px;
    }

    .rap_admission_main .rap-note-title {
        text-align: center;
        font-size: 27px;
    }


    .rap_admission_main .rap_note_mainbox-cancel ul {
        padding: 0px 20px;
    }

    .rap_admission_main .rap_note_mainbox-cancel ul li {
        font-size: 15px;
    }

    .rap_admission_main .rap_note_mainbox-disc ul li {
        font-size: 15px;
    }

    .rap_admission_main .rap_note_mainbox-disc .custom_listing_disclaimer {
        padding: 30px 30px;
    }

    .faculty_profile img {
        height: auto;
    }

    .research-main-sec .rc-overview {
        padding: 20px;
    }

    .research-main-sec .rc-title {
        font-size: 25px;
    }

    .research-main-sec .rc-overview h4 {
        margin-bottom: 15px;
    }

    .research-main-sec .rc-overview p {
        font-size: 15px;
    }

    .research-main-sec h5 {
        font-size: 17px;
    }

    .research-main-sec .rc-num {
        top: 32px;
        font-size: 25px;
    }

    .research-main-sec .rc-series h4 {
        font-size: 20px;
    }

    .research-main-sec .rc-series p {
        font-size: 15px;
    }

    .research-main-sec .objective h2 {
        font-size: 20px;
    }

    .read-more-btn {
        font-size: 15px;
    }

    .research-main-sec .speaker h2 {
        font-size: 22px;
    }

    .research-main-sec .proceedings-collage {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width:769px) and (max-width:1024px) {
    .main-banner-box .inner_heading {
        font-size: 22px;
    }

    .vision-mission-section .section-title::after {
        display: none;
    }

    .vision-mission-section .section-text {
        font-size: 14px;
        line-height: 1.5;
    }

    .vision-mission-section .section-title {
        font-size: 25px;
    }

    .director-profile-section .director-card {
        margin: 20px;
    }

    .director-profile-section .director-title {
        font-size: 25px;
        margin-top: 25px;
    }

    .director-profile-section .director-name {
        font-size: 23px;
    }

    .director-profile-section .director-text {
        font-size: 15px;
    }
}

/* Media Query End */