.tiro-bangla-regular {
    font-family: "Tiro Bangla", serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .tiro-bangla-regular-italic {
    font-family: "Tiro Bangla", serif;
    font-weight: 400;
    font-style: italic;
  }

  /* nav bar  */
  .navbar-nav .nav-link {
    position: relative;
    font-weight: 500;
    padding: 8px 15px;
    transition: color 0.3s ease-in-out;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 2px;
    width: 0;
    height: 2px;
    background-color: #ff3030; /* Change to your preferred color */
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

/* Expand underline on hover */
.navbar-nav .nav-link:hover::after {
    width: 100%;
    left: 0;
}

/* Adjust for Active Link */
.navbar-nav .nav-link.active::after {
    width: 100%;
    left: 0;
}

.btn-admission {
    background: linear-gradient(150deg, #e83f3f, #ff2b0652);
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    box-shadow: 0px 4px 10px rgba(255, 65, 108, 0.5);
}

.btn-admission i {
    margin-right: 10px;
    font-size: 20px;
}

.btn-admission:hover {
    background: linear-gradient(135deg, #ff4b2b, #ff416c);
    transform: scale(1.05);
    box-shadow: 0px 6px 15px rgba(255, 75, 43, 0.6);
}