@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
*{
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    scroll-behavior: smooth;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

:root {
    --primary-color: #000053;
    --hover-color: aqua;
    --text-color: #333333;
    --color: white;
    --light-gray: #F1F1F1;
    --primary-button-color: #f94449;
    --secondary-button-color:gray;
    --gap-10: 10px;
    --gap-20: 20px;
    --text-size: 12px;
    --title-size: 14px;
}

/* topbar start */
.topbar {
    background-color: var(--text-color);
    padding: 5px 0px;
    font-size: var(--text-size);
    font-weight: 500;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar .topbar-nav {
    display: flex;
    gap: var(--gap-10);
}

.topbar .topbar-nav li {
    display: inline;
    position: relative;
    padding-right: 10px;
}

.topbar .topbar-nav li:last-child {
    padding-right: 0px;
}

.topbar .topbar-nav li:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color);
}

.topbar .topbar-nav li a {
    color: var(--color);
    transition: color 0.3s ease;
}

.topbar .topbar-nav li a:hover {
    color: var(--hover-color);
}

.topbar .topbar-nav.left {
    justify-content: flex-start;
}

.topbar .topbar-nav.right {
    justify-content: flex-end;
}
/* topbar end */

/* header start */
.header {
    background-color: var(--color);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .head {
    display: flex;
    gap: var(--gap-20);
}

.header .head li {
    display: inline;
}

.header .head.left {
    justify-content: flex-start;
}

.header .head.left .logo li a img {
    width: 100px;
    height: 100px;
    animation: rotate 3s ease-in-out infinite;
}
@keyframes rotate {
  from {
      transform: rotateY(0deg);
  }
  to {
      transform: rotateY(360deg);
  }
}
.header .head.left .logo li a {
    font-size: 22px;
}

.header .head.right {
    justify-content: flex-end;
}

.header .head.right .online li a{
    color: var(--color);
}

.header .head.right .online .payment {
    background-color: var(--primary-button-color);
}

.header .head.right .online .admission {
    background-color: var(--secondary-button-color);
}
.header .online-btn {
    display: inline-block;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
    font-size: 14px;
    font-weight: normal;
    text-transform: none;
    letter-spacing: normal;
}

.header .online-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.2));
    transform: skewX(-45deg);
    z-index: 1;
    transition: 0.5s;
    animation: slide 2s infinite;
}

@keyframes slide {
    0% {
        left: -150%;
    }
    50% {
        left: 150%;
    }
    100% {
        left: 150%;
    }
}

.header .online-btn.payment::before {
    animation-duration: 1.5s;
}

.header .online-btn.admission::before {
    animation-duration: 2s;
}

.header .online-btn span {
    position: relative;
    z-index: 2;
}


.header .head.right .historical li a img {
    width: 100px;
    height: 50px;
}
/* header end */
/* navbar start */
.navbar {
    background-color: var(--primary-color);
}
.navbar .navbar-nav .nav-item {
    padding: 0 5px;
}

.navbar .navbar-nav .nav-link {
    font-size: var(--title-size);
    font-weight: 400;
    color: var(--color);
    display: inline-block;
}
.navbar .navbar-nav .nav-link:hover {
    color: var(--hover-color);
}

.navbar .navbar-nav .dropdown-menu {
    background-color: var(--color);
    padding: 0px;
    border-radius: 0px;
}
.navbar .navbar-nav .dropdown-menu li {
    border-bottom: 1px dashed var(--primary-color);
    border-left: 2px solid var(--primary-button-color);
}
.navbar .navbar-nav .dropdown-menu li:last-child {
    border-bottom: none;
}

.navbar .navbar-nav .dropdown-menu .dropdown-item:hover {
    background-color: var(--primary-color);
    color: var(--color);
}
/* navbar end */

/* headline start */
.headline-box {
    font-size: var(--title-size);
    background: var(--secondary-button-color);
    color: var(--hover-color);
    padding: 5px 30px;
    display: flex;
    box-shadow: 0 4px 40px -8px var(--primary-color);
    overflow: hidden;
    border-end-start-radius: 5px;
    border-start-end-radius: 5px;
  }
  
  .headline-box .headline-heading {
    font-weight: bold;
    padding-right: 20px;
    margin-right: 20px;
    border-right: 2px solid var(--color);
  }
  
  .headline-box .headline {
    position: relative;
    width: 100%;
  }
  
  .headline-box .headline-single {
    color: var(--color);
    text-decoration: none;
    font-weight: normal;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-8px);
    transition: all 400ms ease;
    pointer-events: none;
  }
  
  .headline-box .headline-single.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
/* headline end */
/* slider start */
.slider .image-slider .carousel-item img{
    height: 400px;
}
/* slider end */
/* notice start */
.notice-box {
    background-color: var(--primary-color);
    color: var(--color);
    overflow: hidden;
    height: 400px;
    display: flex;
    flex-direction: column;
}

.notice-header {
    font-weight: bold;
    font-size: 18px;
    text-transform: uppercase;
    flex-shrink: 0;
    font-style:oblique;
}

.notice-list {
    padding: 10px;
    overflow-y: auto;
    max-height: 400px;
    flex-grow: 1;
}

.notice-item {
    display: flex;
    padding: 0px 10px;
    background-color: var(--color);
    color: var(--text-color);
    margin-bottom: 5px;
    border-radius: 5px;
}

.notice-item:last-child {
    margin-bottom: 0;
}

.notice-date {
    color: var(--primary-color);
    padding: 6px;
    text-align: center;
    border-radius: 5px;
    width: 60px;
    height: 68px;
}

.notice-date span {
    display: block;
    font-size: var(--title-size);
    font-weight: bold;
}

.notice-date small {
    display: block;
    font-size: var(--text-size);
    text-transform: uppercase;
}

.notice-content {
    padding: 5px;
    height: 68px;
    overflow-y:auto;
    scrollbar-width: none;
}

.notice-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
}

.notice-footer a {
    font-size: var(--text-size);
}

.notice-footer a span {
    font-size: var(--title-size);
}
.notice-footer:hover{
    color: var(--hover-color);
}
/* notice end */
/* messages start */
.messages {
    background-image: url('../images/messages-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}
.messages .message-card .card-image img {
    width: 100%;
    height: 220px;
    border-radius: 30px;
    border: 2px solid var(--text-color);
}
.messages .message-card .card-body a {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
}
.messages .message-card .card-body a:hover {
    color: var(--primary-button-color);
}
.messages .message-card .card-body p {
    color: var(--text-color);
    font-size: var(--title-size);
}
/* messages end */
/* governing start */
/* header-carousel start */
.header-carousel .owl-nav {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    display: flex;
    width: 100%;
    justify-content: space-between;
    height: 0px;
}
.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    background: transparent;
    border: 1px solid var(--text-color);
    border-radius: 50%;
    font-size: 22px;
    transition: .5s;
}
.header-carousel .owl-nav .owl-prev {
    top: -50px;
    left: -245px;
}
.header-carousel .owl-nav .owl-next {
    top: -50px;
    right: -220px;
}
.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary-button-color);
    border-color: var(--primary-color);
}

.hero_slider {
    padding: 50px 0;
    background-color: var(--light-gray);
}
.owl-carousel .owl-item {
    border-radius: 50%;
}
.owl-carousel .owl-item img {
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    height: 250px;
}
.header-carousel .hero-details a {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
}
@media(max-width: 576px) {
    .outline_download {
        display: flex;
        flex-direction: column;
    }
    .owl-carousel .owl-item {
        padding-left: 5px;
        padding-right: 5px;
    }
    .hero_slider .px-20 {
        padding: 0;
    }
    
    .header-carousel .owl-nav .owl-prev {
        top: -35px;
        left: -55px;
    }
    
    .header-carousel .owl-nav .owl-next {
        top: -35px;
        right: -35px;
    }
    .owl-carousel .owl-item img {
        height: 320px;
    }
}
.px-20 {
    padding-right: 10px;
    padding-left: 10px;
}
/* header-carousel end */
/* governing end */
/* facilities start */
.facilities-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 200px;
}

.facilities-card .card-img-overlay {
    background: rgba(0, 0, 0, 0.4);
    color: var(--light-gray);
}

.facilities-card .card-img-overlay h5 {
    font-weight: bold;
}
.facilities-card img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 100%;
}
.facilities-card:hover img {
    transform: scale(1.2);
}
/* facilities end */
/* payment-method slick start  */
.client_slick_section {
    padding: 30px 0;
}

.client_slick_section {
    background: #F1F1F1;
    min-height: 10vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.client_slick_section .slick-track {
    display: flex;
    gap: 10px;
}

.client_slick_section .item {
    background: white;
    border-radius: 5px;
    padding: 10px 20px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.client_slick_section .item img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
}
/* payment-method slick end  */
/* footer start */
.footer {
    background-color: var(--text-color);
    color: var(--color);
    transition: background-color 0.3s ease;
}
.footer p{
    margin: 0px;
    font-size: var(--title-size);
    line-height: 2;
}
.footer a{
   text-decoration: none;
   font-weight: 500;
}
.footer a:hover{
    color: var(--hover-color);
}
.footer iframe{
    width: 100% !important;
    height: 200px !important;
}
/* footer end */
/* copyright start */
.copyright {
    background-color: var(--primary-color);
    color: var(--color);
    transition: background-color 0.3s ease;
}
.copyright p{
    margin: 0px;
    text-align: center;
    font-size: var(--title-size);
}
.copyright a{
   text-decoration: none;
   color: var(--primary-button-color);
   font-weight: 500;
}
.copyright a:hover{
    color: var(--hover-color);
}
/* copyright end */
/* title start */
.title-box {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 10px;
}

.title-box .line {
    height: 2px;
    background-color: var(--primary-color);
    flex: 1;
}

.title-box .circle {
    width: 12px;
    height: 12px;
    background-color: var(--primary-button-color);
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    margin: 0;
}

.title-box .heading {
    margin: 0 20px;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-color);
}

.sub-heading {
    font-size: var(--title-size);
    color: var(--text-color);
    text-align: center;
    letter-spacing: 1px;
    font-weight: 500;
}
/* title end */

/* Scroll Top start */
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--primary-button-color);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

.scroll-top {
    font-size: var(--title-size);
    color: var(--color);
    line-height: 0;
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}
/* Scroll Top end */
/* breadcrumb start */
#breadcrumb {
  list-style: none;
  display: inline-block;
}

#breadcrumb .icon {
  font-size: 14px;
}

#breadcrumb li {
  float: left;
}

#breadcrumb li a {
  color: var(--color);
  display: block;
  background: var(--text-color); /* Replace with actual color value */
  text-decoration: none;
  position: relative;
  height: 40px;
  line-height: 40px;
  padding: 0 10px 0 5px;
  text-align: center;
  margin-right: 23px;
}

#breadcrumb li:nth-child(even) a {
  background-color: blue-darken; /* Replace with actual color value */
}

#breadcrumb li:nth-child(even) a:before {
  border-color: blue-darken; /* Replace with actual color value */
  border-left-color: transparent;
}

#breadcrumb li:nth-child(even) a:after {
  border-left-color: blue-darken; /* Replace with actual color value */
}

#breadcrumb li:first-child a {
  padding-left: 15px;
  border-radius: 4px 0 0 4px;
}

#breadcrumb li:first-child a:before {
  border: none;
}

#breadcrumb li:last-child a {
  padding-right: 15px;
  border-radius: 0 4px 4px 0;
}

#breadcrumb li:last-child a:after {
  border: none;
}

#breadcrumb li a:before,
#breadcrumb li a:after {
  content: "";
  position: absolute;
  top: 0;
  border: 0 solid var(--text-color); /* Replace with actual color value */
  border-width: 20px 10px;
  width: 0;
  height: 0;
}

#breadcrumb li a:before {
  left: -20px;
  border-left-color: transparent;
}

#breadcrumb li a:after {
  left: 100%;
  border-color: transparent;
  border-left-color: var(--text-color); /* Replace with actual color value */
}

#breadcrumb li a:hover,
#breadcrumb li a:focus {
  background-color: var(--primary-button-color); /* Replace with actual color value */
}

#breadcrumb li a:hover:before,
#breadcrumb li a:focus:before {
  border-color: var(--primary-button-color);; /* Replace with actual color value */
  border-left-color: transparent;
}

#breadcrumb li a:hover:after,
#breadcrumb li a:focus:after {
  border-left-color: var(--primary-button-color); /* Replace with actual color value */
}

#breadcrumb li a:active {
  background-color: var(--primary-button-color); /* Replace with actual color value */
}

#breadcrumb li a:active:before {
  border-color: var(--primary-button-color); /* Replace with actual color value */
  border-left-color: transparent;
}

#breadcrumb li a:active:after {
  border-left-color: var(--primary-button-color); /* Replace with actual color value */
}
#breadcrumb li.active a {
  background-color: var(--primary-button-color); /* Replace with actual active color */
}

#breadcrumb li.active a:before {
  border-color: var(--primary-button-color); /* Replace with actual active color */
  border-left-color: transparent;
}

#breadcrumb li.active a:after {
  border-left-color: var(--primary-button-color); /* Replace with actual active color */
}

/* breadcrumb end */
/* page box start */
.page-box {
  box-shadow: 0 4px 40px -8px var(--primary-color);
  padding: 40px 80px;
  font-size: 18px;
  font-weight: 500;
}
/* page box end */


/* contact-us start */
.contact-us input, textarea {
  font-family: "Poppins", sans-serif;
}
.contact-us .container  {
    position: relative;
    width: 100%;
    padding: 80px;
    background-color: var(--color);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-us .form {
    width: 100%;
    max-width: 820px;
    background-color: var(--light-gray);
    border-radius: 10px;
    box-shadow: 0 0 20px 1px var(--text-color);
    z-index: 1000;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-us .contact-form {
    background-color: var(--primary-color);
    position: relative;
  }
  
  .contact-us .circle {
    border-radius: 50%;
    background: linear-gradient(135deg, transparent 20%, var(--primary-color));
    position: absolute;
  }
  
  .contact-us .circle.one {
    width: 130px;
    height: 130px;
    top: 130px;
    right: -40px;
    background-color: var(--secondary-button-color);
  }
  
  .contact-us .circle.two {
    width: 80px;
    height: 80px;
    top: 10px;
    right: 30px;
    background-color: var(--secondary-button-color);
  }
  
  .contact-us .contact-form:before {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    background-color: var(--primary-color);
    transform: rotate(45deg);
    top: 50px;
    left: -13px;
  }
  
  .contact-us form {
    padding: 2.3rem 2.2rem;
    z-index: 10;
    overflow: hidden;
    position: relative;
  }
  
  .contact-us .title {
    color: var(--color);
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 0.7rem;
  }
  
  .contact-us .input-container {
    position: relative;
    margin: 1rem 0;
  }
  
  .contact-us .input {
    width: 100%;
    outline: none;
    border: 2px solid var(--color);
    background: none;
    padding: 0.6rem 1.2rem;
    color: var(--color);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-radius: 25px;
    transition: 0.3s;
  }
  
  .contact-us textarea.input {
    padding: 0.8rem 1.2rem;
    min-height: 150px;
    border-radius: 22px;
    resize: none;
    overflow-y: auto;
  }
  
  .contact-us .input-container label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    padding: 0 0.4rem;
    color: var(--color);
    font-size: 0.9rem;
    font-weight: 400;
    pointer-events: none;
    z-index: 1000;
    transition: 0.5s;
  }
  
  .contact-us .input-container.textarea label {
    top: 1rem;
    transform: translateY(0);
  }
  
  .contact-us .btn {
    padding: 0.6rem 1.3rem;
    background-color: var(--color);
    border: 2px solid var(--color);
    font-size: 0.95rem;
    color: var(--primary-color);
    line-height: 1;
    border-radius: 25px;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
    margin: 0;
  }
  
  .contact-us .btn:hover {
    background-color: transparent;
    color: var(--color);
  }
  
  .contact-us .input-container span {
    position: absolute;
    top: 0;
    left: 25px;
    transform: translateY(-50%);
    font-size: 0.8rem;
    padding: 0 0.4rem;
    color: transparent;
    pointer-events: none;
    z-index: 500;
  }
  
  .contact-us .input-container span:before,
  .contact-us .input-container span:after {
    content: "";
    position: absolute;
    width: 10%;
    opacity: 0;
    transition: 0.3s;
    height: 5px;
    background-color: var(--primary-color);
    top: 50%;
    transform: translateY(-50%);
  }
  
  .contact-us .input-container span:before {
    left: 50%;
  }
  
  .contact-us .input-container span:after {
    right: 50%;
  }
  
  .contact-us .input-container.focus label {
    top: 0;
    transform: translateY(-50%);
    left: 25px;
    font-size: 0.8rem;
  }
  
  .contact-us .input-container.focus span:before,
  .contact-us .input-container.focus span:after {
    width: 50%;
    opacity: 1;
  }
  
  .contact-us .contact-info {
    padding: 2.3rem 2.2rem;
    position: relative;
  }
  
  .contact-us .contact-info .title {
    color: var(--primary-color);
  }
  
  .contact-us .text {
    color: var(--text-color);
    margin: 1.5rem 0 2rem 0;
  }
  
  .contact-us .information {
    color: var(--text-color);
    /* margin: 0.7rem 0; */
    font-size: var(--title-size);
  }
  
  
  .contact-us .social-media {
    padding: 2rem 0 0 0;
  }
  
  .contact-us .social-media p {
    color: var(--text-color);
  }
  
  .contact-us .social-icons {
    display: flex;
    margin-top: 0.5rem;
  }
  
  .contact-us .social-icons a {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    background: var(--primary-color);
    color: var(--color);
    text-align: center;
    line-height: 35px;
    /* margin-right: 0.5rem; */
    margin-left: 10px;
    margin-right: 10px;
    transition: 0.3s;
  }
  
  .contact-us .social-icons a:hover {
    transform: scale(1.05);
  }
  
  .contact-us .contact-info:before {
    content: "";
    position: absolute;
    width: 110px;
    height: 100px;
    border: 22px solid var(--primary-color);
    border-radius: 50%;
    bottom: -77px;
    right: 50px;
    opacity: 0.3;
  }
  
  .contact-us .big-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: var(--secondary-button-color);
    bottom: 50%;
    right: 50%;
    transform: translate(-12%, 38%);
  }
  .contact-us .big-circle.right {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: var(--secondary-button-color);
    bottom: 50%;
    right: 50%;
    transform: translate(140%, 62%);
  }
  
  .contact-us .big-circle:after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    background-color: var(--color);
    border-radius: 50%;
    top: calc(50% - 180px);
    left: calc(50% - 180px);
  }
  
  .contact-us .square {
    position: absolute;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(181%, 11%);
    opacity: 0.2;
  }
  
  @media (max-width: 768px) {
    .contact-us .form {
      grid-template-columns: 1fr;
    }
  
    .contact-us .contact-info:before {
      bottom: initial;
      top: -75px;
      right: 65px;
      transform: scale(0.95);
    }
  
    .contact-us .contact-form:before {
      top: -13px;
      left: initial;
      right: 70px;
    }
  
    .contact-us .square {
      transform: translate(140%, 43%);
      height: 350px;
    }
  
    .contact-us .big-circle {
      bottom: 75%;
      transform: scale(0.9) translate(-40%, 30%);
      right: 50%;
    }
  
    .contact-us .text {
      margin: 1rem 0 1.5rem 0;
    }
  
    .contact-us .social-media {
      padding: 1.5rem 0 0 0;
    }
  }
  
  @media (max-width: 576px) {
    .contact-us .container {
      padding: 1.5rem;
    }
  
    .contact-us .contact-info:before {
      display: none;
    }
  
    .contact-us .square,
    .big-circle {
      display: none;
    }
  
    .contact-us form,
    .contact-info {
      padding: 1.7rem 1.6rem;
    }
  
    .contact-us .text,
    .information,
    .social-media p {
      font-size: 0.8rem;
    }
  
    .contact-us .title {
      font-size: 1.15rem;
    }
  
    .contact-us .social-icons a {
      width: 30px;
      height: 30px;
      line-height: 30px;
    }
  
    .contact-us .icon {
      width: 23px;
    }
  
    .contact-us .input {
      padding: 0.45rem 1.2rem;
    }
  
    .contact-us .btn {
      padding: 0.45rem 1.2rem;
    }
  }
  
/* contact-us end */

/* Authority card start */
.authority-card .card-body {
    padding: 20px;
}

.authority-card  .card-title {
  font-size: 24px;
  margin-bottom: 10px;
}

.authority-card .card-subtitle {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--primary-button-color);
}

.authority-card .card-text {
  font-size: 16px;
    margin-bottom: 5px;
  }
  
  .authority-card img  {
    border: 5px solid var(--text-color);
    width: 100%;
    height: 250px;
  }
  .authority-card a  {
    background-color: var(--text-color);
  }
  .authority-card a:hover  {
    background-color: var(--primary-button-color);
    border-color: var(--primary-button-color);
  }
/* Authority card end */

/* governing-body start */
  .governing-body .member-card {
    border: 1px solid var(--primary-color);
    border-radius: 0px 25px 0 25px;
  }
  .governing-body .card-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 14px;
  }
  .governing-body .image-content{
    position: relative;
    row-gap: 5px;
    padding: 25px 0;
  }
  .governing-body .overlay{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: var(--primary-color);
    border-radius: 0px 25px 0 25px;
  }
  .governing-body .overlay::before,
  .governing-body .overlay::after{
    content: '';
    position: absolute;
    right: 0;
    bottom: -40px;
    height: 40px;
    width: 40px;
    background-color: var(--primary-color);
  }
  .governing-body .overlay::after{
    border-radius: 0 25px 0 0;
    background-color: var(--color);
  }
  .governing-body .card-image{
    position: relative;
    height: 200px;
    width: 80%;
    border-radius: 50%;
    background: var(--color);
    padding: 3px;
  }
  .governing-body .card-image .card-img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
  }
  .governing-body .name{
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
  }
  .governing-body .description{
    font-size: 14px;
    color: var(--primary-button-color);
    text-align: center;
  }
  .governing-body .button{
    border: none;
    font-size: 16px;
    color: var(--color);
    padding: 8px 16px;
    background-color: var(--primary-color);
    border-radius: 6px;
    margin: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .governing-body .button:hover{
    background: var(--primary-button-color);
  }
  
  /* governing-body end */

/* gallery start */
.gallery .row {
  justify-content: center;
}
.gallery #filter-buttons button {
  border-radius: 3px;
  background: var(--color);
  border-color: var(--primary-button-color);
}

.gallery #filter-buttons button:hover {
  background: var(--color);
}

.gallery #filter-buttons button.active {
  color: var(--color);
  background: var(--primary-button-color);
}
.gallery .card a{
  margin: 0px;
 }
.gallery .card img{
  width: 100%;
  height: 150px;
}
.gallery .card iframe{
  width: 100%;
  height: 150px;
}
.gallery #filterable-cards .card {
  width: 15rem;
  border: 1px solid var(--primary-color);
  border-radius: 0px;
}

.gallery #filterable-cards .card.hide {
  display: none;
}
.gallery .pagination .page-link {
    color: var(--text-color);
    border: 1px solid var(--primary-button-color);
}
.gallery .pagination .active > .page-link {
    background-color: var(--primary-button-color); /* Background color */
    color: var(--color);
}


@media (max-width: 600px) {
  .gallery #filterable-cards {
    justify-content: center;
  }

  .gallery #filterable-cards .card {
    width: calc(100% / 2 - 10px);
  }
  .gallery .card img{
    width: 100%;
    height: 150px;
  }
  .gallery .card iframe{
    width: 100%;
    height: 150px;
  }
}
/* gallery end */

/* pdf iframe start */
.pdf-title h5 {
  border: 3px solid var(--primary-color);
  padding: 5px;
  text-align: center;
}
.pdf-iframe {
  border: 1px solid var(--primary-color);
  width: 100%;
  height: 700px;
}
/* pdf iframe end */

/* academic calender start */

.academic-calender .calender-box {
  box-shadow: 0 4px 8px var(--primary-color);
  padding: 20px;
}

.academic-calender .calendar-title {
  font-weight: bold;
  font-size: 1.5rem;
  color: var(--text-color);
  text-align: center;
  margin-bottom: 20px;
}

.academic-calender .badge-info {
  background-color: var(--primary-color);
  color: var(--color);
  border-radius: 5px;
  font-size: var(--text-size);
}

.academic-calender .table-bordered th,
.academic-calender .table-bordered td {
  border-color: var(--color);
}

.academic-calender .table thead th {
  background-color: var(--primary-color);
  color: var(--color);
}

.academic-calender .highlight {
  background-color: var(--color);
  color: var(--text-color);
}

.academic-calender .download-btn {
  background-color: var(--primary-button-color);
  color: var(--color);
  font-weight: bold;
  padding: 10px 20px;
  cursor: pointer;
}

.academic-calender .download-btn:hover {
  background-color: var(--secondary-button-color);
}

.academic-calender .footer-note {
  font-size: 0.9rem;
  color: var(--text-color);
}
.academic-calender .registrar-section {
  text-align: right; 
}

.academic-calender .sign {
  float: right; 
  margin-left: 10px; 
  margin-bottom: 10px;
  width: 200px;
  height: 70px;
}

.academic-calender .registrar-text {
  clear: both;
  margin-top: 0;
  font-size: 0.9rem;
  color: var(--text-color);
  font-weight: bold;
}

.academic-calender .table-responsive {
  overflow: hidden;
}
/* academic calender end */

/* grading system start */
.grading-system .grading-box {
  box-shadow: 0 4px 8px var(--primary-color);
  padding: 20px 30px;
}
.grading-system .page-title {
  background-color: var(--primary-color);
  color:var(--color);
  padding: 10px 20px;
  margin-bottom: 20px;
  text-align: center;
}
.grading-system .grading-table {
  border: 2px solid var(--color);
}
.grading-system .grading-table th {
  background-color: var(--color);
}
/* grading system end */
/* all notice start */
.all-notice .table-box {
  background-color: var(--color);
  padding: 20px;
  box-shadow: 0 4px 8px var(--primary-color);
}
.all-notice .table thead th {
  background-color: var(--primary-color);
  color: var(--color);
  font-weight: bold;
  text-align: center;
}
.all-notice .table tbody tr:hover {
  background-color: var(--color);
}
.all-notice .table td, .table th {
  vertical-align: middle;
  text-align: center;
}
.all-notice .table .icon {
  color: var(--primary-color);
}
.all-notice .table .download-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}
.all-notice .table .download-link:hover {
  text-decoration: underline;
}

.all-notice  .pagination .page-link {
  color: var(--text-color);
  border: 1px solid var(--primary-button-color);
}
.all-notice  .pagination .active > .page-link {
  background-color: var(--primary-button-color); /* Background color */
  color: var(--color);
}
/* all notice end */

/* lightbox start */
.portfolio-menu{
	text-align:left;
}
.portfolio-menu ul li{
	display:inline-block;
	margin:0;
	list-style:none;
	padding:10px 15px;
	cursor:pointer;
	-webkit-transition:all 05s ease;
	-moz-transition:all 05s ease;
	-ms-transition:all 05s ease;
	-o-transition:all 05s ease;
	transition:all .5s ease;
}

.portfolio-item .item{
	float:left;
	margin-bottom:10px;
}
/* lightbox end */


/* heading start */
.heading {
  text-align: center;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: bold;
  color: var(--text-color);
}
/* heading end */

/* news-event start */
/* news-event start */
.news-event .card {
  border: none;
  box-shadow: 0 4px 8px var(--text-color);
}

.news-event .card-img-top img {
  object-fit: cover;
  width: 100%;
  height: 200px;
}

.news-event .badge {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.news-event .card-title {
  font-weight: bold;
  font-size: 1.25rem;
  margin-top: 1rem;
}

.news-event .card-text small {
  display: block;
  margin-bottom: 0.75rem;
}
/* news-event end */

.apply-online .admission-form {
  border: none;
  padding: 60px;
  box-shadow: 0 4px 8px var(--primary-color);
}