*{
    margin:0;
    padding:0;
}
 .container-fluidbg1 {
            background-image: linear-gradient(to top, rgba(255, 255, 255, 0), rgba(12, 110, 237, 0.7)), url(images/students-posing-with-profession-at-graduation-ceremony.webp);
            background-size: cover;
            background-repeat: no-repeat;
            background-attachment: fixed;
            padding-top: 180px;
            padding-bottom: 180px;
            text-align: center;
            color: #ffffff;
            font-weight: 900;
        }
             /* index banner Popup background start */
/* Popup background */
#popupBanner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  display: none;
  overflow-y: auto; /* allow scroll on small screens */
}

/* Animation keyframes */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Popup content box */
#popupContent {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 20px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  animation: slideDown 0.6s ease-out;
}

/* Image full width and height auto */
#popupContent img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Close button */
#closePopup {
  position: absolute;
  top: 8px;
  right: 12px;
  background: #fff;
  border: none;
  font-size: 20px;
  cursor: pointer;
  z-index: 1001;
}

@media (min-width: 768px) {
#popupContent {
 max-width: 600px;
 }
}
    /* index banner popup end */
        @media (max-width: 768px) {
            .container-fluidbg1 {
                background-attachment: scroll;
                padding-top: 100px;
                padding-bottom: 100px;
            }

            .container-fluidbg1 h1 {
                font-size: 1.5em;
                padding-left: 10px;
                padding-right: 10px;
            }
        }

        /* contact button */
        .btn-shine {

            /* transform: translate(-50%, -50%); */

            color: #25276d;
            background: linear-gradient(to right, #577fec 0, #606060 20%, #5faaf0 100%);
            background-position: 0;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: shine 3s infinite linear;
            animation-fill-mode: forwards;
            -webkit-text-size-adjust: none;

            text-decoration: none;
            white-space: nowrap;
            font-family: "Poppins", sans-serif;
        }

        @keyframes shine {
            0% {
                background-position: 0;
            }

            60% {
                background-position: 180px;
            }

            100% {
                background-position: 180px;
            }
        }

        /* closed */
        /* navbar */
        .navbar-nav .dropdown:hover>.dropdown-menu {
            display: block;
            position: absolute;
            left: 0;
            top: 100%;
            margin-top: 0;
        }

        .navbar-nav .dropdown-submenu {
            position: relative;
        }

        .navbar-nav .dropdown-submenu:hover>.dropdown-menu {
            display: block;
            position: absolute;
            left: 100%;
            top: 0;
            margin-top: 0;
        }


        .dropdown-menu {
            min-width: 310px;
            font-weight: 900;
        }

        .dropdown-item {
            white-space: normal;
            word-wrap: break-word;
            padding: 10px 15px;
            border-bottom: 1px solid #ddd;
            font-weight: 900;
        }

        /* Subtle color change on hover */
        .dropdown-item:hover {
            background-color: #e9eaeb;
            /* Light background color */
            color: #333;
            /* Dark text color */
        }


        /* closed */