.glow-text {
  font-size: 1rem;
  font-weight: bold;
  color: #ffffff;
  animation: breathe 3s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% {
    text-shadow:
       0 0 5px rgba(255, 255, 255, 0.7),
      0 0 10px rgba(200, 200, 255, 0.6);
    transform: scale(1);
  }

  50% {
    text-shadow:
      0 0 15px rgba(255, 255, 255, 1),
      0 0 30px rgba(220, 220, 255, 0.9),
      0 0 45px rgba(200, 200, 255, 0.8);
    transform: scale(1.05);
  }
}

#admissionsbody {
    padding: 50px 30px 110px 30px;
    background-color: rgb(212, 226, 245);
}

.card {
    padding: 2rem;
    border-radius: 16px;
    justify-content: space-between;
    line-height: 1.3;
    background-color: whitesmoke;
    display: flex;
    flex-direction: column;
}

.card-text {
    flex-grow: 1;
}

.card h2 {
    font-weight: 500;
}

.tags {
    background-color: white;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.tags.one {
    color: blue;
}

.tags.two {
    color: purple;
}

.tags.three {
    color: goldenrod;
}

.tags.four {
    color: green;
}

.card:hover {
    /* background-color: #e0e0e0; */
    transform: translateY(-8px);
    transition: all 0.3s ease;
}

.card:hover .tags.one {
    background-color: blue;
    color: white;
}

.card:hover .tags.two {
    background-color: purple;
    color: white;
}

.card:hover .tags.three {
    background-color: goldenrod;
    color: white;
}

.card:hover .tags.four {
    background-color: green;
    color: white;
}

#checklist {
    padding: 50px 30px 110px 30px;
}

#checklist .col-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(226, 223, 223);
    border-radius: 50%;
    height: 50px;
    width: 50px;
    margin-right: 13px;
}

#checklist i {
    font-size: 1.5rem;
}

#checklist h6 {
    margin: 0 0 0.5rem 0;
    font-weight: 500;
}

#checklist p {
    margin: 0;
    font-size: 13px;
    color: gray;
}

.profile-card {
    /* width: 320px; */
    border-radius: 40px;
    overflow: hidden;
}

/* Top dark section */
.profile-header {
    height: 110px;
    /* background-color: darkblue; */
    background: linear-gradient(135deg, #0f172a, #1e293b);
}

/* Profile image positioning */
.imggwrapper {
    margin-top: -50px;
}

.imgg {
    width: 160px;
    height: 160px;
    overflow: hidden;
    border-radius: 50%;
    border: 5px solid white;
}

.imgg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Icon circles */
#checklist > div > div > div .card-body  > .row > div {
    background-color: rgb(226, 223, 223);
    border-radius: 50%;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 11px;
}

#checklist > div > div > div .card-body > .row > div > a > i {
    color: darkslategrey;
}

#checklist > div > div > div .card-body  > .row > div:hover {
    background-color: darkslategrey;
    /* background: linear-gradient(135deg, #0f172a, #1e293b); */
    transition: all 0.3s ease;
}

#checklist > div > div > div .card-body  > .row > div > a > i:hover {
    color: white;
}

/* Button */
.schedule-btn {
    /* background-color: darkblue !important; */
    background: linear-gradient(135deg, #0f172a, #1e293b) !important;
    color: white !important;
    border-radius: 30px;
    padding: 10px;
    font-weight: 500;
    transition: 0.3s ease;
}

.schedule-btn:hover {
    background: linear-gradient(135deg, #0f172a, #1e293b) !important;
    color: white !important;
    transform: translateY(-3px);
}

.applications_form {
    padding: 50px 30px 110px 30px;
}

.applications-header {
    /* background-color: darkblue; */
    background: linear-gradient(135deg, #0f172a, #1e293b) !important;
    color: white;
    border-radius: 16px 16px 0 0;
}

.applications-header > p {
    /* margin: 0; */
    font-size: 14px;
    color: lightblue;
}

#tuition {
    padding: 120px 30px 110px 30px;
}

/* Make tuition tabs scrollable */
#tuition .nav-tabs {
    flex-wrap: nowrap;          /* Prevent wrapping */
    overflow-x: auto;           /* Enable horizontal scroll */
    overflow-y: hidden;
    white-space: nowrap;        /* Keep items in one line */
    -webkit-overflow-scrolling: touch; /* Smooth scroll on iOS */
    scrollbar-width: thin;     /* Firefox */
}

/* Hide scrollbar (Chrome/Safari) */
#tuition .nav-tabs::-webkit-scrollbar {
    display: none;
}

/* Prevent nav items from shrinking */
#tuition .nav-tabs .nav-item {
    flex: 0 0 auto;
}

/* Optional: Improve mobile spacing */
#tuition .nav-tabs .nav-link {
    padding: 8px 16px;
}

.crdhdr {
    position: relative;
    border-bottom: none;
}

.crdhdr::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 100%;
    background: linear-gradient(to left, white, transparent);
    pointer-events: none;
}

.events {
    /* background-color: darkblue; */
    background: linear-gradient(135deg, #0f172a, #1e293b) !important;
    color: white;
}

.events > div > ul > li > p {
    margin: 0;
    font-size: 13px;
    color: lightgray;
}