.pf
    {
      width: 100%;
      /*padding-top: 100px;*/
      position:fixed;
      top:5px;  
      z-index:999999;
    }
    .popp
    {
        width:40% !important;
        background:rgb(255,255,255) !important;
        z-index:999999;
       margin: auto;
       padding:20px;
    }
    .pop
    {
     
      animation-name: pop;
      animation-duration: .8s;
      -webkit-animation-delay: 2s;
      animation-fill-mode: forwards;
      z-index:999999;
      transform: scale(0);
    }
    .popp img
    {
      width: 100%;
    }
    .popp .close
    {
      top: 20px;
      z-index: 9999;
      background-color: #000;
      padding: 10px 20px 15px 20px;
      color: #fff;
      border-radius: 100%;
      opacity: .7 !important;
    }
    @keyframes pop
    {
      0%{transform: scale(.2);}
     100%{transform: scale(1);}
    }
    .fade:not(.show) {
   opacity: 1 !important; 
    }

    @media screen and (max-width:768px)
    {
      .popp img
      {
        width: 100%;
      }
      .popp
      {
          width:100% !important;
      }
      .popp .close
      {
          font-size:6px !important;
      }
    }
    
    
.admission-marquee {
  width: 100%;
  background: linear-gradient(90deg, #ff3b16, #0b4f7a, #ff8a00);
  overflow: hidden;
  cursor: pointer;
  padding: 10px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  position: relative;
  z-index: 999;
}

.marquee-track {
  display: flex;
  gap: 45px;
  width: max-content;
  animation: admissionMove 38s linear infinite;
  white-space: nowrap;
}

.admission-marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track span {
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.2px;
}

.marquee-track b {
  color: #ffe600;
  font-weight: 800;
  margin-right: 5px;
}

@keyframes admissionMove {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .admission-marquee {
    padding: 8px 0;
  }

  .marquee-track {
    gap: 28px;
    animation-duration: 30s;
  }

  .marquee-track span {
    font-size: 13px;
  }
}


/* About dropdown + Infrastructure nested dropdown */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-toggle {
  position: relative;
  padding-right: 34px;
}

.dropdown-submenu > .dropdown-toggle::after {
  position: absolute;
  top: 50%;
  right: 14px;
  margin: 0;
  transform: translateY(-50%) rotate(-90deg);
}

/* Desktop behaviour:
   1. Hover About to show the first menu.
   2. Keep the Infrastructure submenu hidden.
   3. Show it only while Infrastructure is hovered. */
@media (min-width: 992px) {
  #ftco-navbar .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
  }

  #ftco-navbar .dropdown-submenu > .infrastructure-submenu {
    display: none !important;
    position: absolute;
    top: 0;
    left: 100%;
    margin-top: 0;
    margin-left: -1px;
    min-width: 305px;
  }

  #ftco-navbar .dropdown-submenu:hover > .infrastructure-submenu {
    display: block !important;
  }
}

/* Mobile/tablet: tap Infrastructure to open or close its submenu. */
@media (max-width: 991.98px) {
  #ftco-navbar .dropdown-submenu > .infrastructure-submenu {
    display: none !important;
    position: static;
    width: 100%;
    margin: 0;
    padding: 0 0 0 14px;
    border: 0;
    box-shadow: none;
    background: #f7f7f7;
  }

  #ftco-navbar .dropdown-submenu > .infrastructure-submenu.show {
    display: block !important;
  }

  .dropdown-submenu > .dropdown-toggle::after {
    transform: translateY(-50%) rotate(0deg);
  }
}