/* @font-face {
  font-family: 'Pyidaungsu';
  src: url('/fonts/Pyidaungsu.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
} */

body{
    height: 100vh;
    /* font-family: "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; */
    /* font-family: 'Pyidaungsu', sans-serif; */
}
/* Footer */

.bottom-under {
    /* position: absolute; */
    bottom: 0;
    right: 0;
    left: 0;
    background: #2e3192;
    padding: 1em 0;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    text-align: center;
}

.bottom-under a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.bottom-under a:hover {
    color: #e0e0e0;
}

.bottom-under i {
    font-size: 20px;
    margin-bottom: 2px;
}


/* Slide animation */
.slide-update {
  /* flex: 0 0 150px; */
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 20px;
  animation: slideAnim 15s linear infinite;

}

.slide-update img {
  width: 120px;
  height: auto;
  transition: transform 0.3s ease;
   border-radius: 15px;
}

.slide-update img:hover {
  transform: scale(1.2);
}

@keyframes slideAnim {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}



/* card  */

.glass-card {
  background: rgba(255, 255, 255, 0.15); /* transparent white */
  backdrop-filter: blur(10px); /* glass blur effect */
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}


/* slider  */

/* Slider image */
.slider-img {
   /* full screen height on desktop */
  object-fit: cover;
  filter: brightness(70%);
  transform: scale(1.05);
  transition: all 1s ease-in-out;
  opacity: 0;
}

/* Active slide image */
.carousel-item.active .slider-img {
  opacity: 1;
  transform: scale(1);
}

/* Carousel caption */
.carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  text-align: left;
  width: 60%; /* limit width for readability */
}

/* Text initial state */
.carousel-caption h1,
.carousel-caption p,
.carousel-caption a {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-in-out;
}

/* Active slide text state */
.carousel-item.active .carousel-caption h1,
.carousel-item.active .carousel-caption p,
.carousel-item.active .carousel-caption a {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered text animation */
.carousel-caption h1 { transition-delay: 0.3s; }
.carousel-caption p  { transition-delay: 0.6s; }
.carousel-caption a  { transition-delay: 0.9s; }

/* Desktop heading and paragraph sizes */
.carousel-caption h1 { font-size: 4rem; }
.carousel-caption p  { font-size: 1.5rem; }

/* Responsive adjustments for tablets */
@media (max-width: 992px) {
  .slider-img { height: 80vh; }
  .carousel-caption { width: 70%; }
  .carousel-caption h1 { font-size: 3rem; }
  .carousel-caption p  { font-size: 1.25rem; }
  .carousel-caption a  { padding: 0.5rem 1.5rem; font-size: 0.9rem; }
}

/* Responsive adjustments for mobile */
@media (max-width: 576px) {
  .slider-img { height: 60vh; }
  .carousel-caption { width: 90%; text-align: center; left: 5%; right: 5%; }
  .carousel-caption h1 { font-size: 2rem; }
  .carousel-caption p  { font-size: 1rem; }
  .carousel-caption a  { padding: 0.4rem 1rem; font-size: 0.85rem; }
}



