@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Devanagari:wght@100..900&display=swap');


body {
    font-family: "Noto Serif Devanagari", serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.container {
    width: 100%;
    margin: auto;
}

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

nav>ul>li>a {
    text-decoration: none;
    color: whitesmoke;
}

.topbar{
    font-size: 18px;
}

.topbar-gradient {
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 50%, var(--primary) 100%);
    color: white;
}

.navbar-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--trinary) 50%, var(--secondary)100%);
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.navbar .nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}

.navbar .nav-link:hover {
    color: rgb(195, 193, 193);
}

.navbar-glass {
    background: var(--primary);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.marquee-container {
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    background: radial-gradient(circle, var(--primary), var(--secondary), var(--primary));
    color: white;
    padding: 0px 0;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    width: 100%;
}

.marquee-content {
    display: flex;
    gap: 0px;
    min-width: 350%;
    animation: marquee 60s linear infinite;
}

.bg-hover-secondary:hover{
    background-color: red;
}

.navbar {
    position: relative;
    z-index: 1000;
}

.dropdown-menu {
    z-index: 1050;
    position: absolute;
    top: 100%;
    left: 0;
}

.marquee-container-news {
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    background: whitesmoke;
    color: black;
    padding: 20px 0;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    width: 100%;
}

.marquee-content-news {
    display: flex;
    gap: 30px;
    min-width: 680%;
    animation: marquee 60s linear infinite;
}

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

@keyframes marquee {
    from {
        transform: translateX(15%);
    }

    to {
        transform: translateX(-50%);
    }
}

.marquee-content a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s;
}

.branch-item {
    color: rgba(0, 0, 0, 0.9);
    text-decoration: none;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    padding-left:15px;
    display: flex;
    align-items: center;
    text-align: center;
    transition: color 0.3s, background-color 0.3s;
    border-left: 1px solid white;
}

.branch-item:first-child {
    border-left: none;
}

.branch-text {
    display: block;
}

.custom-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
    color: black;
    width: 100%;
    height: 150px;
    border: 2px solid transparent;
    background-color: #f8f9fa;
    border-radius: 5px;
}

.custom-card:hover {
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.custom-card:hover .btn {
    color: white;
    background-color: transparent;
}


.custom-card-link {
    text-decoration: none;
    display: block;
}


.bg-primary {
    background-color: var(--primary) !important;
}

.bg-light-primary {
    background-color: var(--light-primary);
}

.bg-light-primary {
    background-color: var(--light-primary);
}

.primary {
    color: var(--primary);
}

.secondary {
    color: var(--secondary);
}

.underline-grow {
    position: relative;
    padding-bottom: 5px;
}

.underline-grow::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 0;
    background-color: rgb(195, 193, 193);
    transition: width 0.3s ease;
}

.underline-grow:hover::after {
    width: 100%;
}

.staff-card {
    font-size: 14px;
}

@media (min-width: 1400px) {
    .staff-card {
        font-size: 20px;
    }
}

.row,
.col {
    margin: 0 !important;
    padding: 0 !important;
}


@media (min-width: 2400px) {
    .col-xxxl-7 {
        width: calc(100% / 7);
    }
}
