/* Global Styles */
body {
    font-family: 'Times New Roman', Times, serif, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;

    background-image: url("../images/background.jpeg?v=5");
    background-size: cover;        /* 🔥 Full width & height */
    background-position: center;   /* Center the image */
    background-repeat: no-repeat;  /* No repeat */
    background-attachment: fixed;  /* Optional: parallax effect */
    min-height: 100vh;             /* Full screen height */
}
.navbar
{
  background-color: #FFF8DC;
    color: #004080 !important;
}
header {
    /*background-image: url("../images/top.jpg");*/
    padding: 20px;
	margin: 0 auto;
	max-width:1200px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav ul li {
    margin: 1px 10px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 10px;
    transition: background-color 0.3s ease;
	font-family: Times New Roman;
	display: inline-block;
	
    
}

nav ul li a:hover {
    background-color: #555;
    border-radius: 5px;
	transform: scale(1.2); /* Scale up on hover */
    color: #ff6347; /* Change color on hover */
}

 

footer {
	/*background-image: url("../images/background.jpg");*/
    color: black;
    text-align: center;
    padding: 0px 0;
    position: relative;
    width: 100%;
	overflow:hidden;
}

h1, h2 {
    color: #333;
    text-align: center;
    margin: 20px 0;
}

 



form {
    max-width: auto;
    margin: auto;
}

form label {
    display: block;
    margin-bottom: 5px;
}

form input[type="text"],
form input[type="email"],
form input[type="password"],
form input[type="number"],

form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form input[type="submit"] {
    background-color: #b6ba7d;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    width: 100%;
}

form input[type="submit"]:hover {
    background-color: #b6ba7d;
}
form fieldset {
  background-color: #FFF8DC;
    color: #004080;
  width: 100%;
  border-radius: 10px;
  padding: 20px 50px;
}
form fieldset  legend{
    padding: 20px 50px;
	 
    font-size: x-large;
    font-family: auto;
    font-weight: bolder;
}
a.btn {
    display: inline-block;
    background-color: #b6ba7d;;
    color: #004080;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s ease;
}

a.btn:hover {
    background-color: #555;
}

/* Utility Classes */
.container {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
	/*background-image: url("../images/main.jpg");*/
	border-radius: 10px 10px 10px 10px;
    background-color: #FFF8DC;
margin-bottom: 20px;
margin-top: 20px;
     color: #004080;
}

.text-center {
    text-align: center;
}


/* Homepage Styles */

	
.home-wrapper {
    max-width: 1200px;   /* SAME width as your slider area */
    margin: 0 auto;      /* center */
    margin-bottom: 20px;
    margin-top: 20px;
}

 

/* section text styling */
.sectiontext {
    margin-top: 20px;
    background-color: #FFF8DC;
    color: #004080;
    padding: 20px;
    border-radius: 10px;
    line-height: 1.7;
   
    max-width: 1200px;   /* Same width as your slider area */
    margin: 20px auto;   /* Center align & stop full width */

}

        
/*  Marquee Box */
.right-marquee {
    width: 30%;
    background-color: #FFF8DC;
    color: #004080;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #4aaeef;
    display: flex;
    flex-direction: column;
    display: flex;
    gap: 20px;
}
.marquee-link {
    display: block;
    font-weight: bold;
  
    color: #004080;
    text-decoration: none;
    padding: 5px 0;
}

.marquee-link:hover {
    color: #000;
    text-decoration: underline;
}

.right-marquee marquee {
    flex: 1;               /*  marquee height matches slider automatically */
}

/*  Slider */
.slider {
    width: 70%;
    position: relative;
}

.slides img {
    width: 100%;
    height: 100%;          /*full height */
    object-fit: cover;     /*  images fit properly */
    border-radius: 10px;
	  display: flex;
    transition: transform 0.6s ease-in-out;
}
section {
    
    background-color: #FFF8DC;
    color: #004080;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: justify;
    margin-bottom: 20px;
}

section p {
    max-width: 600px;
    margin-bottom: 20px;
}



/* Courses Page Styles */
ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1px;
    list-style: none;
    padding: 0;
}

ul li {
    background-color: #FFF8DC;
    color: #004080;
    padding: 3px;
    
    text-align: center;	
    transition: background-color 0.3s ease;
}

ul li:hover {
    background-color: #abe27bab;
}
/* Responsive Image Styles */
.banner-image {
    width: 100%;
    max-width: 100%; /* Adjust based on your design */
    height:85%;
    display: block;
    margin: 0 auto; /* Center the image */
	border-radius: 10px;
}
header nav .banner-image {
    width: 100%;
    max-width: 1200px; /* Adjust based on your design */
    height: 130px;
    display: block;
    margin: 0 auto 10px; /* Center the image */
	border-radius: 10px;
	
}

/* Adding images to the sections */
.section-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.section-images img {
    width: 100%;
    max-width: 300px; /* Adjust as needed */
    margin: 10px;
    border-radius: 8px; /* Optional for styling */
}



/*table*/
.table
{
	border-collapse: collapse;
    margin: 25px 0;
    font-size: 1em;
    font-family: Times New Roman;
    min-width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px; 
	width:100%;
	background-color: #FFF8DC;
    color: #004080;
	font-weight:20em;
	 
}
.table thead tr {
    background-color: #FFF8DC;
    color: #004080;
    text-align: left;
}
.table tbody tr {
    border-bottom:  solid #dddddd;
}
.table tbody tr:hover {
    background-color: #cff4fc;
}

.table th,
.table td {
    padding: 12px 15px;
}
.table tbody tr {
    border-bottom: 1px solid #dddddd;
}



.contactpageright{
  width: 50%;
  height:auto;
  margin-left: 10px;
  float: right;
   
}
.contactpageleft{
  width: 40%;
  margin-right: 10px;
  margin-left: 10px;
  height:auto;
   
}
aside form input[type="text"],
form input[type="email"],
form input[type="password"],
form input[type="number"],
form textarea {
    width: 90%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
aside iframe {
width :600px;
height:470px;

}	

.toggleDiv {
   background-color: #FFF8DC;
    color: #004080;
    border: 1px solid #ccc;
    padding: 20px;
    margin-top: 10px;
	display: none; 
	
}
.selected {
    border: 2px solid #000; /* Highlight selected div */
}
.hidden {
    display: none; /* Hide the div */
}

.visible {
    display: block; /* Show the div */
}

.blink {
            animation: blinker 1.5s linear infinite;
            color: red;
            font-size: 1.0em;
            /* Larger, responsive font size */
        }

        @keyframes blinker {
            50% {
                opacity: 0;
            }
        }
		
.fac_img
{
	width:50px;
	height:50px;
	border :10px #ccf4f1;
	border-radius:5px;
}
.focus {
    background-color: #ccf4f1;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
}
/*pagination in Teacher*/
.pageNumber {
    padding: 2px;
	
}

#pages
{
	text-align:Center;
}
		/*Alert */         
        /* Designing dialog box */
        #container {
            display: none;
            background-color: purple;
            color: white;
            position: absolute;
            width: 350px;
            border-radius: 5px;
            left: 50%;
            margin-left: -160px;
            padding: 16px 8px 8px;
            box-sizing: border-box;
        }
         
        /* Designing dialog box's okay button */
        #container button {
            background-color: yellow;
            display: inline-block;
            border-radius: 5px;
            border: 2px solid gray;
            padding: 5px;
            text-align: center;
            width: 60px;
        }
         
        /* Dialog box message decorating */
        #container .message {
            text-align: left;
            padding: 10px 30px;
        }
.social_size
{
	width :20px;
	height:20px;
	border-radius: 10px;
}
.social_text
 {
	 color: #f34f5f;
	 text-align:left;
 }

 .admform-container {
          
            width: 100%;
            max-width: 600px;
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.admpreview-container img, .admpreview-container embed {
    max-width: 50%;
    margin-top: 10px;
}

/*Mobile Menu*/
.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
}
.nav-link {
    font-size: 1.1rem;
}


@media (max-width: 768px) {
    .navbar-nav {
        text-align: right;
    }
}
/* Fixed navbar when scrolled */
.navbar.fixed-navbar {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 1030; /* Above Bootstrap components */
  opacity: 90%;
  background-color: #FFF8DC;
    color: #004080;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

/*Submenu*/
.dropdown-menu {
    background-color: #f8f9fa;
}
.dropdown-item:hover {
   background-color: #978b5b;
    color: #859db5;
}
 .dropdown-submenu .dropdown-menu {
            display: none;
        }

 .dropdown-submenu .dropdown-menu.show {
            display: block;
        }

.dropdown-menu .dropdown-item {
    pointer-events: auto;
}
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  display: none; /* Initially hidden */
  z-index: 1000; /* Ensure it's on top */
}

#overlay img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%; /* Adjust as needed */
  height: auto;
}

#overlay.visible {
  display: block; /* Show on trigger */
}
#scrollTopBtn {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 20px; /* Adjust position */
  right: 20px;
  z-index: 99;
  font-size: 20px;
  border: none;
  outline: none;
  background-color: #e8380c;
  color: white;
  cursor: pointer;
  padding: 12px;
  border-radius: 50%;
  transition: all 0.3s;
}

#scrollTopBtn:hover {
  background-color: #555;
}
#navbarMenu{
background-color: #FFF8DC;
    color: #004080;
    font-weight: 700;
        margin: 0px 145px 0px 130px;
        border-radius: 10px
}
/*Extra*/
 .nss-logo {
        width: 40px;
        margin-right: 10px;
    }
    .heading-icon {
        display: flex;
        align-items: center;
        font-weight: bold;
        margin-bottom: 1.5rem;
    }
    .detail-row {
        margin-bottom: 10px;
        padding: 10px 0;
        border-bottom: 1px solid #dee2e6; /* Thin separator */
    }
    .label {
        font-weight: bold;
        color: #007bff; /* Bootstrap primary color */
        margin-right: 5px;
    }
    .content {
        color: #343a40; /* Dark grey for contrast */
    }

    .footer_bar {
    width: 100%;
    float: left;
       padding: 20px 0 10px;
       background-color: #FFF8DC;
    color: #004080;
    }
     
    .footer_bar ul li{
    background-color: inherit !important;
    padding: 3px;
    border-radius: 0px !important;
    text-align: left;
    color: rgb(20, 20, 20);
    transition: background-color 0.3s ease;
    }
    .footer_bar ul li a{
     text-decoration: underline;
     color: #000;
    }
    .footer_bar h2 {
    border-bottom: 1px solid #070808;
    color: #131313;
    font-size: 130%;
    padding-bottom: 3px;
    padding-left: 0;
    text-align: left;
    position: relative;
}

.school-brand {
    max-width: 100%;
    overflow: hidden;
}

.brand-logo {
    height: 32px;
    width: auto;
    flex-shrink: 0;
}

.brand-text {
    margin-left: 8px;
    white-space: nowrap;        /* NO wrap */
    overflow: hidden;
    text-overflow: ellipsis;    /* auto cut if needed */
    font-size: clamp(12px, 4vw, 16px); /* auto resize */
    font-weight: 600;
    line-height: 1;
}


.navbar-toggler {
    border: none;
    outline: none;
}

.toggler-icon {
    width: 24px;
    height: 2px;
    background: #000;
    display: block;
    position: relative;
    transition: all 0.3s ease;
}

.toggler-icon::before,
.toggler-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: #000;
    left: 0;
    transition: all 0.3s ease;
}

.toggler-icon::before {
    top: -7px;
}
.toggler-icon::after {
    top: 7px;
}

/* WHEN OPEN → X */
.navbar-toggler[aria-expanded="true"] .toggler-icon {
    background: transparent;
}
.navbar-toggler[aria-expanded="true"] .toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
}
.navbar-toggler[aria-expanded="true"] .toggler-icon::after {
    transform: rotate(-45deg);
    top: 0;
}

/* Small logo for mobile */
.mobile-logo-small {
    height: 32px;
    width: auto;
    object-fit: contain;
}


   /* Home page three Card Animation */
.animate {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= Card Base ================= */
.card {
    border-radius: 14px;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

/* Hover effect (NO zoom) */
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* ================= Headings ================= */
.animated-heading {
    position: relative;
    display: inline-block;
}

.animated-heading::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    left: 0;
    bottom: -6px;
    background-color: #8bc34a;
    transition: width 0.3s ease;
}

.card:hover .animated-heading::after {
    width: 100%;
}

/* ================= Principal Image ================= */
.principal-img {
    width: 100%;
    max-width: 120px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* ================= Updates Scroll ================= */
.updates-box {
    text-align: left !important;
    overflow: hidden;
}

.updates-box ul {
    padding-left: 0;
    animation: scrollUp 12s linear infinite;
}

.updates-box:hover ul {
    animation-play-state: paused;
}

.updates-box li {
    text-align: left;
}



@keyframes scrollUp {
    0%   { transform: translateY(100%); }
    100% { transform: translateY(-100%); }
}

/* ================= Spacing Fix ================= */
.col-md-4 {
    margin-bottom: 1rem;
}

/* ================= Mobile Friendly ================= */
@media (max-width: 768px) {

    .card {
        margin-bottom: 1.5rem;
    }

    h5.card-title {
        font-size: 1.1rem;
        text-align: center;
    }

    .principal-img {
        max-width: 100px;
    }

    .animate {
        animation-duration: 0.6s;
    }
}

/* Disable hover lift on touch devices */
@media (hover: none) {
    .card:hover {
        transform: none;
        box-shadow: 0 6px 15px rgba(0,0,0,0.12);
    }
}
/* Push buttons to bottom */
.card-body .btn {
    margin-top: auto;
    align-self: flex-end; /* right side */
}

/* Optional: consistent spacing */
.card-body .btn {
    margin-bottom: 5px;
}
/* Navbar link hover - force green, remove animation */
.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .dropdown-toggle:hover,
.navbar .dropdown-toggle:focus {
    background-color: #c8e6a0  !important; /* green shade */
    color: #000 !important;
    transition: none !important; /* remove animation */
}

/* If dropdown menu item */
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
    background-color: #c8e6a0  !important;
    color: #000 !important;
    transition: none !important;
}
.navbar .nav-link.active,
.navbar .show > .nav-link {
    background-color: #c8e6a0  !important;
    color: #000 !important;
}
.navbar * {
    transition: none !important;
    transform: none !important;
}

/*Main Page*/
/* ================= LAYOUT FIX ================= */
.row.d-flex {
    align-items: stretch;
    position: relative;
}

/* ================= COMMON HEIGHT ================= */
.slider,
.leader {
    height: 380px;           /* ONE SOURCE OF TRUTH */
}

/* ================= SLIDER ================= */
.slider {
    position: relative;
    overflow: hidden;
}

.slider .slides,
.slider .slide {
    height: 100%;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

/* ================= LEADER COLUMN ================= */
.leader {
    position: relative;
    z-index: 2;
}

.right-sticky-box.leaders-box {
    height: 100%;
    padding: 0px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;   /* IMPORTANT */
}

/* ================= LEADER CARDS ================= */
.leader-card {
    text-align: center;
    padding: 1px;
}

/* CM IMAGE */
.leader-card.full-width img {
    width: 100%;
    height: 120px;
    object-fit: contain;     /* NO FACE CROP */
    background: #fff;
    border-radius: 14px;
}

/* OTHER LEADERS */
.leader-card img {
    width: 100%;
    height: 80px;
    object-fit: contain;     /* NO FACE CROP */
    background: #fff;
    border-radius: 12px;
}

/* ================= TEXT ================= */
.leader-name {
    font-size: 11px;
    font-weight: 600;
    margin-top: 2px;
    line-height: 1.2;
}

.leader-title {
    font-size: 10px;
    color: #3b3463;
    line-height: 1.2;
}

/* ================= MOBILE ================= */

@media (max-width: 767px) {

    /* Remove forced heights */
    .slider,
    .leader {
        height: auto !important;
        min-height: auto !important;
    }

    /* Slider image auto height */
    .banner-image {
        height: auto !important;
        object-fit: cover;
    }

    /* Remove extra bottom space under slider */
    .slider {
        margin-bottom: 10px;
    }

    /* Leader box stack properly */
    .right-sticky-box.leaders-box {
        height: auto !important;
        padding: 10px;
        gap: 10px;
    }

    /* Reduce leader image sizes on mobile */
    .leader-card.full-width img {
        height: 100px;
    }

    .leader-card img {
        height: 70px;
    }

    /* Prevent overlap with next section */
    .row.d-flex {
        margin-bottom: 0;
        
    }
    
}

.card {
    height: 100%;
}

.card-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-body .btn {
    margin-top: auto;
    align-self: flex-end;
    /*opacity: 0;
    transform: translateY(12px);*/
    transition: all 0.4s ease;
}

.animate .btn {
    animation: btnSlideUp 0.6s ease forwards;
    animation-delay: 0.8s;
}

@keyframes btnSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .card-body .btn {
        align-self: center;
        width: 80%;
        text-align: center;
    }
}

/*modify navbar*/
.navbar{
--bs-navbar-padding-y:0;
}
.custom-navbar {
    background: #FFF8DC;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 1px 0;
    transition: all 0.3s ease;
}



/* Hover effect */
.navbar-nav .nav-link:hover {
    background: #c8e6a0;
    color: #000 !important;
}

/* Active link */
.navbar-nav .nav-link.active {
    background: #c8e6a0;
    color: #000 !important;
}

/* Dropdown menu */
.dropdown-menu {
    border: none;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    padding: 8px 0;
    margin-top: 10px;
    animation: fadeIn 0.25s ease-in-out;
}

/* Dropdown items */
.dropdown-item {
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: #c8e6a0;
    color: #000;
}

/* Hover dropdown open (Desktop only) */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

/* Mobile */
@media (max-width: 991px) {
    .navbar-nav {
        text-align: left;
        padding: 15px 0;
    }
}




/* Smooth animation */
@keyframes fadeIn {
    from {opacity: 0; transform: translateY(5px);}
    to {opacity: 1; transform: translateY(0);}
}
.container >.row{
--bs-gutter-x: .5rem;
}




.admission-page .card {
    border-radius: 20px;
}

.admission-page .card-body {
    padding: 40px;
}

.admission-page h4.text-primary {
    font-weight: 600;
    background-color: #fff8dc;
    border-radius: 10px;
    width:auto ;
     
    padding-left: 12px;
    margin-bottom: 20px;
}

.admission-page .form-control,
.admission-page .form-select {
    border-radius: 12px;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.admission-page .form-control:focus,
.admission-page .form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13,110,253,.15);
}

.admission-page .admission_doc {
    
    border-radius: 10px;
	--bs-gutter-x: 2.5rem;
}

.admission-page label {
    font-weight: 500;
    margin-bottom: 6px;
}

.admission-page button[type="submit"] {
    border-radius: 12px;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s ease;
    
}

.admission-page button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.admission-page form {
    max-width: 1200px;    
    margin: 0 ;
}



.admission-guidelines-page .card {
    border-radius: 20px;
}

.admission-guidelines-page .section-title {
    font-weight: 600;
     
    padding-left: 10px;
    margin-bottom: 15px;
}

.admission-guidelines-page .custom-list {
    list-style: none;
    padding-left: 0;
    display: block;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.admission-guidelines-page .custom-list li {
    padding: 6px 0;
    position: relative;
    padding-left: 25px;
    text-align:left;
}

.admission-guidelines-page .custom-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #198754;
    font-weight: bold;
}

.admission-guidelines-page .process-box {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    transition: 0.3s;
}

.admission-guidelines-page .process-box:hover {
    background: #abe27bab;
    transform: translateY(-2px);
}
/* ===========================
   Student Forms Page
=========================== */

.student-forms-page .card {
    border-radius: 20px;
}

.student-forms-page .list-group
{
--bs-list-group-bg: #fff;
}
.student-forms-page .list-group-item {
    border-radius: 10px;
    margin-bottom: 10px;
    transition: 0.3s ease;
}

.student-forms-page .list-group-item:hover {
    background-color: #abe27bab;
    transform: translateY(-2px);
}

.student-forms-page .badge {
    font-size: 13px;
}
.student-forms-page .highlight {
    background-color: rgba(245, 245, 115, 0.858);
    font-weight: bold;
}

.student-forms-page .pagination .page-link {
    cursor: pointer;
}
.notice .list-group
{
--bs-list-group-bg: #fff;
text-decoration: none;
}
.notice .list-group a
{
 
text-decoration: none;
color: #004080;
}
.active>.page-link, .page-link.active {
    background-color: #004080;
}
