.cheran-social-bar {
    position: fixed;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    z-index: 9999;
}

/* ICON STYLE */
.cheran-social-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 10px 0;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* HOVER EFFECT */
.cheran-social-bar a:hover {
    transform: scale(1.15);
}

/* COLORS */
.cs-call {
    background: #055ee3;
}

.cs-mail {
    background: #e50a1f;
}

.cs-whatsapp {
    background: #0ed457;
    animation: pulse 2s infinite;
}

.cs-facebook {
    background: #1877F2;
}

.cs-instagram {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.cs-youtube {
    background: #FF0000;
}

/* WHATSAPP PULSE */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Container */
.sticky-contact {
    position: fixed;
    left: 20px;
    top: 200px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

/* Buttons */
.contact-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
    text-decoration: none;
    animation: float 3s ease-in-out infinite;
}

/* Colors */
.contact-btn.phone {
    background: #1a75cb;
}

.contact-btn.whatsapp {
    background: #31aa37;
}

.contact-btn.email {
    background: #e71818;
}

/* Hover Effect */
.contact-btn:hover {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Floating Animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* LEFT STICKY CONTAINER */
.royal-sticky-admission {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    animation: royalBlink 1.5s infinite;
}

/* BUTTON STYLE */
.royal-admission-btn {
    display: block;
    background: linear-gradient(135deg, #0c4e82, #1b263b);
    color: #fff;
    padding: 20px 10px;
    border-radius: 5px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

/* GOLD BORDER EFFECT */
.royal-admission-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 5px;
    border: 2px solid transparent;
    background: linear-gradient(45deg, gold, #ffd700, gold) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}

/* BLINK ANIMATION */
@keyframes royalBlink {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 10px gold;
    }

    50% {
        opacity: 0.7;
        box-shadow: 0 0 20px gold;
    }
}

/* HOVER EFFECT */
.royal-admission-btn:hover {
    background: linear-gradient(135deg, #1b263b, #415a77);
    color: #ffd700;
    transform: rotate(180deg) scale(1.05);
}

.tp-footer-contact-list {
    list-style: none;
    padding: 0;
}

.tp-footer-contact-list li {
    margin-bottom: 10px;
    color: #fff;
}

.tp-footer-contact-list li i {
    color: var(--tp-theme-primary);
}

.tp-footer-contact-list a {
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    text-transform: lowercase;
}

.tp-footer-contact-list a:hover {
    color: #0c4e82;
}

/* Section Background */
.gallery-section-royal {
    background: linear-gradient(135deg, #0a1f44, #102c6b);
    padding: 60px 0;
}

/* Gallery Card */
.gallery-widget {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(6px);
    transition: all 0.4s ease;
}

/* Image */
.gallery-widget img {
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.5s ease, filter 0.5s ease;
}

/* Hover Overlay */
.gallery-widget::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6));
    opacity: 0;
    transition: 0.4s;
    border-radius: 16px;
}

/* Icon Overlay */
.gallery-widget::after {
    content: "\f002";
    font-family: "Font Awesome 6 pro";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    color: #fff;
    font-size: 26px;
    opacity: 0;
    transition: 0.4s;
}

/* Hover Effects */
.gallery-widget:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.gallery-widget:hover::before {
    opacity: 1;
}

.gallery-widget:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Glow Effect */
.gallery-widget:hover {
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.4);
}

/* Button Style */
.menu-btn-item {
    display: inline-block;
    padding: 4px 18px;
    font-size: 13px;
    font-weight: 500;
    color: #252525;
    background: #E8F1F8;
    border-radius: 30px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

.menu-btn-item {
    margin-left: 10px;
}

/* Background Animation */
.menu-btn-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0a1f44, #1e4ed8);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
    /* IMPORTANT FIX */
    border-radius: 30px;
}

/* Hover Effect */
.menu-btn-item:hover {
    color: #fff !important;
    /* FORCE WHITE TEXT */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 78, 216, 0.3);
}

.menu-btn-item:hover::before {
    transform: scaleX(1);
}

/* Click effect */
.menu-btn-item:active {
    transform: scale(0.95);
}

.testi-profile img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-block;
    object-fit: cover;
    object-position: center;
    border: 2px solid #124A80;
    margin-bottom: 5px;
}

.clients-grid.logo-animate {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 1;
    width: 100%;
    max-width: 100rem;
    margin: 0 auto 25px;
    flex-wrap: wrap;
}

.logos-marquee {
    padding: 60px 0;
    position: relative;
}

.logo-animate-alt img,
.logo-animate .box {
    box-shadow: 0 8px 16px #00000026;
    border: 8px solid #fff;
    background-color: #ffffff;
    border-radius: 10px;
    width: 225px;
    position: relative;
    overflow: hidden;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}

/* Responsive spacing */
@media (max-width: 1199.98px) {

    .logo-animate-alt img,
    .logo-animate .box {
        width: 320px;
    }
}


/* MOBILE */
@media (max-width: 768px) {
    .cheran-social-bar {
        right: 10px;
    }

    .cheran-social-bar a {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .logo-animate-alt img,
    .logo-animate .box {
        width: 225px;
    }
}

@media (max-width: 575.98px) {

    .logo-animate-alt img,
    .logo-animate .box {
        width: 350px;
    }
}



/* LINKEDIN */
.cs-linkedin {
    background: #0A66C2;
}

/* TWITTER (X) */
.cs-twitter {
    background: #022b57;
}

.tp-testimonial-area-group {
    position: relative;
    padding: 60px 0;
    background: #f5f7fa;
    /* bottom color */
    z-index: 1;
}

.tp-testimonial-area-group::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-image: url(../img/awards/grid-shape.png);
    background-color: var(--tp-common-black);
    z-index: -1;
}

.tp-breadcrumb-area {
    position: relative;
    /* padding: 80px 0 0; */
}

.tp-breadcrumb-thumb img {
    height: 350px;
    /* adjust height */
    object-fit: cover;
}

/* Dark overlay */
.tp-breadcrumb-area::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/* Title positioning */
.tp-breadcrumb-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.tp-breadcrumb-title {
    color: #fff;
    font-size: 60px;
    font-weight: 700;
    /* margin: 120px 0 0; */
    text-transform: capitalize;
}

.infra-img {
    overflow: hidden;
    border-radius: 10px;
}

.infra-img img {
    width: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.infra-img:hover img {
    transform: scale(1.05);
}

.infra-list ul {
    padding-left: 18px;
}

.infra-list ul li {
    margin-bottom: 8px;
    color: #252525;
}

.lab-gallery-section {
    text-align: center;
}

.lab-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 35px;
}

.lab-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin: 0 auto;
}

.lab-card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eee;
    transition: 0.3s;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.lab-grid p {
    padding: 0 15px;
}

.lab-card img {
    width: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.lab-card h4 {
    padding: 18px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
}

.lab-card:hover {
    transform: translateY(-6px);
}

.lab-card:hover img {
    transform: scale(1.05);
}

/* Overlay */
.tp-breadcrumb-area {
    position: relative;
}

.tp-breadcrumb-area::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 50%);
    z-index: 1;
}

/* Content above overlay */
.tp-breadcrumb-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* Breadcrumb style */
.breadcrumb {
    background: transparent;
}

.breadcrumb li,
.breadcrumb a {
    color: #fff;
    font-size: 14px;
}

/* Title */
.tp-breadcrumb-title {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "\f105";
    /* fa-angle-right */
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    /* solid style */
    color: #fff;
    padding: 0 8px;
}

.breadcrumb-item.active {
    color: #fecc03;
}

.section-padding {
    padding: 60px 0;
}

.campus-faq .accordion-button {
    background-color: #0b3d91;
    /* dark blue */
    color: #fff;
    font-weight: 600;
}

/* Active (opened) state */
.campus-faq .accordion-button:not(.collapsed) {
    background-color: #072c6b;
    /* darker blue */
    color: #fff;
}

/* Remove default Bootstrap shadow */
.campus-faq .accordion-button:focus {
    box-shadow: none;
}

.campus-faq .accordion-button::after {
    filter: brightness(0) invert(1);
}

.campus-faq .accordion-button:hover {
    background-color: #0a357f;
}

/* Image */
.campus-img img {
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.leader-img img {
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.leader-content h5 {
    font-size: 16px;
    color: #0b3d91;
    font-weight: 600;
}

.leader-content h4 {
    font-weight: 600;
    margin-bottom: 5px;
}

.designation {
    display: block;
    font-size: 14px;
    color: #252525;
    margin-bottom: 15px;
}

.leader-content p {
    font-size: 16px;
    color: #252525;
    line-height: 1.8;
    margin-bottom: 12px;
    text-align: justify;
}

/* COMMON ROW CLASS */
.acc-row {
    padding: 70px 50px;
    border-radius: 14px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: 0.3s;
}

/* HOVER EFFECT */
.acc-row:hover {
    transform: translateY(-5px);
}

/* BACKGROUND COLORS */
.acc-bg-1 {
    background: #0b3d91;
    color: #fff;
}

.acc-bg-2 {
    background: #003049;
    color: #fff;
}

.acc-bg-3 {
    background: #045857;
    color: #fff;
}

.acc-bg-4 {
    background: #021f78;
    color: #fff;
}

.acc-bg-5 {
    background: #0c4e82;
    color: #fff;
}

/* TEXT COLOR FIX */
.acc-row h4,
.acc-row p {
    color: #fff;
}

/* IMAGE STYLE */
.accreditation-section .leader-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 10px;
}

/* OPTIONAL LEFT BORDER EFFECT */
.acc-row::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .acc-row {
        padding: 30px 20px;
    }
}

.about-row-light {
    background: #f8f9fc;
    border-radius: 10px;
}

.about-row-dark {
    background: #0b2c5f;
    color: #fff;
    border-radius: 10px;
}

.about-row-dark p {
    color: #d6e0ff;
}

.vm-row-light {
    background: #f8f9fc;
    border-radius: 10px;
}

.vm-row-dark {
    background: #0b2c5f;
    color: #fff;
    border-radius: 10px;
}

.vm-row-dark p {
    color: #d6e0ff;
}

.value-box {
    background: #ffffff;
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: 0.3s;
    border: 1px solid #eee;
}

.value-box:hover {
    background: #0b2c5f;
    color: #fff;
}

.tp-row-light {
    background: #f8f9fc;
    border-radius: 10px;
}

.tp-row-dark {
    background: #0b2c5f;
    color: #fff;
    border-radius: 10px;
}

.tp-row-dark p,
.tp-row-dark li {
    color: #0b2c5f;
}

.placement-box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #eee;
    transition: 0.3s;
}

.placement-box h3 {
    color: #0b2c5f;
    font-weight: 700;
}

.placement-box:hover {
    background: #0b2c5f;
    color: #fff;
}

.placement-box:hover h3 {
    color: #fff;
}

.placement-box:hover p {
    color: #fff;
}

.placement-list {
    padding-left: 20px;
}

.tp-row-dark .placement-list li {
    margin-bottom: 8px;
    color: #fff;
}

.committee-card,
.admission-box {
    background: #f4f6fb;
    padding: 25px;
    border-radius: 10px;
    height: 100%;
    transition: 0.3s;
}

.committee-card:hover,
.admission-box:hover {
    background: #0b2c5f;
    color: #fff;
}

.committee-card h5,
.admission-box h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.committee-card p,
.admission-box p {
    font-size: 14px;
    color: #555;
}

.committee-card:hover h5 {
    color: #ddd;
}

.committee-card:hover p,
.admission-box:hover p {
    color: #ddd;
}

.research-tabs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tab-btn {
    background: #f4f6fb;
    border: none;
    padding: 12px 15px;
    text-align: left;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s;
}

.tab-btn.active,
.tab-btn:hover {
    background: #0b2c5f;
    color: #fff;
}

.research-content-box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.research-img img {
    width: 100%;
    border-radius: 10px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content ul {
    padding-left: 18px;
}

.tab-content li {
    margin-bottom: 8px;
}

.mou-img img {
    width: 100%;
    border-radius: 10px;
}

.mou-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.mou-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f4f6fb;
    padding: 10px 12px;
    border-radius: 6px;
    transition: 0.3s;
}

.mou-item i {
    color: #0b2c5f;
    font-size: 16px;
}

.mou-item:hover {
    background: #0b2c5f;
    color: #fff;
}

.mou-item:hover i {
    color: #fff;
}

.exam-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.exam-step {
    flex: 1 1 calc(50% - 20px);
    background: #fff;
    padding: 25px;
    border-left: 5px solid #0b2c5f;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.exam-step:hover {
    transform: translateY(-5px);
}

.exam-step h4 {
    margin-bottom: 10px;
}

/* SECTION BACKGROUND */
.support-area {
    background: #ffffff;
    padding: 60px 0;
}

/* CARD STYLE WITH GRADIENT */
.support-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: linear-gradient(135deg, #0c4e82, #09345a);
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 15px 0 0;
}

/* TEXT COLOR (important for dark bg) */
.support-item span {
    color: #ffffff;
    font-weight: 500;
}

/* ICON STYLE */
.support-item i {
    font-size: 18px;
    color: #fecc03;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 50%;
    transition: 0.3s;
}

/* HOVER EFFECT */
.support-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* ICON HOVER */
.support-item:hover i {
    background: #fecc03;
    color: #0c4e82;
    transform: scale(1.1) rotate(10deg);
}

.support-item {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pattern-bg {
    background-color: #f4f8fc;
    position: relative;
    overflow: hidden;
}

.pattern-bg::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#cfdff3 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: 0.6;
    top: 0;
    left: 0;
}

/* Keep content above pattern */
.pattern-bg .container {
    position: relative;
    z-index: 2;
}

.support-img img {
    width: 100%;
    border-radius: 10px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* HOVER EFFECT */
.support-img img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.pattern-light-grid {
    background-color: #f4f8fc;
    background-image:
        linear-gradient(#e1ecf7 1px, transparent 1px),
        linear-gradient(90deg, #e1ecf7 1px, transparent 1px);
    background-size: 25px 25px;
}

.pattern-zigzag {
    background-color: #f4f8fc;
    position: relative;
}

.pattern-zigzag::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(135deg,
            rgba(12, 78, 130, 0.05) 0px,
            rgba(12, 78, 130, 0.05) 2px,
            transparent 2px,
            transparent 12px);
    opacity: 0.6;
    top: 0;
    left: 0;
}

.pattern-zigzag .container {
    position: relative;
    z-index: 2;
}

.pattern-bubbles {
    background: #f4f8fc;
    position: relative;
    overflow: hidden;
}

/* BUBBLES */
.pattern-bubbles::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(12, 78, 130, 0.08) 40px, transparent 41px),
        radial-gradient(circle at 70% 60%, rgba(254, 204, 3, 0.08) 60px, transparent 61px),
        radial-gradient(circle at 40% 80%, rgba(12, 78, 130, 0.06) 30px, transparent 31px),
        radial-gradient(circle at 80% 20%, rgba(254, 204, 3, 0.06) 50px, transparent 51px);
    top: 0;
    left: 0;
}

/* Keep content above */
.pattern-bubbles .container {
    position: relative;
    z-index: 2;
}

/* SECTION BACKGROUND */
.pattern-bubbles-light {
    background: #f7fbff;
    position: relative;
    overflow: hidden;
}

.pattern-bubbles-light::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(12, 78, 130, 0.08) 40px, transparent 41px),
        radial-gradient(circle at 70% 60%, rgba(254, 204, 3, 0.08) 60px, transparent 61px),
        radial-gradient(circle at 40% 80%, rgba(12, 78, 130, 0.06) 30px, transparent 31px);
    top: 0;
    left: 0;
}

/* CONTENT ABOVE BG */
.pattern-bubbles-light .container {
    position: relative;
    z-index: 2;
}

/* IMAGE */
.scholarship-img img {
    width: 100%;
    border-radius: 12px;
    transition: 0.4s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.scholarship-img img:hover {
    transform: scale(1.05);
}

/* TITLE */
.scholarship-title {
    font-size: 28px;
    font-weight: 700;
    color: #0c4e82;
}

/* TEXT */
.scholarship-text {
    color: #555;
    line-height: 1.7;
}

/* SUB TITLE */
.scholarship-sub {
    font-size: 18px;
    font-weight: 600;
    color: #0c4e82;
}

/* POINTS GRID */
.scholarship-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 10px;
}

/* ITEMS */
.scholarship-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #ffffff;
    border-radius: 8px;
    transition: 0.3s;
}

.scholarship-item i {
    color: #fecc03;
}

.scholarship-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/* BACKGROUND */
.pattern-bubbles-light {
    background: #f7fbff;
    position: relative;
    overflow: hidden;
}

.pattern-bubbles-light::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(12, 78, 130, 0.08) 40px, transparent 41px),
        radial-gradient(circle at 70% 60%, rgba(254, 204, 3, 0.08) 60px, transparent 61px);
}

.pattern-bubbles-light .container {
    position: relative;
    z-index: 2;
}

/* CARD */
.bp-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* HOVER EFFECT */
.bp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* IMAGE */
.bp-img img {
    width: 100%;
    border-radius: 12px;
    transition: 0.4s;
}

.bp-img img:hover {
    transform: scale(1.05);
}

/* TITLE */
.bp-title {
    font-size: 24px;
    font-weight: 700;
    color: #0c4e82;
    margin-bottom: 15px;
}

/* SUB TITLE */
.bp-sub {
    font-size: 18px;
    font-weight: 600;
    color: #fecc03;
    margin-top: 15px;
}

/* LIST */
.bp-list {
    padding-left: 18px;
}

.bp-list li {
    margin-bottom: 8px;
    color: #555;
    position: relative;
}

/* ANIMATION */
.bp-card {
    animation: fadeUp 0.8s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FULL CARD */
.bp-full-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 14px;
    border: 1px solid #e6edf5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: 0.4s;
}

/* HOVER EFFECT */
.bp-full-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* TITLE */
.bp-title {
    font-size: 18px;
    color: #fecc03;
    font-weight: 600;
    margin-bottom: 10px;
}

/* MAIN TITLE */
.bp-main {
    font-size: 24px;
    font-weight: 700;
    color: #0c4e82;
    margin-bottom: 10px;
}

/* DESC */
.bp-desc {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
    font-style: italic;
}

/* SUB TITLES */
.bp-sub {
    font-size: 17px;
    font-weight: 600;
    color: #0c4e82;
    margin-top: 20px;
    margin-bottom: 8px;
    position: relative;
}

/* SMALL TITLE */
.bp-mini {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-top: 10px;
}

/* TEXT */
.bp-text {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

/* LIST */
.bp-list {
    padding-left: 18px;
}

.bp-list li {
    font-size: 14px;
    margin-bottom: 6px;
    color: #444;
}

/* OPTIONAL LEFT BORDER ACCENT */
.bp-full-card {
    border-left: 4px solid #fecc03;
}

.bp-grid-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

@media (max-width: 992px) {
    .bp-grid-wrap {
        grid-template-columns: 1fr;
    }
}

.calendar-wrapper {
    background: #f9fbff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    animation: fadeIn 0.8s ease-in-out;
}

.cal-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
}

.cal-sub {
    text-align: center;
    margin-bottom: 20px;
    color: #777;
}

.cal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.cal-table {
    border-collapse: collapse;
    /* important */
}

.cal-table th {
    background: #4e73df;
    color: #fff;
    padding: 12px;
    text-transform: uppercase;
    border: 1px solid #ffffff;
    /* white border */
}

.cal-table,
.cal-table th,
.cal-table td {
    border: 1px solid #dbe2ef;
}

.cal-table th:first-child {
    text-align: center;
}

.cal-table td:first-child {
    text-align: center;
}

.cal-table td {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

/* Row Types */
.classwork {
    background: #ffffff;
}

.holiday {
    background: #ffe5d0;
}

.exam {
    background: #d9f2e6;
}

.event {
    background: #e8ecff;
}

/* Hover Effect */
.cal-table tbody tr:hover {
    background: #f1f5ff;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Smooth animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 10px;
}

/* Optional: scrollbar styling */
.table-responsive::-webkit-scrollbar {
    height: 6px;
}

.table-responsive::-webkit-scrollbar-thumb {
    background: #4e73df;
    border-radius: 10px;
}

/* Keep table proper width */
.cal-table {
    min-width: 700px;
    /* prevents breaking */
}

@media (max-width: 768px) {

    .cal-table th,
    .cal-table td {
        padding: 8px;
        font-size: 12px;
        white-space: nowrap;
        /* prevent text break */
    }
}

.programme-card {
    background: #fff;
    border: 1px solid #e3e6f0;
    border-radius: 12px;
    padding: 20px;

    /* Shadow */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

    /* Smooth animation */
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Hover Effect */
.programme-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    border-color: #4e73df;
}

/* Optional: Glow line animation */
.programme-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #4e73df, transparent);
    transition: 0.5s;
}

.programme-card:hover::before {
    left: 100%;
}

.programme-card h4 {
    margin: 15px 0;
}

.egov-section {
    padding: 70px 20px;
    background: linear-gradient(135deg, #eef2ff, #f8f9fc);
}

/* CARD */
.egov-card {
    max-width: 1200px;
    margin: auto;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    overflow: hidden;
    position: relative;

    border: 1px solid rgba(255, 255, 255, 0.4);

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

/* GRADIENT BORDER EFFECT */
.egov-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 1px;
    background: linear-gradient(120deg, #4e73df, #00c6ff, #4e73df);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* HOVER */
.egov-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* IMAGE */
.egov-img {
    height: 320px;
    overflow: hidden;
    position: relative;
}

.egov-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

/* IMAGE OVERLAY */
.egov-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

/* IMAGE HOVER ZOOM */
.egov-card:hover .egov-img img {
    transform: scale(1.1) rotate(1deg);
}

/* CONTENT */
.egov-content {
    padding: 35px;
}

/* TITLE */
.egov-title {
    font-size: 30px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
}

/* TITLE UNDERLINE ANIMATION */
.egov-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #4e73df;
    position: absolute;
    left: 0;
    bottom: -8px;
    transition: 0.4s;
}

.egov-card:hover .egov-title::after {
    width: 120px;
}

/* HEADINGS */
.egov-content h4 {
    margin-top: 28px;
    font-weight: 600;
    position: relative;
    padding-left: 18px;
}

/* LEFT BORDER ACCENT */
.egov-content h4::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    height: 70%;
    width: 4px;
    background: #4e73df;
    border-radius: 2px;
    display: none;
}

/* TEXT */
.egov-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
    transition: 0.3s;
}

/* LIST */
.egov-content ul {
    padding-left: 20px;
}

.egov-content ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 18px;
    transition: 0.3s;
    list-style: none;
}

/* CUSTOM BULLET */
.egov-content ul li::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #4e73df;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
    transition: 0.3s;
}

/* LIST HOVER EFFECT */
.egov-content ul li:hover {
    transform: translateX(5px);
    color: #022b57;
}

.egov-content ul li:hover::before {
    background: #00c6ff;
}

/* FADE IN ANIMATION */
.egov-card {
    animation: fadeUp 0.8s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .egov-img {
        height: 220px;
    }

    .egov-title {
        font-size: 24px;
    }

    .egov-content {
        padding: 20px;
    }
}

.md-section {
    padding: 60px 20px;
    background: #f4f7ff;
}

.md-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: center;
}

/* CONTENT */
.md-content {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    position: relative;
    transition: 0.4s ease;
}

.md-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.md-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.md-title::after {
    content: '';
    width: 60px;
    height: 3px;
    background: #0b355c;
    display: block;
    margin-top: 8px;
    border-radius: 5px;
}

.md-content p {
    color: #555;
    margin-bottom: 15px;
}

/* IMAGE */
.md-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.md-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: 0.5s ease;
}

/* IMAGE HOVER EFFECT */
.md-image:hover img {
    transform: scale(1.08);
}

/* DECORATION */
.md-image::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 100%;
    height: 100%;
    border: 2px solid #4e73df;
    border-radius: 12px;
    z-index: -1;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .md-container {
        grid-template-columns: 1fr;
    }

    .md-image {
        order: -1;
    }
}

.inst-modern {
    padding: 60px 0;
    color: #fff;
}

/* Heading */
.inst-heading {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

/* Wrapper Timeline */
.inst-wrapper {
    position: relative;
    padding-left: 30px;
}

/* Vertical Line */
.inst-wrapper::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, #4e73df, #00c6ff);
}

/* Each Item */
.inst-item {
    position: relative;
    margin-bottom: 30px;
    padding: 20px 25px;
    background: rgb(12 78 130);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    transition: 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Dot */
.inst-item::before {
    content: "";
    position: absolute;
    left: -26px;
    top: 20px;
    width: 14px;
    height: 14px;
    background: #00c6ff;
    border-radius: 50%;
    box-shadow: 0 0 10px #00c6ff;
}

/* Hover Effect */
.inst-item:hover {
    transform: translateX(10px) scale(1.02);
    background: rgb(3 48 83);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Titles */
.inst-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
}

/* Text */
.inst-item p {
    font-size: 14px;
    line-height: 1.7;
    color: #e0e0e0;
}

/* List */
.inst-item ul {
    padding-left: 18px;
}

.inst-item ul li {
    font-size: 14px;
    margin-bottom: 5px;
    color: #ddd;
}

/* Animation */
.inst-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s forwards;
}

.inst-item:nth-child(2) {
    animation-delay: 0.2s;
}

.inst-item:nth-child(3) {
    animation-delay: 0.4s;
}

.inst-item:nth-child(4) {
    animation-delay: 0.6s;
}

.inst-item:nth-child(5) {
    animation-delay: 0.8s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-boxarea {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-boxarea:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-boxarea h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-boxarea a {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    display: block;
}

.input-area input,
.input-area textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: 0.3s;
}

.input-area input:focus,
.input-area textarea:focus {
    border-color: #4e73df;
    outline: none;
    box-shadow: 0 0 8px rgba(78, 115, 223, 0.2);
}

.header-btn1 {
    background: #4e73df;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    border: none;
    transition: 0.3s;
}

.header-btn1:hover {
    background: #2e59d9;
    transform: scale(1.05);
}

.contact-section {
    padding: 60px 0;
    background: #f8f9fc;
}

/* LEFT BOX */
.contact-info-box {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
}

.contact-info-box:hover {
    transform: translateY(-8px);
}

.contact-info-box h2 {
    font-weight: 700;
    margin-bottom: 10px;
}

.sub-text {
    color: #666;
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
}

.info-item:last-child {
    margin-bottom: 0px;
}

.info-item i {
    width: 35px;
    height: 35px;
    background: #0c4e82;
    color: #fff;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    margin-right: 10px;
}

.info-item a {
    color: #333;
    text-decoration: none;
}

.info-item a:hover {
    color: #4e73df;
}

/* RIGHT FORM */
.contact-form-box {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
}

.contact-form-box:hover {
    transform: translateY(-8px);
}

.contact-form-box h3 {
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: 0.3s;
}

.checkbox-area input {
    margin-bottom: 0;
}

.contact-form-box input:focus,
.contact-form-box select:focus,
.contact-form-box textarea:focus {
    border-color: #4e73df;
    outline: none;
    box-shadow: 0 0 8px rgba(78, 115, 223, 0.2);
}

.contact-form-box textarea {
    height: 120px;
}

/* CHECKBOX */
.checkbox-area {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

/* BUTTON */
.btn-submit {
    width: 100%;
    padding: 14px;
    border: none;
    background: #0c4e82;
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #2e59d9;
    transform: scale(1.03);
}

/* MAP */
.contact-map iframe {
    width: 100%;
    border-radius: 0;
}

.fee-content {
    max-width: 1100px;
    margin: 50px auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    font-family: 'Poppins', sans-serif;
}

/* Headings */
.fee-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #222;
    font-weight: 700;
}

.fee-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-left: 12px;
    border-left: 4px solid #0c4e82;
    color: #0c4e82;
}

/* Paragraph */
.fee-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
}

/* List */
.fee-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.fee-content ul li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #444;
    position: relative;
}

/* Table */
.fee-content table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.fee-content th {
    background: #0c4e82;
    color: #fff;
    padding: 12px;
    text-align: left;
    font-weight: 600;
}

.fee-content td {
    padding: 10px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.fee-content tr:hover {
    background: #f5f9ff;
}

/* Checkbox */
.fee-content label {
    font-size: 14px;
    color: #333;
}

.fee-content input[type="checkbox"] {
    margin-right: 8px;
    transform: scale(1.2);
}

/* Button */
.fee-content .button {
    background: linear-gradient(135deg, #0c4e82, #0c4e82);
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.fee-content .button:hover {
    background: linear-gradient(135deg, #0c4e82, #003d80);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .fee-content {
        padding: 20px;
    }

    .fee-content h2 {
        font-size: 24px;
    }

    .fee-content h3 {
        font-size: 18px;
    }
}

.naac-section {
    background: #f4f7fb;
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
}

.naac-container {
    max-width: 1100px;
    margin: auto;
}

.naac-card {
    background: #fff;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.4s;
    animation: fadeUp 0.8s ease;
}

/* Hover Effect */
.naac-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Title */
.naac-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
    position: relative;
}

.naac-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #0c4e82;
    display: block;
    margin-top: 8px;
}

/* Paragraph */
.naac-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
    transition: 0.3s;
}

/* Highlight hover */
.naac-card p:hover {
    color: #022b57;
}

/* List */
.naac-list {
    margin-top: 20px;
    padding-left: 0;
}

.naac-list li {
    list-style: none;
    background: #f8fbff;
    padding: 12px 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    border-left: 4px solid #0c4e82;
    transition: 0.3s;
}

/* List hover animation */
.naac-list li:hover {
    background: #0c4e82;
    color: #fff;
    transform: translateX(8px);
}

/* Button */
.naac-btn {
    display: inline-block;
    margin-top: 25px;
    color: #0c4e82;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

/* Underline effect */
.naac-btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 2px;
    background: #0c4e82;
    transition: 0.3s ease;
}

/* Hover effect */
.naac-btn:hover::after {
    width: 100%;
}

.naac-btn:hover {
    color: #003d80;
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width:768px) {
    .naac-card {
        padding: 20px;
    }

    .naac-title {
        font-size: 24px;
    }
}

/* Section Background Light Effect */
.iqac-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fbff, #eef5ff);
    position: relative;
    overflow: hidden;
}

/* Soft Glow Effect */
.iqac-section::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(12, 78, 130, 0.08);
    top: -100px;
    left: -100px;
    border-radius: 50%;
    filter: blur(100px);
}

/* Title */
.iqac-title {
    font-size: 36px;
    font-weight: 700;
    color: #0c4e82;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

/* Underline Animation */
.iqac-title::after {
    content: "";
    width: 60%;
    height: 3px;
    background: #0c4e82;
    position: absolute;
    left: 0;
    bottom: -8px;
    transition: 0.4s;
}

.iqac-title:hover::after {
    width: 100%;
}

/* Paragraph */
.iqac-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
    transition: 0.3s;
}

/* Hover Effect */
.iqac-section p:hover {
    color: #0c4e82;
}

/* Sub Titles */
.iqac-section h3 {
    font-size: 22px;
    margin-top: 30px;
    color: #0c4e82;
    position: relative;
}

/* List Style */
.iqac-list {
    padding-left: 0;
    list-style: none;
}

/* List Items */
.iqac-list li {
    background: #ffffff;
    margin-bottom: 12px;
    padding: 12px 18px;
    border-radius: 8px;
    border-left: 4px solid #0c4e82;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    position: relative;
}

/* Hover Animation */
.iqac-list li:hover {
    transform: translateX(8px);
    background: #f0f7ff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Smooth Fade Animation */
.iqac-section {
    animation: fadeInUp 1s ease-in-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Background */
.gallery-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fbff, #eef5ff);
    position: relative;
    overflow: hidden;
}

/* 🔵 Small Bubble Animation */
.gallery-section::before,
.gallery-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(12, 78, 130, 0.08);
    animation: bubbleMove 10s infinite linear;
}

/* Small Bubble 1 */
.gallery-section::before {
    width: 60px;
    height: 60px;
    left: 15%;
    bottom: -30px;
}

/* Small Bubble 2 */
.gallery-section::after {
    width: 90px;
    height: 90px;
    right: 20%;
    bottom: -40px;
    animation-duration: 14s;
}

/* Animation */
@keyframes bubbleMove {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-300px);
    }
}

/* Card */
.gallery-card {
    display: block;
    background-image: url(../img/awards/grid-shape.png);
    background-color: var(--tp-common-black);
    padding: 25px;
    border-radius: 16px;
    text-decoration: none;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;

    box-shadow: 0 10px 30px rgba(12, 78, 130, 0.3);
    transition: 0.4s ease;
}

/* Hover */
.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.gallery-card img {
    border-radius: 5px;
}

.gallery-content {
    text-align: center;
    margin: 15px 0 0;
}

/* Content */
.gallery-content h3 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

/* ✨ Underline Effect */
.gallery-content h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50%;
    height: 2px;
    background: #ffffff;
    transition: 0.4s;
}

/* Underline Hover Expand */
.gallery-card:hover h3::after {
    width: 100%;
}

/* Text */
.gallery-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* Hover Text */
.gallery-card:hover p {
    color: #ffffff;
}

/* Card Base */
.gallery-card-new {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    text-align: center;
    margin-bottom: 25px;
}

/* Image */
.gallery-img-wrap {
    overflow: hidden;
}

.gallery-img-wrap img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

/* Text */
.gallery-text {
    padding: 20px;
}

.gallery-text h3 {
    font-size: 20px;
    color: #0c4e82;
    /* Dark Blue */
    margin-bottom: 8px;
    transition: 0.3s;
}

.gallery-text p {
    color: #0c4e82;
    text-decoration: underline;
}

/* Hover Effects */
.gallery-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-card-new:hover img {
    transform: scale(1.08);
}

/* Underline Animation */
.gallery-text h3::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: #0c4e82;
    transition: 0.4s;
    margin: auto;
}

.gallery-card-new:hover .gallery-text h3::after {
    width: 50px;
    text-align: center;
}

/* Slider Container */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* margin: 160px 0 0; */
}

/* Track */
.hero-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
    height: 100%;
}

/* Slide */
.hero-slide {
    min-width: 100%;
    height: 100%;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Arrows */
.hero-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(12 78 130);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    font-size: 20px;
    z-index: 10;
}

.hero-btn.prev {
    left: 10px;
}

.hero-btn.next {
    right: 10px;
}

.hero-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Dots */
.hero-dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
    display: none;
}

.hero-dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 5px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.hero-dots .active {
    background: #fff;
}

.custom-btn {
    background-color: #fecc03;
    color: #022b57;
    border: 2px solid #fecc03;
    transition: all 0.3s ease;
    font-size: 14px;
}

/* Hover Effect */
.custom-btn:hover {
    background-color: #fff;
    color: #022b57;
    border-color: #fecc03;
    transition: all 0.3s ease;
}

/* Arrow color change on hover */
.custom-btn:hover svg path {
    stroke: #022b57;
}

.iqac-btn {
    background-color: #fecc03;
    color: #252525;
    transition: all 0.3s ease;
}

/* Hover Effect */
.iqac-btn:hover {
    background-color: #fff;
    color: #022b57;
}

.hero-slide {
    width: 100%;
    flex-shrink: 0;
}

.hero-track {
    display: flex;
}

.hero-slider {
    overflow: hidden;
    position: relative;
}

.hero-track {
    display: flex;
    will-change: transform;
    /* performance boost */
}

.hero-slide {
    min-width: 100%;
}

.hero-slide img {
    width: 100%;
    display: block;
}

/* .home-page-chat .npf_chatbots.active {
    transform: translateY(-35%);
}
.home-page-chat .indicator {
    bottom: 210px;
}
.home-page-chat #__eechatIcon {
    bottom: 210px;
} */

.blink-btn {
    background: #ffcc00;
    color: #252525 !important;
    font-weight: 600;
    animation: yellowBlink 1s infinite;
    transition: 0.3s;
}

@keyframes yellowBlink {
    0% {
        background-color: #ffcc00;
    }
    50% {
        background-color: #ffd633;
    }
    100% {
        background-color: #ffcc00;
    }
}
.header-grid-area {
    display: grid;
    grid-template-columns: 330px 1fr 190px;
    align-items: center;
    gap: 20px;
}


@media (max-width: 1199px) {
    .header-grid-area {
        grid-template-columns: 1fr auto;
    }

    .header-menu {
        display: none;
    }
}

/* Mobile Responsive */
@media (min-width: 1600px) and (max-width: 1900px) {

    .tp-main-menu nav>ul>li>a {
        font-size: 15px;
    }
}

@media (max-width: 1400.98px) {

    .menu-btn-item {
        padding: 4px 10px;
        font-size: 12px;
    }

    /* .hero-slider {
        margin: 135px 0 0;
    } */
}

/* 2000px */
@media only screen and (max-width: 2000px) {
    .header-grid-area {
        grid-template-columns: 290px 1fr 260px;
    }
}

/* 1900px */
@media only screen and (max-width: 1900px) {
    .header-grid-area {
        grid-template-columns: 200px 1fr 250px;
    }
}

/* 1800px */
@media only screen and (max-width: 1800px) {
    .header-grid-area {
        grid-template-columns: 200px 1fr 240px;
    }
}

/* 1750px */
@media only screen and (max-width: 1750px) {
    .header-grid-area {
        grid-template-columns: 265px 1fr 235px;
    }
}

/* 1700px */
@media only screen and (max-width: 1700px) {
    .header-grid-area {
        grid-template-columns: 250px 1fr 230px;
    }
}

/* 1650px */
@media only screen and (max-width: 1650px) {
    .header-grid-area {
        grid-template-columns: 254px 1fr 225px;
    }
}

/* 1600px */
@media only screen and (max-width: 1600px) {
    .header-grid-area {
        grid-template-columns: 250px 1fr 220px;
    }
}

/* 1550px */
@media only screen and (max-width: 1550px) {
    .header-grid-area {
        grid-template-columns: 300px 1fr 215px;
    }
}

/* 1500px */
@media only screen and (max-width: 1500px) {
    .header-grid-area {
        grid-template-columns: 240px 1fr 210px;
    }
}

/* 1450px */
@media only screen and (max-width: 1450px) {
    .header-grid-area {
        grid-template-columns: 235px 1fr 205px;
    }
}

/* 1400px */
@media only screen and (max-width: 1400px) {
    .header-grid-area {
        grid-template-columns: 230px 1fr 200px;
    }
}

/* 1350px */
@media only screen and (max-width: 1350px) {
    .header-grid-area {
        grid-template-columns: 200px 1fr 195px;
    }
}

/* 1300px */
@media only screen and (max-width: 1300px) {
    .header-grid-area {
        grid-template-columns: 200px 1fr 190px;
    }
}

/* 1250px */
@media only screen and (max-width: 1250px) {
    .header-grid-area {
        grid-template-columns: 215px 1fr 185px;
    }
}

/* 1200px */
@media only screen and (max-width: 1200px) {
    .header-grid-area {
        grid-template-columns: 210px 1fr 180px;
    }
}

@media (max-width: 768px) {

    .hero-btn {
        font-size: 16px;
        padding: 8px 10px;
    }
}

@media (max-width: 991.98px) {

    /* .hero-slider {
        margin: 100px 0 0;
    } */
    .tp-breadcrumb-thumb img {
        height: 300px;
    }
}

@media (max-width: 767.98px) {

    /* .hero-slider {
        margin: 95px 0 0;
    } */
    .hero-btn {
        display: none;
    }

    .tp-breadcrumb-thumb img {
        height: 250px;
    }
}

@media (max-width: 575.98px) {

    /* .hero-slider {
        margin: 70px 0 0;
    } */
    .tp-breadcrumb-thumb img {
        height: 200px;
    }
}