/* Custom CSS for Biju Patnaik State Police Academy */

/* Color Palette Variables */
:root {
    --primary-blue: #313559;
    --accent-orange: #FFB464;
    --accent-green: #10e930;
    --neutral-gray: #0077D1;
    --white: #ffffff;
    --black: #000000;
    --base-font-size: 100%;
    --font-scale: 1.2;
}

/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    font-size: 16px;
    overflow-x: hidden;
}

.breadcrumb-item.active {
    color: #fff !important;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #fff !important;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    max-width: 100% !important;
}

.ftr_logo_sec {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* Font size scaling for all text elements */

body,
p,
h1,
h2,
h3,
h4,
h5,
h6,
span,
div,
a,
li,
td,
th,
label,
button,
input,
textarea,
select {

    font-size: inherit;
}

.spc {
    height: 180px;
}

/* Specific font sizes that should scale */

h1 {
    font-size: 24px;
}

h2 {
    font-size: 20px;
}

/* Make ul.sd-link look exactly like button.sd-link */
ul.sd-link {
    list-style: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
}

ul.sd-link .sd-link-inner {
    display: flex;
    align-items: center;
    width: 100%;
    gap: inherit;
}

/* Make ul.sd-sub-item look exactly like button.sd-sub-item */
ul.sd-sub-item {
    list-style: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
}

ul.sd-sub-item .sd-sub-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* sd-close li */
ul.sd-close-wrap {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.sd-close-wrap .sd-close {
    cursor: pointer;
}

/* pointer for all role=button li */
li[role="button"],
ul[onclick],
ul.sd-link,
ul.sd-sub-item {
    cursor: pointer;
}

h3 {
    font-size: 18px;
}

h4 {
    font-size: 16px;
}

h5 {
    font-size: 14px;
}

h6 {
    font-size: 12px;
}

p {
    font-size: 16px;
}

a {
    font-size: 16px;
}

li {
    font-size: 16px;
}

span {
    font-size: 16px;
}

label {
    font-size: 16px;
}

button {
    font-size: 16px;
}

input {
    font-size: 16px;
}

textarea {
    font-size: 16px;
}

select {
    font-size: 16px;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    max-width: none;
}

/* TAB CONTAINER */

.nav-tabs {
    border: none;
    justify-content: center;
    gap: 10px;
}

/* TAB CONTENT ANIMATION */

.tab-content {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {

    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

a {
    text-decoration: none;
}

li {
    list-style: none !important;
}

.spects {
    margin-left: 30px;
}

.skip-ul,
.font-a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.skip-ul span a {
    color: var(--neutral-gray);
    text-decoration: none;
    font-size: 0.75rem;
    text-align: center;
}

.skip-ul span a:hover,

.font-a span a:hover {
    color: var(--accent-orange);
}

.font-a span a {
    color: var(--neutral-gray);
    font-weight: bold;
    text-decoration: none;
    font-size: 12px;
}

.font-a {
    margin-right: 20px;
}

.skip-ul span {
    color: var(--neutral-gray);
}

.color-a .light-a {
    background-color: var(--white);
    padding: 3px 7px;
}

.light-a a {
    color: var(--neutral-gray);
}

.lang-form select {
    padding: 3px 17px;
    margin-left: 20px;
    background-color: var(--white);
    color: var(--primary-blue);
    border-radius: 4px;
    font-family: "Roboto", sans-serif;
}

.color-a span a {
    text-decoration: none;
}

.color-a .dark-a {
    background-color: var(--primary-blue);
    padding: 3px 7px;
}

.dark-a a {
    color: var(--white);
}

.dark-a a:hover,
.light-a a:hover {
    color: var(--accent-orange);
}

img.ind-sp {
    width: 15%;
}

.gov {
    font-size: 0.75rem !important;
    color: var(--neutral-gray);
}

a.nav-link.link-dark {
    color: var(--white) !important;
    font-size: 0.75rem !important;
}

.india.me-auto {
    display: flex;
    align-items: center;
}

.top-nav {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #34495e 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 0;
    font-size: 0.85rem;
}

.container.bg-dark {
    background-color: var(--neutral-gray) !important;
    padding-left: 30px !important;
    padding-right: 30px !important;
}

/*  top nav bar end */
/* Global Button Animations */

.btn,
.header-link,
.newsletter-btn,
.social-icon {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn:hover,
.header-link:hover,
.newsletter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn:before,
.header-link:before,
.newsletter-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover:before,
.header-link:hover:before,
.newsletter-btn:hover:before {
    left: 100%;
}

/* Specific button animations */
.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a252f 100%) !important;
    transform: translateY(-3px) scale(1.05);
}

.btn-outline-light:hover {
    background-color: var(--white) !important;
    color: var(--primary-blue) !important;
    transform: translateY(-3px) scale(1.05);
}

.buttnn:hover {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #e67e00 100%) !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(247, 147, 30, 0.3);
}

.emergency-btn:hover {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #e67e00 100%) !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(247, 147, 30, 0.4) !important;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1) rotate(5deg);
}

/* Quick link cards hover animation */
.quick-link-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.quick-link-card:hover .quick-link-icon {
    transform: scale(1.2) rotate(10deg);
}

.program-item:hover {
    transform: translateY(-3px) translateX(5px) scale(1.02);
}

/* Gallery item animations */
.gallery-item:hover img {
    transform: scale(1.1) rotate(2deg);
}

/* Footer link animations */
.footer-links a:hover {
    transform: translateX(8px) scale(1.05);
}

/* Newsletter input animation */
.newsletter-input:focus {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.2);
}

.sliding-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-green), var(--accent-orange));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    z-index: 10;
    pointer-events: none;
}

.row.flex-nowrap.overflow-auto.bg-light {
    padding: 20px;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

/* Hero Section with continuous background */

.hero-section {
    position: relative;
    height: 500px;
    background: url('./images/bpspa_gate.png');
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -216px;
    padding-top: 20px;
    padding-bottom: 20px;
    object-fit: revert;
    height: 700px;
    z-index: 1;
    border-bottom-left-radius: 85% 20%;
    border-bottom-right-radius: 50% 20%;
    margin-bottom: 20px;
    object-position: inherit;
    background-repeat: no-repeat;
    background-size: cover;
}

.quick-links {
    position: relative;
    z-index: 2;
    margin-top: -166px;
}

button.btn.buttnn.w-50 {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #e67e00 100%);
    color: var(--white);
}

button.btn.buttnn {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #e67e00 100%);
    color: var(--white);
}

#quickLinksCarousel {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.dg-message {
    margin-bottom: 40px;
}

.dg-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.dg-image {
    flex: 0 0 120px;
}

.dg-image img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.about-section-content h2 br {
    Display: none;
}

.calendar-icon {
    width: 25px;
    height: 25px;
    margin-right: 8px;
    vertical-align: middle;
    object-fit: contain;
}

.logo-section-footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.dg-image img:hover {
    transform: scale(1.05);
}

.top-banner .container {
    max-width: 100% !important;
}
.mmain_header_sec {
    background: #f1ae61;
}
.top-banner .container .row .col-md-4 {
    padding: 0;
}

.dg-text {
    flex: 1;
}

.dropdown-menu .submenu {
    width: auto;
}

.dropdown-menu {
    padding: 0px 0 !important;
}

.organon_content {
    padding-right: 100px;
}

.dg-text h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
}

.dg-text p {
    color: #6c757d;
    margin-bottom: 12px;
    line-height: 1.5;
    font-size: 0.95rem;
}

.dg-read-more {
    color: #0056b3;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    margin-top: 10px;

}

.dg-read-more:hover {
    color: #004085;
    transform: translateX(5px);
}

.right-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.section-title {
    color: var(--primary-blue);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.section-title i {

    margin-right: 12px;
    font-size: 1.1rem;
    color: var(--accent-orange);
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.action-btn {
    background: #0056b3;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 15px 20px;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.action-btn:hover {
    background: #004085;
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

.action-btn i {
    margin-right: 12px;
    font-size: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.service-card {
    text-align: center;
    padding: 25px 20px;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.service-card:hover {
    border-bottom-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.service-icon {
    background: #0056b3;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #6c757d;
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 0.9rem;
}

.service-link {
    color: #0056b3;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #004085;
    transform: translateX(5px);
}

/* Bottom Horizontal Section */
.bottom-horizontal {
    display: flex;
    gap: 60px;
    align-items: stretch;
}

.important-links,
.helpline-section,
.announcements-section {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.links-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.link-item {
    padding: 15px 0;
    color: #2c3e50;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.link-item:hover {
    border-bottom-color: #0056b3;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.link-item i {
    margin-right: 12px;
    font-size: 1rem;
    color: #0056b3;
}

.helpline-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.helpline-item {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.helpline-item:hover {
    border-bottom-color: #0056b3;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.helpline-type {
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.95rem;
}

.helpline-number {
    color: #0056b3;
    font-weight: bold;
    font-size: 1.1rem;
}

.announcement-list {

    display: flex;
    flex-direction: column;
    gap: 15px;
}

.announcement-item {
    padding: 20px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.announcement-item:hover {
    border-bottom-color: #0056b3;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.announcement-date {
    background: #0056b3;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

.announcement-text strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: 600;
}

.announcement-text p {
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
    font-size: 0.9rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: #007bff;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn {
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--accent-green) 0%, #1e7e34 100%);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.glry_butn {
    text-align: center;
}

/* Top Navigation Bar */
.top-nav {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 60px;
    font-size: 0.85rem;
}

.top-nav-con {
    justify-content: space-between;
    align-items: center;
}

.right_top_nav {
    display: flex;
    justify-content: end;
    column-gap: 20px;
}

.gov {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.skip-ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.skip-ul span {
    color: #ffffff;
    opacity: 0.8;
}

.skip-ul a {
    color: #ffffff !important;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.skip-ul a:hover {
    color: #ffd700 !important;
    opacity: 1;
}

.font-a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.font-a a {
    color: #ffffff !important;
    text-decoration: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.font-a a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffd700 !important;
    transform: scale(1.1);
}

.font-a a.active {
    background: var(--accent-orange);
    color: white !important;
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(247, 147, 30, 0.4);
}

.color-a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.light-a,
.dark-a {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.light-a {
    background: #ffffff;
    color: #000000;
}

.dark-a {
    background: #000000;
    color: #ffffff;
}

.light-a a,
.dark-a a {
    color: inherit !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
}

.light-a:hover,
.dark-a:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.lang-form {
    margin: 0;
}

.lang-form select {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
}

.lang-form select:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.lang-form option {
    background: #2c3e50;
    color: #ffffff;
}

@media (max-width: 768px) {
    .top-nav-con {
        flex-direction: column;
        gap: 10px;
    }

    .skip-ul,
    .font-a,
    .color-a {
        order: 2;
    }

    .lang-form {
        order: 1;
    }
}

/* Compact Notification Bar for Top Nav */
.notification-bar-compact {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f7931e 0%, #3b8116 100%);
    padding: 6px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    animation: compactPulse 3s ease-in-out infinite;
}

/* Half-width Notification Bar for Top Nav */
.notification-bar-half {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--primary-blue) 100%);
    padding: 6px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    animation: compactPulse 3s ease-in-out infinite;
    width: 100%;
}

.notification-icon-small {
    background: rgba(255, 255, 255, 0.9);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    font-size: 10px;
    animation: iconPulse 2s ease-in-out infinite;
}

.notification-text-small {
    color: white;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@keyframes compactPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    }
}

.notification-text-wrapper-small {
    flex: 1;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.notification-slider-small {
    display: flex;
    animation: slideTextSmall 15s linear infinite;
    width: max-content;
}

.notification-message-small {
    white-space: nowrap;
    padding: 0 30px;
    font-size: 11px;
    font-weight: 600;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.notification-message-small:hover {
    color: #ffd700;
    text-decoration: underline;
    transform: scale(1.02);
    text-shadow: 0 1px 3px rgba(255, 215, 0, 0.4);
}

@keyframes slideTextSmall {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.notification-actions-small {
    display: flex;
    align-items: center;
}

.notification-pause-small {
    background: rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 10px;
}

.notification-pause-small:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

/* Top Bar Redesign */
.newsletter-btn:hover {
    background: linear-gradient(135deg, #ff5722 0%, #ff6b35 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    button.navbar-toggler {
        background: #32465b !important;
        display: block !important;
    }

    .navbar-expand-lg .navbar-nav {
        display: none;
    }

    .emergncy_details {
        display: none;
    }

    .quick-links {
        display: none;
    }

    .navbar-brand {
        padding: 22px 0;
        display: block !important;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll-triggered animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1.2s ease-out;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 1.2s ease-out;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--accent-orange);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0056b3;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.logo img {
    width: auto;
    height: 200px;
}

.odisha-img img {
    width: auto;
    height: 200px;
}

.odisha-img {
    display: flex;
    justify-content: end;
}

/* TAB CONTAINER */
.tabs-section .nav-tabs {
    border: none;
    justify-content: center;
    gap: 10px;
}

/* TAB BUTTON */
.nav-tabs .nav-link {
    border: none;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 15px;
    color: #333 !important;
    background: #f5f7fa;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
}

/* HOVER EFFECT */
.tabs-section .nav-tabs .nav-link:hover {
    color: #fff;
    background: #ffb464;
    transform: translateY(-2px);
}

/* ACTIVE TAB */
.tabs-section .nav-tabs .nav-link.active {
    color: #fff !important;
    background: #f5a45b;
    /* box-shadow: 0 6px 15px rgba(13, 110, 253, 0.3); */
}



/* TAB CONTENT ANIMATION */
.tab-content {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MOBILE RESPONSIVE */
@media (max-width: 576px) {
    .nav-tabs {
        flex-wrap: wrap;
    }

    .nav-tabs .nav-link {
        padding: 8px 18px;
        font-size: 14px;
    }
}

.slider {
    position: relative;
    overflow: hidden;
    /* 🔥 THIS FIXES YOUR ISSUE */
}

.shape-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: auto;
    z-index: revert;
    pointer-events: none;
}

.carousel-inner {
    position: relative;
    z-index: 1;
}

.principal-img {
    z-index: 3;
}

.shape-img img {
    width: 100%;
    height: auto;
    /* important for responsiveness */
    display: block;
}

.principal-pic {
    margin: auto;
}

.ban_wv {
    position: absolute;
    bottom: 0;
    z-index: 3;
}

.principal-img {}

.principal-img .cards {
    text-align: center;
}

.cards h6 {
    color: var(--neutral-gray);
    margin-top: 15px;
    margin-bottom: 0;
}

.cards span {
    color: #F38918;
}

/*carausal css start*/
.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 36px;
    left: 0;
    z-index: 3;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 1rem;
    margin-left: 15%;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 20px;
    height: 20px;
    padding: 0;
    border-radius: 100%;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    transition: opacity .6s ease;
}

.carousel-indicators .active {
    opacity: 1;
}

/*carausal css end*/
.cards p {
    margin-top: 5px;
}

.principal-buttom {
    text-decoration: none;
    background: var(--accent-orange);
    padding: 10px 15px;
    border-radius: 15px;
    color: #fff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.about-image {
    width: 82%;
    height: 472px;
    min-width: 82%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    border-right: 10px solid #fff;
    /* border-radius: 0 6px 6px 0; */
    border-radius: 20px;
}

.about-image-1 {
    width: 92%;
    height: 415px;
    object-fit: cover;
    position: absolute;
    top: 8%;
    left: 0;
    z-index: 99;
    border-right: 10px solid #fff;
    border-radius: 20px;
}

.about-image-2 {
    width: 100%;
    height: 340px;
    max-width: 100%;
    object-fit: cover;
    position: absolute;
    top: 16%;
    left: 0;
    border-right: 10px solid #fff;
    border-radius: 20px;
}

.about-section-img {
    position: relative;
    height: 428px;
}

.about-section {
    padding: 50px 60px 180px 60px;
    background: #f3f7fb url(images/section-bg.png) left bottom repeat-x;
    position: relative;
}

.about-section-content span {
    color: #f3840d;
    font-size: 20px;
    font-weight: 600;

}

.about-section-content h2 {
    color: var(--neutral-gray);
    margin: 10px 0;
    font-size: 42px;
}

.about-icons {
    box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
    padding: 25px;
    background: #fff;
    border-bottom: 3px solid var(--accent-orange);
    text-align: center;
    width: 100%;
    position: relative;
	align-content: center;
    border-radius: 0px 40px 0px 40px;

}

.about-fetures {
    display: flex;
    column-gap: 20px;
}

.about-icons img {
    height: 65px;
}

.about-icons h6 {
    margin-top: 5px;
}

.about-section-content p {
    font-size: 18px;
    position: relative;
}

.right-arrow {
    position: absolute;
    bottom: -13%;
    background: #f5a45b;
    border: 2px solid #000;
    border-radius: 50%;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 50%;
    transform: translateX(-150%);
    opacity: 0;
    transition: all 0.4s ease;
    color: #000;
}

.about-icons:hover .right-arrow {
    transform: translateX(-50%);
    opacity: 1;
    z-index: 99;
}

/* Tabs */
.custom-tabs .nav-link {
    border-radius: 15px 15px 0 0;
    margin-right: 10px;
    color: #333;
    border: 1px solid #f5a45b;
    padding: 10px 40px;
    font-size: large;
}

.container {
    padding: 0;
}

.custom-tabs .nav-link.active {
    background: #f5a45b !important;
    color: #fff;
    border: none;
    border: 1px solid #ed2c2c;
}

/* List box */
.notice-box {
    background: #fff;

    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    /* border-bottom: 1px solid #c5c1c1; */
    transition: 0.3s;
}

#notice {
    background-color: #f7fbfa;
}

#tender {
    background-color: #fff;
}

#news {
    background-color: #fff;
}

.notice-box-link {
    text-decoration: none;
    color: inherit;
    display: block;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}


.leaf img {
    position: absolute;
    right: 0;
    bottom: 0;
}

.date-box {
    background: #00000014;
    border-radius: 8px;
    padding: 10px !important;
    border: 1px solid #0000005e;
}

.date-box i {
    display: block;
    font-size: 25px;
    /* margin-bottom: 5px; */
    color: #403971;
}

.date-box span {
    font-weight: 600;
    font-size: 14px;
    color: #000000c4;
    margin-top: 7px;
}

.view-btn {
    background: #f5a45b;
    color: #fff;
    border-radius: 20px;
    padding: 8px 20px;
    float: right;
}

/* Facebook box */
.fb-box {
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    /* border: 1px solid #ddd; */
}

.fb-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fb-header img {
    width: 50px;
    border-radius: 50%;
}

.fb-follow {
    margin-top: 10px;
}

/* Responsive */
@media(max-width: 768px) {

    /*dept start*/
    .col-lg-3.col-md-6.dept {
        width: 100% !important;
    }

    /*dept end*/

    .date-box {
        min-width: 90px;
        font-size: 12px;
    }
}

.footer {
    background: #3d5166;
    color: #fff;
    padding: 60px 35px 30px;
}

/* Top section */
.footer-top {
    display: none;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Logo */
.footer-logo img {
    width: 90px;
}

/* Info box */
.info-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: #f5a45b;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-circle i {
    color: #fff;
}

/* Social icons */
.social-icons a {
    width: 40px;
    height: 40px;
    background: #fff;
    color: #f5a45b;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-left: 10px;
}

/* Divider */
.footer hr {
    border-color: rgb(255 255 255);
    margin: 30px 0;

    display: none;
}

/* Headings */
.footer h5 {
    margin-bottom: 20px;
    position: relative;

    font-size: 20px;
}

.sd-brand img {
    width: 55px;
}

.footer h5::after {
    content: '';
    width: 40px;
    height: 2px;
    background: #f5a45b;
    position: absolute;
    left: 0;
    bottom: -8px;
}

/* Links */
.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.footer ul li a:hover {
    color: #fff;
}

/*footer css start*/
@keyframes aurora {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* ── Quick Pills ── */
.quick-wrap {
    position: relative;
    z-index: 2;
    padding: 28px 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
    border-bottom: 1px solid var(--border);
}

.quick-pills {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.q-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 26px;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.84rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.q-pill::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s;
}

.q-pill:hover {
    transform: translateY(-4px) scale(1.04);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.q-pill:hover::before {
    opacity: 1;
}

.q-pill .icon,
.q-pill span {
    position: relative;
    z-index: 1;
}

.q-pill.p-admission::before {
    background: linear-gradient(135deg, #00c9b1, #0081a7);
}

.q-pill.p-placement::before {
    background: linear-gradient(135deg, #e0496a, #9b2c5c);
}

.q-pill.p-grievance::before {
    background: linear-gradient(135deg, #7c5fc9, #4a2fa0);
}

.q-pill.p-alumni::before {
    background: linear-gradient(135deg, #c8972a, #7a5410);
}

/* ── Footer Body ── */
.footer-body {
    position: relative;
    padding: 72px 60px;
    background: url("images/footer_bck4.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.footer-body::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -80px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 151, 42, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.footer-body::after {
    content: '';
    position: absolute;
    bottom: 80px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 201, 177, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.dot-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

/* Particles */
.particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.p {
    position: absolute;
    border-radius: 50%;
    animation: floatUp linear infinite;
    opacity: 0;
}

@keyframes floatUp {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }

    10% {
        opacity: 0.4;
    }

    90% {
        opacity: 0.1;
    }

    100% {
        transform: translateY(-40px);
        opacity: 0;
    }
}

.p:nth-child(1) {
    width: 4px;
    height: 4px;
    left: 8%;
    background: var(--teal);
    animation-duration: 14s;
    animation-delay: 0s
}

.p:nth-child(2) {
    width: 3px;
    height: 3px;
    left: 20%;
    background: var(--gold);
    animation-duration: 18s;
    animation-delay: 3s
}

.p:nth-child(3) {
    width: 5px;
    height: 5px;
    left: 35%;
    background: var(--rose);
    animation-duration: 12s;
    animation-delay: 6s
}

.p:nth-child(4) {
    width: 3px;
    height: 3px;
    left: 55%;
    background: var(--teal);
    animation-duration: 16s;
    animation-delay: 1s
}

.p:nth-child(5) {
    width: 4px;
    height: 4px;
    left: 70%;
    background: var(--gold);
    animation-duration: 20s;
    animation-delay: 4s
}

.p:nth-child(6) {
    width: 3px;
    height: 3px;
    left: 85%;
    background: var(--rose);
    animation-duration: 11s;
    animation-delay: 8s
}

.p:nth-child(7) {
    width: 2px;
    height: 2px;
    left: 92%;
    background: var(--teal);
    animation-duration: 15s;
    animation-delay: 2s
}

/* ── Brand ── */
.brand-col {
    position: relative;
    z-index: 2;
}

.logo-ring {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--card), #0d1e35);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    position: relative;
    box-shadow: 0 0 0 6px rgba(200, 151, 42, 0.08), 0 8px 30px rgba(0, 0, 0, 0.4);
}

.logo-ring::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid rgba(200, 151, 42, 0.2);
}

.logo-ring span {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--gold);
    letter-spacing: 1px;
}

.brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.55rem;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 4px;
}

.brand-name em {
    font-style: normal;
    color: var(--gold-lt);
}

.brand-tagline {
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 22px;
}

.brand-desc {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.75;
    border-left: 2px solid var(--gold);
    padding-left: 14px;
}

/* ── Headings ── */
.col-head {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.col-head::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 32px;
    height: 2px;
    background: linear-gradient(to right, #fe7f20 0%, #ffb380 50%, #ffffff 100%);
    border-radius: 2px;
}

/* ── Nav Links ── */
.nav-list {
    list-style: none;
}

.nav-list li {
    margin-bottom: 11px;
}

.nav-list a {
    display: flex;
    align-items: center;
    gap: 0;
    color: #ffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.25s, gap 0.25s;
}

.nav-list a .arr {
    display: inline-block;
    width: 0;
    overflow: hidden;
    font-size: 0.75rem;
    color: var(--teal);
    transition: width 0.25s;
}

.nav-list a:hover {
    color: #fff;
    gap: 6px;
}

.nav-list a:hover .arr {
    width: 14px;
}

/* ── Contact ── */
.c-item {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    align-items: flex-start;
}

.c-icon-wrap {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgb(255 180 100);
    border: 1px solid rgba(0, 201, 177, 0.2);
    display: flex;
    color: #fff;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.25s;
}

.c-item:hover .c-icon-wrap {
    background: #fff;
}

.c-text {
    font-size: 17px;
    color: #fff;
    line-height: 1.55;
}

.c-text a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

.c-text a:hover {
    color: var(--teal);
}

/* ── Newsletter ── */
.nl-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    /* padding: 28px 24px; */
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.nl-box::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 151, 42, 0.12), transparent 70%);
}

.nl-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.nl-sub {
    font-size: 0.78rem;
    color: var(--muted);
    margin-bottom: 18px;
}

.nl-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nl-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 11px 14px;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.84rem;
    outline: none;
    transition: border-color 0.25s;
    width: 100%;
}

.nl-input::placeholder {
    color: var(--muted);
}

.nl-input:focus {
    border-color: var(--teal);
}

.nl-btn {
    background: linear-gradient(135deg, var(--teal) 0%, #007a6c 100%);
    border: none;
    border-radius: 8px;
    padding: 11px;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.84rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: opacity 0.2s, transform 0.2s;
    letter-spacing: 0.5px;
}

.nl-btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

/* ── Social ── */
.social-row {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.soc-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    border: 1px solid#fff;
    background: var(--card);
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.soc-btn:hover {
    transform: translateY(-4px);
    color: #fff;
    border-color: transparent;
}

.soc-btn.s-fb:hover {
    background: #1877f2;
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.35);
}

.soc-btn.s-tw:hover {
    background: #000;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.soc-btn.s-ig:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    box-shadow: 0 8px 20px rgba(220, 39, 67, 0.35);
}

.soc-btn.s-yt:hover {
    background: #ff0000;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.35);
}

.soc-btn.s-li:hover {
    background: #0a66c2;
    box-shadow: 0 8px 20px rgba(10, 102, 194, 0.35);
}

/* ── Divider ── */
.glow-divider {
    height: 1px;
    margin: 52px 0 0;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 201, 177, 0.4) 30%, rgba(200, 151, 42, 0.4) 70%, transparent 100%);
    position: relative;
    z-index: 2;
    display: none;
}

.logo-section-leaf {
    text-align: center;
}

/* ── Bottom Bar ── */
.footer-bottom {
    background: #f1ae61;
    padding: 10px 0;
    position: relative;
    z-index: 2;
}


.bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0 60px;
}

.copy-text {
    font-size: 0.79rem;
    color: #fff;
    margin: 0;
}

.carousel-indicators [data-bs-target] {
    width: 10px !important;
    height: 10px !important;
    background-color: #fd8225 !important;
}

.carousel-indicators button {
    background-color: #FFF !important;
}

.dev-tag {
    font-size: 0.79rem;
    color: var(--muted);
}

.y.bottom-inner {
    display: flex;
    justify-content: space-between;
    padding: 0 60px;
}

.dev-tag strong {
    color: var(--gold-lt);
    font-weight: 600;
}

.visitor-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgb(253 130 37);
    border: 1px solid rgba(0, 201, 177, 0.2);
    border-radius: 30px;
    padding: 7px 18px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
    margin-top: 29px;
}

.visitor-chip .live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    animation: blink 1.6s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0, 201, 177, 0.5);
    }

    50% {
        opacity: 0.5;
        box-shadow: 0 0 0 5px rgba(0, 201, 177, 0);
    }
}

@media (max-width: 767px) {
    .row.g-5 {
        display: grid;
    }

    .col-lg-2.col-md-6.footer_links {
        width: 100%;
    }

    .col-lg-2.col-md-6.footer_align,
    .col-lg-3.col-md-6.footer_align {
        width: 100% !important;
    }

    .col-lg-3.col-md-6 {
        width: 100% !important;
    }

    .y.bottom-inner {
        padding: 0 20px;
    }

    .navbar-brand {
        padding: 8px 0;
    }

    .navbar-toggler i {
        font-size: 24px;
    }

    .quick-pills {
        gap: 8px;
    }

    .q-pill {
        padding: 9px 18px;
        font-size: 0.78rem;
    }

    .footer-body {
        padding: 48px 40px;
    }

    .bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}

.ban-name-footer {
    text-align: center;

}

.ban-name-footer h2 {
    font-size: 34px;
    font-weight: 600;
    font-family: "Itim", cursive;
    color: #fff;
    margin: 0;

}

.ban-name-footer p {
    font-size: 17px;
    color: #fff;
    font-weight: 500;
    font-family: "Gilda Display", serif;
    /* padding-bottom: 0 !important; */
    margin: 0;

}

/*footer css end*/

/* Map */
.map iframe {
    width: 100%;
    height: 200px;
    border: 0;
}

.main .card {
    color: #252a32;
    border-radius: 2px;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
}

.main .card-image {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 70%;
    background: #ffffff;
}

.main .card-image img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sub banner Section */

.sub-banner {
    position: relative;
    background: url('images/banner-2.png') no-repeat center center/cover;
    height: 170px;
    display: flex;
    align-items: center;
    color: #fff;
}

/* Dark overlay */
.sub-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

/* Content */
.sub-banner-content {
    position: relative;
    z-index: 2;
}

.sub-banner h1 {
    font-size: 42px;
    font-weight: 700;
}

.breadcrumb {
    background: transparent;
    margin-top: 10px;
}

.breadcrumb-item a {
    color: #ffc107;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #fff;
}

@media (max-width: 991px) {
    .sub-banner {
        height: 220px;
    }

    .align-items-end {
        align-items: flex-end !important;
        flex-direction: column;
        row-gap: 20px;

    }

    .align-items-end .col-md-6 {
        flex: 0 0 auto;
        width: 100%;
    }

    .principal-img .cards {
        max-width: 100% !important;
    }

    .sub-banner h1 {
        font-size: 32px;
    }
	.abhina_pad_lr {
    padding: 0 40px !important;
}
}

@media (max-width: 576px) {
    .sub-banner {
        height: 180px;
        text-align: center;
    }

    .sub-banner h1 {
        font-size: 24px;
    }
}

/* Sub banner Section */

/* Downlaod page */

table {
    border: 1px solid #ccc;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: fixed;
}

table caption {
    font-size: 1.5em;
    margin: .5em 0 .75em;
}

table tr {
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    padding: .35em;
}

table th,
table td {
    padding: .625em;
    text-align: center;
}

table th {
    font-size: .85em;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: #3f3c70;
    color: #fff;
}

/* About page */
.sec-title .title {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 24px;
    color: #ff2222;
    margin-bottom: 10px;
}

.sec-title h2 {
    display: block;
    font-size: 30px;
    line-height: 1.28em;
    color: #222222;
    font-weight: 600;
    padding-bottom: 18px;
}

.sec-title .text {
    position: relative;
    font-size: 16px;
    line-height: 26px;
    color: #848484;
    font-weight: 400;
    margin-top: 35px;
}

.sec-title.light h2 {
    color: #ffffff;
}

.sec-title.text-center h2:before {
    left: 50%;
    margin-left: -25px;
}

/* List Style */
.list-style-one {
    position: relative;
}

.list-style-one li {
    position: relative;
    font-size: 16px;
    line-height: 26px;
    color: #222222;
    font-weight: 400;
    padding-left: 35px;
    margin-bottom: 2px;
}

.list-style-one li:before {
    content: "\f058";
    position: absolute;
    left: 0;
    top: 0px;
    font-size: 18px;
    color: #ff2222;
    font-weight: 600;
    font-family: "Font Awesome 5 Free";
}

.btn-style-one {
    position: relative;
    display: inline-block;
    font-size: 17px;
    line-height: 30px;
    color: #ffffff;
    padding: 8px 20px !important;
    font-weight: 600;
    background-color: var(--accent-orange);
    transition: 0.3s;
    border-radius: 15px;
}

.btn-style-one:hover {
    background-color: #001e57;
    color: #ffffff;
}

.about-page {
    position: relative;
    padding: 60px 60px;
}

.about-page .content-column {
    position: relative;
    margin-bottom: 50px;
}

.about-page .content-column .inner-column {
    position: relative;
    padding-left: 30px;
}

.about-page .list-style-one {
    margin-bottom: 45px;
}

.about-page .btn-box {
    position: relative;
}

.about-page .btn-box a {
    padding: 15px 50px;
}

/* Image Column */
.about-page .image-column {
    position: relative;
}

.about-page .image-column .text-layer {
    position: absolute;
    right: -110px;
    top: 50%;
    font-size: 325px;
    line-height: 1em;
    color: #ffffff;
    margin-top: -175px;
    font-weight: 500;
}

.about-page .image-column .inner-column {
    position: relative;
    padding-left: 120px;
    padding-bottom: 125px;
}

.about-page .image-column .inner-column:before {
    position: absolute;
    left: -75px;
    top: 65px;
    height: 480px;
    width: 480px;
    background-image: url(images//about-circle-1.png);
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    background-color: #ffb464;
    border-radius: 50%;
    animation: rotateCircle 15s linear infinite;
}

@keyframes rotateCircle {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.about-page .image-column .image-1 {
    position: relative;
}

.about-page .image-column .image-2 {
    position: absolute;
    left: 0;
    bottom: 0;
}

.about-page .image-column .image-1 img,
.about-page .image-column .image-2 img {
    max-width: 100%;
}

.image-1 img {
    height: 400px;
    border-radius: 0 50px 0 0;
    object-fit: cover;
    border-right: 12px solid #cedae7;
    border-left: 5px solid #fff;
}

.image-2 img {
    height: 250px;
    width: 50%;
    object-fit: cover;
    border: 5px solid #fff;
    border-top-right-radius: 35px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

/* Management & Control */

.management-cont {
    padding: 40px 0;
    background: #303550;
}

.management-content {
    text-align: center;
    padding: 0px 0px;
}

.management-content p {
    font-size: 18px;
    color: #fff;
    text-align: center;
}

.Governing-title {
    color: var(--neutral-gray);
    text-align: center;
}

.Governing-p {
    text-align: center;
}

.department-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: 0.4s;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    height: 100%;
}

.department-card i {
    font-size: 40px;
    color: #ffb464;
    margin-bottom: 15px;
}

.department-card h5 {
    font-weight: 600;
    color: #333;
}

.department-card:hover {
    transform: translateY(-10px);
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    background: #ffb464;
    color: #fff;
}

.department-card:hover i,
.department-card:hover h5 {
    color: #fff;
}

.department-card img {
    height: 250px;
    width: 100%;
    border-radius: 10px 10px 0 0;
}

.pg-department {
    padding: 0;
    min-height: 100%;
}

.pg-department h5 {
    margin: 10px 0;
}

.course-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.badge-custom {
    background: #0d6efd;
    font-size: 14px;
}

.list-style li {
    margin-bottom: 8px;
}

.highlight-box {
    background: #eef4ff;
    padding: 15px;
    border-left: 4px solid #0d6efd;
    border-radius: 6px;
}

.table-custom th {
    background: #0d6efd;
    color: white;
}

.faculty-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    border: 1px solid #e0e0e0;
    transition: 0.3s;
    height: 100%;
}

.icon {
    font-size: 28px;
    color: #0d6efd;
    margin-bottom: 10px;
}

.faculty-card h6 {
    font-weight: 600;
}

.faculty-card p {
    font-size: 13px;
    color: #777;
	margin:0;
}

.faculty-card:hover {
    background: #ffb464 !important;
    color: #fff;
    transform: translateY(-5px);
}

.faculty-card:hover .icon {
    color: #fff;
}

.faculty-card:hover p {
    color: #111;
}

.faculty-card.special {
    background: #e8f0ff;
}

.faculty-card.highlight {
    background: #0d6efd;
    color: #fff;
}

.faculty-card.highlight .icon {
    color: #fff;
}

/* REMOVE LINK STYLE */

.faculty-link {

    text-decoration: none;

    color: inherit;

    display: block;

}

.dept-link {

    display: block;

    text-decoration: none;

    color: inherit;

}

/* VERY IMPORTANT FIX */

.department-card {

    position: relative;

    z-index: 1;

    cursor: pointer;

}

/* IF YOU USED ::before overlay */

.department-card::before {

    pointer-events: none;
    /* THIS FIXES CLICK ISSUE */

}

/* HOVER EFFECT WITH LINK */

.faculty-link:hover .faculty-card {

    transform: translateY(-10px);

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);

}

/* OPTIONAL CLICK EFFECT */

.faculty-card {

    transition: 0.3s;

    cursor: pointer;

}

.faculty-card img {
    width: 100px;

    height: 100px;

    border-radius: 50%;

    object-fit: cover;
}

.nav-tabs {

    border: none;

    justify-content: center;

    gap: 10px;

}

.nav-tabs .nav-link {

    border: none;

    padding: 10px 25px;

    border-radius: 30px;

    background: #f1f1f1;

    font-weight: 600;

    color: #333;

}

.nav-tabs .nav-link.active {

    background: #ffb464;

    color: #fff;

}

/* CARD */

.card-box {

    background: #fff;

    padding: 25px;

    border-radius: 12px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);

}

/* FACULTY PROFILE */

/* PROFILE SECTION */

.profile-section {

    background: #f8f9fa;

    padding: 40px 20px;

    border-radius: 15px;

    justify-content: center;

    gap: 50px;

}

/* IMAGE */

/* PROFILE IMAGE WRAPPER */

.profile-img {

    position: relative;

    display: inline-block;

    padding: 10px;

    border-radius: 20px;

    background: linear-gradient(135deg, #dc1111, #ffb464, #ffb464);

}

/* IMAGE */

.profile-img img {

    width: 220px;

    height: 220px;

    object-fit: cover;

    border-radius: 15px;

    display: block;

    background: #fff;

    padding: 5px;

}

/* FLOATING SHADOW */

.profile-img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: 0.4s ease;
    width: fit-content;
}

/* HOVER EFFECT */
/* GLOW BORDER ANIMATION */
.profile-img::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 25px;
    background: linear-gradient(45deg, #0d6efd, #00c6ff, #0d6efd);
    z-index: -1;
    filter: blur(8px);
    opacity: 0.7;
}

/* OPTIONAL CORNER DECOR */
.profile-img::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    width: 40px;
    height: 40px;
    border-top: 4px solid #fff;
    border-left: 4px solid #fff;
    border-radius: 10px;
}

.profile-img h4 {
    margin-top: 15px;
    font-weight: 600;
}

.profile-img span {
    color: #666;
}

._1dro._2ph-.clearfix::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f3840d, #d6720a, #f3840d);
    background-size: 200% 100%;
    animation: gradient-shift 3s ease-in-out infinite;
}

/* TAB STYLE */
.nav-tabs {
    border: none;
    gap: 18px;
    justify-content: flex-start;
}

.nav-tabs .nav-link {
    border: none;
    padding: 10px 47px;
    /* border-radius: 30px; */
    background: #e9ecef;
    font-weight: 500;
    color: #333;
    border-radius: 15px 15px 0 0;
	font-size: large;
}

.nav-tabs .nav-link.active {
    background: #ffb464;
    color: #fff;
}

/* CONTENT BOX */
.tab-content-box {
    background: #fff;
    padding: 20px;
    margin-top: 15px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* LIST STYLE */
.tab-content-box ul {
    padding-left: 20px;
}

.tab-content-box ul li {
    margin-bottom: 8px;
}

/*gallery section start*/
/* IMAGE STYLE */
.gallery-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    transition: 0.3s;
}

.gallery-img:hover {
    transform: scale(1.05);
}

/* VIDEO BOX */
.video-box iframe {
    width: 100%;
    height: 250px;
    border-radius: 12px;
}

/* TAB STYLE (OPTIONAL IMPROVE) */
.gallery-section .nav-tabs .nav-link {
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    background: #000000;
    font-weight: 600;
    color: #fff;
}

.gallery-section .nav-tabs .nav-link.active {
    background: linear-gradient(135deg, #f5a45b, #ff7a18);
    color: #fff;
    box-shadow: none;
}

/* LINK RESET */
.gallery-link {
    display: block;
    text-decoration: none;
}

/* IMAGE BOX */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

/* IMAGE */
.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: 0.4s;
}

/* OVERLAY */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    transform: translateY(100%);
    transition: 0.4s ease;
}

/* TEXT */
.gallery-overlay h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.gallery-overlay p {
    font-size: 12px;
    margin: 3px 0 0;
}

/* HOVER EFFECT */
.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-section {
    /* padding: 0px 60px;    background-image: url("images/bg-bck-gall1.png");    background-repeat: no-repeat;    background-position: center;    background-size: cover; */
    padding: 0px 60px;
    background-image: url(../image/bg-bck-gall1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/* VIEW MORE BUTTON */
.view-more-btn {
    display: inline-block;
    padding: 10px 28px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #f5a45b, #ff7a18);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(245, 164, 91, 0.4);
}

/* HOVER EFFECT */
.view-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(245, 164, 91, 0.6);
    color: #fff;
}

/* ICON MOVE ANIMATION */
.view-more-btn i {
    transition: 0.3s;
}

.view-more-btn:hover i {
    transform: translateX(5px);
}

/*gallery section end*/
/*for video start*/
.banner-video {
    height: 600px;
    object-fit: cover;
}

/* Make images same height */
.carousel-item img {
    height: 600px;
    object-fit: cover;
    object-position: center;
}

/* Optional: dark overlay for text readability */
.carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
}

/*for video end*/
.gal {
    font-size: 29px;
    text-align: center;
    font-weight: 700;
    padding-bottom: 20px;
}

/* Banner Video Controls */
.video-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.btn-play-pause {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #f5a45b;
    color: #f5a45b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-play-pause:hover {
    background: #f5a45b;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(245, 164, 91, 0.4);
}

.btn-play-pause:active {
    transform: scale(0.95);
}

/* Carousel container position relative for controls */
#bannerCarousel {
    position: relative;
}

/* Gallery Slider Styling */
#galleryImageSlider .carousel-item {
    height: auto;
    overflow: hidden;
}

#galleryVideoSlider .carousel-item {
    height: auto;
    overflow: hidden;
}

#galleryImageSlider .gallery-item {
    height: 200px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

#galleryVideoSlider .video-box {
    height: 200px;
    position: relative;
}

#galleryImageSlider .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 8px solid #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 16px;
}

#galleryVideoSlider .video-box iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    aspect-ratio: 16/9;
}

/* Gallery Slider Controls */
#galleryImageSlider .carousel-control-prev,
#galleryImageSlider .carousel-control-next,
#galleryVideoSlider .carousel-control-prev,
#galleryVideoSlider .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

#galleryImageSlider .carousel-control-prev:hover,
#galleryImageSlider .carousel-control-next:hover,
#galleryVideoSlider .carousel-control-prev:hover,
#galleryVideoSlider .carousel-control-next:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.7);
}

#galleryImageSlider .carousel-control-prev-icon,
#galleryImageSlider .carousel-control-next-icon,
#galleryVideoSlider .carousel-control-prev-icon,
#galleryVideoSlider .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Gallery Slider Indicators */
#galleryImageSlider .carousel-indicators,
#galleryVideoSlider .carousel-indicators {
    bottom: -40px;
}

#galleryImageSlider .carousel-indicators button,
#galleryVideoSlider .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #000;
    border: 2px solid #fff;
    margin: 0 5px;
}

#galleryImageSlider .carousel-indicators button.active,
#galleryVideoSlider .carousel-indicators button.active {
    background-color: #ffb464;
}

/* Responsive Gallery Slider */
@media (max-width: 768px) {

    #galleryImageSlider .carousel-item,
    #galleryVideoSlider .carousel-item {
        height: 250px;
    }

    #galleryImageSlider .carousel-control-prev,
    #galleryImageSlider .carousel-control-next,
    #galleryVideoSlider .carousel-control-prev,
    #galleryVideoSlider .carousel-control-next {
        width: 40px;
        height: 40px;
    }
}

/*topban start*/
.ban-name h2 {
    font-size: 34px;
    font-weight: 600;
    font-family: "Itim", cursive;
    color: #5d2a26;
    margin: 0;
}

.ban-name p {
    font-size: 17px;
    color: #3e4637;
    font-weight: 500;
    font-family: "Gilda Display", serif;
    /* padding-bottom: 0 !important; */
    margin: 0;
}

.logo-section {
    text-align: center;
}

img.arrow {
    width: 110px;
}

img.logo {
    width: 90px;
}

img.arrow1 {
    width: 61px;
}

img.logo1 {
    width: 28px;
}

/*top ban end*/
.border-img img {
    width: auto;
    height: 26px;
}

.border-img {
    background-color: #f7f7f7;
}

/* Vertical Scroll Container Styles */
.notice-scroll-container {
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0;
}

.notice-content-wrapper {
    padding-right: 10px;
}

/* Custom scrollbar styles */
.notice-scroll-container::-webkit-scrollbar {
    width: 8px;
}

.notice-scroll-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.notice-scroll-container::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.notice-scroll-container::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Ensure existing notice-box styles work well with scrolling */
.notice-box {
    margin-bottom: 10px;
    padding: 12px;
    background: #f1f1f1a3;
    border-radius: 6px;
    border-left: 4px solid #f3840d;
    transition: all 0.3s ease;
}

.notice-box-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.date-box {
    padding: 0;
    text-align: center;
    min-width: 140px;
    display: flex;
    column-gap: 8px;
    align-items: center;
    flex-direction: column;
}

.date-box i {
    color: #f3840d;
}

.view-btn {
    background-color: #f3840d !important;
    color: white !important;
    border: none;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    margin-top: 15px;
    margin-right: auto;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.view-btn:hover {
    background-color: #d6720a;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Menu Hover Styles and Animations */
/* ── Search ── */
.sd-search {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px 14px;
    background: #f4f6f9;
    border-radius: 10px;
    padding: 10px 14px;
    border: 1px solid #e8eaf0;
    flex-shrink: 0;
}

.sd-search-icon {
    color: #aaa;
    font-size: 14px;
}

.sd-search input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 13.5px;
    color: #333;
    width: 100%;
}

.sd-search input::placeholder {
    color: #bbb;
}

/* ── Section label ── */
.sd-section-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #aaa;
    padding: 14px 18px 6px;
}

/* ── Item wrap ── */
.sd-item-wrap {
    margin: 2px 10px;
    border-radius: 10px;
    overflow: hidden;
}

/* ── Main link (ul replacing button) ── */
ul.sd-link {
    list-style: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    background: transparent;
    border-radius: 10px;
    transition: background 0.2s ease;
    text-decoration: none;
    color: #2c3e50;
}

ul.sd-link:hover {
    background: #f0f4ff;
}

ul.sd-link.sd-active {
    background: linear-gradient(135deg, #313559, #1a1f3a);
    color: #fff !important;
}

ul.sd-link.sd-active .sd-label,
ul.sd-link.sd-active .sd-icon i {
    color: #fff !important;
}

/* Also keep <a class="sd-link"> working */
a.sd-link {
    display: flex;
    align-items: center;
    padding: 11px 14px;
    gap: 12px;
    border-radius: 10px;
    text-decoration: none;
    color: #2c3e50;
    transition: background 0.2s ease;
    width: 100%;
    background: #f6a753;
}

a.sd-link:hover,
a.sd-link.sd-active {
    background: linear-gradient(135deg, #313559, #1a1f3a);
    color: #fff;
}

a.sd-link.sd-active .sd-label,
a.sd-link.sd-active .sd-icon i {
    color: #fff;
}

/* Inner li of ul.sd-link */
ul.sd-link .sd-link-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 11px 14px;
    list-style: none;
    background: #f0a049;
}

/* ── Icon ── */
.sd-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #eef0f8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.sd-icon i {
    font-size: 14px;
    color: #313559;
}

ul.sd-link:hover .sd-icon,
a.sd-link:hover .sd-icon {
    background: rgba(255, 255, 255, 0.2);
}

ul.sd-link.sd-active .sd-icon,
a.sd-link.sd-active .sd-icon {
    background: rgba(255, 255, 255, 0.2);
}

ul.sd-link.sd-active .sd-icon i,
a.sd-link.sd-active .sd-icon i {
    color: #fff;
}

/* ── Label ── */
.sd-label {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    color: inherit;
}

/* ── Badge ── */
.sd-badge {
    font-size: 10px;
    font-weight: 700;
    background: #ff5252;
    color: #fff;
    padding: 2px 7px;
    border-radius: 20px;
    margin-right: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Pattern Decoration at Right Side and Bottom of Tabs Section */
.pattern-decoration {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 1;
    opacity: 0.7;
    animation: pattern-pulse 3s ease-in-out infinite;
}

.pattern-decoration .pattern-img {
    width: 200px;
    height: auto;
    display: block;
    filter: drop-shadow(0 -2px 10px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
    transform: rotate(-5deg);
}

.pattern-decoration:hover .pattern-img {
    opacity: 1;
    filter: drop-shadow(0 -4px 15px rgba(0, 0, 0, 0.15));
    transform: scale(1.02) rotate(-5deg);
}

@keyframes pattern-pulse {

    0%,
    100% {
        opacity: 0.7;
        transform: translateY(0);
    }

    25% {
        opacity: 0.8;
        transform: translateY(-2px);
    }

    50% {
        opacity: 0.9;
        transform: translateY(-3px);
    }

    75% {
        opacity: 0.8;
        transform: translateY(-2px);
    }
}

/* Responsive Pattern Decoration */
@media (max-width: 992px) {
    .pattern-decoration {
        bottom: 15px;
        right: 15px;
        opacity: 0.6;
    }

    .pattern-decoration .pattern-img {
        width: 150px;
    }
}

@media (max-width: 768px) {
    .pattern-decoration {
        bottom: 10px;
        right: 10px;
        opacity: 0.5;
    }

    .pattern-decoration .pattern-img {
        width: 120px;
    }
}

@media (max-width: 576px) {
    .pattern-decoration {
        bottom: 8px;
        right: 8px;
        opacity: 0.4;
    }

    .pattern-decoration .pattern-img {
        width: 100px;
    }
}

/* Responsive Leaf Decoration */
@media (max-width: 992px) {
    .leaf-decoration {
        top: 15px;
        right: 15px;
    }

    .leaf-decoration .leaf-img {
        width: 100px;
    }
}

@media (max-width: 768px) {
    .leaf-decoration {
        top: 10px;
        right: 10px;
        opacity: 0.6;
    }

    .leaf-decoration .leaf-img {
        width: 80px;
    }
}

@media (max-width: 576px) {
    .leaf-decoration {
        top: 8px;
        right: 8px;
        opacity: 0.5;
    }

    .leaf-decoration .leaf-img {
        width: 60px;
    }
}

/* Principal Profile Card Design */
.principal-img {
    position: relative;
    /* padding: 20px; */
    display: flex;
    justify-content: right;
    align-items: center;
}

.principal-img .cards {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1), 0 2px 10px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    max-width: 400px;
    width: 100%;
    transition: all 0.3s ease;
}

.principal-img .cards::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f3840d, #d6720a, #f3840d);
    background-size: 200% 100%;
    animation: gradient-shift 3s ease-in-out infinite;
}

.principal-img .cards:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 5px 20px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.principal-img .cards::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(243, 132, 13, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.principal-img .principal-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 3px 10px rgba(0, 0, 0, 0.1);
    margin: 0 auto 20px;
    display: block;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.principal-img .cards:hover .principal-pic {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2), 0 5px 15px rgba(0, 0, 0, 0.15);
}

.principal-img h6 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.principal-img span {
    font-size: 20px;
    color: #f3840d;
    display: block;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.principal-img p {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.principal-img .principal-buttom {
    background: linear-gradient(135deg, #f3840d, #d6720a);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
    text-decoration: none;
    text-align: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.principal-img .principal-buttom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #d6720a, #f3840d);
    transition: left 0.3s ease;
    z-index: -1;
}

.principal-img .principal-buttom:hover::before {
    left: 0;
}

.principal-img .principal-buttom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(243, 132, 13, 0.3);
}

/* Responsive Card Design */
@media (max-width: 768px) {
    .principal-img {
        padding: 15px;
    }

    /* .principal-img .cards {        padding: 25px 20px;        max-width: 730px;    }     */
    .principal-img .principal-pic {
        width: 130px;
        height: 130px;
    }

    .principal-img h6 {
        font-size: 1.2rem;
    }

    .principal-img p {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .principal-img {
        padding: 10px;
    }

    .principal-img .cards {
        padding: 20px 15px;
        max-width: 300px;
    }

    .principal-img .principal-pic {
        width: 120px;
        height: 120px;
    }
	.pathology_list li{
		display:block !important;
	}
    .principal-img h6 {
        font-size: 1.1rem;
    }

    .principal-img span {
        font-size: 0.9rem;
    }

    .principal-img p {
        font-size: 0.8rem;
    }

    .principal-img .principal-buttom {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
}

/*about us page start*/
.about-page {
    padding: 5rem 0 6rem;
}

/* inner column max-width for better readability */
.inner-column {
    max-width: 1100px;
    margin: 0 auto;
}

/* ---- Sec Title (hero style) ---- */
.sec-title {
    margin-bottom: 3rem;
    text-align: center;
}

.sec-title .title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    color: #ffb464;
    background: #ffce9952;
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 40px;
    margin-bottom: 1rem;
}

.sec-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1f3b3a, #000);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}

.sec-title .text p {
    font-size: 1.18rem;
    color: #2c3e4e;
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* shared card-like section styling */
.academic-section,
.infrastructure-section,
.research-section,
.hospital-section,
.pharmacy-section,
.campus-section {
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04), 0 4px 8px rgba(0, 0, 0, 0.02);
    padding: 2rem 2.2rem;
    margin-bottom: 2.2rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.academic-section:hover,
.infrastructure-section:hover,
.research-section:hover,
.hospital-section:hover,
.pharmacy-section:hover,
.campus-section:hover {
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

/* section headings */
h3 {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #ffefde;
    display: inline-block;
    color: #000;
    letter-spacing: -0.3px;
}

.text p {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #2d3e4b;
    line-height: 1.65;
}

/* list-style-one modern */
.list-style-one {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 0.75rem 1.5rem;
    margin-top: 1.5rem;
    list-style: none;
    padding: 0;
}

.list-style-one li {
    position: relative;
    padding-left: 1.8rem;
    font-size: 1rem;
    font-weight: 500;
    color: #1e4663;
}

.list-style-one li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #2a9d8f;
    font-size: 1rem;
}

/* button box */
.btn-box {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-top: 2.8rem;
    justify-content: center;
}

.btn-style-one {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: white;
    border: 1.5px solid #d0dfdd;
    padding: 0.85rem 2rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #3d5166;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.btn-style-one i {
    font-size: 1rem;
    transition: transform 0.2s;
}

.btn-style-one:hover {
    background: #ffb464;
    border-color: #ffb464;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 20px -12px rgba(30, 111, 92, 0.35);
}

.btn-style-one:hover i {
    transform: translateX(4px);
    color: white;
}

/* stats / mini feature row - optional extra design touch */
.feature-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
    background: #ffce9952;
    border-radius: 36px;
    padding: 2rem 2rem;
}

.stat-item {
    flex: 1;
    text-align: center;
    min-width: 140px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffb464;
    display: block;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: #2c5a4f;
}

/* responsive */
@media (max-width: 768px) {
    .about-page {
        padding: 3rem 0;
    }

    /* .container {                padding: 0 1.25rem;            } */
    .sec-title h2 {
        font-size: 1.9rem;
    }

    h3 {
        font-size: 1.45rem;
    }

    .academic-section,
    .infrastructure-section,
    .research-section,
    .hospital-section,
    .pharmacy-section,
    .campus-section {
        padding: 1.5rem;
    }

    .btn-box {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-style-one {
        justify-content: center;
    }

    .feature-highlights {
        flex-direction: column;
        align-items: center;
        gap: 1.8rem;
    }
}

/* small decorative accent */
.inner-column::before {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ffb464, #ffb46445);
    margin: 0 auto 2rem auto;
    border-radius: 4px;
}

/* subtle a11y improvements */
.text strong {
    color: #175f50;
}

/* i, .fas, .far {            margin-right: 4px;        } */
/*about us page end*/
/* HERO SECTION */
.academic_hero {
    background: linear-gradient(rgba(0, 0, 0, .70), rgba(0, 0, 0, .70)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?w=1600');
    background-size: cover;
    background-position: center;
    min-height: 650px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
}

.academic_hero h1 {
    font-size: 65px;
    font-weight: 700;
    margin-bottom: 20px;
}

.academic_hero p {
    max-width: 800px;
    margin: auto;
    font-size: 18px;
}

.academic_btn {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background: #0f766e;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    transition: .4s;
}

.academic_btn:hover {
    background: #fff;
    color: #005b96;
    transform: translateY(-5px);
}

/* COMMON */
.section_padding {
    padding-top: 50px;
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 50px;
}

.section_title {
    text-align: center;
    margin-bottom: 60px;
}

.section_title h2 {
    color: #0f172a;
    font-size: 42px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section_title h2::after {
    content: '';
    width: 70px;
    height: 4px;
    background: #0f766e;
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
}

/* OVERVIEW */
.academic_about_img {
    overflow: hidden;
    border-radius: 20px;
}

.academic_about_img img {
    width: 100%;
    transition: .6s;
}

.academic_about_img:hover img {
    transform: scale(1.1);
}

/* DEPARTMENTS */
.department_section {
    background: #f7f9fc;
}

.department_card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, .08);
    transition: .4s;
    height: 100%;
}

.department_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 91, 150, .20);
}

.department_card i {
    font-size: 45px;
    color: #005b96;
    margin-bottom: 20px;
    transition: .4s;
}

.department_card:hover i {
    transform: scale(1.2);
    color: #0f766e;
}

/* BHMS */
.bhms_box {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

/* FACILITIES */
.facility_card {
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, .08);
    transition: .4s;
    height: 100%;
}

.facility_card:hover {
    background: linear-gradient(135deg, #005b96, #0f766e);
    color: #fff;
    transform: translateY(-10px);
}

.facility_card i {
    font-size: 40px;
    margin-bottom: 15px;
}

/* COUNTER */
.counter_section {
    background: linear-gradient(135deg, #005b96, #0f766e);
}

.counter_card {
    text-align: center;
    color: #fff;
    padding: 30px;
    transition: .4s;
}

.counter_card:hover {
    transform: translateY(-8px);
}

.counter_card h3 {
    font-size: 50px;
    font-weight: 700;
}

/* RESEARCH */
.research_box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, .08);
}

.research_box ul {
    list-style: none;
    padding: 0;
}

.research_box li {
    padding: 12px 0;
    font-size: 18px;
}

.research_box i {
    color: green;
    margin-right: 10px;
}

/* CTA */
.academic_cta {
    background: linear-gradient(135deg, #005b96, #0f766e);
    padding: 100px 20px;
    text-align: center;
    color: #fff;
}

.academic_cta h2 {
    font-size: 50px;
    margin-bottom: 20px;
}

.academic_cta_btn {
    display: inline-block;
    margin-top: 20px;
    background: #fff;
    color: #005b96;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    transition: .4s;
}

.academic_cta_btn:hover {
    background: #111827;
    color: #fff;
}

/* FOOTER */
.footer_section {
    background: #0b1120;
    color: #fff;
    text-align: center;
    padding: 25px;
}

/* MOBILE */
@media(max-width:991px) {
    .academic_hero h1 {
        font-size: 45px;
    }

    .section_title h2 {
        font-size: 34px;
    }
}

@media(max-width:767px) {
    .academic_hero {
        min-height: 500px;
    }

    .academic_hero h1 {
        font-size: 32px;
    }

    .academic_cta h2 {
        font-size: 30px;
    }

    .bhms_box {
        padding: 25px;
    }

    .section_padding {
        padding: 60px 0;
    }


}

.abhina_pad_lr {
    padding: 0 100px !important;
}

.container {
    padding-left: 100px;
    padding-right: 100px;
}

.mg-gallery-section .gallery-tabs .nav-link:hover {
    background-color: #000000 !important;
}

.hospital-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.sub-title {
    color: #0d6efd;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hospital-content h2 {
    font-size: 42px;
    margin: 15px 0;
    color: #222;
}

.hospital-content p {
    color: #666;
    line-height: 1.8;
}

.hospital-image img {
    width: 100%;
    border-radius: 20px;
    transition: .5s;
}

.hospital-image img:hover {
    transform: scale(1.05);
}

.hospital-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.feature-item {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    transition: .4s;
}

.feature-item:hover {
    transform: translateY(-8px);
}

.feature-item i {
    color: #0d6efd;
    margin-right: 10px;
}

.counter-section {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.counter-box {
    background: #fff;
    padding: 40px 20px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .4s;
}

.counter-box:hover {
    transform: translateY(-10px);
}

.counter-box h3 {
    color: #0d6efd;
    font-size: 45px;
}

.section-heading {
    text-align: center;
    margin: 80px 0 40px;
}

.section-heading h2 {
    font-size: 40px;
}

.department-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.department-card {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .4s;
}

.department-card:hover {
    transform: translateY(-12px);
    background: #0d6efd;
    color: #fff;
}

.department-card:hover p,
.department-card:hover i {
    color: #fff;
}

.department-card i {
    font-size: 45px;
    color: #0d6efd;
    margin-bottom: 20px;
}

.department-card p {
    color: #666;
    margin-top: 10px;
}

@media(max-width:768px) {
    .hospital-intro {
        grid-template-columns: 1fr;
    }

    .hospital-content h2 {
        font-size: 32px;
    }

    .hospital-features {
        grid-template-columns: 1fr;
    }
}

/* Main dropdown */
.navbar .dropdown-menu {
    min-width: 290px;
}

/* Submenu parent */
.dropdown-submenu {
    position: relative;
}

/* Default submenu opens right */
.dropdown-submenu>.submenu {
    top: 0;
    left: 100%;
    margin-left: 2px;
    display: none;
}

/* Show submenu */
.dropdown-submenu:hover>.submenu {
    display: block;
}

/* Activities dropdown align right */
.nav-item.dropdown:last-child>.dropdown-menu {
    right: 0;
    left: auto;
}

/* Activities submenu open left */
.nav-item.dropdown:last-child .dropdown-submenu>.submenu {
    left: auto !important;
    right: 100% !important;
    margin-right: 2px;
}

.custom-navbar .nav-link:hover {
    color: #fff;
    text-decoration: none;
}

.footer_links ul {
    padding: 0 !important;
}

.footer_links ul li a {
    color: #fff;
}

.nav-list a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0;
    color: #000;
    text-decoration: none !important;
    transition: color 0.3s ease, gap 0.3s ease;
}

.nav-list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.4s ease;
}

.nav-list a:hover {
    color: #fff;
    gap: 6px;
}

.nav-list a:hover::after {
    width: 100%;
}

.social-row a svg {
    fill: #fff;
}

.mg-gallery-section .owl-theme .owl-dots {
    margin-top: 15px;
    display: none !important;
}

.mg-gallery-section .owl-theme .owl-nav {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.owl-next span,
.owl-prev span {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
}

.mg-gallery-section *,
.mg-gallery-section *::before,
.mg-gallery-section *::after {
    box-sizing: border-box;
}

.mg-gallery-section {
    background-image: url(images/bg-bck-gall1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-bottom: 50px !important;
    padding-top: 20px !important;
}

.abhina_pad_lr {
    padding: 60px 100px;
}

.abhina_pad_tb {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}

.footer-body.abhina_pad_lr {
    padding-top: 50px !important;
    padding-bottom: 30px !important;
}

.mg-gallery-section .gallery-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #111;
}

.mg-gallery-section .gallery-tabs {
    margin-bottom: 25px;
}

.mg-gallery-section .gallery-tabs .nav-link {
    border: none;
    background: #000;
    color: #fff;
    border-radius: 50px;
    padding: 12px 35px;
    margin: 0 6px;
    font-weight: 600;
    transition: .4s;
}

.mg-gallery-section .gallery-tabs .nav-link:hover {
    transform: translateY(-3px);
}

.mg-gallery-section .gallery-tabs .nav-link.active {
    background: #f79435;
    color: #fff;
    box-shadow: 0 10px 25px rgba(247, 148, 53, .35);
}
.mg-gallery-section .gallery-tabs .nav-link:focus {
    background: #f79435 !important;
    color: #fff;
    box-shadow: 0 10px 25px rgba(247, 148, 53, .35);
}
.mg-gallery-section hr {
    opacity: .15;
    margin-bottom: 30px;
}

.mg-gallery-section .tab-pane {
    animation: mgFadeUp .7s ease;
}

@keyframes mgFadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mg-gallery-section .owl-stage {
    display: flex;
    align-items: center;
}

.mg-gallery-section .owl-carousel .owl-item {
    transition: all .5s ease;
}

.mg-gallery-section .owl-carousel .item {
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.mg-gallery-section .owl-carousel .item img,
.mg-gallery-section .owl-carousel .item video {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 20px;
    border: 8px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
    transition: .7s;
}

.mg-gallery-section .owl-carousel .item:hover img {
    transform: scale(1.12);
}

.mg-gallery-section .image-carousel .owl-item.active.center {
    transform: unset;
    z-index: 99;
}

.mg-gallery-section .image-carousel .owl-item:not(.center) {
    transform: scale(.92);
    opacity: .75;
}

.mg-gallery-section .owl-carousel .owl-stage-outer {
    overflow-x: hidden;
}

.mg-gallery-section .owl-theme .owl-nav {
    margin-top: 25px;
}

.mg-gallery-section .owl-theme .owl-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    background: #f79435 !important;
    color: #fff !important;
    font-size: 24px !important;
    transition: .4s !important;
}

.mg-gallery-section .owl-theme .owl-nav button:hover {
    transform: scale(1.15);
}

.mg-gallery-section .owl-theme .owl-dots {
    margin-top: 15px;
}

.mg-gallery-section .owl-theme .owl-dots .owl-dot span {
    transition: .4s;
}

.mg-gallery-section .owl-theme .owl-dots .owl-dot.active span {
    width: 30px;
    border-radius: 30px;
    background: #f79435;
}

.mg-gallery-section .view-more {
    text-align: center;
    margin-top: 35px;
}

.mg-gallery-section .view-more a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    background: #f79435;
    color: #fff;
    padding: 14px 35px;
    border-radius: 40px;
    font-weight: 600;
    transition: .4s;
}

.mg-gallery-section .view-more a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(247, 148, 53, .4);
}

.mg-gallery-section .view-more a i {
    transition: .4s;
}

.mg-gallery-section .view-more a:hover i {
    transform: translateX(6px);
}

@media(max-width:991px) {
    .mg-gallery-section .gallery-title {
        font-size: 34px;
    }

    .mg-gallery-section .owl-carousel .item img,
    .mg-gallery-section .owl-carousel .item video {
        height: 220px;
    }
	
	.offcanvas-body {
    overflow-y: unset !important;
}
}

.slider {
    position: relative;
}

.custom-arrow {
    position: absolute;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 60px !important;
    height: 60px !important;
    z-index: 9999;
    opacity: 9 !important;
	border:none !important;
}

.carousel-control-next,
.carousel-control-prev {
    z-index: 9 !important;
}

.carousel-control-prev.custom-arrow {
    left: 0px !important;
}

menu,
ol,
ul {
    margin: 0;
}

.carousel-control-next.custom-arrow {
    right: 0px !important;
}

button:hover,
button:focus,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:focus,
input[type="button"]:focus,
input[type="reset"]:focus {
    background: unset !important;
}

.custom-icon {
    width: 60px;
    height: 60px;
    background: #6bbc3b;
    color: #fff;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .3);
}

.custom-icon:hover {
    background: #030155;
	 width: 60px !important;
    height: 60px !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: none !important;
}



/* =========================
       Main Container
    ========================= */
.pathology_container {
    padding: 0 20px;
}

.pathology_section {
    background: #fff;
    margin-bottom: 30px;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    border-left: 6px solid #8b0000;
}

.pathology_section h2 {
    font-size: 28px;
    color: #003366;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 8px;
}

.pathology_section h2::after {
    content: "";
    width: 70px;
    height: 3px;
    background: #8b0000;
    position: absolute;
    left: 0;
    bottom: 0;
}

.pathology_section p {
    margin-bottom: 15px;
    font-size: 16px;
}

.pathology_list {
    list-style: none;
    padding-left: 0;
}

.pathology_list li {
    font-size: 16px;
    display: flex;

}

.pathology_list li:last-child {
    border-bottom: none;
}

.pathology_list li strong {
    color: #8b0000;
    display: inline-block;
    min-width: 220px;
}

/* =========================
       Faculty Section
    ========================= */
.faculty_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.faculty_card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
    transition: 0.35s ease;
    border: 1px solid #e6edf5;
}

.faculty_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.faculty_img_wrap {
    position: relative;
    overflow: hidden;
    height: 360px;
}



.faculty_card:hover .faculty_img {
    transform: scale(1.08);
}

.faculty_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 51, 102, 0.92), rgba(139, 0, 0, 0.25));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: 0.4s ease;
}

.faculty_card:hover .faculty_overlay {
    opacity: 1;
}

.faculty_overlay span {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    transform: translateY(20px);
    transition: 0.4s ease;
    text-align: center;
}

.faculty_card:hover .faculty_overlay span {
    transform: translateY(0);
}

.faculty_content {
    padding: 22px 20px;
    text-align: center;
}

.faculty_content h3 {
    font-size: 21px;
    color: #003366;
    margin-bottom: 10px;
}

.faculty_content p {
    margin: 6px 0;
    font-size: 15px;
    color: #555;
}

.faculty_role {
    color: #8b0000 !important;
    font-weight: 700;
}

/* =========================
       Footer
    ========================= */
.pathology_footer {
    background: #003366;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    font-size: 15px;
}

/* =========================
       Responsive
    ========================= */
@media (max-width: 992px) {
    .faculty_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pathology_banner h1 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .faculty_grid {
        grid-template-columns: 1fr;
    }

    .pathology_banner {
        padding: 45px 15px;
    }

    .pathology_banner h1 {
        font-size: 28px;
    }

    .pathology_banner p {
        font-size: 16px;
    }

    .pathology_section {
        padding: 22px;
    }

    .pathology_section h2 {
        font-size: 24px;
    }

    .pathology_list li strong {
        display: block;
        min-width: auto;
        margin-bottom: 5px;
    }

    .faculty_img_wrap {
        height: 280px;
    }
}


/* =========================
       Main Container
    ========================= */
.medicine_container {
    margin: 40px auto;
    padding: 0 20px;
}

.medicine_section {
    background: #fff;
    margin-bottom: 30px;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    border-left: 6px solid #8b0000;
}

.medicine_section h2 {
    font-size: 28px;
    color: #003366;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 8px;
}

.medicine_section h2::after {
    content: "";
    width: 70px;
    height: 3px;
    background: #8b0000;
    position: absolute;
    left: 0;
    bottom: 0;
}

.medicine_section p {
    margin-bottom: 15px;
    font-size: 16px;
}

.medicine_list {
    list-style: none;
    padding-left: 0;
}

.medicine_list li {
    padding: 12px 0;
    border-bottom: 1px solid #e5e5e5;
    font-size: 16px;
}

.medicine_list li:last-child {
    border-bottom: none;
}

.medicine_list li strong {
    color: #8b0000;
    display: inline-block;
    min-width: 240px;
}

/* =========================
       Faculty Section
    ========================= */
.faculty_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.faculty_card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
    transition: 0.35s ease;
    border: 1px solid #e6edf5;
}

.faculty_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.faculty_img_wrap {
    position: relative;
    overflow: hidden;
    height: 360px;
}

.faculty_img {
    width: 100%;
    height: 360px;
    display: block;
    transition: transform 0.5s ease;
    object-fit: cover;
	object-position: top;
}

.faculty_card:hover .faculty_img {
    transform: scale(1.08);
}

.faculty_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 51, 102, 0.92), rgba(139, 0, 0, 0.25));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: 0.4s ease;
}

.faculty_card:hover .faculty_overlay {
    opacity: 1;
}

.faculty_overlay span {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    transform: translateY(20px);
    transition: 0.4s ease;
    text-align: center;
}

.faculty_card:hover .faculty_overlay span {
    transform: translateY(0);
}

.faculty_content {
    padding: 22px 20px;
    text-align: center;
}

.faculty_content h3 {
    font-size: 21px;
    color: #003366;
    margin-bottom: 10px;
}

.faculty_content p {
    margin: 6px 0;
    font-size: 15px;
    color: #555;
}

.faculty_role {
    color: #8b0000 !important;
    font-weight: 700;
}

/* =========================
       Footer
    ========================= */
.medicine_footer {
    background: #003366;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    font-size: 15px;
}

/* =========================
       Responsive
    ========================= */
@media (max-width: 992px) {
    .faculty_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .medicine_banner h1 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .faculty_grid {
        grid-template-columns: 1fr;
    }

    .medicine_banner {
        padding: 45px 15px;
    }

    .medicine_banner h1 {
        font-size: 28px;
    }

    .medicine_banner p {
        font-size: 16px;
    }

    .medicine_section {
        padding: 22px;
    }

    .medicine_section h2 {
        font-size: 24px;
    }

    .medicine_list li strong {
        display: block;
        min-width: auto;
        margin-bottom: 5px;
    }

    .faculty_img_wrap {
        height: 280px;
    }
}


.table_responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.medicine_table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
    background: #fff;
}

.medicine_table th,
.medicine_table td {
    padding: 14px 16px;
    border: 1px solid #e5e5e5;
    text-align: left;
    font-size: 15px;
}

.medicine_table th {
    background: #003366;
    color: #fff;
    font-weight: 600;
}

.medicine_table tr:nth-child(even) {
    background: #f8fbff;
}

.inner_section_title {
    font-size: 22px;
    color: #003366;
    margin: 20px 0 15px;
}


.table_responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.medicine_table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    margin-top: 10px;
    background: #fff;
}

button:hover {
    background-color: #f5a45b !important;
    color: #fff !important;
}
.custom-arrow:hover{
	background: unset !important;
}
.medicine_table th,
.medicine_table td {
    padding: 14px 16px;
    border: 1px solid #e6e6e6;
    text-align: left;
    vertical-align: top;
    font-size: 15px;
    line-height: 1.6;
}

.medicine_table th {
    background: #003366;
    color: #fff;
    font-weight: 600;
}

.medicine_table tbody tr:nth-child(even) {
    background: #f8fbff;
}

@media (max-width: 768px) {
    .medicine_table {
        min-width: 650px;
    }
}



/* ======================== */
 .who_section {
            width: 100%;
            padding: 60px 20px;
            box-sizing: border-box;
        }

        .who_container {
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center; /* Centers the heading text and grid itself */
        }

        /* Heading Section */
        .who_heading {
            text-align: center;
            margin-bottom: 60px;
        }

        .who_heading h2 {
            font-size: 2.6rem;
            color: #1a365d;
            margin: 0 0 12px 0;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }

        /* Elegant underline effect under the title */
        .who_heading h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 4px;
            background-color: #3182ce;
            border-radius: 2px;
        }

        .who_heading p {
            font-size: 1.15rem;
            color: #718096;
            margin: 0;
        }

        /* Centered Responsive Grid Layout */
        .who_grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(310px, 350px)); /* Uses auto-fit + max width limit to keep things centered */
            gap: 35px;
            width: 100%;
            justify-content: center; /* Crucial: Centers the items within the grid layout horizontally */
        }

        /* Profile Card Styling */
        .who_card {
            background: #ffffff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
            display: flex;
            flex-direction: column;
            position: relative;
            z-index: 1;
            /* Ultra-smooth cubic-bezier transition for natural physics feel */
            transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), 
                        box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1);
        }

        /* Card Hover Effects */
        .who_card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(26, 54, 93, 0.12);
        }

        /* Top Accent Bar: Animates width across the top of the card on hover */
        .who_card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 5px;
            background: linear-gradient(90deg, #3182ce, #4fd1c5);
            z-index: 3;
            transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .who_card:hover::before {
            width: 100%;
        }

        /* Image Frame */
        .who_image {
            width: 100%;
            height: 280px;
            overflow: hidden;
            position: relative;
            background-color: #edf2f7;
        }

        .who_image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), 
                        filter 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        }

        /* Dynamic Overlay Shimmer on the Image */
        .who_image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(49, 130, 206, 0.1) 0%, rgba(26, 54, 93, 0.4) 100%);
            opacity: 0;
            z-index: 2;
            transition: opacity 0.4s ease;
        }

        /* Zoom and overlay fade-in when card is hovered */
        .who_card:hover .who_image img {
            transform: scale(1.08);
            filter: brightness(0.95);
        }

        .who_card:hover .who_image::after {
            opacity: 1;
        }

        /* Card Text Content Block */
        .who_content {
            padding: 30px 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            background: #ffffff;
            position: relative;
            z-index: 2;
        }

        .who_content h3 {
            font-size: 1.35rem;
            color: #1a365d;
            margin: 0 0 6px 0;
            font-weight: 700;
            transition: color 0.3s ease;
        }

        /* Light up the name color on hover */
        .who_card:hover .who_content h3 {
            color: #3182ce;
        }

        .who_content span {
            font-size: 0.9rem;
            color: #3182ce;
            font-weight: 600;
            display: block;
            margin-bottom: 6px;
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }

        .who_content h5 {
            font-size: 1rem;
            color: #4a5568;
            margin: 0 0 20px 0;
            font-weight: 500;
            border-bottom: 1px solid #edf2f7;
            padding-bottom: 18px;
        }

        /* Metadata Details List */
        .who_content ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .who_content li {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            font-size: 0.9rem;
        }

        .who_content li strong {
            color: #718096;
            font-weight: 500;
            flex-shrink: 0;
            margin-right: 15px;
        }

        .who_content li p {
            color: #2d3748;
            margin: 0;
            text-align: right;
            font-weight: 600;
            word-break: break-all;
            transition: color 0.3s ease;
        }

        .who_card:hover .who_content li p {
            color: #1a365d;
        }
		
		/* ===========================
   Department Owl Slider
=========================== */

.department-slider {
    position: relative;
}

.department-slider .item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

/* Navigation */
.department-slider .owl-nav {
    margin: 0;
}

.department-slider .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50% !important;
    background: #f1ae61 !important;
    color: #fff !important;
    font-size: 26px !important;
    line-height: 46px !important;
    text-align: center;
    transition: all .3s ease;
    z-index: 99;
}

.department-slider .owl-nav button:hover {
    background: #0b5ed7 !important;
}

.department-slider .owl-nav .owl-prev {
    left: -22px;
}

.department-slider .owl-nav .owl-next {
    right: -22px;
}

/* Remove focus outline */
.department-slider .owl-nav button:focus {
    outline: none;
    box-shadow: none;
}

/* Dots */
.department-slider .owl-dots {
    margin-top: 18px;
    text-align: center;
}

.department-slider .owl-dot span {
    width: 10px;
    height: 10px;
    background: #d5d5d5 !important;
    margin: 5px;
    border-radius: 50%;
}

.department-slider .owl-dot.active span {
    background: #1f6ef2 !important;
}

/* Responsive */
@media (max-width:768px) {

    .department-slider .item img {
        height: 260px;
    }

    .department-slider .owl-nav .owl-prev {
        left: 10px;
    }

    .department-slider .owl-nav .owl-next {
        right: 10px;
    }

    .department-slider .owl-nav button {
        width: 40px;
        height: 40px;
        font-size: 22px !important;
        line-height: 40px !important;
    }
}
.welcome_message {
    padding-right: 100px;
}






.department_card{
    background:#fff;
    padding:30px;
    border-radius:12px;
    margin-bottom:30px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.department_card h2{
    color:#0b4f8a;
    font-size:28px;
    font-weight:700;
    margin-bottom:20px;
    position:relative;
}

.department_card h2:after{
    content:'';
    width:70px;
    height:4px;
    background:#ffb300;
    display:block;
    margin-top:8px;
    border-radius:20px;
}

.curriculum_box{
    background:#f8f9fa;
    border-left:5px solid #0b4f8a;
    padding:20px;
    border-radius:10px;
    height:100%;
}

.curriculum_box h4{
    color:#0b4f8a;
    margin-bottom:15px;
    font-weight:700;
}

.curriculum_box ul,
.activity_list{
    margin:0;
    padding-left:20px;
}

.activity_list li{
    margin-bottom:12px;
}

.result_box{
    background:linear-gradient(135deg,#0b4f8a,#1d6fb8);
    color:#fff;
    text-align:center;
    padding:35px 20px;
    border-radius:12px;
}

.result_box h3{
    font-size:50px;
    font-weight:700;
    margin-bottom:10px;
}

.table th{
    background:#0b4f8a;
    color:#fff;
    vertical-align:middle;
}

.table td{
    vertical-align:middle;
}

@media(max-width:767px){
.offcanvas-body {
    overflow-y: auto !important;
}
.breadcrumb{
	justify-content: center;
}
.navbar-brand {
    padding: 0 0;
}
.offcanvas-header {
    padding: 0 20px !important;
}
.department_card{
    padding:20px;
}
.carousel-item img{
	height: 400px;
}
.slide .custom-arrow{
	border-radius: 100%;
}

.slide button:active{
    border-top: unset;
    padding: unset;
}
.about-section-content {
    padding: 20px 0;
}
.about-section-content h2 {
    font-size: 20px !important;
}

.about-fetures {
    gap: 10px;
    flex-direction: column;
}
.about-icons {
    width: 100% !important;
}
.department_card h2{
    font-size:24px;
}

.result_box{
    margin-bottom:20px;
}
		.abhina_pad_lr {
    padding: 0 20px !important;
}

.mg-gallery-section.abhina_pad_lr {
    padding: 20px 0 !important;
}
.sub-banner h1 {
    font-size: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    max-height: calc(1.4em * 2);
}

.breadcrumb-item+.breadcrumb-item {
        display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    max-height: calc(1.4em * 2);
}
.organon_content {
    padding-right: 0;
}
   .col-lg-3.col-md-6.ftr_last {
        width: 100% !important;
    }
}

.offcanvas-body {
    background-color: #f1ae61 !important;
}
.offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 20px;
    background-color: #f1ae61 !important;
}

       .nidaan-wing {
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            width: 100%;
            overflow: hidden;
            border-top: 6px solid #0056b3;
            color: #333333;
        }

        /* --- Child Elements Styled via the Parent Class --- */
        .nidaan-wing .header-section {
            background-color: #f8f9fa;
            padding: 25px;
            text-align: center;
            border-bottom: 1px solid #dee2e6;
        }

        .nidaan-wing .header-section h1 {
            margin: 0;
            font-size: 2rem;
            color: #0056b3;
            letter-spacing: 1px;
        }

        .nidaan-wing .header-section p {
            font-size: 0.9rem;
            color: #28a745;
            font-weight: bold;
            margin: 5px 0 0 0;
            text-transform: uppercase;
        }

        .nidaan-wing .timing-banner {
            background-color: #e2f0d9;
            border-left: 4px solid #385723;
            padding: 12px;
            margin: 20px;
            border-radius: 4px;
            font-weight: 600;
            color: #385723;
            text-align: center;
        }

        .nidaan-wing .main-content {
            padding: 0 25px 25px 25px;
        }

        .nidaan-wing .main-content h3 {
            color: #333333;
            font-size: 1.1rem;
            border-bottom: 2px solid #17a2b8;
            padding-bottom: 8px;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .nidaan-wing .test-grid {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: 1fr;
            gap: 10px;
        }

        /* Responsive Columns */
        @media (min-width: 480px) {
            .nidaan-wing .test-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        .nidaan-wing .test-grid li {
            background-color: #f8f9fa;
            padding: 10px 15px;
            border-radius: 6px;
            border: 1px solid #dee2e6;
            font-size: 0.95rem;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .nidaan-wing .test-grid li:hover {
            transform: translateY(-2px);
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            border-color: #17a2b8;
        }

        .nidaan-wing .status-footer {
            background-color: #fff3cd;
            color: #856404;
            text-align: center;
            padding: 15px;
            font-weight: bold;
            font-size: 0.95rem;
            border-top: 1px solid #ffeeba;
            letter-spacing: 0.5px;
        }
		
		
		
		
		
		/* --- Global Section Layout --- */
.who_section {
    background-color: transparent;
    font-family: unset;
    color: #1f2937;
    overflow-x: hidden;
}

.who_container {
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Heading --- */
.who_heading {
    text-align: center;
    margin-bottom: 50px;
}

.who_heading h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e40af;                       /* Deep Academic Blue */
    letter-spacing: -0.05em;
    margin-bottom: 10px;
}

.who_heading p {
    font-size: 1.1rem;
    color: #4b5563;                       /* Medium Gray */
}

/* --- Grid Sequence Layout --- */
.who_sequence {
    display: grid;
    grid-template-columns: 1fr;           /* 1 Column on Mobile */
    gap: 30px;                            /* Spacing between grid items */
}

/* Responsive Breakpoints for Grid */
@media (min-width: 640px) {
    .who_sequence {
        grid-template-columns: repeat(2, 1fr); /* 2 Columns on Tablets */
    }
}

@media (min-width: 1024px) {
    .who_sequence {
        grid-template-columns: repeat(4, 1fr); /* Strict 4 Cards per row on Desktop */
    }
}

/* --- Card Styles --- */
.who_card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
    display: flex;
    flex-direction: column;               /* Stacked image and text for grid consistency */
    overflow: hidden;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.who_card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    border-color: rgba(59, 130, 246, 0.4);
}

/* --- Image Handler --- */
.who_image {
    width: 100%;
    padding: 20px 20px 0 20px;            /* Framing border padding */
    box-sizing: border-box;
}

.who_image img {
    width: 100%;
    height: 200px;                        /* Fixed height to keep grid images perfectly uniform */
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* --- Content Layout --- */
.who_content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;                         /* Pushes content evenly */
}

/* --- Sequence Number Badges --- */
.seq_number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    font-weight: 900;
    color: rgba(30, 64, 175, 0.08);       /* Elegant ghost digit */
    line-height: 1;
    font-family: monospace;
    transition: all 0.3s ease;
}

.who_card:hover .seq_number {
    color: rgba(59, 130, 246, 0.2);
    transform: scale(1.1);
}

/* --- Typography --- */
.who_content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 4px 0;
    padding-right: 35px;                  /* Clear space for absolute sequence number */
    line-height: 1.3;
}

.who_content span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #3b82f6;                       /* Bright Accent Blue */
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 8px;
}

.who_content h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #4b5563;
    margin: 0 0 14px 0;
    border-bottom: 1px dashed #e2e8f0;
    padding-bottom: 10px;
}

/* --- Meta Details (UL) --- */
.who_content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.who_content ul li {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #4b5563;
}

.who_content ul li strong {
    color: #1f2937;
    font-weight: 600;
    display: inline-block;
    min-width: 50px;                      /* Clean attribute layout alignment */
}

.md-wrapper {
    background: linear-gradient(135deg, #f4f7f6 0%, #e9eff1 100%);
    color: #2c3e50;
    min-height: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

        .md-container {
            width: 100%;
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 25px;
        }

        .md-card {
            background: #ffffff;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            padding: 30px;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .md-card:hover {
            transform: translateY(-5px);
        }

        /* Header Section */
        .md-header-card {
            grid-column: span 12;
            background: linear-gradient(135deg, #1a5f7a, #154c62);
            color: #ffffff;
            text-align: center;
            padding: 40px;
        }

        .md-header-card h1 {
            font-size: 2.2rem;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .md-header-card p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1rem;
        }

        /* Section Titles */
        .md-section-title {
            font-size: 1.4rem;
            color: #1a5f7a;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eef2f5;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* Left Column: Activities */
        .md-activities-box {
            grid-column: span 7;
        }

 .md-activity-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

        .md-activity-item {
            padding: 12px 15px;
            margin-bottom: 10px;
            background: #f8fafb;
            border-left: 4px solid #57c5b6;
            border-radius: 0 16px 16px 0;
            font-size: 0.95rem;
            font-weight: 500;
            display: flex;
            align-items: center;
        }

        /* Right Column: Admission & Results */
        .md-sidebar-box {
            grid-column: span 5;
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .md-info-block {
            margin-bottom: 18px;
        }

        .md-info-label {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #7f8c8d;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .md-info-value {
            font-size: 1.05rem;
            font-weight: 600;
            color: #2c3e50;
        }

        .md-badge {
            display: inline-block;
            background: rgba(87, 197, 182, 0.15);
            color: #1a5f7a;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: bold;
        }

        /* Results Display */
        .md-result-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-top: 5px;
        }

        .md-result-stat {
            background: #fdfaf6;
            border: 1px solid #f5ebd6;
            border-radius: 12px;
            padding: 15px;
            text-align: center;
        }

        .md-result-stat.md-alt {
            background: #f5fbfb;
            border-color: #e1f4f2;
        }

        .md-stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: #ff9f43;
            line-height: 1;
            margin-bottom: 5px;
        }

        .md-result-stat.md-alt .md-stat-number {
            color: #57c5b6;
        }

        .md-stat-desc {
            font-size: 0.85rem;
            color: #616e7c;
            font-weight: 500;
        }

        /* Responsive Design */
        @media (max-width: 900px) {
            .md-activities-box, .md-sidebar-box {
                grid-column: span 12;
            }
        }
		
		
		.ug-wrapper {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
            color: #2d3748;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 40px 20px;
        }

        .ug-container {
            width: 100%;
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 25px;
        }

        .ug-card {
            background: #ffffff;
            border-radius: 16px;
            box-shadow: 0 10px 25px rgba(160, 174, 192, 0.15);
            padding: 30px;
            transition: transform 0.3s ease;
        }

        .ug-card:hover {
            transform: translateY(-5px);
        }

        /* Main Header Card */
        .ug-header-card {
            grid-column: span 12;
            background: linear-gradient(135deg, #2b6cb0, #1a365d);
            color: #ffffff;
            text-align: center;
            padding: 45px 30px;
        }

        .ug-header-card .ug-tag {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .ug-header-card h1 {
            font-size: 2.4rem;
            font-weight: 800;
            margin-bottom: 5px;
        }

        .ug-header-card p {
            font-size: 1.2rem;
            color: #ebf8ff;
            font-weight: 500;
        }

        /* Core Program Details */
        .ug-details-card {
            grid-column: span 7;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .ug-section-title {
            font-size: 1.3rem;
            color: #2b6cb0;
            margin-bottom: 20px;
            padding-bottom: 8px;
            border-bottom: 2px solid #edf2f7;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .ug-timeline {
            background: #f7fafc;
            border-left: 4px solid #4299e1;
            padding: 15px 20px;
            border-radius: 0 12px 12px 0;
            margin-bottom: 25px;
        }

        .ug-time-title {
            font-size: 1.8rem;
            font-weight: 800;
            color: #2d3748;
            line-height: 1.2;
        }

        .ug-time-subtitle {
            font-size: 0.95rem;
            color: #718096;
            margin-top: 5px;
            font-weight: 500;
        }

        .ug-program-info {
            background: #f7fafc;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 20px;
        }

        .ug-info-label {
            font-size: 0.85rem;
            text-transform: uppercase;
            color: #718096;
            letter-spacing: 1px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .ug-info-value {
            font-size: 1.1rem;
            font-weight: 600;
            color: #2d3748;
        }

        /* Sidebar: Admission & Eligibility */
        .ug-sidebar-box {
            grid-column: span 5;
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .ug-capacity-box {
            background: #edf2f7;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            margin-bottom: 15px;
        }

        .ug-capacity-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: #2b6cb0;
            line-height: 1;
        }

        .ug-capacity-label {
            font-size: 0.9rem;
            color: #4a5568;
            font-weight: 700;
            text-transform: uppercase;
            margin-top: 5px;
        }

        .ug-quota-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px dashed #e2e8f0;
        }

        .ug-quota-row:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .ug-quota-name {
            font-size: 0.95rem;
            color: #4a5568;
            font-weight: 500;
        }

        .ug-quota-val {
            font-weight: 700;
            color: #2d3748;
            background: #ebf8ff;
            color: #2b6cb0;
            padding: 2px 8px;
            border-radius: 6px;
            font-size: 0.95rem;
        }

        .ug-eligibility-item {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
            background: #fffaf0;
            border: 1px solid #feebc8;
            padding: 12px 15px;
            border-radius: 10px;
            font-weight: 600;
            color: #dd6b20;
        }

        .ug-eligibility-item.ug-mandatory {
            background: #f0fff4;
            border-color: #c6f6d5;
            color: #38a169;
        }

        .ug-icon {
            font-size: 1.2rem;
        }

        /* Responsive Breakpoints */
        @media (max-width: 850px) {
            .ug-details-card, .ug-sidebar-box {
                grid-column: span 12;
            }
        }
		
		.pg-alternate-wrapper {
            background-color: #f3f4f6;
            color: #1f2937;
            min-height: 100vh;
            padding: 20px 20px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .pg-main-box {
            background-color: #ffffff;
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid #e5e7eb;
            overflow: hidden;
        }

        /* Top Hero Header */
        .pg-top-banner {
        grid-column: span 12;
    background: linear-gradient(135deg, #2b6cb0, #1a365d);
    color: #ffffff;
    text-align: center;
    padding: 45px 30px;
        }

        .pg-top-banner .pg-subtitle {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: #ccfbf1;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .pg-top-banner h1 {
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 4px;
        }

        .pg-top-banner .pg-session {
            font-size: 1.1rem;
            color: #99f6e4;
        }

        /* Content Layout Split */
        .pg-split-layout {
            display: grid;
            grid-template-columns: 2fr 1fr;
            border-bottom: 1px solid #e5e7eb;
        }

        .pg-left-pane {
            padding: 35px;
            border-right: 1px solid #e5e7eb;
        }

        .pg-right-pane {
            padding: 35px;
            background-color: #fafafa;
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .pg-block-title {
            font-size: 1.15rem;
            font-weight: 700;
            color: #111827;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* Metrics and Lists */
        .pg-meta-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .pg-meta-row {
            background-color: #f9fafb;
            border: 1px solid #f3f4f6;
            padding: 16px;
            border-radius: 8px;
        }

        .pg-meta-label {
            font-size: 0.8rem;
            color: #6b7280;
            text-transform: uppercase;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .pg-meta-desc {
            font-size: 1.05rem;
            font-weight: 600;
            color: #374151;
        }

        .pg-pill-seat {
            background-color: #f0fdf4;
            border: 1px solid #bbf7d0;
            color: #166534;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
        }

        .pg-seat-count {
            font-size: 2.2rem;
            font-weight: 800;
            line-height: 1;
        }

        .pg-seat-text {
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            color: #14532d;
            margin-top: 2px;
        }

        .pg-alert-box {
            background-color: #fff7ed;
            border: 1px solid #ffedd5;
            color: #c2410c;
            padding: 15px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.95rem;
            text-align: center;
        }

        /* Bottom Examination Area */
        .pg-bottom-pane {
            padding: 35px;
            background-color: #ffffff;
        }

        .pg-table-responsive {
            width: 100%;
            overflow-x: auto;
            margin-top: 15px;
        }

        .pg-grid-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            overflow: hidden;
        }

        .pg-grid-table th {
            background-color: #f3f4f6;
            color: #374151;
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 14px 18px;
            border-bottom: 1px solid #e5e7eb;
        }

        .pg-grid-table td {
            padding: 16px 18px;
            font-size: 0.95rem;
            color: #4b5563;
            border-bottom: 1px solid #e5e7eb;
            vertical-align: top;
        }

        .pg-grid-table tr:last-child td {
            border-bottom: none;
        }

        .pg-row-header {
            font-weight: 700;
            color: #111827;
            background-color: #fafafa;
            width: 22%;
            border-right: 1px solid #e5e7eb;
        }

        .pg-nested-items {
            list-style-type: none;
        }

        .pg-nested-items li {
            position: relative;
            padding-left: 15px;
            margin-bottom: 8px;
        }

        .pg-nested-items li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: #0d9488;
            font-weight: bold;
        }

        .pg-nested-items li:last-child {
            margin-bottom: 0;
        }

        .pg-border-right {
            border-right: 1px solid #e5e7eb;
        }

        /* Layout Responsiveness */
        @media (max-width: 768px) {
            .pg-split-layout {
                grid-template-columns: 1fr;
            }
            .pg-left-pane {
                border-right: none;
                border-bottom: 1px solid #e5e7eb;
            }
        }
		
		
.tabs-section .nav-tabs .nav-link:focus {
    color: #fff !important;
    background: #f5a45b !important;
}

button.navbar-toggler {
    padding: 3px 10px !important;
}


	
.row.g-5 .col-lg-3 {
    flex: 0 0 auto;
    width: 23%;
}

.custom-faculty-tabs .tab-btn {
    color: #fff !important;
}


.navbar-expand-lg .navbar-nav{
	margin-top: 0;
}



.carousel-control-next, .carousel-control-prev {
    width: 120px !important;

}
.custom-navbar .nav-link.active{
	Color:#000 !important;
}

.nav-tabs .nav-link.active{
	color: #ffffff !important;
background-color: #ffb464 !important;
}
.heading_title{
	font-size:35px;
	font-weight:600;
}
.tab-list{
border:1px solid #ea9629;
border-radius:6px ;
}
.department_left{
	width: 96%;
}
.department_faculty_name {
    color: #000;
    margin-bottom: 5px;
    font-size: 25px;
}
.faculty-details {
    text-align: left;
}
.faculty-card{
	column-gap:15px !important;
}
.faculty-img{
box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
 .footer-body.abhina_pad_lr .col-lg-1 {
        flex: 0 0 auto;
        width: 11.333333% !important;
    }
	
	
/* =====================================================
   AWARD & ACHIEVEMENTS
===================================================== */

.award-achievement-section {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
    background: #f7f7f7;
}


/* =====================================================
   INTRO
===================================================== */

.award-intro {
    max-width: 850px;
    margin: 0 auto 55px;
}

.award-small-title {
    display: inline-block;
    margin-bottom: 10px;
    color: #a40000;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.award-intro h2 {
    margin: 0;
    color: #123f70;
    font-size: 40px;
    font-weight: 600;
}

.award-line {
    width: 65px;
    height: 3px;
    background: #a40000;
    margin: 15px auto 20px;
}

.award-intro p {
    margin: 0;
    color: #555;
    font-size: 16px;
    line-height: 1.8;
}



/* =====================================================
   AWARD CARD
===================================================== */

.award-card {
    height: 100%;
    padding: 35px 30px;
    background: #ffffff;
    border-radius: 12px;
    border-left: 5px solid #a40000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);

    display: flex;
    gap: 22px;

    transition: all 0.3s ease;
}


.award-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}



/* =====================================================
   ICON
===================================================== */

.award-icon {
    min-width: 60px;
    width: 60px;
    height: 60px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f5e4e4;
    color: #a40000;

    font-size: 25px;
}


.award-icon i {
    line-height: 1;
}



/* =====================================================
   CONTENT
===================================================== */

.award-content {
    flex: 1;
}

.award-year {
    display: inline-block;
    margin-bottom: 7px;
	margin-right: 6px;
    color: #a40000;
    font-size: 14px;
    font-weight: 600;
}


.award-content h3 {
    margin: 0 0 12px;

    color: #123f70;
    font-size: 22px;
    font-weight: 600;
}


.award-content p {
    margin: 0;

    color: #555;
    font-size: 15px;
    line-height: 1.7;
}



/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .award-achievement-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .award-intro h2 {
        font-size: 34px;
    }

    .award-card {
        padding: 28px 24px;
    }

}



/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .award-achievement-section {
        padding-top: 45px;
        padding-bottom: 45px;
    }

    .award-intro {
        margin-bottom: 35px;
    }

    .award-intro h2 {
        font-size: 29px;
    }

    .award-intro p {
        font-size: 14px;
    }

    .award-card {
        padding: 25px 20px;
        gap: 15px;
    }

    .award-icon {
        min-width: 50px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .award-content h3 {
        font-size: 19px;
    }

    .award-content p {
        font-size: 14px;
    }

}



/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .award-card {
        display: block;
    }

    .award-icon {
        margin-bottom: 18px;
    }

}



/* =====================================================
   DOWNLOADS SECTION
===================================================== */

.downloads-section {
    padding-top: 70px !important;
    padding-bottom: 80px !important;
    background: #f7f7f7;
}


/* Main Wrapper */

.downloads-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}


/* =====================================================
   HEADING
===================================================== */

.downloads-heading {
    text-align: center;
    margin-bottom: 45px;
}

.downloads-heading h2 {
    margin: 0;
    font-size: 38px;
    font-weight: 600;
    color: #123e70;
}

.heading-line {
    display: block;
    width: 65px;
    height: 3px;
    background: #a90000;
    margin: 12px auto 18px;
}

.downloads-heading p {
    max-width: 750px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}


/* =====================================================
   DOWNLOAD ITEM
===================================================== */

.downloads-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}


.download-item {
    display: flex;
    align-items: center;
    gap: 20px;

    background: #ffffff;

    padding: 22px 25px;

    border-left: 5px solid #a90000;

    border-radius: 8px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);

    transition: all 0.3s ease;
}


.download-item:hover {
    transform: translateY(-3px);

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}


/* =====================================================
   NUMBER
===================================================== */

.download-number {
    min-width: 45px;

    font-size: 18px;

    font-weight: 700;

    color: #a90000;
}


/* =====================================================
   PDF ICON
===================================================== */

.download-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fceaea;

    border-radius: 8px;

    flex-shrink: 0;
}


.download-icon i {
    font-size: 26px;
    color: #b30000;
}


/* =====================================================
   CONTENT
===================================================== */

.download-content {
    flex: 1;
}


.download-content h3 {
    margin: 0 0 7px;

    font-size: 19px;

    font-weight: 600;

    color: #123e70;
}


.download-content p {
    margin: 0 0 7px;

    font-size: 14px;

    line-height: 1.5;

    color: #666;
}


.download-date {
    font-size: 13px;

    color: #777;
}


.download-date i {
    margin-right: 5px;
}


/* =====================================================
   DOWNLOAD BUTTON
===================================================== */

.download-button {
    flex-shrink: 0;
}


.download-btn {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 11px 18px;

    background: #123e70;

    color: #ffffff !important;

    text-decoration: none;

    border-radius: 5px;

    font-size: 14px;

    font-weight: 600;

    transition: all 0.3s ease;
}


.download-btn:hover {
    background: #a90000;

    color: #ffffff !important;
}


.download-btn i {
    font-size: 14px;
}


/* =====================================================
   NO DOWNLOADS
===================================================== */

.no-downloads {
    text-align: center;

    padding: 70px 20px;

    background: #ffffff;

    border-radius: 10px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}


.no-downloads-icon i {
    font-size: 50px;

    color: #a90000;

    margin-bottom: 20px;
}


.no-downloads h3 {
    margin-bottom: 10px;

    color: #123e70;
}


.no-downloads p {
    margin: 0;

    color: #666;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 767px) {

    .downloads-section {
        padding-top: 45px;
        padding-bottom: 50px;
    }


    .downloads-heading {
        margin-bottom: 30px;
    }


    .downloads-heading h2 {
        font-size: 30px;
    }


    .download-item {
        align-items: flex-start;

        flex-wrap: wrap;

        gap: 15px;

        padding: 18px;
    }


    .download-number {
        min-width: 35px;
    }


    .download-icon {
        width: 48px;
        height: 48px;
    }


    .download-icon i {
        font-size: 22px;
    }


    .download-content {
        width: calc(100% - 100px);
        flex: 1;
    }


    .download-content h3 {
        font-size: 17px;
    }


    .download-button {
        width: 100%;

        margin-top: 5px;
    }


    .download-btn {
        width: 100%;

        justify-content: center;
    }

}
/* =====================================================
   FORMS SECTION
===================================================== */

.forms-section {
    padding-top: 75px !important;
    padding-bottom: 80px !important;
    background: #f7f7f7;
}

.forms-wrapper {
    max-width: 1150px;
    margin: 0 auto;
}


/* =====================================================
   HEADING
===================================================== */

.forms-heading {
    text-align: center;
    margin-bottom: 45px;
}

.forms-subtitle {
    display: block;
    margin-bottom: 8px;

    color: #a40000;

    font-size: 14px;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 1px;
}

.forms-heading h2 {
    margin: 0;

    color: #123f70;

    font-size: 40px;
    font-weight: 600;
}

.forms-line {
    display: block;

    width: 65px;
    height: 3px;

    margin: 14px auto 18px;

    background: #a40000;
}

.forms-heading p {
    max-width: 700px;

    margin: 0 auto;

    color: #666;

    font-size: 16px;
    line-height: 1.7;
}


/* =====================================================
   FORM LIST
===================================================== */

.forms-list {
    display: flex;

    flex-direction: column;

    gap: 18px;
}


/* =====================================================
   FORM ITEM
===================================================== */

.form-item {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    padding: 22px 25px;

    background: #ffffff;

    border-left: 5px solid #a40000;

    border-radius: 8px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);

    transition: all 0.3s ease;
}

.form-item:hover {
    transform: translateY(-4px);

    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}


/* =====================================================
   LEFT SIDE
===================================================== */

.form-left {
    display: flex;

    align-items: center;

    gap: 20px;

    flex: 1;
}


/* =====================================================
   NUMBER
===================================================== */

.form-number {
    min-width: 42px;

    color: #a40000;

    font-size: 18px;
    font-weight: 700;
}


/* =====================================================
   ICON
===================================================== */

.form-icon {
    width: 58px;
    height: 58px;

    min-width: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #f8e7e7;

    border-radius: 8px;
}

.form-icon i {
    color: #a40000;

    font-size: 25px;
}


/* =====================================================
   CONTENT
===================================================== */

.form-content {
    flex: 1;
}

.form-content h3 {
    margin: 0 0 7px;

    color: #123f70;

    font-size: 19px;

    font-weight: 600;
}

.form-content p {
    margin: 0;

    color: #666;

    font-size: 14px;

    line-height: 1.6;
}


/* =====================================================
   DOWNLOAD BUTTON
===================================================== */

.form-action {
    flex-shrink: 0;
}

.form-download-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    min-width: 125px;

    padding: 11px 18px;

    background: #123f70;

    color: #ffffff !important;

    text-decoration: none;

    border-radius: 5px;

    font-size: 14px;

    font-weight: 600;

    transition: all 0.3s ease;
}

.form-download-btn:hover {
    background: #a40000;

    color: #ffffff !important;
}

.form-download-btn i {
    font-size: 14px;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .forms-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .forms-heading h2 {
        font-size: 34px;
    }

    .form-item {
        padding: 20px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .forms-section {
        padding-top: 45px;
        padding-bottom: 50px;
    }

    .forms-heading {
        margin-bottom: 30px;
    }

    .forms-heading h2 {
        font-size: 30px;
    }

    .forms-heading p {
        font-size: 14px;
    }

    .form-item {
        align-items: flex-start;

        flex-direction: column;

        gap: 18px;

        padding: 20px;
    }

    .form-left {
        width: 100%;

        gap: 14px;
    }

    .form-number {
        min-width: 30px;

        font-size: 16px;
    }

    .form-icon {
        width: 50px;
        height: 50px;

        min-width: 50px;
    }

    .form-icon i {
        font-size: 21px;
    }

    .form-content h3 {
        font-size: 17px;
    }

    .form-content p {
        font-size: 13px;
    }

    .form-action {
        width: 100%;
    }

    .form-download-btn {
        width: 100%;
    }

}



/* =========================================
   NOTICE SECTION
========================================= */

.notice-section {
    width: 100%;
    padding: 50px 15px;
    background: #f8f8f8;
}

.notice-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}

/* =========================================
   NOTICE SECTION
========================================= */

.notice-section {
    width: 100%;
    padding: 50px 15px;
    box-sizing: border-box;
}

.notice-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}


/* =========================================
   NOTICE TABLE
========================================= */

.notice-table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    background: #ffffff;
    border: 1px solid #d5d5d5;
}


/* =========================================
   TABLE HEADER
========================================= */

.notice-table thead th {
    background: #f5a623;
    color: #000000;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 15px;
    border: 1px solid #ffffff;
    vertical-align: middle;

    word-break: break-word;
    overflow-wrap: break-word;
}


/* =========================================
   TABLE BODY
========================================= */

.notice-table tbody td {
    padding: 12px 10px;
    border: 1px solid #d5d5d5;
    font-size: 16px;
    color: #111111;
    line-height: 1.5;
    vertical-align: middle;

    word-break: break-word;
    overflow-wrap: break-word;
}


/* =========================================
   ALTERNATE ROW
========================================= */

.notice-table tbody tr:nth-child(odd) {
    background: #f1f1f1;
}

.notice-table tbody tr:nth-child(even) {
    background: #ffffff;
}


/* =========================================
   HOVER
========================================= */

.notice-table tbody tr:hover {
    background: #fafafa;
}


/* =========================================
   COLUMN WIDTH
========================================= */

/* Sl No */
.notice-table th:nth-child(1),
.notice-table td:nth-child(1) {
    width: 8%;
}

/* Title */
.notice-table th:nth-child(2),
.notice-table td:nth-child(2) {
    width: 60%;
}

/* Published Date */
.notice-table th:nth-child(3),
.notice-table td:nth-child(3) {
    width: 20%;
}

/* Download */
.notice-table th:nth-child(4),
.notice-table td:nth-child(4) {
    width: 12%;
    text-align: center;
}


/* =========================================
   PDF ICON
========================================= */

.notice-pdf {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.notice-pdf i {
    font-size: 35px;
    color: #e51f2a;
    transition: all 0.3s ease;
}

.notice-pdf:hover i {
    color: #b5121b;
    transform: scale(1.08);
}


/* =========================================
   LARGE LAPTOP
   1200px - 1399px
========================================= */

@media (max-width: 1399px) {

    .notice-section {
        padding: 45px 15px;
    }

    .notice-table thead th {
        font-size: 14px;
        padding: 10px 12px;
    }

    .notice-table tbody td {
        font-size: 15px;
        padding: 11px 9px;
    }

}


/* =========================================
   LAPTOP
   992px - 1199px
========================================= */

@media (max-width: 1199px) {

    .notice-section {
        padding: 40px 15px;
    }

    .notice-table thead th {
        font-size: 14px;
        padding: 10px 10px;
    }

    .notice-table tbody td {
        font-size: 14px;
        padding: 10px 8px;
    }

    .notice-pdf i {
        font-size: 34px;
    }

}


/* =========================================
   TABLET
   768px - 991px
========================================= */

@media (max-width: 991px) {

    .notice-section {
        padding: 35px 15px;
    }

    .notice-table thead th {
        font-size: 13px;
        padding: 9px 8px;
    }

    .notice-table tbody td {
        font-size: 14px;
        padding: 10px 7px;
        line-height: 1.45;
    }


    /* Column Width */

    .notice-table th:nth-child(1),
    .notice-table td:nth-child(1) {
        width: 7%;
    }

    .notice-table th:nth-child(2),
    .notice-table td:nth-child(2) {
        width: 58%;
    }

    .notice-table th:nth-child(3),
    .notice-table td:nth-child(3) {
        width: 23%;
    }

    .notice-table th:nth-child(4),
    .notice-table td:nth-child(4) {
        width: 12%;
    }


    .notice-pdf i {
        font-size: 32px;
    }

}


/* =========================================
   MOBILE
   576px - 767px
========================================= */

@media (max-width: 767px) {

    .notice-section {
        padding: 30px 10px;
    }

    .notice-container {
        width: 100%;
    }

    .notice-table {
        width: 100%;
        table-layout: fixed;
    }

    .notice-table thead th {
        font-size: 12px;
        padding: 8px 5px;
    }

    .notice-table tbody td {
        font-size: 12px;
        padding: 9px 5px;
        line-height: 1.4;
    }


    /* Column Width */

    .notice-table th:nth-child(1),
    .notice-table td:nth-child(1) {
        width: 8%;
    }

    .notice-table th:nth-child(2),
    .notice-table td:nth-child(2) {
        width: 55%;
    }

    .notice-table th:nth-child(3),
    .notice-table td:nth-child(3) {
        width: 25%;
    }

    .notice-table th:nth-child(4),
    .notice-table td:nth-child(4) {
        width: 12%;
    }


    .notice-pdf i {
        font-size: 30px;
    }

}


/* =========================================
   SMALL MOBILE
   481px - 575px
========================================= */

@media (max-width: 575px) {

    .notice-section {
        padding: 25px 8px;
    }

    .notice-table thead th {
        font-size: 11px;
        padding: 8px 4px;
    }

    .notice-table tbody td {
        font-size: 11px;
        padding: 8px 4px;
        line-height: 1.35;
    }


    /* Column Width */

    .notice-table th:nth-child(1),
    .notice-table td:nth-child(1) {
        width: 8%;
    }

    .notice-table th:nth-child(2),
    .notice-table td:nth-child(2) {
        width: 54%;
    }

    .notice-table th:nth-child(3),
    .notice-table td:nth-child(3) {
        width: 26%;
    }

    .notice-table th:nth-child(4),
    .notice-table td:nth-child(4) {
        width: 12%;
    }


    .notice-pdf i {
        font-size: 28px;
    }

}


/* =========================================
   VERY SMALL MOBILE
   320px - 480px
========================================= */

@media (max-width: 480px) {

    .notice-section {
        padding: 20px 5px;
    }

    .notice-table thead th {
        font-size: 10px;
        padding: 7px 3px;
        line-height: 1.2;
    }

    .notice-table tbody td {
        font-size: 10px;
        padding: 8px 3px;
        line-height: 1.3;
    }


    /* Column Width */

    .notice-table th:nth-child(1),
    .notice-table td:nth-child(1) {
        width: 8%;
    }

    .notice-table th:nth-child(2),
    .notice-table td:nth-child(2) {
        width: 52%;
    }

    .notice-table th:nth-child(3),
    .notice-table td:nth-child(3) {
        width: 28%;
    }

    .notice-table th:nth-child(4),
    .notice-table td:nth-child(4) {
        width: 12%;
    }


    .notice-pdf i {
        font-size: 25px;
    }

}


/* =========================================
   EXTRA SMALL MOBILE
   Below 360px
========================================= */

@media (max-width: 359px) {

    .notice-section {
        padding: 15px 3px;
    }

    .notice-table thead th {
        font-size: 9px;
        padding: 6px 2px;
    }

    .notice-table tbody td {
        font-size: 9px;
        padding: 7px 2px;
        line-height: 1.25;
    }

    .notice-pdf i {
        font-size: 22px;
    }

}

/* =========================================
   SHOW PER PAGE
========================================= */

.notice-per-page {
    display: flex;
    align-items: center;

    gap: 8px;

    font-size: 14px;
    color: #333;
}


/* =========================================
   PAGE SIZE BUTTON
========================================= */

.page-size-btn {
    min-width: 40px;
    height: 38px;

    padding: 0 12px;

    border: 1px solid #d5d5d5;

    background: #ffffff;

    color: #333;

    border-radius: 4px;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition: all 0.3s ease;
}


.page-size-btn:hover {
    background: #f5a623;

    border-color: #f5a623;

    color: #000;
}


.page-size-btn.active {
    background: #f5a623;

    border-color: #f5a623;

    color: #000;
}


/* =========================================
   PAGINATION
========================================= */

.notice-pagination {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

    flex-wrap: wrap;
}


/* =========================================
   PAGINATION BUTTON
========================================= */

.pagination-btn {
    width: 38px;
    height: 38px;

    padding: 0;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #d5d5d5;

    background: #ffffff;

    color: #333;

    border-radius: 4px;

    font-size: 14px;

    font-weight: 600;

    cursor: pointer;

    transition: all 0.3s ease;
}


/* =========================================
   PAGINATION HOVER
========================================= */

.pagination-btn:hover:not(:disabled) {
    background: #f5a623;

    border-color: #f5a623;

    color: #000;
}


/* =========================================
   ACTIVE PAGE
========================================= */

.pagination-btn.active {
    background: #f5a623;

    border-color: #f5a623;

    color: #000;
}


/* =========================================
   DISABLED
========================================= */

.pagination-btn:disabled {
    opacity: 0.45;

    cursor: not-allowed;

    background: #eeeeee;

    color: #777;
}


/* =========================================
   PREVIOUS / NEXT
========================================= */

.pagination-prev,
.pagination-next {
    font-size: 13px;
}


/* =========================================
   PAGINATION ICON
========================================= */

.pagination-btn i {
    font-size: 12px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .notice-pagination-area {
        justify-content: center;

        flex-direction: column;

        gap: 18px;
    }


    .notice-per-page {
        justify-content: center;
    }


    .notice-pagination {
        justify-content: center;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .notice-pagination-area {
        margin-top: 25px;

        gap: 15px;
    }


    .notice-per-page {
        font-size: 13px;

        gap: 5px;
    }


    .page-size-btn {
        min-width: 36px;

        height: 34px;

        padding: 0 9px;

        font-size: 13px;
    }


    .pagination-btn {
        width: 34px;

        height: 34px;

        font-size: 13px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575px) {

    .notice-pagination-area {
        width: 100%;

        margin-top: 20px;
    }


    .notice-per-page {
        width: 100%;

        justify-content: center;

        flex-wrap: wrap;
    }


    .notice-pagination {
        width: 100%;

        gap: 4px;
    }


    .pagination-btn {
        width: 32px;

        height: 32px;

        font-size: 12px;
    }


    .page-size-btn {
        min-width: 34px;

        height: 32px;

        font-size: 12px;
    }

}


/* =========================================
   VERY SMALL MOBILE
========================================= */

@media (max-width: 359px) {

    .notice-pagination {
        gap: 3px;
    }


    .pagination-btn {
        width: 29px;

        height: 29px;

        font-size: 11px;
    }


    .page-size-btn {
        min-width: 30px;

        height: 30px;

        padding: 0 7px;

        font-size: 11px;
    }


    .notice-per-page {
        font-size: 11px;
    }

}
.notice-table-wrapper {
    width: 100%;
    overflow-x: auto;
}


/* =========================================
   NOTICE PAGINATION AREA
========================================= */

.notice-pagination-area {
    width: 100%;
    margin-top: 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    flex-wrap: wrap;
}

/* =========================================
   Principal content popup
========================================= */

.principal-popup {
    display: none;
    inset: 0;
    z-index: 99999;
    align-items: center;
    justify-content: center;
}


.principal-popup-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 20px 60px rgba(0,0,0,.3);
    animation: popupAnimation .3s ease;
}

.principal-popup-content {
    position: absolute;
    z-index: 2;
    width: 94%;
    /* max-width: 812px; */
    /* max-height: 102vh; */
    overflow-y: auto;
    background: #4b4b4b;
    border-radius: 15px;
    padding: 35px 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,.3);
    animation: popupAnimation .3s ease;
    Bottom: 2%;
    left: 3%;
    color: #fff;
}
#principalPopupData h4{
color: #f3840d;
    font-weight: 600;
    margin: 14px 0;
}
.principal-popup-content .principal-popup-close {
    position: absolute;
    top: 6px;
    right: 15px;
    width: 31px !important;
    height: 31px;
    border: 0;
    border-radius: 10px;
    background: #f1f1f1;
    color: #333;
    font-size: 28px;
    line-height: 35px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
	padding: 0;
}
.principal-popup-close:hover {
    background: #e74c3c;
    color: #fff;
}

@keyframes popupAnimation {
    from {
        opacity: 0;
        transform: translateY(30px) scale(.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.popup-loading {
    text-align: center;
    padding: 50px;
}


/* =========================================
   STUDENT DETAILS SECTION
   Abhin Chandra Website Style
========================================= */


.batch-info {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.batch-box {
    min-width: 180px;
    padding: 14px 25px;
    text-align: center;
    background: #f8f8f8;
    border: 1px solid #e2e2e2;
    border-radius: 4px;
}

.batch-box strong {
    display: block;
    color: #1d3557;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.batch-box span {
    display: block;
    color: #777;
    font-size: 13px;
}

/* ---------- Student Grid ---------- */

.student-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

/* ---------- Student Card ---------- */

.student-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;

    min-height: 70px;
    padding: 13px 16px;

    background: #fff;
    border: 1px solid #dedede;
    border-radius: 3px;

    transition: all 0.25s ease;
}

/* Top institutional line */
.student-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;
    background: #1d3557;
}

/* Hover */
.student-card:hover {
    border-color: #1d3557;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* ---------- Student Number ---------- */

.student-number {
    flex: 0 0 38px;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ea9629;
    color: #fff;

    border-radius: 3px;

    font-size: 13px;
    font-weight: 700;
}

/* ---------- Student Name ---------- */

.student-name {
    color: #333;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

/* ---------- Footer ---------- */

.student-footer {
    margin-top: 30px;
    padding-top: 18px;

    text-align: center;

    border-top: 1px solid #e5e5e5;

    color: #777;
    font-size: 14px;
}

.student-footer strong {
    color: #1d3557;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 992px) {

    .student-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .student-header h1 {
        font-size: 28px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .student-section {
        padding: 35px 12px 45px;
    }

    .student-header h1 {
        font-size: 23px;
    }

    .student-header p {
        font-size: 14px;
    }

    .batch-info {
        gap: 10px;
    }

    .batch-box {
        width: 100%;
    }

    .student-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .student-card {
        min-height: 65px;
        padding: 12px;
    }

    .student-name {
        font-size: 14px;
    }

    .student-number {
        flex: 0 0 36px;
        width: 36px;
        height: 36px;
    }
}