
  .scrollbar-hide::-webkit-scrollbar { display: none; }
  .scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }

  .filter-btn.active { 
    background-image: linear-gradient(to right, #2563eb, #fbbf24); 
    color: white; 
    border-color: transparent; 
    box-shadow: 0 4px 10px -2px rgba(37, 99, 235, 0.3);
  }

  .course-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .course-content.expanded { max-height: 800px; }
  
  .program-card {
    transition: all 0.3s ease;
  }
  .program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 30px -10px rgba(0,0,0,0.15);
  }


.campus-btn {
  /* Mobile First Styles */
  padding: 0.6rem 0.2rem;
  font-weight: 700;
  font-size: 0.65rem; /* Small enough to fit all 3 in one line */
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border-radius: 12px; /* Slightly less rounded for better space usage on mobile */
  background: white;
  color: #64748b;
  border: 1px solid #e2e8f0;
  transition: all 0.4s ease;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .campus-btn {
    padding: 0.75rem 1.75rem;
    font-size: 0.8rem;
    border-radius: 9999px;
    letter-spacing: 0.1em;
  }
}

.active-campus {
  background: #2563eb;
  color: white !important;
  border-color: #2563eb;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.campus-content { transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1); }
.active-content { display: grid; opacity: 1; transform: scale(1); }
.hidden-content { display: none; opacity: 0; transform: scale(0.98); }

.campus-image {
  border-radius: 1.5rem;
  width: 100%;
  height: 250px;
  object-fit: cover;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

@media (min-width: 768px) {
  .campus-image { height: 400px; border-radius: 2rem; }
}

.campus-title { font-size: 1.5rem; font-weight: 800; color: #0f172a; margin: 1rem 0; }
@media (min-width: 768px) { .campus-title { font-size: 2rem; } }

.campus-desc { color: #475569; line-height: 1.6; margin-bottom: 1.5rem; font-size: 0.9rem; }

.badge {
  display: inline-block; padding: 0.2rem 0.8rem; font-size: 0.6rem; font-weight: 800;
  text-transform: uppercase; border-radius: 9999px;
}
.badge-blue { background: #dbeafe; color: #1e40af; }
.badge-emerald { background: #dcfce7; color: #065f46; }
.badge-orange { background: #ffedd5; color: #9a3412; }

.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.stat-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; color: #334155; }





[data-animate] {
    opacity: 0;
    }


@keyframes morphShape {
  0% { border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%; }
  50% { border-radius: 50% 50% 33% 67% / 63% 31% 69% 37%; }
  100% { border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%; }
}

#bg-shape {
  animation: morphShape 8s ease-in-out infinite;
  transition: transform 1.2s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.5s ease;
}

#studentImage {
  animation: floatStudent 5s ease-in-out infinite;
  filter: saturate(1.1);
}

@keyframes floatStudent {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(1deg); }
}

#dots button {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


  .logo-card-new {
    flex-shrink: 0;
    width: 170px;
    height: 90px;
    margin: 0 12px;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: all 0.4s ease;
    cursor: default;
  }

  .logo-card-new img {
    max-width: 100%;
    max-height: 40px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.4s ease;
  }

  /* Color on Hover - No Pause */
  .logo-card-new:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.1);
  }

  .logo-card-new:hover img {
    filter: grayscale(0%);
    opacity: 1;
  }

  /* Infinite Animation Speeds */
  @keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  @keyframes marquee-reverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
  }

  .animate-marquee {
    animation: marquee 35s linear infinite;
    display: flex;
    width: max-content;
  }

  .animate-marquee-reverse {
    animation: marquee-reverse 35s linear infinite;
    display: flex;
    width: max-content;
  }

  /* Ensure no stopping on hover */
  .animate-marquee:hover, 
  .animate-marquee-reverse:hover {
    animation-play-state: running !important;
  }





    /* Fixed Visibility Animations */
    .animate-fade-in {
        animation: fadeIn 1s ease-out forwards;
    }
    .animate-fade-in-delayed {
        animation: fadeIn 1s ease-out 0.3s forwards;
        opacity: 0;
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* Premium Grey Card Design */
    .highlight-card {
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid rgba(0, 0, 0, 0.05);
        background-color: #ffffff; 
        height: 100%;
        box-shadow: 0 10px 30px -15px rgba(0,0,0,0.08);
    }

    .highlight-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
        border-color: rgba(37, 99, 235, 0.2);
    }

    .img-zoom-container {
        position: relative;
        height: 240px;
        overflow: hidden;
        /* Removed border-bottom to keep image connection clean */
    }

    .highlight-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s ease;
        /* Ensures no blur filters are applied */
        filter: none !important;
    }

    .highlight-card:hover .highlight-img {
        transform: scale(1.1);
    }

    /* Removed .img-overlay entirely to fix the "blur" at the bottom of the image */

    .description-text {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        transition: max-height 0.5s ease;
    }

    .clamped {
        -webkit-line-clamp: 4;
    }

    /* Swiper Dots */
    .swiper-pagination-bullet {
        background: rgba(0, 0, 0, 0.2) !important;
        opacity: 1 !important;
    }
    .swiper-pagination-bullet-active {
        background: #2563eb !important; 
        width: 30px !important;
        border-radius: 5px !important;
    }








  .accred-card {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .accred-card.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Fixed Logo Wrapper */
  .logo-wrapper {
    position: relative;
    width: 160px; /* Slightly larger to prevent clipping */
    height: 160px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 2px solid #f1f5f9;
    padding: 20px; /* Internal padding ensures logo doesn't touch the edges */
    overflow: hidden;
  }

  /* Interaction Fix */
  .accred-card:hover .logo-wrapper {
    transform: scale(1.05);
    border-color: #2563eb;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
  }

  /* Ensuring logo image is always fully visible */
  .accred-card img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Keeps aspect ratio and fits within padding */
    transition: all 0.4s ease;
    display: block;
  }


  .accred-card {
    max-width: 480px;
    cursor: default;
  }

.npf_wgts {
  width: 100%;
  min-height: 580px;
  overflow: hidden;
  border-radius: 0.75rem;
  background: #ffffff;
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.28);
}

.npf_wgts:empty::before {
  display: flex;
  min-height: 580px;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  color: #334155;
  font-weight: 700;
  text-align: center;
  content: "Loading application form...";
}

.npf_wgts iframe {
  width: 100% !important;
  min-height: 580px !important;
  border: 0;
}

@media (max-width: 640px) {
  .npf_wgts,
  .npf_wgts:empty::before,
  .npf_wgts iframe {
    min-height: 640px !important;
  }
}





