/* For the mobile page navigation bar button*/
.sticky-nav {
      align-items: center;
      position:fixed;
      top:0;
      width: 100%;
      z-index: 99999999;
  }

.navbar-toggler {
    border: 0;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
    border: 0;
}
.toggler-icon{
    width: 30px;
    height: 3px;
    background-color: #ddd;

    display: block;
    transition: all 0.2s;
}

.middle-bar{
    margin: 5px auto;
}

.navbar-toggler .top-bar {
    transform: rotate(45deg);
    transform-origin: 10% 10%;
}

.navbar-toggler .middle-bar {
    opacity: 0;
    filter: alpha(opacity=0);
}

.navbar-toggler .bottom-bar {
    transform: rotate(-45deg);
    transform-origin: 10% 90%;
}

.navbar-toggler.collapsed .top-bar {
    transform: rotate(0);
}

.navbar-toggler.collapsed .middle-bar {
    opacity: 1;
    filter: alpha(opacity=100);
}

.navbar-toggler.collapsed .bottom-bar {
    transform: rotate(0);
}

.navbar-toggler.collapsed .toggler-icon {
    background-color: #ccc;
}


/* END:  For the mobile page navigation bar button*/

/* For dropdown animation */
.dropdown-menu{
    border:none;
}

.dropdown-item{
    padding: 12px 40px 12px 20px;
    font-size: 15px;
    transform-origin: center;
    animation :rotate 0.25s ease 1;
}
@keyframes rotate{
    0%{transform: perspective(600px) rotatey(90deg); transform-origin:center;}
    100%{transform: perspective(600px) rotatey(0deg); transform-origin:center;}
}

.dropdown-item:nth-of-type(1){
    animation-delay: 0s;
}
.dropdown-item:nth-of-type(2){
    animation-delay: 0.1s;
}
.dropdown-item:nth-of-type(3){
    animation-delay: 0.2s;
}
.dropdown-item:nth-of-type(4){
    animation-delay: 0.3s;
}
.dropdown-item:nth-of-type(5){
    animation-delay: 0.4s;
}
.dropdown-item:nth-of-type(6){
    animation-delay: 0.5s;
}
/* END:  For dropdown animation */


/* Optional: soften the table look */
.table-striped > tbody > tr > td {
  vertical-align: middle;
}

.table-news tr {
  border-bottom: 0.8px solid #aaa; /* light gray */
}
.table-news tr:last-child {
  border-bottom: none; /* no border after last row */
}




#styglogo {
  content: url("/images/logo-light-transparent.png");
}
[data-bs-theme="dark"] #styglogo {
  content: url("/images/logo-dark-transparent.png");
}


#vamsinews{
    content: url("/images/team/vamsi.jpg");
}
