/* input.css */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    transition: all .4s ease-out;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
    user-select: text;
}

html {
    overflow-x: hidden;
    max-width: 1536px;
    margin: 0 auto;
}

body {
    overflow-x: clip;
    background-color: var(--bs-gray-100);
}

body::-webkit-scrollbar {
    width: 6px;
    background-color: #f1f1f1;
}

body::-webkit-scrollbar-thumb {
    background-color: #888;
}

.marquee {
    animation: marquee 10s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.transition-width {
    transition: width 0.3s ease-in-out;
}
@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

:root {
    --bs-primary: #3b82f6;
    --bs-primary-rgb: 59, 130, 246;
    --bs-gray-50: #f9fafb;
    --bs-gray-100: #f3f4f6;
    --bs-gray-200: #e5e7eb;
    --bs-gray-300: #d1d5db;
    --bs-gray-400: #9ca3af;
    --bs-gray-500: #6b7280;
    --bs-gray-600: #4b5563;
    --bs-gray-700: #374151;
    --bs-gray-800: #1f2937;
    --bs-gray-900: #111827;
    --bs-teal-500: #14b8a6;
    --bs-teal-600: #0d9488;
    --bs-teal-700: #0f766e;
    --bs-teal-800: #115e59;
}

.bg-gray-50 {
    background-color: var(--bs-gray-50) !important;
}

.bg-gray-100 {
    background-color: var(--bs-gray-100) !important;
}

.bg-gray-200 {
    background-color: var(--bs-gray-200) !important;
}

.bg-gray-700 {
    background-color: var(--bs-gray-700) !important;
}

.bg-gray-800 {
    background-color: var(--bs-gray-800) !important;
}

.bg-gray-900 {
    background-color: var(--bs-gray-900) !important;
}

.text-gray-500 {
    color: var(--bs-gray-500) !important;
}

.text-gray-600 {
    color: var(--bs-gray-600) !important;
}

.text-gray-700 {
    color: var(--bs-gray-700) !important;
}

.text-gray-800 {
    color: var(--bs-gray-800) !important;
}

.text-gray-900 {
    color: var(--bs-gray-900) !important;
}

.text-gray-300 {
    color: var(--bs-gray-300) !important;
}

.text-teal-500 {
    color: var(--bs-teal-500) !important;
}

.text-teal-600 {
    color: var(--bs-teal-600) !important;
}

.text-teal-700 {
    color: var(--bs-teal-700) !important;
}

.text-teal-800 {
    color: var(--bs-teal-800) !important;
}

.bg-teal-600 {
    background-color: var(--bs-teal-600) !important;
}

.bg-teal-700 {
    background-color: var(--bs-teal-700) !important;
}

.bg-teal-800 {
    background-color: var(--bs-teal-800) !important;
}

.cpc-max-w {
    max-width: 1536px;
}

.cpc-max-w-xs {
    max-width: 20rem;
}

.text-sm {
    font-size: .875rem !important;
    line-height: 1.25rem !important;
}

.text-lg {
    font-size: 1.125rem !important;
    line-height: 1.75rem !important;
}

.text-xl {
    font-size: 1.25rem !important;
    line-height: 1.75rem !important;
}

.text-2xl {
    font-size: 1.5rem !important;
    line-height: 2rem !important;
}

.font-semibold {
    font-weight: 600 !important;
}

.mt-2 {
    margin-top: .5rem !important;
}

.mb-2 {
    margin-bottom: .5rem !important;
}

.w-full {
    width: 100% !important;
}

.h-full {
    height: 100% !important;
}

.object-cover {
    object-fit: cover !important;
}

.cpc-hover-underline:hover {
    text-decoration: underline !important;
}

.cpc-text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

@media (max-width: 575.98px) {
    .cpc-hero-title {
        font-size: 1.5rem;
        line-height: 1.6rem;
        white-space: nowrap;
    }
    
    .cpc-text-lg {
        font-size: 1rem;
        line-height: 1.5rem;
    }
}

.cpc-text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.cpc-leading-7 {
    line-height: 1.75rem;
}

.cpc-pt-8 {
    padding-top: 2rem;
}

@media (min-width: 640px) {
    .cpc-pt-16-at-640 {
        padding-top: 4rem;
    }
}

.cpc-blur-sm {
    filter: blur(4px);
}

.cpc-ka-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .cpc-ka-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

.cpc-ka-card {
    overflow: hidden;
    cursor: pointer;
}

.cpc-ka-media {
    position: relative;
    border-radius: .5rem;
    overflow: hidden;
}

.cpc-ka-img {
    display: block;
    width: 100%;
    height: 15rem;
    object-fit: cover;
}

.cpc-ka-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .3);
    transition: opacity .3s ease;
}

.cpc-ka-icon {
    color: rgba(243, 244, 246, 1);
    font-size: 2.25rem;
    line-height: 1;
    transition: color .3s ease;
}

.cpc-ka-gradient {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50%;
    background: transparent;
    transition: background .3s ease;
}

.cpc-ka-desc {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1rem;
    margin: 0;
    padding: 0 1rem;
    color: #fff;
    text-align: center;
    font-size: 1rem;
    line-height: 1.5rem;
    transform: translateY(1.5rem);
    opacity: 0;
    transition: transform .3s ease, opacity .3s ease;
}

.cpc-ka-card:hover .cpc-ka-icon {
    color: #fff;
}

.cpc-ka-card:hover .cpc-ka-gradient {
    background: linear-gradient(to top, var(--bs-gray-800), transparent);
}

.cpc-ka-card:hover .cpc-ka-desc {
    transform: translateY(0);
    opacity: 1;
}

.cpc-msg-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

@media (min-width: 768px) {
    .cpc-msg-section {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.cpc-msg-container {
    position: relative;
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    height: 650px;
    width: 100%;
    gap: .5rem;
    padding: 0;
    border: 2px solid var(--bs-gray-200);
    border-radius: .375rem;
}

@media (min-width: 640px) {
    .cpc-msg-container {
        height: 500px;
        padding: .5rem;
    }
}

.cpc-msg-slide {
    flex: 1 1 0%;
    min-width: 100%;
    height: 100%;
    overflow: hidden;
    scroll-snap-align: start;
    transition: flex .075s ease;
    position: relative;
}

@media (min-width: 640px) {
    .cpc-msg-slide {
        min-width: 18rem;
    }
}

.cpc-msg-slide:hover {
    flex: 2 1 0%;
}

.cpc-msg-avatar-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8rem;
    height: 8rem;
    overflow: hidden;
    border-radius: 9999px;
    border: 4px solid #fff;
    transition: opacity .075s ease;
}

.cpc-msg-avatar-corner {
    position: absolute;
    left: 1rem;
    top: 1rem;
    width: 4rem;
    height: 4rem;
    overflow: hidden;
    border-radius: 9999px;
    border: 2px solid #fff;
    opacity: 0;
    transition: opacity .075s ease;
}

.cpc-msg-overlay-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 2rem;
    width: 16rem;
    padding: .5rem;
    color: #fff;
    background: rgba(0, 0, 0, .4);
    border-radius: .5rem;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
    text-align: center;
    transition: opacity .075s ease;
}

@media (min-width: 640px) {
    .cpc-msg-overlay-center {
        bottom: 1rem;
    }
}

.cpc-msg-quote {
    display: block;
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: .5rem;
}

.cpc-msg-overlay-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cpc-msg-meta {
    position: absolute;
    left: 6rem;
    top: 1.25rem;
    display: flex;
    align-items: center;
    width: 15rem;
    padding: .5rem;
    color: #fff;
    background: rgba(0, 0, 0, .4);
    border-radius: .5rem;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
    opacity: 0;
    transition: opacity .075s ease;
    pointer-events: none;
}

.cpc-msg-meta-inner {
    flex: 1;
    border-right: 2px solid #fff;
}

.cpc-msg-meta-link {
    padding-left: 1rem;
    pointer-events: auto;
    color: inherit;
}

.cpc-msg-text {
    position: absolute;
    left: 50%;
    top: 6rem;
    transform: translateX(-50%);
    width: 91.666667%;
    z-index: 10;
    opacity: 0;
    transition: opacity .075s ease;
    pointer-events: none;
}

.cpc-msg-slide:hover .cpc-msg-avatar-center {
    opacity: 0;
}

.cpc-msg-slide:hover .cpc-msg-avatar-corner {
    opacity: 1;
}

.cpc-msg-slide:hover .cpc-msg-overlay-center {
    opacity: 0;
}

.cpc-msg-slide:hover .cpc-msg-meta {
    opacity: 1;
}

.cpc-msg-slide:hover .cpc-msg-text {
    opacity: 1;
}

.text-justify {
    text-align: justify !important;
}

.cpc-hyphens-auto {
    hyphens: auto;
}

.cpc-section-xl {
    padding-top: 5rem;
    padding-bottom: 5rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.cpc-section-md {
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

@media (min-width: 576px) {
    .cpc-section-md {
        padding-top: 4rem;
        padding-bottom: 4rem;
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.cpc-section-title {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .cpc-section-xl {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.cpc-hero {
    height: 350px;
}

.cpc-hero-title {
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 700;
    margin: 0;
}

.cpc-hero-logo {
    width: 5rem;
    height: auto;
}

@media (min-width: 576px) {
    .cpc-hero-logo {
        width: 6rem;
    }
}

.cpc-btn-hero {
    padding: .75rem 1.5rem;
    border-radius: .375rem;
}

.cpc-hover-pop {
    transition: transform .2s ease, box-shadow .2s ease;
}

.cpc-hover-pop:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
}

.cpc-img-zoom img {
    transition: transform .2s ease;
}

.cpc-img-zoom:hover img {
    transform: scale(1.05);
}

.cpc-bilaspur-hero {
    height: 24rem;
}

.cpc-bilaspur-bg-left {
    object-fit: contain;
    transform: translateX(-40%);
}

.cpc-bilaspur-bg-right {
    object-fit: contain;
    transform: translateX(40%);
}

.cpc-z-10 {
    z-index: 10;
}

.cpc-max-w-48 {
    max-width: 48rem;
}

.cpc-bg-yellow {
    background: #eab308;
}

.cpc-bg-green {
    background: #22c55e;
}

.cpc-bg-purple {
    background: #a855f7;
}

.cpc-bg-red {
    background: #ef4444;
}

.cpc-bg-blue {
    background: #3b82f6;
}

.cpc-bg-teal {
    background: #14b8a6;
}

.cpc-z-overlay {
    z-index: 2000;
}

.cpc-achievement-media {
    height: 12rem;
}

.cpc-achievement-card img {
    transition: transform .5s ease;
}

.cpc-achievement-card:hover img {
    transform: scale(1.1);
}

.cpc-achievement-skeleton-line {
    height: 1rem;
}

.cpc-logo-cloud {
    max-height: 12rem;
    mask-image: linear-gradient(
        to right,
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, 1) 30%,
        rgba(0, 0, 0, 1) 70%,
        rgba(0, 0, 0, 0)
    );
}

.cpc-logo-cloud:hover .animate-slide {
    animation-play-state: paused;
}

.cpc-logo-track {
    min-width: 160%;
}

.cpc-logo-cloud-img {
    max-width: 10rem;
    height: auto;
    object-fit: contain;
}

.cpc-logo-cloud-divider {
    width: 2.5rem;
    padding: .5rem;
    margin: 0 3rem;
    object-fit: contain;
}

.cpc-logo-img {
    width: 4rem;
    height: auto;
}

@media (min-width: 576px) {
    .cpc-logo-img {
        width: 6rem;
    }
}

.animate-slide {
    animation: slide 25s linear infinite;
}

.animate-paused {
    animation-play-state: paused;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.translate-x-full {
    transform: translateX(100%);
}

.cpc-announcement-wrapper {
    position: fixed;
    right: 0;
    top: 25%;
    height: 60%;
    z-index: 40;
    pointer-events: none;
}

.cpc-announcement-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 12rem;
    background: #fff;
    color: var(--bs-primary);
    border: 0;
    border-left: 4px solid var(--bs-primary);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
    cursor: pointer;
    pointer-events: auto;
}

.cpc-announcement-btn:hover {
    background: #eff6ff;
}

.cpc-announcement-label {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .1em;
    white-space: nowrap;
}

.cpc-announcement-icon {
    position: absolute;
    left: 50%;
    bottom: .75rem;
    transform: translateX(-50%);
    width: 1.25rem;
    height: 1.25rem;
    display: grid;
    place-items: center;
    transition: transform .3s ease-in-out;
}

.cpc-announcement-dot {
    position: absolute;
    top: .75rem;
    left: 50%;
    transform: translateX(-50%);
    width: .75rem;
    height: .75rem;
}

.cpc-announcement-dot::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 9999px;
    background: #ef4444;
    opacity: .75;
    animation: cpc-ping 1s cubic-bezier(0, 0, .2, 1) infinite;
}

.cpc-announcement-dot::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: .5rem;
    height: .5rem;
    border-radius: 9999px;
    background: #dc2626;
    transform: translate(-50%, -50%);
}

@keyframes cpc-ping {
    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.cpc-announcement-offcanvas.offcanvas-end {
    top: 0;
    height: 100%;
    width: 20rem;
    border-left: 4px solid var(--bs-primary);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
}

@media (min-width: 576px) {
    .cpc-announcement-offcanvas.offcanvas-end {
        width: 24rem;
    }
}

.cpc-announcement-body {
    padding: 1.5rem;
    padding-bottom: 1.5rem;
}

.cpc-announcement-title {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    padding: 1rem 0;
    margin: 0 0 1rem 0;
    border-bottom: 2px solid #f1f5f9;
    color: var(--bs-primary);
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cpc-announcement-list {
    margin: 0;
    padding: 0;
    color: var(--bs-gray-700);
}

.cpc-announcement-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #f1f5f9;
}

.cpc-announcement-item-text {
    display: flex;
    flex-direction: column;
}

.cpc-announcement-date {
    font-size: .75rem;
    color: var(--bs-gray-500);
    margin-bottom: .25rem;
}

.cpc-announcement-new {
    position: absolute;
    top: -.25rem;
    right: .25rem;
    width: 2.25rem;
    height: 1.25rem;
}

.cpc-announcement-skeleton {
    opacity: .9;
    animation: cpc-pulse 2s cubic-bezier(.4, 0, .6, 1) infinite;
}

.cpc-skeleton-icon {
    color: var(--bs-gray-300);
    margin-top: .125rem;
}

.cpc-skeleton-line {
    background-color: var(--bs-gray-300);
    border-radius: .25rem;
}

.cpc-skeleton-line-sm {
    width: 4rem;
    height: .75rem;
}

.cpc-skeleton-line-md {
    width: 10rem;
    height: 1rem;
    margin-top: .5rem;
}

@keyframes cpc-pulse {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }
}

.cpc-navbar {
    height: 4rem;
}

.cpc-navbar-brand {
    width: 18rem;
}

@media (max-width: 575.98px) {
    .cpc-navbar-brand {
        width: auto;
        max-width: calc(100% - 3.25rem);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

.cpc-credits-line {
    width: .5rem;
    background: linear-gradient(to bottom, #f8f9fa, #adb5bd, #f8f9fa);
    z-index: 0;
}

.cpc-credits-half {
    position: relative;
    z-index: 1;
}

.cpc-credits-card {
    max-width: 20rem;
}

@media (min-width: 768px) {
    .cpc-credits-half {
        width: 50%;
    }
}

.cpc-credits-dot {
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    font-size: 1rem;
    z-index: 1;
}

@media (max-width: 767.98px) {
    .cpc-credits-dot {
        transform: translateY(-1rem);
    }
}

@media (min-width: 768px) {
    .cpc-credits-dot {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.125rem;
    }

    .cpc-credits-dot-right {
        transform: translate(-50%, 1.25rem);
    }

    .cpc-credits-dot-left {
        transform: translate(50%, 1.25rem);
    }

    .cpc-credits-dot-outside-left {
        transform: translate(-150%, 1.25rem);
    }

    .cpc-credits-dot-outside-right {
        transform: translate(50%, 1.25rem);
    }
}

@media (max-width: 991.98px) {
    .cpc-dropdown-menu {
        top: auto !important;
    }

    #header2 .dropdown-menu {
        position: static;
        width: 100%;
        margin-top: .5rem;
    }

    #header2 .navbar-nav {
        align-items: stretch;
    }
}

.cpc-credits-main {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

@media (min-width: 576px) {
    .cpc-credits-main {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

.cpc-credits-wrap {
    gap: 4rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

@media (min-width: 992px) {
    .cpc-credits-wrap {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.cpc-dropdown-menu {
    background-color: var(--bs-gray-900);
    margin-top: 0;
    top: 3.2rem !important;
}

.cpc-dropdown-menu .dropdown-item {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.15s ease;
}

.cpc-dropdown-menu .dropdown-item:hover {
    color: #fff;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

@media (min-width: 992px) {
    #header1 .dropdown:hover > .dropdown-menu {
        display: block;
    }

    #header1 .dropdown:hover > .dropdown-toggle {
        color: rgba(255, 255, 255, .9);
    }

    #header1 .dropdown-menu {
        margin-top: 0;
    }
}

@media (min-width: 992px) {
    #header2 .dropdown:hover > .dropdown-menu {
        display: block;
    }

    #header2 .dropdown:hover > .dropdown-toggle {
        color: rgba(255, 255, 255, .95) !important;
    }

    #header2 .dropdown-menu {
        margin-top: 0;
    }
}

#header2 .navbar-nav .nav-link {
    color: rgba(255, 255, 255, .85) !important;
}

#header2 .navbar-nav .nav-link:hover,
#header2 .navbar-nav .nav-link:focus {
    color: rgba(255, 255, 255, 1) !important;
}

.sticky-top-0 {
    top: 0 !important;
}

@media (max-width: 991.98px) {
    #nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 0 1rem;
        background-color: var(--bs-gray-900) !important;
    }
    
    #nav-links .navbar-nav {
        padding: 1rem 0;
    }
    
    #nav-links .nav-link {
        padding: 0.75rem 1.5rem !important;
    }
    
    #nav-links .dropdown-menu {
        margin-left: 2rem;
        background-color: transparent !important;
        border-left: 3px solid var(--bs-gray-600);
        padding-left: .5rem;
    }
    
    .navbar-toggler {
        outline: none !important;
        box-shadow: none !important;
        border: none !important;
    }
    
    .navbar-toggler:focus {
        outline: none !important;
        box-shadow: none !important;
        border: none !important;
    }
}

@media (min-width: 992px) {
    #nav-links {
        background-color: transparent !important;
    }
}

.cpc-header1-title {
    font-size: 1.125rem;
    line-height: 1.25;
}

@media (min-width: 576px) {
    .cpc-header1-title {
        font-size: 1.25rem;
    }
}

.cpc-header1-subtitle {
    font-size: .875rem;
}

.cpc-preloader-logo {
    width: 7rem;
    height: 7rem;
}

.cpc-preloader-bg {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    opacity: .3;
    overflow: hidden;
}

.cpc-preloader-gradient {
    position: absolute;
    inset: 0;
    height: 20%;
    background: linear-gradient(to top, transparent, #f9fafb);
    z-index: 50;
}

.cpc-preloader-img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    opacity: .8;
}

@media (min-width: 768px) {
    .cpc-preloader-img {
        height: 24rem;
    }
}

.cpc-animate-pulse {
    animation: cpc-pulse 2s cubic-bezier(.4, 0, .6, 1) infinite;
}

.relative {
    position: relative !important;
}

.absolute {
    position: absolute !important;
}

.inset-0 {
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
}

.top-1\/2 {
    top: 50% !important;
}

.left-1\/2 {
    left: 50% !important;
}

.-translate-x-1\/2 {
    --cpc-translate-x: -50%;
    transform: translate(var(--cpc-translate-x, 0), var(--cpc-translate-y, 0)) !important;
}

.-translate-y-1\/2 {
    --cpc-translate-y: -50%;
    transform: translate(var(--cpc-translate-x, 0), var(--cpc-translate-y, 0)) !important;
}

.z-10 {
    z-index: 10 !important;
}

.cpc-footer {
    padding-top: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

@media (min-width: 992px) {
    .cpc-footer {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.cpc-footer-inner {
    padding-left: 0;
    padding-right: 0;
}

.cpc-footer-row {
    padding-top: 2rem;
    padding-bottom: 2rem;
    --bs-gutter-x: 2rem;
    --bs-gutter-y: 2rem;
}

.cpc-footer-col-primary {
    margin-bottom: 2.5rem;
}

@media (min-width: 992px) {
    .cpc-footer-col-primary {
        margin-bottom: 0;
    }
}

.cpc-footer-map {
    position: relative;
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: .5rem;
}

@media (min-width: 992px) {
    .cpc-footer-map {
        width: 83.333333%;
    }
}

.cpc-footer-map-overlay {
    position: absolute;
    inset: 0;
    background-color: var(--bs-gray-100);
    opacity: .5;
    pointer-events: none;
}

.cpc-footer-contact-btn {
    width: fit-content;
    display: block;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
}

.cpc-footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--bs-gray-900);
    margin-bottom: 1.75rem;
}

.cpc-footer-list {
    padding-left: 0;
    margin: 0;
}

.cpc-footer-list li {
    margin-bottom: 1.5rem;
}

.cpc-footer-list li:last-child {
    margin-bottom: 0;
}

.cpc-footer-link {
    color: var(--bs-gray-600);
    text-decoration: none;
    transition: color .3s;
}

.cpc-footer-link:hover {
    color: var(--bs-gray-900);
}

.cpc-footer-bottom {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
    border-top: 1px solid var(--bs-gray-200);
}

.cpc-footer-credit {
    text-decoration: none;
}

.cpc-footer-credit:hover {
    text-decoration: underline;
}

.cpc-footer-social {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 9999px;
    background-color: var(--bs-gray-700);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color .3s;
}

.cpc-footer-social:hover {
    background-color: #6366f1;
}

.cpc-fr-btn {
    max-width: 20rem;
    padding: 0.75rem 1.5rem;
}

.cpc-fr-brochure-btn {
    max-width: 15rem;
}

.cpc-fr-brochure-preview {
    width: 100%;
    max-width: 56rem;
    height: 300px;
}

@media (min-width: 576px) {
    .cpc-fr-brochure-preview {
        height: 400px;
    }
}

@media (min-width: 992px) {
    .cpc-fr-brochure-preview {
        height: 500px;
    }
}

.cpc-fr-step {
    height: 100%;
}

.cpc-fr-arrow-down {
    position: absolute;
    left: 50%;
    bottom: -30px;
    transform: translateX(-50%);
}

.cpc-fr-arrow-right {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
}

.cpc-fr-arrow-left {
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
}

.cpc-fr-arrow-row {
    display: flex;
    align-items: center;
    position: relative;
}

.cpc-fr-arrow-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.cpc-fr-arrow-body-down {
    width: 1.25rem;
    height: 1rem;
    background: linear-gradient(to bottom, #ffffff, #94a3b8);
}

.cpc-fr-arrow-head-down {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #94a3b8;
}

.cpc-fr-arrow-body-right {
    width: 1.25rem;
    height: 1rem;
    background: linear-gradient(to right, #ffffff, #94a3b8);
}

.cpc-fr-arrow-head-right {
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid #94a3b8;
}

.cpc-fr-arrow-body-left {
    width: 1.25rem;
    height: 1rem;
    background: linear-gradient(to left, #ffffff, #94a3b8);
}

.cpc-fr-arrow-head-left {
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid #94a3b8;
}

.cpc-fr-faq-card {
    cursor: pointer;
}

.cpc-fr-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease-in-out;
}

/* Icon rotation */
.rotate-180 {
    transform: rotate(180deg);
    transition: transform 0.3s ease-in-out;
}

.cpc-travel-card {
    max-width: 320px;
    width: 100%;
    height: 224px;
}

@media (max-width: 767px) {
    .cpc-travel-card {
        max-width: 100%;
        height: 224px;
    }
}

.sidebar-nav a {
    transition: background-color 0.3s ease;
}

.sidebar-nav a:hover {
    background-color: var(--bs-gray-700);
}

.sticky-top-custom {
    position: sticky;
    top: 64px;
    z-index: 10;
}

.max-h-screen {
    max-height: 100vh;
}

.stat-card {
    transition: box-shadow 0.3s ease;
}

.chart-container {
    height: 300px;
}

.alumni-card {
    height: 288px;
}

.alumni-img-wrapper {
    width: 112px;
    height: 112px;
    transition: transform 0.3s ease;
}

.alumni-img-wrapper:hover {
    transform: scale(1.05);
}

.skeleton {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.hover-text-teal:hover {
    color: var(--bs-teal-700) !important;
}

.hidden {
    display: none !important;
}

/* Alphabet buttons styling */
.alphabet-btn {
    background-color: var(--bs-teal-600);
    color: white;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.alphabet-btn:hover {
    background-color: var(--bs-teal-700);
    text-decoration: underline;
}

.alphabet-btn.scale-110 {
    transform: scale(1.1);
}

/* Remove padding from container-fluid for exact match */
.main-container {
    padding-left: 0;
    padding-right: 0;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .sidebar-nav {
        display: none;
    }
}

@media (min-width: 768px) {
    .sidebar-col {
        flex: 0 0 20%;
        max-width: 20%;
    }

    .main-col {
        flex: 0 0 80%;
        max-width: 80%;
    }
}