body {
    margin: 0;
    padding: 0;
    background: #fff;
    font-family: "Montserrat", sans-serif;
}

/* site-color-chnage */

:root {
    --main-color: #285690;
}

.gps-navbar {
    background: linear-gradient(135deg, var(--main-color, #285690) 0%, rgba(0, 0, 0, 0.25) 100%), var(--main-color, #285690) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.nav-link {
    color: #fff !important;
}

.gps-gallery-btn {
    background: var(--main-color);
    color: #fff;
    padding: 8px 15px;
    text-decoration: none;
}

.color-box {
    width: 19px;
    height: 19px;
    display: inline-block;
    border-radius: 50%;
    cursor: pointer;
    /* margin-left: 5px; */
    border-radius: 0px;
}


/* top-header */

.top-header {
    border-top: 2px solid #222;
    border-bottom: 1px solid #ddd;
    background: #f8f8f8;
    padding: 0px 0;
}

.logo-img {
    width: 110px;
    height: 110px;
    object-fit: contain;
}

.college-title {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--main-color);
    line-height: 1;
}

.college-subtitle {
    color: blue;
    font-size: 14px;
    margin-top: 12px;
}

.right-top {
    text-align: right;
    font-size: 15px;
    color: #444;
}

.font-btn {
    background: #333;
    color: #fff;
    border: none;
    width: 28px;
    height: 28px;
    font-weight: bold;
    margin-left: 2px;
}

/* .color-box {
    width: 35px;
    height: 28px;
    display: inline-block;
    margin-left: -4px;
} */

.nav-links {
    /* margin-top: 40px; */
    font-size: 20px;
}

.nav-links a {
    font-size: 13px;
    text-decoration: none;
    color: #1d4d89;
    font-weight: 500;
    margin: 0 8px;
}

.tree-img {
    width: 50px;
    margin-left: 15px;
}

/* nav */
/* nav */
.gps-navbar {
    background: var(--main-color, #083c76);
    padding: 0;
    width: 100%;
    position: relative;
    z-index: 9999;
}

.gps-navbar .navbar-nav {
    gap: 4px;
}

.gps-navbar .nav-link {
    color: #ffffff !important;
    font-size: 13.5px;
    font-weight: 600;
    padding: 16px 14px !important;
    transition: all 0.25s ease;
    white-space: nowrap;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.gps-navbar .nav-link:hover,
.gps-navbar .nav-item.dropdown:hover > .nav-link,
.gps-navbar .nav-link.show {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
}

.gps-navbar .dropdown-toggle::after {
    display: inline-block;
    margin-left: 6px;
    vertical-align: middle;
    content: "";
    border-top: 5px solid;
    border-right: 4px solid transparent;
    border-bottom: 0;
    border-left: 4px solid transparent;
    transition: transform 0.2s ease;
}

.gps-navbar .nav-item.dropdown:hover > .dropdown-toggle::after {
    transform: rotate(180deg);
}

.gps-navbar .navbar-toggler {
    border: none;
    box-shadow: none !important;
    padding: 8px 12px;
}

/* Dropdown Menu Styling */
.gps-navbar .dropdown-menu {
    border: none;
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    padding: 8px 0;
    margin-top: 0;
    background-color: #ffffff;
    min-width: 230px;
    z-index: 999999 !important;
}

.gps-navbar .dropdown-item {
    color: #334155 !important;
    padding: 9px 18px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    transition: all 0.2s ease !important;
    border-bottom: 1px solid #f1f5f9;
}

.gps-navbar .dropdown-item:last-child {
    border-bottom: none;
}

.gps-navbar .dropdown-item:hover,
.gps-navbar .dropdown-item:focus {
    background-color: rgba(8, 60, 118, 0.08) !important;
    color: var(--main-color, #083c76) !important;
    padding-left: 24px !important;
}

/* Desktop Hover Interaction (Screen width >= 992px) */
@media (min-width: 992px) {
    .gps-navbar .nav-item.dropdown {
        position: relative;
    }
    
    .gps-navbar .nav-item.dropdown:hover > .dropdown-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        animation: navDropdownFade 0.25s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    }
    
    .gps-navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(12px);
        transition: all 0.2s ease-in-out;
    }

    @keyframes navDropdownFade {
        from {
            opacity: 0;
            transform: translateY(12px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Mobile Responsiveness */
@media (max-width: 991.98px) {
    .gps-navbar .navbar-collapse {
        background: var(--main-color, #083c76);
        padding: 15px;
        border-radius: 8px;
        margin-top: 8px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }
    
    .gps-navbar .dropdown-menu {
        background-color: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin: 5px 0 10px 0;
        box-shadow: none;
    }

    .gps-navbar .dropdown-item {
        color: rgba(255, 255, 255, 0.9) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .gps-navbar .dropdown-item:hover {
        background-color: rgba(255, 255, 255, 0.15) !important;
        color: #ffffff !important;
    }
}



/* LEFT SLIDER — Fixed height so uploaded images never resize the section */
.gps-hero-section .col-lg-8 {
    display: flex;
    flex-direction: column;
    height: 520px;
    /* Fixed! Change this one number to resize the whole slider */
}

.gps-slider-area {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
    flex: 1;
}

.gps-slider-area .carousel-inner,
.gps-slider-area .carousel-item {
    height: 100%;
}

.gps-slider-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Always fills the fixed area, crops if needed */
    object-position: center;
    /* Keeps the center of the image visible */
    display: block;
}

/* Premium custom 4-slice 3D Alternating Shutter Lock with Solid Fade Overlay */
.gps-slider-area {
    perspective: 1600px;
    transform-style: preserve-3d;
}

.gps-slider-area .carousel-inner,
.gps-slider-area .carousel-item {
    height: 100%;
    background: #000;
    /* Pure black background completely eliminates any blue flash during slide transition */
    transform-style: preserve-3d;
    perspective: 1600px;
}

/* 4-Slice Shutter Container */
.gps-slice-container {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: 1;
    perspective: 1600px;
    transform-style: preserve-3d;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.4s ease-in-out !important;
}

/* Smoothly hide slices when the solid overlay image is fully visible */
.gps-slider-area:not(.is-sliding) .carousel-item.active .gps-slice-container {
    opacity: 0;
}

/* Individual Slice Styling for 4 parts with Absolute Offset */
.gps-slice {
    position: absolute;
    top: 0;
    height: 100%;
    width: calc(25% + 1.6px);
    /* 1.6px micro-overlap completely fills browser sub-pixel seams */
    left: calc(var(--slice-index) * 25%);
    overflow: hidden;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    outline: 1px solid transparent;
    /* Anti-aliases slice edges in 3D space */
    will-change: transform, opacity;

    /* 3D Alternating Shutter Lock Starting State (Odd slices drop, Even slices rise) */
    opacity: 0;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    transition: transform 1.1s cubic-bezier(0.25, 1, 0.3, 1), opacity 0.8s ease-out !important;
    transition-delay: calc(var(--slice-index) * 0.12s) !important;
}

/* Perfect alignment of inner slice images to simulate a unified canvas */
.gps-slice img {
    position: absolute;
    top: 0;
    height: 100%;
    width: 400%;
    /* Stretched to 4 times the slice width (exactly matches the container!) */
    left: calc(var(--slice-index) * -100%);
    /* Offset back to match exact image coordinates */
    max-width: none !important;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}

.gps-slice:nth-child(odd) {
    transform: perspective(1600px) translate3d(0, -102%, 0) rotateX(25deg) scale(0.92);
}

.gps-slice:nth-child(even) {
    transform: perspective(1600px) translate3d(0, 102%, 0) rotateX(-25deg) scale(0.92);
}

/* Active stabilized state (slices snap perfectly together at the center) */
.carousel-item.active .gps-slice {
    transform: perspective(1600px) translate3d(0, 0, 0) rotateX(0deg) scale(1) !important;
    opacity: 1;
}

/* Outgoing slide transition state (alternating departure) */
.carousel-item.carousel-item-start .gps-slice:nth-child(odd),
.carousel-item.carousel-item-end .gps-slice:nth-child(odd) {
    transform: perspective(1600px) translate3d(0, 102%, 0) rotateX(-25deg) scale(0.92) !important;
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.3, 1), opacity 0.6s ease-in !important;
    transition-delay: calc((3 - var(--slice-index)) * 0.08s) !important;
}

.carousel-item.carousel-item-start .gps-slice:nth-child(even),
.carousel-item.carousel-item-end .gps-slice:nth-child(even) {
    transform: perspective(1600px) translate3d(0, -102%, 0) rotateX(25deg) scale(0.92) !important;
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.3, 1), opacity 0.6s ease-in !important;
    transition-delay: calc((3 - var(--slice-index)) * 0.08s) !important;
}

/* Single Solid Overlay Image (Fades on top when sliding finishes to guarantee 0 seams) */
.gps-main-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 2;
    opacity: 0;
    will-change: opacity;
    transition: opacity 0.4s ease-in-out !important;
}

.gps-slider-area:not(.is-sliding) .carousel-item.active .gps-main-img {
    opacity: 1;
}

@media (max-width: 768px) {

    /* Safe buttery-smooth hardware-accelerated crossfade fallback for mobile screens */
    .gps-slider-area.carousel-fade .carousel-item {
        opacity: 0;
        transform: none !important;
        transition: opacity 0.8s ease-in-out !important;
    }

    .gps-slider-area.carousel-fade .carousel-item.active {
        opacity: 1;
    }
}

/* Stunning Glassmorphic Capsule Caption Animations (Pill Style) */
.gps-slider-caption {
    position: absolute;
    bottom: 50px;
    left: 50px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    padding: 18px 45px;
    width: auto;
    max-width: 80%;
    border-radius: 100px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    z-index: 5;

    /* Elegant enter states triggered upon slide activation */
    opacity: 0;
    transform: translateY(35px) scale(0.95);
    transition: opacity 0.9s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    transition-delay: 0.3s !important;
}

.gps-slider-area .carousel-item.active .gps-slider-caption {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.gps-slider-caption h3 {
    margin: 0;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);

    /* Cascading staggered text reveal inside the capsule */
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
    transition-delay: 0.55s !important;
}

.gps-slider-area .carousel-item.active .gps-slider-caption h3 {
    opacity: 1;
    transform: translateY(0);
}

/* NEWS BOX */
.gps-news-header {
    background: var(--main-color);
    padding: 16px 25px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gps-news-box {
    background: #f3f3f3;
    height: 440px;
    /* Matches 550px total height with header */
    border-left: 1px solid #ddd;
    overflow: hidden;
    position: relative;
}

.gps-news-item {
    padding: 14px 22px;
    border-bottom: 1px solid #ddd;
    transition: 0.3s;
}

.gps-news-item:hover {
    background: #ececec;
}

.gps-news-date {
    display: inline-block;
    background: #fff;
    border: 1px solid #ccc;
    padding: 4px 10px;
    font-size: 14px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.gps-tag {
    display: inline-block;
    padding: 2px 8px;
    font-size: 13px;
    color: #fff;
    border-radius: 3px;
    margin-left: 5px;
}

.gps-news {
    background: #1f78d1;
}

.gps-notice {
    background: #f0a63a;
}

.gps-tender {
    background: #4fb9d6;
}

.gps-news-text {
    font-size: 13px;
    line-height: 1;
    color: var(--main-color);
}


/* NEWS BOX — height locked to match the 520px slider */
.gps-news-box {
    background: rgba(243, 243, 243, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    height: 470px;
    /* = 520px slider - ~50px news header */
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
}

/* AUTO SLIDE */
.gps-news-scroll {
    position: absolute;
    width: 100%;
    z-index: 2;
    animation: gpsNewsScroll 45s linear infinite;
}

.gps-news-box:hover .gps-news-scroll {
    animation-play-state: paused;
}

/* ANIMATION */
@keyframes gpsNewsScroll {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-100%);
    }
}

/* CAROUSEL BUTTONS */
.carousel-control-prev,
.carousel-control-next {
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%) scale(0.9);
    margin: 0 25px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.gps-slider-area:hover .carousel-control-prev,
.gps-slider-area:hover .carousel-control-next {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 22px;
    height: 22px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

/* Premium active expanding indicator dots */
.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.45);
    border: 2px solid transparent;
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    margin: 0 5px;
}

.carousel-indicators .active {
    background-color: #fff;
    width: 28px;
    border-radius: 6px;
    border-color: transparent;
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* top-notic-bar */


.sidebar-list a {
    color: var(--main-color) !important;
}

.sidebar-list a.active {
    background-color: var(--main-color) !important;
    color: #fff !important;
}





/* <!-- ABOUT SECTION --> */

.gps-about-section {
    padding: 80px 0;
    background: #f4f4f4;
    overflow: hidden;
}

/* CARD */
.gps-profile-card {
    overflow: hidden;
    transition: 0.4s ease;
    height: 100%;
}



/* IMAGE BOX */
.gps-profile-img-wrap {
    overflow: hidden;
    position: relative;
}

.gps-profile-img {
    width: 100%;
    height: 225px;
    object-fit: contain;
    transition: 0.6s ease;
}





/* CONTENT */
.gps-profile-content {
    padding: 18px 15px 22px;
    text-align: center;
}

.gps-profile-name {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    margin-bottom: 6px;
}

.gps-profile-designation {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
}

/* RIGHT TEXT */
.gps-about-content {
    padding-left: 40px;
}

.gps-about-title {
    font-size: 37px;
    font-weight: 600;
    color: #333;
    margin-bottom: 18px;
}

.gps-about-line {
    width: 100%;
    height: 4px;
    background: var(--main-color);
    margin-bottom: 23px;
    border-radius: 20px;
}

.gps-about-text {
    font-size: 15px;
    line-height: 2;
    color: #000000;
    text-align: justify;
}

.gps-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 30px;

    text-decoration: none;
    color: var(--main-color);

    font-size: 18px;
    font-weight: 500;

    transition: 0.3s;
}

.gps-read-btn:hover {
    gap: 15px;
    color: #0d3f7c;
}

/* <!-- image-card --> */

/* SECTION */
.gps-resource-section {
    background: var(--main-color) !important;
    padding: 70px 0;
}

/* CARD */
.gps-resource-card {
    border-top: 4px solid var(--main-color);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    transition: 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.gps-resource-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

/* IMAGE */
.gps-resource-img-wrap {
    overflow: hidden;
    position: relative;
}

.gps-resource-img {
    width: 100%;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    height: 200px;
    object-fit: fill;
    transition: 0.6s ease;
}

/* IMAGE ZOOM */
.gps-resource-card:hover .gps-resource-img {
    transform: scale(1.08);
}

/* OVERLAY */
.gps-resource-img-wrap::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.3),
            transparent);

    opacity: 0;
    transition: 0.4s;
    z-index: 1;
}

.gps-resource-card:hover .gps-resource-img-wrap::before {
    opacity: 1;
}

/* BOTTOM */
.gps-resource-bottom {
    background: var(--main-color);
    color: #fff;
    padding: 1px 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gps-resource-title {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}

.gps-resource-arrow {
    color: #fff;
    font-size: 22px;

    transition: 0.3s;
}

.gps-resource-card:hover .gps-resource-arrow {
    transform: translateX(5px);
}

/* < !-- toggle --> */

/* SECTION */
.gps-notice-section {
    padding: 70px 0;
    background: #f5f5f5;
}

/* Gallery Filter Bar and Masonry Grid are defined in the Gallery section below */
/* MAIN BOX */
.gps-notice-box {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 625px;
    /* Fixed height as requested */
    display: flex;
    flex-direction: column;
}

/* TABS */
.gps-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    border-bottom: 4px solid #1693cf;
}

.gps-tab-btn {
    border: none;
    padding: 14px 24px;

    color: #fff;
    font-size: 15px;
    font-weight: 500;

    transition: 0.3s;
}

.gps-tab-btn:hover {
    opacity: 0.9;
}

/* ACTIVE TAB */
.gps-tab-btn.active-tab {
    box-shadow: inset 0 -4px 0 #fff;
}

.gps-tab-notice {
    background: #0f92c9;
}

.gps-tab-tender {
    background: #ec9318;
}

.gps-tab-placement {
    background: #6b6b6b;
}

.gps-tab-award {
    background: #86b02c;
}

/* CONTENT */
.gps-notice-content {
    padding: 20px 20px 10px;
    flex-grow: 1;
    overflow-y: auto;
    scrollbar-width: none;
    /* Hide scrollbar for Firefox */
    -ms-overflow-style: none;
    /* Hide scrollbar for IE/Edge */
}

.gps-notice-content::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome/Safari */
}

/* TAB SWITCH */
.gps-tab-content {
    display: none;
    animation: gpsFade 0.4s ease;
}

.gps-tab-content.active-content {
    display: block;
}

/* ITEMS */
.gps-notice-item {
    padding: 7px 3px;
    border-bottom: 2px dotted #bbb;
}

.gps-notice-link {
    text-decoration: none;
    color: var(--main-color);
    font-size: 14px;
    font-weight: 500;
}

.gps-notice-link:hover {
    color: #0f92c9;
    padding-left: 5px;
}

.gps-notice-date {
    margin-top: 8px;
    color: #1e2b43;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* BUTTON */
.gps-view-btn {
    margin-top: 18px;

    background: #e9e9e9;
    border: 1px solid #ccc;

    padding: 10px 18px;
    border-radius: 6px;

    color: #555;
    font-size: 18px;

    transition: 0.3s;
}

.gps-view-btn:hover {
    background: #0f92c9;
    color: #fff;
}

/* IMPORTANT LINKS */
.gps-important-box {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 625px;
    /* Fixed height as requested */
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.gps-important-header {
    padding: 14px 18px;

    border-top: 6px solid var(--main-color);
    border-bottom: 1px solid #ddd;

    font-size: 18px;
    font-weight: 600;
    color: #333;
}

/* CONTENT */
/* CONTENT */
.gps-important-links {
    padding: 14px 14px 10px;
    flex-grow: 1;
    overflow-y: auto;
    scrollbar-width: none;
    /* Hide scrollbar for Firefox */
    -ms-overflow-style: none;
    /* Hide scrollbar for IE/Edge */
}

.gps-important-links::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome/Safari */
}

.gps-important-item {
    padding: 14px 0;
    border-bottom: 1px dotted #bbb;
}

.gps-important-link {
    text-decoration: none;

    color: var(--main-color);
    font-size: 14px;
    font-weight: 500;

    transition: 0.3s;
}

.gps-important-link:hover {
    color: #0f92c9;
    padding-left: 5px;
}

/* ANIMATION */
@keyframes gpsFade {

    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* <!-- latest-image --> */
.gps-gallery-section {
    background: var(--main-color) !important;
    padding: 70px 0;
    overflow: hidden;
}

/* HEADER */
.gps-gallery-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 35px;
}

.gps-gallery-title {
    color: #fff;
    font-size: 52px;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 0;
}

.gps-gallery-title i {
    font-size: 42px;
}

/* BUTTON */
.gps-gallery-btn {
    background: #fff;
    color: #333;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.gps-gallery-btn:hover {
    background: #ececec;
    color: #000;
}

/* IMAGE CARD */
.gps-gallery-card {
    position: relative;
    overflow: hidden;

    border-radius: 8px;

    transition: 0.4s ease;
}

.gps-gallery-card:hover {
    transform: translateY(-8px);
}

/* IMAGE */
.gps-gallery-img {
    width: 100%;
    height: 240px;

    object-fit: cover;

    transition: 0.6s ease;
    border-radius: 8px;
}

/* ZOOM EFFECT */
.gps-gallery-card:hover .gps-gallery-img {
    transform: scale(1.08);
}

/* OVERLAY */
.gps-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gps-gallery-card:hover .gps-gallery-overlay {
    opacity: 1;
}

/* ICON */
.gps-gallery-icon {
    width: 65px;
    height: 65px;

    background: rgba(255, 255, 255, 0.95);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 26px;
    color: var(--main-color);

    transform: scale(0.7);
    transition: 0.4s ease;
}

.gps-gallery-card:hover .gps-gallery-icon {
    transform: scale(1);
}

/* <!-- socel-media -->  */

/* Custom Styling to match your dark theme */
.main-social-container {
    background: var(--main-color) !important;
    /* Matching the dark blue in your image */
    padding: 40px 20px;
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.section-heading-custom {
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.social-card-custom {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    color: #fff;
    background: transparent;
    margin-bottom: 20px;
}

.social-card-custom a {
    color: #fff !important;
}

/* The Facebook Container - Styled for "Phone" feel */
.fb-portal-wrapper {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    /* Limits width on desktop */
    margin: 0 auto;
}

.fb-header-info {
    padding: 10px;
    color: #333;
    font-weight: 600;
    border-bottom: 1px solid #ddd;
}

/* Makes the iframe responsive */
.fb-responsive-iframe {
    width: 100%;
    height: 500px;
    /* Adjustable height */
    border: none;
    overflow: hidden;
}

/* Top Punch-Hole Camera */
.s24-ultra-body::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: #111;
    border-radius: 50%;
    z-index: 10;
    border: 1px solid #333;
    box-shadow: inset 0 0 3px #fff;
}

/* Screen with Glass Reflection Effect */

.fb-iframe-style {
    width: 100%;
    height: 100%;
    border: none;
}

/* Volume/Power Buttons on the Side */
.s24-btn {
    position: absolute;
    right: -6px;
    width: 3px;
    background: #555;
    border-radius: 0 2px 2px 0;
}

.pwr-btn {
    top: 120px;
    height: 40px;
}

.vol-btn {
    top: 180px;
    height: 80px;
}


/* Premium Realistic iPhone Mockup (Inspired by iPhone 15 Pro) */


.iphone-body {
    background: #111;
    border: 5px solid #fff;
    border-radius: 40px;
    padding: 12px;
    width: 300px;
    height: 550px;
    border-radius: 44px;
    position: relative;
    box-shadow:
        0 0 0 1px #888,
        15px 15px 40px rgba(0, 0, 0, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.05);

}

/* Screen with Glass Finish and Apple Style Corners */
.iphone-glass-screen {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    background: #fff;
    border-radius: 32px;
    /* Curves matching the phone body */
    overflow: hidden;
    border: 1px solid #000;
}

/* Clean Apple Style Glass Reflection Overlay */
.iphone-glass-screen::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 40%);
    pointer-events: none;
    z-index: 5;
}

.fb-iframe-style {
    width: 100%;
    height: 100%;
    border: none;
}

/* Side Buttons in Titanium */
.iphone-btn {
    position: absolute;
    background: #4a4a4a;
    border-radius: 2px;
}

/* Left Side: Volume Buttons & Silent Switch (Action Button) */
.iphone-btn.left {
    left: -6px;
    width: 3px;
}

.vol-up {
    top: 110px;
    height: 50px;
}

.vol-down {
    top: 170px;
    height: 50px;
}

.silent-switch {
    top: 60px;
    height: 20px;
    width: 4px;
    left: -7px;
}

/* Action Button style */

/* Right Side: Power Button */
.iphone-btn.right {
    right: -6px;
    width: 3px;
    top: 180px;
    height: 90px;
}

/* Footer Main Styles */
.main-footer {
    background-color: var(--main-color);
    padding: 60px 0 30px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #fff;
}

/* Vertical Dividers */
.footer-col {
    border-right: 1px solid #ddd;
    padding: 0 30px;
    min-height: 180px;
}

.footer-col:last-child {
    border-right: none;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 16px;
    font-weight: 500;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #000;
    padding-left: 5px;
}

/* Contact & Social Section */
.contact-info p {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.6;
}

.location-title {
    font-weight: 600;
    color: inherit;
    margin-bottom: 15px;
}

.social-icons a {
    font-size: 1.2rem;
    margin-right: 15px;
    color: var(--main-color);
    text-decoration: none;
}

/* Bottom Copyright Bar */
.bottom-bar {
    background-color: var(--main-color);
    color: #ffffff;
    padding: 20px 0;
    font-size: 14px;
    font-weight: 500;
}

.visitor-count {
    font-weight: bold;
    letter-spacing: 1px;
}

.developer-text {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

/* RESPONSIVE TOP HEADER */
@media (max-width: 991px) {
    .logo-img {
        width: 65px;
        height: 65px;
    }

    .college-title {

        font-size: 1.5rem !important;
    }

    .college-subtitle {
        font-size: 10px !important;
    }
}

@media (max-width: 575px) {
    .logo-img {
        width: 65px;
        height: 65px;
    }

    .college-title {
        /* font-size: 27px !important; */
        letter-spacing: 0.5px;
        /* padding-top: 13px; */
        font-weight: 700;
        text-align: center;
        line-height: 31.1px;
    }

    .college-subtitle {
        font-size: 8px !important;
    }
}

@media (max-width: 991px) {

    /* Slider column fixed height on tablets */
    .gps-hero-section .col-lg-8 {
        height: 450px;
    }

    .gps-slider-area {
        height: 100%;
        margin-bottom: 0;
    }

    .gps-slider-caption {
        width: 90%;
        left: 20px;
        bottom: 20px;
    }

    .gps-slider-caption h3 {
        font-size: 24px;
    }

    .gps-news-box {
        height: 380px;
        /* Slightly taller for better readability */
        border-left: none;
        border-top: 2px solid rgba(255, 255, 255, 0.1);
        overflow: hidden;
        /* Back to hidden for auto-scroll */
        background: rgba(255, 255, 255, 0.05);
        /* Lighter glass for mobile */
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }

    .gps-news-scroll {
        position: absolute;
        width: 100%;
        animation: gpsNewsScrollMobile 30s linear infinite;
        padding: 10px 0;
    }

    /* Specialized mobile scroll that starts at 0 */
    @keyframes gpsNewsScrollMobile {
        0% {
            transform: translateY(0);
        }

        100% {
            transform: translateY(-100%);
        }
    }
}


@media (max-width: 575px) {

    /* Slider column fixed height on phones */
    .gps-hero-section .col-lg-8 {
        height: 260px;
    }

    .gps-slider-area {
        height: 100%;
    }

    .gps-slider-caption {
        width: 95%;
        left: 15px;
        bottom: 15px;
    }

    .gps-slider-caption h3 {
        font-size: 18px;
    }

    .gps-slider-btn {
        padding: 8px 15px;
        font-size: 13px;
    }

    .gps-news-box {
        height: 375px;
        overflow: hidden;
    }
}

/* BRANCH SECTION */
.gps-branch-section {
    padding: 60px 0;
    background: #fff;
}

.gps-branch-card {
    background: #fff;
    border-radius: 8px;
    transition: 0.3s;
}

.gps-branch-img-wrap {
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 15px;
}

.gps-branch-img-wrap img {
    width: 100%;
    height: 256px;
    object-fit: contain;
    transition: 0.5s;
}

.gps-branch-card:hover .gps-branch-img-wrap img {
    transform: scale(1.05);
}

.gps-branch-hod {
    color: var(--main-color);
    /* Matching the icon color from image */
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.gps-branch-hod i {
    margin-right: 5px;
}

.gps-branch-meta {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.gps-branch-meta i {
    color: #888;
}

.gps-branch-title {
    color: var(--main-color);
    /* Matching the branch title color from image */
    font-size: 14px;
    font-weight: 600;
    min-height: 44px;
}

.gps-branch-btn {
    display: inline-block;
    background: var(--main-color);
    /* Signature orange button */
    color: #fff !important;
    padding: 8px 25px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    transition: 0.3s;
}

.gps-branch-btn:hover {
    background: var(--main-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

/* PLACEMENT PARTNERS SECTION */
.gps-placement-section {
    position: relative;
    background: linear-gradient(135deg,
            color-mix(in srgb, var(--main-color), #fff 10%) 0%,
            var(--main-color) 40%,
            color-mix(in srgb, var(--main-color), #000 20%) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    padding: 85px 0;
    color: #fff;
    overflow: hidden;
}

/* Background soft decorative glows */
.gps-placement-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
    top: -300px;
    right: -100px;
    pointer-events: none;
}

.gps-placement-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    bottom: -250px;
    left: -100px;
    pointer-events: none;
}

.gps-placement-header {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.gps-placement-subheader {
    font-size: 16px;
    margin-bottom: 50px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.2px;
}

.gps-placement-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.gps-placement-card {
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gps-placement-logo-wrap {
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    padding: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08), inset 0 2px 4px rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.gps-placement-logo-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.gps-placement-card:hover .gps-placement-logo-wrap {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.18), 0 0 0 4px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.9);
}

.gps-placement-logo-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: grayscale(10%) contrast(100%);
}

.gps-placement-card:hover .gps-placement-logo-wrap img {
    transform: scale(1.06);
    filter: grayscale(0%) contrast(103%);
}

.gps-placement-company {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.3px;
    line-height: 1.4;
    transition: all 0.3s ease;
    padding: 0 5px;
}

.gps-placement-card:hover .gps-placement-company {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.25);
}

/* Responsiveness for grid */
@media (max-width: 1200px) {
    .gps-placement-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .gps-placement-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .gps-placement-header {
        font-size: 32px;
    }

    .gps-placement-logo-wrap {
        height: 100px;
        padding: 14px;
    }
}

@media (max-width: 480px) {
    .gps-placement-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .gps-placement-header {
        font-size: 28px;
    }
}



/* PREMIUM SCROLL REVEAL */
.reveal,
.reveal-left,
.reveal-right {
    opacity: 0;
    filter: blur(4px);
    transition:
        opacity 1s cubic-bezier(0.175, 0.885, 0.32, 1.1),
        transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.1),
        filter 1s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    will-change: transform, opacity, filter;
}

.reveal {
    transform: translateY(30px) scale(0.99);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0) scale(1);
    filter: blur(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

/* TEST */

/* PREMIUM PHOTO GALLERY - ULTRA HIGH-TECH */
:root {
    --gallery-card-bg: rgba(255, 255, 255, 0.03);
}

.gps-gallery-page-header {
    background: #0a0a0a;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(13, 110, 253, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(13, 110, 253, 0.1) 0%, transparent 50%);
    padding: 120px 0 80px;
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.gps-gallery-page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--main-color), transparent);
}

.gps-gallery-title-main {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    background: linear-gradient(to bottom, #fff 30%, rgba(255, 255, 255, 0.5));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
}

.gps-gallery-filter-bar {
    margin: 0 auto 50px;
    background: rgba(255, 255, 255, 0.7);
    padding: 8px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
    width: fit-content;
    max-width: 100%;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gps-gallery-filter-bar::-webkit-scrollbar {
    display: none;
}

.gps-gallery-filter-btn {
    padding: 10px 22px;
    border-radius: 100px;
    border: none;
    background: transparent;
    color: #555;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.gps-gallery-filter-btn:hover {
    color: var(--main-color);
    background: rgba(13, 110, 253, 0.07);
    transform: translateY(-1px);
    text-decoration: none;
}

.gps-gallery-filter-btn.active {
    color: #fff;
    background: linear-gradient(135deg, var(--main-color), color-mix(in srgb, var(--main-color), #6366f1 30%));
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
    transform: translateY(-1px);
}

.gps-masonry-grid {
    column-count: 4;
    column-gap: 25px;
    padding: 10px;
}

@media (max-width: 1200px) {
    .gps-masonry-grid {
        column-count: 3;
    }
}

@media (max-width: 992px) {
    .gps-masonry-grid {
        column-count: 2;
    }
}

@media (max-width: 576px) {
    .gps-masonry-grid {
        column-count: 1;
    }
}

.gps-masonry-item {
    break-inside: avoid;
    margin-bottom: 25px;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    transform-style: preserve-3d;
    perspective: 1000px;
    position: relative;
}

.gps-masonry-item:hover {
    transform: translateY(-10px) rotateX(2deg) rotateY(2deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.gps-masonry-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.gps-masonry-item:hover .gps-masonry-img {
    transform: scale(1.15) rotate(1deg);
}

.gps-masonry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: all 0.5s;
}

.gps-masonry-item:hover .gps-masonry-overlay {
    opacity: 1;
}

.gps-masonry-title {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    transform: translateY(20px);
    transition: transform 0.5s 0.1s;
}

.gps-masonry-cat {
    font-size: 10px;
    font-weight: 700;
    color: var(--main-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(13, 110, 253, 0.15);
    padding: 4px 12px;
    border-radius: 100px;
    width: fit-content;
    transform: translateY(20px);
    transition: transform 0.5s;
    backdrop-filter: blur(5px);
}

.gps-masonry-item:hover .gps-masonry-title,
.gps-masonry-item:hover .gps-masonry-cat {
    transform: translateY(0);
}

.gps-masonry-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    width: 60px;
    height: 60px;
    background: var(--main-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 30px rgba(13, 110, 253, 0.5);
}

.gps-masonry-item:hover .gps-masonry-zoom {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* CONTACT PAGE STYLES */
.gps-contact-section {
    background: #f8fafc;
    padding: 80px 0;
}

.gps-contact-info-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.gps-contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.gps-contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(var(--main-color-rgb), 0.1);
    color: var(--main-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.gps-contact-text h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1e293b;
}

.gps-contact-text p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.gps-contact-form-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.gps-form-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #0f172a;
}

.gps-form-subtitle {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 30px;
}

.gps-contact-input-group {
    margin-bottom: 20px;
}

.gps-contact-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 8px;
}

.gps-contact-input {
    width: 100%;
    padding: 12px 16px;
    background: #f1f5f9;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s;
}

.gps-contact-input:focus {
    outline: none;
    border-color: var(--main-color);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(var(--main-color-rgb), 0.1);
}

.gps-contact-submit {
    width: 100%;
    padding: 14px;
    background: var(--main-color);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.gps-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(var(--main-color-rgb), 0.3);
}

.gps-social-btns {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.gps-social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 18px;
}

.gps-social-btn:hover {
    background: var(--main-color);
    color: #fff;
    transform: translateY(-3px);
}

.gps-map-container {
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* HIGH-TECH CONTENT SECTION (HISTORY, VISION, ETC) */
.gps-dynamic-content-header {
    background: #222;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    border: 4px solid #f0f0f0;
}

.gps-dynamic-content-header::before,
.gps-dynamic-content-header::after {
    content: '';
    position: absolute;
    top: -50%;
    width: 60px;
    height: 200%;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.1) 10px,
            rgba(255, 255, 255, 0.1) 20px);
}

.gps-dynamic-content-header::before {
    left: 20px;
}

.gps-dynamic-content-header::after {
    right: 20px;
}

.gps-dynamic-content-header h2 {
    color: #fff;
    font-size: 80px;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: -2px;
    position: relative;
    z-index: 2;
    line-height: 1;
}

.gps-dynamic-content-body {
    background: #fdfdfd;
    border: 1px solid #ddd;
    padding: 40px;
    border-radius: 4px;
    color: #444;
    line-height: 1.8;
    font-size: 15px;
    max-height: 500px;
    overflow-y: auto;
    text-align: justify;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.02);
}

.gps-dynamic-content-body::-webkit-scrollbar {
    width: 8px;
}

.gps-dynamic-content-body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.gps-dynamic-content-body::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.gps-dynamic-content-body::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* YELLOW IMPACT HEADER FOR AFFILIATION LIST */
.gps-doc-header-impact {
    background: #ffc107;
    /* Vibrant Yellow */
    padding: 12px 25px;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.filter-btn-impact {
    padding: 4px 15px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: transparent;
    color: #333;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
    cursor: pointer;
}

.filter-btn-impact.active {
    background: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
    box-shadow: 0 4px 8px rgba(13, 110, 253, 0.3);
}

.filter-btn-impact:hover:not(.active) {
    background: rgba(0, 0, 0, 0.05);
}

/* ANNUAL REPORT STYLES */
.gps-report-page-header {
    background: #eeeeee;
    padding: 15px 25px;
    border-bottom: 2px solid #ddd;
    margin-bottom: 10px;
    border-radius: 4px;
}

.gps-report-page-header h2 {
    font-size: 24px;
    color: #555;
    margin: 0;
}

.gps-report-heading-bar {
    background: #ffcccc;
    /* Light Pink */
    padding: 10px 20px;
    font-weight: 700;
    color: #444;
    border-radius: 4px 4px 0 0;
    margin-top: 20px;
}

.gps-report-table {
    width: 100%;
    border-collapse: collapse;
}

.gps-report-table tr:nth-child(even) {
    background: #ffffcc;
    /* Light Yellow */
}

.gps-report-table td {
    padding: 12px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.gps-report-title {
    font-weight: 700;
    color: #555;
    font-size: 15px;
}

.gps-report-link {
    color: #0000ff;
    font-weight: 800;
    text-decoration: none;
}

.gps-report-link:hover {
    text-decoration: underline;
}

/* PREMIUM ANNUAL REPORT ENHANCEMENTS */
.gps-report-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.gps-report-card {
    background: #ffffff;
    border: 1px solid #eef2f7;
    border-radius: 12px;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.gps-report-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--main-color);
    opacity: 0;
    transition: 0.3s;
}

.gps-report-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.05);
    border-color: var(--main-color);
}

.gps-report-card:hover::before {
    opacity: 1;
}

.gps-report-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.gps-report-icon-box {
    width: 45px;
    height: 45px;
    background: rgba(13, 110, 253, 0.1);
    color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 20px;
}

.gps-report-title-main {
    font-weight: 700;
    color: #2c3e50;
    font-size: 16px;
    margin-bottom: 2px;
}

.gps-report-meta {
    font-size: 12px;
    color: #94a3b8;
    display: flex;
    gap: 10px;
}

.gps-report-action .btn-view {
    background: #f8fafc;
    color: var(--main-color);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    font-size: 13px;
    border: 1px solid #e2e8f0;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gps-report-action .btn-view:hover {
    background: var(--main-color);
    color: #fff;
    border-color: var(--main-color);
}

/* Staggered Animations */
.reveal-item {
    opacity: 0;
    transform: translateY(20px);
}

.reveal-item.show {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease-out;
}

/* ALLOTMENT & SURRENDER REPORT STYLES */
.gps-surrender-page-header {
    background: #f0f0f0;
    padding: 15px 25px;
    border: 1px solid #e0e0e0;
    margin-bottom: 15px;
}

.gps-surrender-page-header h2 {
    font-size: 22px;
    color: #555;
    margin: 0;
    font-weight: 400;
}

.gps-surrender-heading-bar {
    background: #ffcccc;
    /* Light Pink */
    padding: 10px 20px;
    font-weight: 700;
    color: #444;
    margin-bottom: 0;
}

.gps-surrender-table {
    width: 100%;
    border-collapse: collapse;
}

.gps-surrender-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.gps-surrender-title {
    font-weight: 700;
    color: #555;
    font-size: 15px;
}

.gps-download-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #6ea8fe;
    /* Soft Blue */
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 20px;
    transition: background-color 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.gps-download-icon-btn:hover {
    background-color: #0d6efd;
    color: white;
}

.gps-view-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f8f9fa;
    /* Light Grey */
    color: #444;
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.gps-view-icon-btn:hover {
    background-color: #e2e6ea;
    color: #000;
}

/* PREMIUM DOCUMENT LIST REFINEMENTS */
.gps-doc-header-impact {
    background: #ffc107;
    padding: 15px 30px;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.gps-doc-header-impact h4 {
    font-size: 20px !important;
    letter-spacing: 0.5px;
}

.filter-btn-impact {
    padding: 6px 18px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.4);
    background: transparent;
    color: #222;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
    cursor: pointer;
}

.filter-btn-impact.active {
    background: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
    box-shadow: 0 4px 8px rgba(13, 110, 253, 0.3);
}

.filter-btn-impact:hover:not(.active) {
    background: rgba(0, 0, 0, 0.05);
}

.custom-doc-table td {
    padding: 25px 30px !important;
    border-bottom: 1px solid #f0f0f0;
}

.doc-title-main {
    font-size: 18px;
    font-weight: 800 !important;
    color: #4a5568 !important;
    margin-bottom: 4px;
}

.doc-date-sub {
    font-size: 13px !important;
    color: #a0aec0 !important;
    margin-bottom: 8px;
}

.gps-badge-outline {
    background: transparent;
    color: #0d6efd;
    border: 1px solid #0d6efd;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.view-attach-link {
    color: #0000ff;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    transition: color 0.3s;
}

.view-attach-link:hover {
    color: #0d6efd;
    text-decoration: underline;
}

#docSearch {
    border: none;
    padding: 8px 15px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* PREMIUM DOCUMENT GRID LAYOUT */
.gps-doc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.gps-doc-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.gps-doc-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ffc107, #ff9800);
    opacity: 0;
    transition: 0.3s;
}

.gps-doc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.gps-doc-card:hover::after {
    opacity: 1;
}

.gps-doc-card-icon {
    font-size: 30px;
    color: #ffc107;
    margin-bottom: 15px;
}

.gps-doc-card-title {
    font-size: 18px;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 10px;
    line-height: 1.3;
}

.gps-doc-card-desc {
    font-size: 13px;
    color: #718096;
    margin-bottom: 15px;
    flex-grow: 1;
}

.gps-doc-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #e2e8f0;
}

.gps-doc-card-date {
    font-size: 12px;
    color: #a0aec0;
    font-weight: 600;
}

.gps-doc-card-btn {
    background: #ebf4ff;
    color: #0d6efd;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.gps-doc-card-btn:hover {
    background: #0d6efd;
    color: #fff;
}

/* JS Animation Classes */
.gps-doc-card.hidden {
    display: none !important;
}

.gps-doc-card.animate-in {
    animation: scaleIn 0.4s ease forwards;
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* SIMPLE BUT ELEGANT LIST LAYOUT */
.gps-simple-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    background: #fdfdfd;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.gps-simple-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 18px 25px;
    transition: all 0.2s ease-in-out;
}

.gps-simple-item:hover {
    border-color: #bbd6fe;
    box-shadow: 0 4px 10px rgba(13, 110, 253, 0.08);
    background: #fcfcfc;
}

.gps-simple-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.gps-simple-icon {
    font-size: 24px;
    color: #ffc107;
    background: rgba(255, 193, 7, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.gps-simple-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
}

.gps-simple-meta {
    font-size: 12px;
    color: #888;
}

.gps-simple-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.gps-simple-btn {
    background: #fff;
    color: #0d6efd;
    border: 1px solid #0d6efd;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.gps-simple-btn:hover {
    background: #0d6efd;
    color: #fff;
}

/* FIX HIDDEN CLASS FOR FILTERS */
.filter-item.hidden {
    display: none !important;
}

/* GLOBAL SITE SMOOTHNESS & ANIMATIONS */

/* 1. Smooth Scrolling across the entire site */
html {
    scroll-behavior: smooth;
}

/* 2. Professional Page Load Fade-In */
body {
    animation: globalPageFadeIn 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes globalPageFadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* 3. Global Smooth Transitions for Interactive Elements */
a,
button,
.btn,
.card,
input,
select,
textarea {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

/* 4. Elegant Text Selection */
::selection {
    background-color: rgba(13, 110, 253, 0.2);
    /* Soft Blue */
    color: #000;
}

::-moz-selection {
    background-color: rgba(13, 110, 253, 0.2);
    color: #000;
}

/* 5. Smooth Scrollbar (Webkit) */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.gps-filter-pill-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gps-filter-pill {
    padding: 8px 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 100px;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    transition: 0.3s;
}

.gps-filter-pill:hover {
    background: #edf2f7;
    color: var(--main-color);
}

.gps-filter-pill.active {
    background: var(--main-color);
    color: #fff;
    border-color: var(--main-color);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.2);
}

.gps-search-wrapper {
    position: relative;
    width: 100%;
    max-width: 300px;
}

.gps-search-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.gps-search-input {
    width: 100%;
    padding: 10px 15px 10px 40px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    transition: 0.3s;
}

.gps-search-input:focus {
    outline: none;
    background: #fff;
    border-color: var(--main-color);
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.05);
}

/* Tablet & Mobile (Max 991px) */
@media (max-width: 991px) {

    /* Adjust Hero Section padding */
    .gps-hero-section {
        padding-top: 15px;
    }

    /* Adjust Document List Header */
    .gps-doc-header-impact {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 15px !important;
    }

    .gps-doc-filters {
        flex-wrap: wrap;
    }

    .gps-doc-search {
        width: 100%;
    }

    #docSearch {
        width: 100% !important;
    }
}

/* Mobile Devices (Max 768px) */
@media (max-width: 768px) {

    /* Top Header & Logo */
    .top-header {
        text-align: center;
        padding: 15px 0;
    }

    .top-header .row {
        flex-direction: column;
        align-items: center;
    }

    .right-top {
        text-align: center;
        margin-top: 15px;
    }

    .logo-img {
        width: 80px;
        height: 80px;
    }

    .college-title {
        font-size: 1.5rem !important;
        /* margin-top: 10px; */
    }

    .college-subtitle {
        font-size: 12px;
    }

    /* Premium Ticker */
    .gps-premium-ticker {
        height: auto;
        flex-direction: column;
        padding: 5px 0;
    }

    .gps-ticker-label {
        clip-path: none;
        width: 100%;
        justify-content: center;
        padding: 5px 15px;
    }

    .gps-ticker-scroll-area {
        padding: 5px 10px;
        width: 100%;
    }

    /* Document Tables */
    .table-responsive .table td {
        padding: 12px 15px !important;
    }

    .gps-simple-title,
    .doc-title-main {
        font-size: 15px !important;
    }

    /* Slider & News Box */
    .gps-slider-area {
        margin-bottom: 20px;
    }

    .gps-news-box {
        height: 300px;
    }
}

/* Small Mobile (Max 480px) */
@media (max-width: 480px) {
    .college-title {
        font-size: 1.5rem !important;
    }

    /* Stack document table rows for better readability on tiny screens */
    .table-responsive .table td {
        display: block;
        width: 100%;
        text-align: left !important;
        border-bottom: none !important;
    }

    .table-responsive .table tr {
        display: block;
        border-bottom: 1px solid #dee2e6;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    .table-responsive .text-end {
        text-align: left !important;
        padding-top: 0 !important;
    }
}

/* RESPONSIVE CONTACT PAGE */
@media (max-width: 992px) {

    /* Stack the info and form columns */
    .gps-contact-section .row {
        flex-direction: column;
    }

    .gps-contact-section .col-lg-5,
    .gps-contact-section .col-lg-7 {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .gps-contact-info-card,
    .gps-contact-form-card {
        margin-bottom: 30px;
    }

    .gps-map-container {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .gps-contact-section {
        padding: 40px 0;
    }

    .gps-contact-info-card,
    .gps-contact-form-card {
        padding: 25px;
    }

    .gps-contact-input {
        font-size: 13px;
        padding: 10px 12px;
    }

    .gps-contact-submit {
        font-size: 14px;
        padding: 12px;
    }

    .gps-social-btn {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}

/* GLOBAL RESPONSIVE ADJUSTMENTS */

/* Tablet (max-width: 991px) */
@media (max-width: 991px) {

    /* Header */
    .top-header {
        text-align: center;
        padding: 15px 0;
    }

    .logo-img {
        width: 90px;
        height: 90px;
    }

    .college-title {
        font-size: 1.5rem !important;
    }

    .college-subtitle {
        font-size: 13px;
    }

    /* Navbar */
    .gps-navbar .navbar-nav {
        flex-direction: column;
        gap: 8px;
    }

    .gps-navbar .nav-link {
        padding: 12px 15px !important;
    }

    /* Hero Slider */
    .gps-hero-section .carousel-caption h3 {
        font-size: 18px;
    }

    .gps-hero-section .carousel-caption {
        bottom: 30px;
    }

    /* News Box */
    .gps-news-box {
        max-height: 350px;
        overflow-y: auto;
    }

    /* Document/Table sections */
    .gps-doc-header-impact,
    .gps-doc-search {
        flex-direction: column;
        align-items: stretch;
    }

    .gps-doc-filters {
        justify-content: center;
        margin-bottom: 10px;
    }

    #docSearch {
        width: 100% !important;
        margin-top: 10px;
    }

    /* Report pages */
    .gps-report-header,
    .gps-report-container {
        flex-direction: column;
    }

    /* Footer */
    .gps-footer .row {
        flex-direction: column;
        text-align: center;
    }

    .gps-footer .col {
        margin-bottom: 20px;
    }
}

/* Mobile (max-width: 576px) */
@media (max-width: 576px) {

    /* Header */
    .logo-img {
        width: 70px;
        height: 70px;
    }

    .college-title {
        /* font-size: 20px; */
    }

    .college-subtitle {
        font-size: 12px;
    }

    /* Hero Slider */
    .gps-hero-section .carousel-caption h3 {
        font-size: 16px;
    }

    .gps-hero-section .carousel-caption p {
        font-size: 12px;
    }

    /* Reduce paddings */
    .gps-section {
        padding: 30px 0;
    }

    .container {
        padding: 0 15px;
    }

    /* Simplify nav */
    .gps-navbar .navbar-toggler {
        display: block;
    }

    /* Contact page already has specific rules */

    /* Reduce font sizes globally */
    h1 {
        font-size: 28px;
    }
}

/* ============================================================
   PREMIUM GLASSMORPHIC ENQUIRY BANNER, FAB, & MODAL
   ============================================================ */



/* 2. Floating Trigger Button (FAB) */
.gps-floating-enquiry-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    border: none;
    outline: none;
    background: linear-gradient(135deg, var(--main-color, #0f172a) 0%, color-mix(in srgb, var(--main-color, #0f172a), #000 15%) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 50px;
    box-shadow: 0 10px 30px color-mix(in srgb, var(--main-color, #0f172a) 35%, transparent);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.3, 1);
    animation: enquiryPulse 2s infinite;
}

.gps-floating-enquiry-btn .btn-icon {
    font-size: 18px;
    line-height: 1;
}

.gps-floating-enquiry-btn .btn-text {
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.gps-floating-enquiry-btn:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 35px color-mix(in srgb, var(--main-color, #0f172a) 45%, transparent);
}

@keyframes enquiryPulse {
    0% {
        box-shadow: 0 10px 30px color-mix(in srgb, var(--main-color, #0f172a) 35%, transparent);
    }

    50% {
        box-shadow: 0 10px 30px color-mix(in srgb, var(--main-color, #0f172a) 35%, transparent), 0 0 0 12px color-mix(in srgb, var(--main-color, #0f172a) 15%, transparent);
    }

    100% {
        box-shadow: 0 10px 30px color-mix(in srgb, var(--main-color, #0f172a) 35%, transparent);
    }
}

/* 3. Glassmorphic Modal Overlay */
.gps-enquiry-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.3, 1);
    padding: 20px;
}

.gps-enquiry-modal.active {
    display: flex;
    opacity: 1;
}

.gps-modal-content {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    width: 100%;
    max-width: 950px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gps-enquiry-modal.active .gps-modal-content {
    transform: scale(1);
}

.gps-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 36px;
    font-weight: 300;
    color: #64748b;
    cursor: pointer;
    z-index: 10;
    transition: color 0.2s, transform 0.2s;
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 50%;
}

.gps-modal-close:hover {
    color: #1e293b;
    transform: scale(1.05);
    background: rgba(0, 0, 0, 0.07);
}

/* Left Column: Info card */
.gps-modal-info-side {
    background: linear-gradient(135deg, var(--main-color, #0f172a) 0%, color-mix(in srgb, var(--main-color, #0f172a), #000 20%) 100%);
    color: #fff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

.gps-modal-info-side h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.gps-modal-info-side p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 30px;
}

.gps-info-item-modal {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.gps-info-item-modal i {
    font-size: 20px;
    color: #fff;
    margin-top: 3px;
    opacity: 0.9;
}

.gps-info-item-modal h6 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.gps-info-item-modal p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

/* Right Column: Form side */
.gps-modal-form-side {
    padding: 40px;
    background: #fff;
}

.gps-modal-form-side h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.gps-modal-form-side p {
    font-size: 13.5px;
    color: #64748b;
    margin-bottom: 30px;
}

/* Inputs and Forms */
.gps-modal-form-side .form-label {
    font-size: 12.5px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 6px;
}

.gps-modal-form-side .form-control,
.gps-modal-form-side .form-select {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13.5px;
    color: #1e293b;
    outline: none;
    transition: all 0.3s ease;
}

.gps-modal-form-side .form-control::placeholder {
    color: #94a3b8;
}

.gps-modal-form-side .form-control:focus,
.gps-modal-form-side .form-select:focus {
    background: #fff;
    border-color: var(--main-color, #0f172a);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--main-color, #0f172a) 15%, transparent);
}

.gps-submit-btn {
    width: 100%;
    padding: 12px;
    border: none;
    outline: none;
    background: linear-gradient(135deg, var(--main-color, #0f172a) 0%, color-mix(in srgb, var(--main-color, #0f172a), #000 15%) 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 8px 20px color-mix(in srgb, var(--main-color, #0f172a) 25%, transparent);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.3, 1);
}

.gps-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px color-mix(in srgb, var(--main-color, #0f172a) 35%, transparent);
}

.gps-submit-btn:disabled {
    opacity: 0.75;
    cursor: not-allowed;
    transform: none;
}

/* Media Queries for Modal responsiveness */
@media (max-width: 767.98px) {
    .gps-modal-form-side {
        padding: 30px 20px;
    }

    .gps-floating-enquiry-btn {
        bottom: 20px;
        right: 20px;
        padding: 10px 18px;
    }

    .gps-floating-enquiry-btn .btn-text {
        display: none;
        /* Icon-only floating button on tiny screens to save space */
    }

    .gps-modal-close {
        top: 15px;
        right: 15px;
    }
}

/* ============================================================
   VIEW ALL PLACEMENT PARTNERS BUTTON
   ============================================================ */
.gps-view-all-partners-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--main-color, #0f172a) 0%, color-mix(in srgb, var(--main-color, #0f172a) 40%, #2563eb 60%) 100%);
    color: #fff;
    font-size: 14.5px;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25), 0 10px 25px color-mix(in srgb, var(--main-color, #0f172a) 25%, transparent);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.3, 1);
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gps-view-all-partners-btn:hover {
    color: #fff;
    transform: translateY(-3px) scale(1.02);
    background: linear-gradient(135deg, color-mix(in srgb, var(--main-color, #0f172a) 40%, #2563eb 60%) 0%, var(--main-color, #0f172a) 100%);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.35), 0 15px 30px color-mix(in srgb, var(--main-color, #0f172a) 35%, transparent);
}

/* ============================================================
   GPS BRAND SUPER HEADER BAR
   ============================================================ */
.gps-super-header {
    background: var(--main-color, #285690);
    /* Dynamically changes according to the site color! */
    color: #fff;
    font-size: 13px;
    position: relative;
    border-bottom: 2px solid var(--main-color, #285690);
    min-height: 80px;
    /* Lock min height to prevent size differences */
    display: flex;
    align-items: center;
    overflow: hidden; /* Prevents scrollbars during page load slide animations */
}

.gps-super-header-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    /* Stretch children vertically to same exact height */
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
    min-height: 80px;
}

.gps-super-header-left {
    background: #ffffff;
    /* Solid clean white background */
    color: #0f172a;
    padding: 10px 35px 10px 15px;
    display: flex;
    align-items: center;
    /* Perfectly center logo and text block vertically! */
    justify-content: center;
    position: relative;
    z-index: 2;
    flex: 0 0 54%;
    width: 54%;
    animation: slideInFromLeft 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Skew separator */
.gps-super-header-left::after {
    content: '';
    position: absolute;
    top: 0;
    right: -25px;
    width: 50px;
    height: 100%;
    background: #fff;
    transform: skewX(-20deg);
    z-index: 1;
}

.gps-super-header-logo {
    width: 95px;
    height: 85px;
    margin-right: 18px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.1));
}

.gps-super-header-text {
    position: relative;
    z-index: 2;
}

.gps-super-header-title {
    color: var(--main-color, #083c76) !important;
    font-size: 32px !important;
    font-weight: 800 !important;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.15;
    letter-spacing: 0.3px;
}

.gps-super-header-subtitle {
    color: #334155 !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    margin: 4px 0 0 0;
    line-height: 1.3;
    letter-spacing: 0.2px;
}

.gps-super-header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    /* Center content vertically! */
    padding: 8px 4% 8px 30px;
    position: relative;
    z-index: 2;
    flex: 0 0 46%;
    width: 46%;
    color: #fff;
    animation: slideInFromRight 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Slide Animations for Header */
@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-60px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(60px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.gps-super-header-right .right-top {
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 5px;
}

.gps-super-header-right .nav-links {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin-top: 5px;
}

.gps-super-header-right .nav-links a {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.gps-super-header-right .nav-links a:hover {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
}

.gps-super-header-right .color-box {
    border: 1px solid rgba(255, 255, 255, 0.8);
    margin-left: 4px;
}

/* Top Row: Logins */
.gps-super-header-top-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 8px;
}

.gps-super-header-login-link {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 13.5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.gps-super-header-login-link:hover {
    color: #f8fafc;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.gps-super-header-login-sep {
    color: rgba(255, 255, 255, 0.4);
}

/* Glowing Multi-Color NEW tag */
.gps-new-tag {
    font-size: 9px;
    font-weight: 900;
    margin-left: 5px;
    padding: 1px 5px;
    border-radius: 4px;
    background: linear-gradient(45deg, #ff0055, #7f00ff, #00f0ff);
    background-size: 200% 200%;
    color: #fff;
    animation: superGlowShift 2s linear infinite;
    text-transform: uppercase;
    display: inline-block;
    line-height: 1;
}

@keyframes superGlowShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Bottom Row: Contact & Social */
.gps-super-header-bottom-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    flex-wrap: wrap;
}

.gps-super-header-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gps-super-header-icon-box {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 13px;
}

.gps-super-header-contact-text {
    font-weight: 700;
    font-size: 13.5px;
    letter-spacing: 0.3px;
}

.gps-super-header-socials {
    display: flex;
    align-items: center;
    gap: 6px;
}

.gps-super-header-social-link {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
}

.gps-super-header-social-link:hover {
    background: #fff;
    color: #b58918;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustment */
@media (max-width: 1100px) {
    .gps-super-header-container {
        flex-direction: column;
        align-items: stretch;
    }

    .gps-super-header-left {
        width: 100%;
        flex: 0 0 100%;
        justify-content: center;
        padding-right: 20px;
        text-align: center;
    }

    .gps-super-header-left::after {
        display: none;
    }

    .gps-super-header-right {
        width: 100%;
        flex: 0 0 100%;
        align-items: center;
        padding: 10px 15px;
    }

    .gps-super-header-bottom-row {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .gps-super-header-left {
        flex-direction: column;
        padding: 15px 10px;
    }

    .gps-super-header-logo {
        margin-right: 0;
        margin-bottom: 10px;
    }
}/* ==========================================
   Responsive Enhancements for Document Search & Filter Tabs on Mobile
   ========================================== */
@media (max-width: 768px) {
    /* Clean and Beautiful Super Header Responsive Styles */
    .gps-super-header {
        min-height: auto !important;
        height: auto !important;
        padding: 0 !important;
    }

    .gps-super-header-container {
        flex-direction: column !important;
        align-items: stretch !important;
        min-height: auto !important;
    }

    .gps-super-header-left {
        width: 100% !important;
        flex: 0 0 100% !important;
        padding: 16px 12px !important;
        justify-content: center !important;
        text-align: center !important;
        box-shadow: none !important;
        background: #ffffff !important;
    }

    .gps-super-header-left::after {
        display: none !important; /* Hide skew border on mobile */
    }

    /* Target the container that holds logo and text */
    .gps-super-header-left > div,
    .gps-super-header-left > .d-flex {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 10px !important;
        width: 100% !important;
    }

    .gps-super-header-logo {
        width: 80px !important;
        height: 70px !important;
        margin-right: 0 !important;
        margin-bottom: 8px !important;
        padding: 0 !important;
        border-radius: 0 !important;
        background: none !important;
        box-shadow: none !important;
        border: none !important;
    }

    .gps-super-header-text {
        text-align: center !important;
        width: 100% !important;
    }

    .gps-super-header-title {
        font-size: 16.5px !important;
        font-weight: 700 !important;
        line-height: 1.35 !important;
        text-align: center !important;
        margin: 0 auto !important;
        max-width: 95% !important;
        color: #083c76 !important;
    }

    .gps-super-header-subtitle {
        font-size: 10px !important;
        line-height: 1.4 !important;
        margin-top: 5px !important;
        text-align: center !important;
        max-width: 95% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        color: #475569 !important;
        font-weight: 600 !important;
    }

    .gps-super-header-right {
        width: 100% !important;
        flex: 0 0 100% !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 12px 15px !important;
        background: var(--main-color, #285690) !important;
        border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
        box-shadow: none !important;
    }

    .gps-super-header-right .right-top {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
        font-size: 13px !important;
        margin-bottom: 8px !important;
        color: #ffffff !important;
        background: none !important;
        padding: 0 !important;
        border-radius: 0 !important;
        border: none !important;
        backdrop-filter: none !important;
        box-shadow: none !important;
    }

    .gps-super-header-right .font-btn {
        background: #333333 !important;
        color: #ffffff !important;
        border: none !important;
        width: 28px !important;
        height: 28px !important;
        font-weight: bold !important;
        border-radius: 0px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin-left: 2px !important;
        font-size: 13px !important;
    }

    .gps-super-header-right .color-box {
        width: 19px !important;
        height: 19px !important;
        border: 1px solid rgba(255, 255, 255, 0.8) !important;
        border-radius: 0px !important;
        display: inline-block !important;
        margin-left: 4px !important;
        cursor: pointer !important;
        box-shadow: none !important;
    }

    .gps-super-header-right .nav-links {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin-top: 6px !important;
        font-size: 13px !important;
        width: 100% !important;
        flex-wrap: wrap !important;
        gap: 0px !important;
        color: rgba(255, 255, 255, 0.8) !important;
    }

    .gps-super-header-right .nav-links a {
        color: #ffffff !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        background: none !important;
        padding: 0 !important;
        border-radius: 0 !important;
        border: none !important;
        margin: 0 8px !important;
    }

    .gps-super-header-right .tree-img {
        width: 40px !important;
        height: auto !important;
        margin-left: 10px !important;
        display: inline-block !important;
        vertical-align: middle !important;
        filter: none !important;
    }

    /* Content, Filter & Document Lists */
    .filter-wrapper,
    div[style*="display:flex; flex-wrap:wrap; gap:8px"],
    div[style*="display: flex; flex-wrap: wrap; gap: 8px"] {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 6px !important;
        width: 100% !important;
        margin-bottom: 14px !important;
    }
    
    .filter-tab,
    .filter-tab-fac,
    .filter-tab-act {
        font-size: 11.5px !important;
        padding: 5px 12px !important;
        border-radius: 20px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        white-space: nowrap !important;
    }

    .search-wrapper {
        margin-bottom: 14px !important;
    }

    .search-box-custom {
        max-width: 100% !important;
        width: 100% !important;
    }

    .search-input-custom {
        font-size: 13.5px !important;
        padding: 10px 15px 10px 42px !important;
        height: auto !important;
    }

    .search-icon-custom {
        left: 15px !important;
        font-size: 15px !important;
    }

    .search-clear-btn {
        right: 15px !important;
        font-size: 15px !important;
    }

    .doc-item {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 12px 14px !important;
    }

    .doc-title {
        font-size: 13.5px !important;
        line-height: 1.4 !important;
        padding-right: 8px !important;
        word-break: break-all !important;
        flex: 1 1 auto !important;
        min-width: 0 !important;
    }

    .doc-link-wrap {
        min-width: auto !important;
        flex-shrink: 0 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .doc-link-text {
        display: none !important; /* Hide text on mobile to avoid squishing */
    }

    .doc-icon {
        font-size: 24px !important;
        margin: 0 !important;
    }

    /* Global Responsive Tables for Mobile */
    .content-description table {
        display: block !important;
        width: 100% !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }
}

/* ============================================================
   PREMIUM SUBPAGE TYPOGRAPHY & TEXT STYLING ENGINE
   ============================================================ */
.content-description, .subpage-content, .master-content {
    font-size: 15.5px;
    line-height: 1.85;
    color: #334155;
    word-break: break-word;
}

.content-description p, .subpage-content p, .master-content p {
    margin-bottom: 1.25rem;
    color: #334155;
    line-height: 1.85;
}

.content-description p:last-child {
    margin-bottom: 0;
}

/* Headings Styling */
.content-description h1, .content-description h2, .content-description h3, 
.content-description h4, .content-description h5, .content-description h6,
.subpage-content h1, .subpage-content h2, .subpage-content h3, 
.subpage-content h4, .subpage-content h5, .subpage-content h6 {
    color: #0f172a;
    font-weight: 700;
    margin-top: 1.8rem;
    margin-bottom: 1rem;
    position: relative;
    letter-spacing: -0.3px;
}

.content-description h2, .subpage-content h2 {
    font-size: 22px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
    color: #0f172a;
}
.content-description h2::after, .subpage-content h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--main-color, #f26522);
    border-radius: 2px;
}

.content-description h3, .subpage-content h3 {
    font-size: 19px;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 8px;
}

.content-description h4, .subpage-content h4 {
    font-size: 16.5px;
    color: #1e293b;
}

/* Bold & Key Highlights */
.content-description strong, .content-description b,
.subpage-content strong, .subpage-content b {
    color: #0f172a;
    font-weight: 700;
}

/* Lists Styling */
.content-description ul, .subpage-content ul, .master-content ul, .subpage-styled-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.content-description ul li, .subpage-content ul li, .master-content ul li, .subpage-styled-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: #334155;
}

.content-description ul li::before, .subpage-content ul li::before, .master-content ul li::before, .subpage-styled-list li::before {
    content: "\F26B";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--main-color, #f26522);
    font-size: 16px;
}

.content-description ol, .subpage-content ol, .master-content ol {
    padding-left: 1.25rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.content-description ol li, .subpage-content ol li, .master-content ol li {
    margin-bottom: 0.6rem;
    padding-left: 6px;
    color: #334155;
    line-height: 1.7;
}

.content-description ol li::marker, .subpage-content ol li::marker {
    color: var(--main-color, #f26522);
    font-weight: 700;
}

/* Highlight Callout Cards / Alert Boxes inside text */
.content-description .callout-card, .subpage-content .callout-card {
    background: #f8fafc;
    border-left: 4px solid var(--main-color, #f26522);
    border-radius: 0 10px 10px 0;
    padding: 18px 22px;
    margin: 1.5rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.content-description .callout-card h4, .subpage-content .callout-card h4 {
    margin-top: 0;
    margin-bottom: 8px;
    color: #0f172a;
}

.intake-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin: 1.5rem 0;
}

.intake-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.intake-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    border-color: var(--main-color, #f26522);
}

.intake-card .branch-title {
    font-weight: 700;
    color: #1e293b;
    font-size: 14.5px;
    line-height: 1.4;
}

.intake-card .seat-badge {
    background: #fff4ec;
    color: var(--main-color, #f26522);
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13.5px;
    border: 1px solid rgba(242, 101, 34, 0.25);
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
}

/* Process Timeline Component */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 2rem 0;
    position: relative;
}

.timeline-step-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 22px 20px;
    position: relative;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.timeline-step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--main-color, #f26522);
}

.timeline-step-number {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--main-color, #f26522) 0%, #ff8a50 100%);
    color: #ffffff;
    font-weight: 800;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    box-shadow: 0 4px 12px rgba(242, 101, 34, 0.3);
}

.timeline-step-title {
    font-weight: 700;
    font-size: 16px;
    color: #0f172a;
    margin-bottom: 8px;
}

.timeline-step-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Stat Highlight Bar */
.stat-highlight-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 16px 20px;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    margin-bottom: 25px;
    align-items: center;
}

.stat-badge-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13.5px;
    font-weight: 600;
    color: #334155;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}

.stat-badge-item i {
    color: var(--main-color, #f26522);
    font-size: 16px;
}

.stat-badge-item span.highlight {
    color: #0f172a;
    font-weight: 700;
}

/* Feature Icon Card Grid */
.feature-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 1.8rem 0;
}

.feature-icon-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    position: relative;
    overflow: hidden;
}

.feature-icon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--main-color, #f26522);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-icon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.07);
    border-color: rgba(242, 101, 34, 0.3);
}

.feature-icon-card:hover::before {
    opacity: 1;
}

.feature-icon-avatar {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(242, 101, 34, 0.1);
    color: var(--main-color, #f26522);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.feature-icon-title {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.feature-icon-body {
    font-size: 14px;
    color: #475569;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 576px) {
    .intake-grid {
        grid-template-columns: 1fr !important;
    }
    .intake-card {
        padding: 14px 16px !important;
    }
    .intake-card .seat-badge {
        padding: 6px 12px !important;
        font-size: 12.5px !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
        display: inline-flex !important;
        align-items: center !important;
    }
}

/* ==========================================
   ULTRA-PREMIUM FOLDER CARDS STYLING
   ========================================== */
.folder-card-item {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}
.folder-card-item:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18), 0 0 15px rgba(242, 101, 34, 0.2) !important;
}
.folder-card-item .card-header:hover {
    background: rgba(255, 255, 255, 0.02) !important;
}

