.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}

.logo-container img {
  width: 180px;         /* Increased size from 110px to 180px */
  height: auto;
  border-radius: 14px;
  box-shadow: 0 2px 16px #cce6ff;
  animation: logoPop 1.2s forwards;
  opacity: 0;
}


@keyframes logoPop {
  from { transform: scale(0.8); opacity: 0;}
  to { transform: scale(1); opacity: 1;}
}

.hero-section {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  min-height: 300px;
  position: relative;
}

.hero-content {
  flex: 1 1 350px;
  max-width: 560px;
}

.hero-image {
  flex: 1 1 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image img {
  width: 270px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 6px 32px #b0d4ff;
  animation: heroImgFadeIn 2s 0.8s forwards;
  opacity: 0;
}
@keyframes heroImgFadeIn {
  from { opacity: 0; transform: scale(0.98);}
  to { opacity: 1; transform: scale(1);}
}

/* Typewriter effect for heading */
.typewriter {
  overflow: hidden;
  border-right: .15em solid #0056b3;
  white-space: nowrap;
  letter-spacing: .06em;
  animation: typing 2.4s steps(35, end), blinkCaret .83s step-end infinite;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}
@keyframes blinkCaret {
  from, to { border-color: transparent }
  50% { border-color: #0056b3; }
}

/* Fade-in effect for intro paragraph */
.fade-in {
  opacity: 0;
  animation: fadeInPara 2.2s 1.8s forwards;
}
@keyframes fadeInPara {
  from { opacity: 0;}
  to { opacity: 1;}
}

.banner-uni {
  position: relative;
  width: 100%;
  margin-bottom: 42px;
  overflow: hidden;
  height: 330px;      /* Adjust height as needed (350px/400px for bigger) */
  border-radius: 0 0 24px 24px;
  box-shadow: 0 4px 30px #cbe6ff;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.75) contrast(1.05);
}

.banner-text {
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  background: rgba(0, 51, 102, 0.37);
  padding: 28px 32px;
  border-radius: 14px;
  box-shadow: 0 2px 24px #132d47dd;
  font-family: 'Segoe UI', 'Arial', sans-serif;
  width: 80%;
  max-width: 700px;
  animation: fadeInHeroText 2s;
}

.banner-text h1 {
  font-size: 2.3em;
  margin-bottom: 10px;
  text-shadow: 0 4px 12px #0056b3bb;
  letter-spacing: 0.05em;
}

.banner-text p {
  font-size: 1.18em;
  margin-top: 0;
  line-height: 1.6;
}

.banner-text .highlighted {
  color: #ffd700;
  font-weight: bold;
  font-size: 1.15em;
  background: rgba(255,255,255,0.10);
  padding: 3px 8px;
  border-radius: 6px;
}

@keyframes fadeInHeroText {
  from { opacity: 0; transform: translate(-50%, -60%);}
  to { opacity: 1; transform: translate(-50%, -50%);}
}
