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

body {
    /* height: 100vh; */
    margin: 0;
    padding: 0;
     /* font-family: 'Pyidaungsu', sans-serif; */
    background-color: #fff;
    padding-top: 30px;
    padding-bottom: 50px;
}


/* Navbar */
.navbar-nav .nav-link {
    font-weight: bold;
    text-transform: uppercase;
}

.navbar-brand img {
    max-height: 50px; /* responsive height */
    height: auto;
    width: auto;
}


/* Card / Box animation */
.box-1 {
    background-color: #2e3192;
    color: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.8s ease forwards;
}

.row .col-12:nth-child(1) .box-1 { animation-delay: 0.1s; }
.row .col-12:nth-child(2) .box-1 { animation-delay: 0.2s; }
.row .col-12:nth-child(3) .box-1 { animation-delay: 0.3s; }
.row .col-12:nth-child(4) .box-1 { animation-delay: 0.4s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.box-1:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;

}

/* Section wrapper */
.direction {
    width: 100%;
    margin: 30px 0;
    padding: 20px;
    background: #f4f7fc;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.about {
    font-size: 30px;
    font-weight: 800;
}

.image-msme {
    border-radius: 10px;
    margin-bottom: 10px;
    max-width: 100%; /* responsive image */
    height: auto;
}

/* Right column (About Us) */
.right {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    body {
        padding-top: 60px;   /* smaller navbar on mobile */
        padding-bottom: 90px; /* extra space for footer */
    }

    .navbar-brand img {
        max-height: 40px;
    }

    .right {
        min-height: auto;
        padding: 2rem 1rem;
    }

    .about {
        font-size: 22px;
    }
}

.team{

    font-weight: 800;
}


/* initial hidden state */
.direction .col-md-6 {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* visible state */
.direction .col-md-6.show {
    opacity: 1;
    transform: translateY(0);
}



.sponsor {
  height: 300px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* margin-bottom: 30px; */
}

.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://wallpapercave.com/wp/Ex9MlTC.jpg'); /* replace with your image */
  background-size: cover;
  background-position: center;
  filter: blur(8px); /* blur effect */
  z-index: 1;
}

/* ensure content is above background */
.slider,
.button-container {
  position: relative;
  z-index: 2;
}

/* Glass button */
.glass-btn {
  padding: 12px 30px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50px;
  background: rgba(255,255,255,0.1);
  color: white;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.glass-btn:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.1);
}

/* Slider container */
.slider {
  display: flex;
  overflow: hidden;
  width: 80%;
}


/* Button container position */
.button-container {
  position: absolute;
  bottom: 30px;
  text-align: center;
  width: 100%;
}



