.navbar-brand img {
  width: 100px;
}
html,
body {
  width: 100%;
  overflow-x: hidden;
}

/* marquee */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

admission-heading {
  height: 100vh;
  background:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.5),
      rgba(255, 255, 255, 0)
    ),
    #d79eff !important;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center; /* Vertical alignment */
  justify-content: center; /* Horizontal alignment */
}

.marquee {
  position: relative;
  width: 100%;
  height: 92px;
  overflow: hidden;
  background: white;
  border-top: 1.5px solid #080205;
  border-bottom: 1.5px solid #080205;
}

.track {
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 15s linear infinite;
  display: flex;
  height: 100%;
  transform: translateX(0); /* Ensure initial position */
}

.content {
  display: flex;
  gap: 0;
  height: 100%;
  padding-right: 1px; /* Add tiny padding to prevent gap */
}

.welcome-text {
  font-size: 72px;
  /* font-family: "Anton", sans-serif; */
  color: #080205;
  display: flex;
  align-items: center;
  letter-spacing: -1px;
  height: 100%;

  font-size: 38px;
  font-weight: 800;
  color: #ff6a00; /* Orange */
  text-align: center;

  /* Shadow Effect */
  text-shadow:
    2px 2px 0 #b34700,
    4px 4px 0 #e0e0e0;
}

.image-container {
  width: 80px;
  height: 80px;
  position: relative;
  margin: 0 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#creature-venus,
#creature-tentacle,
#creature-larva {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  opacity: 0;
  scale: 0;
  object-fit: contain;
}

#creature-venus {
  animation: carousel 9s infinite;
}
#creature-tentacle {
  animation: carousel 9s infinite 3s;
}
#creature-larva {
  animation: carousel 9s infinite 6s;
}

@keyframes carousel {
  0%,
  100% {
    opacity: 0;
    scale: 0;
  }
  3% {
    opacity: 1;
    scale: 1.15;
  }
  5%,
  30% {
    opacity: 1;
    scale: 1;
  }
  33% {
    opacity: 0;
    scale: 0;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 2px)); /* Increased overlap */
  }
}

#template-images {
  display: none;
}
/* banner css */

/* footer */
/* Footer Links */
.footer-link {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
  transition: 0.3s;
}

.footer-link:hover {
  color: #ffc107;
  padding-left: 5px;
}

/* Social Icons */
.social-icon {
  color: #fff;
  font-size: 18px;
  margin-right: 12px;
  transition: 0.3s;
}

.social-icon:hover {
  color: #ffc107;
}
/* footer */

/* Footer Main */
.mku-footer {
  background: #ffd400; /* Yellow Theme */
  border-top: 4px solid #0a5c2f;
}

/* Links */
.mku-link {
  color: #0a5c2f;
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
  transition: 0.3s;
  font-weight: 500;
}

.mku-link:hover {
  color: #000;
  padding-left: 6px;
}

/* Social Icons */
.mku-social {
  display: inline-block;
  width: 36px;
  height: 36px;
  background: #0a5c2f;
  color: #fff;
  text-align: center;
  line-height: 36px;
  border-radius: 50%;
  margin-right: 8px;
  transition: 0.3s;
  font-size: 15px;
}

.mku-social:hover {
  background: #000;
  transform: translateY(-3px);
}

/* Mobile Fix */
@media (max-width: 768px) {
  .mku-footer {
    text-align: center;
  }
}
/* heading */
.uni-heading {
  font-size: 38px;
  font-weight: 800;
  color: #ff6a00; /* Orange */
  font-family: "Times New Roman", Georgia, serif;
  text-align: center;

  /* Shadow Effect */
  text-shadow:
    2px 2px 0 #b34700,
    4px 4px 0 #e0e0e0;

  margin: 20px 0;
}
@media (max-width: 768px) {
  .uni-heading {
    font-size: 26px;
  }
}
/* btn */
.enquire-btn {
  background: #0b5d1e; /* Dark Green */
  color: #fff;
  border: none;
  padding: 10px 26px;
  border-radius: 50px;

  font-size: 16px;
  font-weight: 600;
  cursor: pointer;

  box-shadow: 0 4px 0 #064013;

  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Hover Effect */
.enquire-btn:hover {
  background: #0f7a29;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Click Effect */
.enquire-btn:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #064013;
}

/* Shine Animation */
.enquire-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
}

/* Auto Shine */
.enquire-btn:hover::after {
  animation: shine 0.8s linear;
}

@keyframes shine {
  100% {
    left: 150%;
  }
}

/* marquee course style */
.mstyle ul {
  display: flex;
  flex-direction: row;
 
}
.mstyle ul li {
  padding: 30px;
  font-size: xx-large;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-weight: bolder;
  list-style-type: none;
  color: #fff;
}
.mstyle {
  border: 2px solid #000;
  border-radius: 20px;
  /* margin: 0 50px; */
  background-color: #ff6900;
}
.footer-logo img{
  width: 100px;
}
.footer_item{
  display: flex;
 
  text-align: center;
  padding: 20px;
  background-color: #ff6a0086;
  color: #fff;
  
}
.para{
  display: flex;
  justify-content: center;
  align-items: center;
}
.para h1{
  color: #ff6a003e;
  font-weight: bold;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

