 .transform-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  }
  .transform-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
  }
  .bg-gradient-dark {
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
  }
  .member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent 50%, rgba(0, 35, 71, 0.8));
    opacity: 0.9;
    transition: opacity 0.3s ease;
  }
  .member-card:hover .member-overlay {
    opacity: 1;
  }
  .member-card:hover img {
    transform: scale(1.1);
  }
  .member-card img {
    transition: transform 0.5s ease;
  }
  .transition-all {
    transition: all 0.3s ease;
  }
  
  /* Floating Admission Button */
  .fab-admission {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1050;
    width: 65px;
    height: 65px;
    background: linear-gradient(45deg, #003366, #0055a4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 25px rgba(0, 51, 102, 0.4);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse-theme 2s infinite;
  }
  .fab-admission:hover {
    transform: scale(1.1) rotate(5deg);
    color: white;
    box-shadow: 0 15px 35px rgba(0, 51, 102, 0.6);
  }
  .fab-admission i {
    font-size: 1.8rem;
  }
  .fab-label {
    position: absolute;
    right: 80px;
    background: white;
    color: #003366;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    white-space: nowrap;
    pointer-events: none;
  }
  .fab-admission:hover .fab-label {
    opacity: 1;
    transform: translateX(0);
  }

  /* Scroll Progress Bar */
  .scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(to right, #003366, #0055a4);
    z-index: 2000;
    transition: width 0.1s ease;
  }

  @keyframes pulse-theme {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 51, 102, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(0, 51, 102, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 51, 102, 0); }
  }

  /* Back to Top */
  .back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 35px;
    bottom: 110px;
    z-index: 996;
    background: #003366;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    transition: all 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
  }
  .back-to-top.active {
    visibility: visible;
    opacity: 1;
  }
  .back-to-top:hover {
    background: #0055a4;
    color: white;
  }
  
  /* Preloader */
  #preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
  }
  #preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #003366;
    border-top-color: #e2eefd;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1s linear infinite;
  }
  @keyframes animate-preloader {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  .btn-primary, .btn-read-more {
    background: linear-gradient(45deg, #003366, #0055a4) !important;
    border: none !important;
    transition: all 0.3s ease !important;
  }
  .btn-primary:hover, .btn-read-more:hover {
    background: linear-gradient(45deg, #0055a4, #003366) !important;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 51, 102, 0.3) !important;
  }
  .section-title-gradient {
    background: linear-gradient(45deg, #003366, #0055a4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
  }