

/* Welcome message container */
#welcome-message {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-50px);
  background: #28a745;
  color: white;
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  opacity: 0;
  z-index: 9999;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  max-width: 90%;
  transition: all 0.8s ease-out;
}

/* Show state */
#welcome-message.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Responsive text */
@media (max-width: 768px) {
  #welcome-message {
    font-size: 1.2rem;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  #welcome-message {
    font-size: 1rem;
    padding: 8px 15px;
  }
}




/*about us */
/* start hidden */
.animate {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

/* when visible */
.animate.show {
  opacity: 1;
  transform: translateY(0);
}
/* end of about us */



.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: blue!important;;
   /* color: var(--bs-navbar-active-color)!important;*/
    font-weight: 400;
    font-size:large;
    
}



/* Scroll Animation */
.card-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.card-animate.show {
  opacity: 1;
  transform: translateY(0);
}
/* End Scroll Animation */


/*hamburger menu */

.navbar-toggler-icon{
    filter: saturate(100%) brightness(0%) drop-shadow(0 0 7px black);
}






/* ICON */
 i:hover{
    transition: transform .2s !important;
}
i{ 
    background: none !important;
    border-radius: 50% !important;
}

.nav-link.active:hover{
    background-image:linear-gradient(to left, yellow, #ffdab9); 
   border-radius: 7%;
}
.bi:hover {color:#888888;}

/* BLOG & CARD */
/*#bo:hover{box-shadow: 10px 10px 20px black ,-10px -10px 20px black; }*/
#bo:hover{box-shadow: 10px 10px 5px #a9a9a9 ;}


/* For carousel */
.c-item .c-img{
    display: block;
    max-width: 100%;
    height: 530px !important;
}


.carousel-item img {
  max-height: 100vh; /* 80% of viewport height */
  object-fit: cover; /* crop instead of squish */
}

