/* Header & Slider Opens */
	/* Desktop */
    .header-bar { padding: 15px 20px; display: flex; align-items: center; justify-content: space-between; background: #ffffff; border-bottom: 1px solid #ddd; }
    .header-logo img { height: 60px; }

    /* Mobile */

    @media (max-width: 768px) {
  		.header-logo h4 {
  			font-size: 18px;
  		}
		}

	@media (max-width: 576px) {
    	.header-logo h4 {
  			font-size: 18px;
  		}
	}

/* All the css inline CSS in index is moved Here */

 body {
      font-family: 'Poppins', sans-serif;
      background: #f8f8f8;
      overflow-x: hidden;
    }

    /* PARTICLES BACKGROUND */
    #particles-js {
      position: fixed;
      width: 100%;
      height: 100%;
      z-index: -2;
      top: 0;
      left: 0;
    }

    /* HEADER */
    .header-bar {
      padding: 15px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: #ffffff;
      border-bottom: 1px solid #ddd;
      animation: slideDown 1s ease-in-out;
    }

    @keyframes slideDown {
      from {
        transform: translateY(-100px);
        opacity: 0;
      }

      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .header-logo img {
      height: 60px;
    }

    /* SLIDER */
    .main-section {
      display: flex;
      flex-wrap: wrap;
      width: 100%;
      padding: 10px;
      background-color: #952222;
    }

    .slider-container {
      width: 70%;
      padding: 10px;
      animation: fadeInLeft 1.4s ease;
    }

    /* @keyframes fadeInLeft {
      from {
        opacity: 0;
        transform: translateX(-80px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    } */

    .carousel-item img {
      width: 100%;
      height: 685px;
      display: flex;
      object-fit: cover;
      border-radius: 10px;
      /* transition: transform 0.6s ease-in-out;*/
    }

    /*.carousel-item img:hover {
  transform: scale(1.04) rotate(1deg);
  filter: brightness(1.15);
  box-shadow: 0 0 20px rgba(255,255,255,0.6);
}*/

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      filter: invert(1);
    }

    /* FORM */
    .form-container {
      width: 30%;
      height: 500px;
      background: linear-gradient(145deg, #952222, #b24b4b);
      color: #fff;
      padding: 15px;
      /* border-radius: 10px;
      box-shadow: 0 0 25px rgba(0, 0, 0, 0.3); */
      animation: fadeInRight 1.4s ease;
    }

    /* @keyframes fadeInRight {
      from {
        opacity: 0;
        transform: translateX(80px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    } */

    .form-control {
      border-radius: 8px;
      border: none;
      font-size: 14px;
      box-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .form-control:focus {
      transform: scale(1.03);
      box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    }

    .btn-download {
      background: #000;
      color: #fff;
      padding: 12px 25px;
      font-size: 18px;
      border-radius: 8px;
      width: 100%;
      margin-top: 5px;
      transition: 0.3s;
    }

    .btn-download:hover {
      background: #333;
      transform: scale(1.07);
      box-shadow: 0 0 20px rgba(255, 240, 240, 0.6);
    }


    /* RESPONSIVE */
    @media(max-width: 992px) {

      .slider-container,
      .form-container {
        width: 100%;
      }

      .carousel-item img {
        height: 300px;
      }
    }

    /* Glow Animation */
    @keyframes glow {
      0% {
        box-shadow: 0 0 5px #fff;
      }

      50% {
        box-shadow: 0 0 20px #ffdcdc;
      }

      100% {
        box-shadow: 0 0 5px #fff;
      }
    }

    /* .form-container:hover {
      animation: glow 2s infinite alternate;
    } */


    /* Ranking Starts Here */

    /* Ranking Starts Here */

    .ranking-section {
      background: linear-gradient(180deg, #fafafa, #f1f1f1);
      position: relative;
      overflow: hidden;
    }

    /* Subtle background glows */
    .ranking-section::before,
    .ranking-section::after {
      content: "";
      position: absolute;
      width: 250px;
      height: 250px;
      filter: blur(60px);
      z-index: 0;
    }

    .ranking-section::before {
      top: -60px;
      left: -60px;
      background: radial-gradient(circle, rgba(255, 200, 200, 0.35), rgba(255, 255, 255, 0));
    }

    .ranking-section::after {
      bottom: -60px;
      right: -60px;
      background: radial-gradient(circle, rgba(210, 120, 120, 0.35), rgba(255, 255, 255, 0));
    }

    .img-grid {
      display: flex;
      flex-wrap: wrap;
      margin: -8px;
      position: relative;
      z-index: 2;
    }

    .img-grid .item {
      padding: 8px;
      flex: 0 0 20%;
      max-width: 20%;
    }

    /* Tablet 3 per row */
    @media (max-width: 991.98px) {
      .img-grid .item {
        flex: 0 0 33.333%;
        max-width: 33.333%;
      }
    }

    /* MOBILE: 2 per row AND center last logo */
    @media (max-width: 767.98px) {
      .img-grid {
        justify-content: center;
      }

      .img-grid .item {
        flex: 0 0 50%;
        max-width: 50%;
      }

      /* Last logo in center */
      .img-grid .item.last-logo {
        flex: 0 0 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
      }

      .img-grid .item.last-logo .img-card {
        width: 60%;
        /* Optional: Reduce size for perfect center look */
      }
    }

    /* Premium card */
    .img-card {
      background: #ffffff;
      padding: 8px;
      border-radius: 10px;
      overflow: hidden;
      position: relative;
      transition: transform .45s ease, box-shadow .45s ease;
      border: 1px solid rgba(255, 255, 255, 0.7);
      animation: float 4s ease-in-out infinite;
    }

    /* Shine effect */
    .img-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: -150%;
      width: 120%;
      height: 100%;
      background: linear-gradient(120deg, rgba(255, 255, 255, 0.0), rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.0));
      transform: skewX(-25deg);
      transition: 0.7s;
    }

    .img-card:hover {
      transform: translateY(-10px) scale(1.05);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
    }

    .img-card:hover::before {
      left: 130%;
    }

    /* Image effects */
    .premium-img {
      width: 100px;
      margin-left: 40px;
      border-radius: 8px;
      transition: transform .45s ease, filter .45s ease;
      -webkit-box-reflect: below 0px linear-gradient(transparent, rgba(0, 0, 0, 0.1));
    }

    .img-card:hover .premium-img {
      transform: scale(1.08);
      filter: brightness(1.14) saturate(1.1);
    }

    /* Floating animation */
    @keyframes float {
      0% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-4px);
      }

      100% {
        transform: translateY(0);
      }
    }

    /* Container limit */
    .container-max {
      max-width: 1200px;
      margin: 0 auto;
    }

    /* Ranking Ends Here */

    /* About Us Starts Here */
    /* Background Gradient + Premium Feel */
    .about-nalsar-section {
      background: linear-gradient(135deg, #ffe4e4, #f9d2d2, #ffdede);
      overflow: hidden;
      position: relative;
    }

    /* FLOATING GLOW BLOBS */
    .blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(70px);
      opacity: 0.45;
      animation: blobFloat 12s infinite ease-in-out;
    }

    .blob1 {
      width: 280px;
      height: 280px;
      background: #ff6a6a;
      top: -80px;
      left: -80px;
    }

    .blob2 {
      width: 260px;
      height: 260px;
      background: #ffb3b3;
      bottom: -60px;
      right: -60px;
    }

    @keyframes blobFloat {
      0% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-35px);
      }

      100% {
        transform: translateY(0);
      }
    }

    /* Premium White Card */
    .premium-card {
      background: rgba(255, 255, 255, 0.78);
      padding: 25px;
      border-radius: 18px;
      backdrop-filter: blur(6px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
      position: relative;
      animation: fadeScale 1.2s ease;
    }

    @keyframes fadeScale {
      from {
        opacity: 0;
        transform: scale(0.95);
      }

      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    /* Neon Heading */
    .neon-text {
      text-shadow: 0 0 6px #ff5c5c, 0 0 12px #ff9999;
    }

    /* Ranking Badge */
    .ranking-badge {
      margin-top: 15px;
      display: inline-block;
      padding: 8px 16px;
      background: #a30000;
      color: #fff;
      border-radius: 30px;
      font-size: 14px;
      animation: badgeFloat 2.5s infinite ease-in-out;
    }

    @keyframes badgeFloat {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-6px);
      }
    }

    /* Video Box Effects */
    .video-wrapper {
      position: relative;
    }

    .video-box {
      overflow: hidden;
      border-radius: 16px;
      position: relative;
      transition: all 0.4s ease;
    }

    /* Reflection Effect */
    .video-box.reflection::after {
      content: "";
      position: absolute;
      bottom: -30%;
      left: 0;
      right: 0;
      height: 40%;
      background: inherit;
      transform: scaleY(-1);
      opacity: 0.25;
      filter: blur(5px);
    }

    /* Hover Animations */
    .hover-up:hover {
      transform: translateY(-6px) scale(1.03);
    }

    .hover-brightness:hover {
      filter: brightness(1.1);
    }

    .hover-shadow:hover {
      box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
    }

    /* Shine Swipe Animation */
    .shine {
      position: absolute;
      top: 0;
      left: -120%;
      width: 60%;
      height: 100%;
      background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .4), transparent);
      transform: skewX(-20deg);
      animation: shineMove 2.8s infinite;
    }

    @keyframes shineMove {
      0% {
        left: -120%;
      }

      60% {
        left: 140%;
      }

      100% {
        left: 140%;
      }
    }

    /* Mouse Glow Cursor */
    .glow-cursor {
      position: fixed;
      width: 80px;
      height: 80px;
      border-radius: 50%;
      pointer-events: none;
      background: radial-gradient(circle, rgba(255, 150, 150, 0.5), transparent);
      mix-blend-mode: screen;
      transform: translate(-50%, -50%);
      z-index: 9999;
    }

    /* Tilt card style */
    .tilt-card {
      border-radius: 18px;
      transition: transform 0.3s;
    }


    /* About Us Ends Here */

    /* Recruiter Starts Here */

    .placements-section {
      background: linear-gradient(180deg, var(--bg-start), var(--bg-end));
      position: relative;
      overflow: hidden;
      padding: 60px 0;
    }

    .placements-section .blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(70px);
      opacity: .45;
      z-index: 0;
      animation: blobFloat 14s ease-in-out infinite;
      pointer-events: none;
    }

    .blob.b1 {
      width: 320px;
      height: 320px;
      background: var(--accent);
      top: -100px;
      left: -80px;
    }

    .blob.b2 {
      width: 260px;
      height: 260px;
      background: var(--accent-2);
      bottom: -80px;
      right: -60px;
      animation-duration: 16s;
    }

    @keyframes blobFloat {
      0% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-30px)
      }

      100% {
        transform: translateY(0)
      }
    }

    /* Container */
    .placements-inner {
      position: relative;
      z-index: 2;
    }

    h3.placements-title {
      color: #2b0b0b;
      font-weight: 700;
      text-align: center;
      margin-bottom: 28px;
      text-shadow: 0 0 6px rgba(224, 65, 65, 0.12);
    }

    /* Carousel frame */
    .company-slider {
      overflow: hidden;
      position: relative;
      padding: 18px 8px;
      border-radius: 14px;
      background: var(--card-bg);
      border: 1px solid var(--glass-border);
      box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
      backdrop-filter: blur(6px);
      transition: transform .35s ease, box-shadow .35s ease;
    }

    .company-slider:hover {
      transform: translateY(-6px);
      box-shadow: 0 22px 60px rgba(0, 0, 0, 0.12);
    }

    /* Track (flex) */
    .company-track {
      display: flex;
      align-items: center;
      gap: 30px;
      will-change: transform;
      /* animation handled by JS for better control (seamless) */
    }

    /* Each logo card */
    .company-card {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 200px;
      height: 200px;
      border-radius: 10px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 250, 0.95));
      transition: transform .35s cubic-bezier(.2, .9, .3, 1), box-shadow .35s ease, filter .35s ease;
      box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
      padding: 12px;
      position: relative;
      border: 1px solid rgba(255, 255, 255, 0.6);
      flex-shrink: 0;
      overflow: hidden;
    }

    /* Larger hit area for touch */
    .company-card .logo-wrap {
      width: 170px;
      height: 170px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 6px;
      border-radius: 8px;
      overflow: hidden;
      position: relative;
    }

    .company-logo {
      max-width: 100%;
      max-height: 100%;
      width: auto;
      height: auto;
      object-fit: contain;
      transition: transform .45s ease, filter .45s ease;
      display: block;
      filter: saturate(.9) brightness(.95);
      will-change: transform, filter;
    }

    /* Hover / focus effects (desktop) */
    /*.company-card:hover .company-logo,
    .company-card:focus .company-logo {
      transform: scale(1.08) translateY(-6px) rotate(0.8deg);
      filter: saturate(1.15) brightness(1.12);
    }

    .company-card:hover {
      transform: translateY(-8px) scale(1.03);
      box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
      border-color: rgba(255, 255, 255, 0.9);
    }*/

    /* Shine swipe overlay */
    /*.company-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: -140%;
      width: 110%;
      height: 100%;
      background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.45), transparent);
      transform: skewX(-20deg);
      transition: all .7s ease;
      pointer-events: none;
    }

    .company-card:hover::before {
      left: 140%;
    }*/

    /* Reflection under logo (subtle) */
    /*.company-card::after {
      content: "";
      position: absolute;
      left: 10%;
      right: 10%;
      bottom: -22%;
      height: 36%;
      background: linear-gradient(transparent, rgba(0, 0, 0, 0.06));
      transform: scaleY(-1);
      filter: blur(3px);
      opacity: .15;
      pointer-events: none;
      border-radius: 10px;
    }
*/
    /* Neon edge highlight (subtle) */
    /*.company-card.neon {
      box-shadow: 0 10px 30px rgba(224, 65, 65, 0.06), 0 0 18px rgba(224, 65, 65, 0.02) inset;
    }*/

    /* Tilt target increases depth on hover */
    .tilt-enabled[data-tilt] {
      will-change: transform;
    }

    /* Floating badge / ranking overlay */
    .float-badge {
      position: absolute;
      top: -12px;
      left: 12px;
      background: linear-gradient(90deg, var(--accent), #ff6f6f);
      color: #fff;
      font-size: 12px;
      padding: 6px 10px;
      border-radius: 20px;
      box-shadow: 0 8px 18px rgba(224, 65, 65, 0.12);
      transform: translateY(-4px);
      z-index: 3;
    }

    .rank-num {
      font-weight: 700;
      margin-left: 6px;
      font-size: 13px;
    }

    /* Responsive tweaks */
    @media (max-width: 992px) {
      .company-card {
        width: 140px;
        height: 78px;
      }
    }

    @media (max-width: 768px) {
      .company-card {
        width: 120px;
        height: 70px;
      }

      .company-card .logo-wrap {
        padding: 8px;
      }

      .company-slider {
        padding: 14px 6px;
      }
    }

    @media (max-width: 576px) {
      .company-card {
        width: 110px;
        height: 60px;
        margin: 0 6px;
      }
    }

    /* Small animation for entrance */
    .company-card[data-aos] {
      transform-origin: center;
    }

    /* Cursor hint for desktop */
    .company-slider {
      cursor: grab;
    }

   /* .company-slider:active {
      cursor: grabbing;
    }*/

    /* subtle dividing line */
    .placements-divider {
      height: 1px;
      width: 60%;
      background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.06), transparent);
      margin: 20px auto 0;
    }

    /* Recruiter Ends Here */

    /* About MBA Starts Here */
    /* Section background + blobs */
    .about-mba {
      background: linear-gradient(135deg, #8a2a2a 0%, #4a0f0f 100%);
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    /* Floating blurred blobs */
    .about-mba .blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(72px);
      opacity: .42;
      z-index: 0;
      pointer-events: none;
      animation: blobFloat 13s ease-in-out infinite;
    }

    .about-mba .blob.b1 {
      width: 300px;
      height: 300px;
      background: #ff6a6a;
      top: -80px;
      left: -70px;
    }

    .about-mba .blob.b2 {
      width: 240px;
      height: 240px;
      background: #ffb3b3;
      right: -60px;
      bottom: -60px;
      animation-duration: 16s;
    }

    @keyframes blobFloat {
      0% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-28px)
      }

      100% {
        transform: translateY(0)
      }
    }

    /* Container & premium card */
    .about-card {
      position: relative;
      z-index: 2;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
      border-radius: 16px;
      padding: 20px;
      box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
      border: 1px solid rgba(255, 255, 255, 0.04);
      backdrop-filter: blur(6px);
    }

    .about-mba h3 {
      color: #fff;
      text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
    }

    .about-mba p {
      color: rgba(255, 255, 255, 0.95);
      line-height: 1.7;
    }

    /* Image block with effects */
    .about-img-wrap {
      position: relative;
      border-radius: 14px;
      overflow: visible;
      /* allow reflection pseudo */
      display: inline-block;
      transition: transform .45s cubic-bezier(.2, .9, .3, 1), box-shadow .45s ease;
      will-change: transform;
    }

    /* Image itself */
    .about-img {
      display: block;
      width: 100%;
      border-radius: 12px;
      /*transition: transform .45s ease, filter .45s ease;
    -webkit-box-reflect: below 0px linear-gradient(transparent, rgba(0,0,0,0.2));
    filter: saturate(0.95) brightness(0.96);*/
    }

    /* Card overlay for shine + neon edge */
    .about-img-wrap::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 12px;
      pointer-events: none;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35) inset, 0 0 0 1px rgba(255, 255, 255, 0.03);
      mix-blend-mode: screen;
    }

    /* Shine swipe overlay */
    .about-img-wrap .shine {
      position: absolute;
      top: 0;
      left: -150%;
      width: 60%;
      height: 100%;
      background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.38), transparent);
      transform: skewX(-20deg);
      transition: all .7s ease;
      pointer-events: none;
      border-radius: 12px;
    }

    /* Floating badge (top-left) */
    .about-badge {
      position: absolute;
      top: -8px;
      left: -8px;
      background: linear-gradient(90deg, var(--accent1), var(--accent2));
      color: #fff;
      padding: 6px 12px;
      border-radius: 22px;
      font-size: 13px;
      box-shadow: 0 8px 24px rgba(185, 45, 45, 0.18);
      z-index: 5;
      transform: translateY(0);
      animation: badgeFloat 2.6s infinite ease-in-out;
    }

    @keyframes badgeFloat {

      0%,
      100% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-6px)
      }
    }

    /* Hover / focus behaviors */
    .about-img-wrap:hover .about-img,
    .about-img-wrap:focus-within .about-img {
      transform: scale(1.06) translateY(-6px) rotate(0.6deg);
      filter: saturate(1.12) brightness(1.12);
    }

    .about-img-wrap:hover .shine {
      left: 140%;
    }

    .about-img-wrap:hover {
      transform: translateY(-8px);
      box-shadow: 0 26px 60px rgba(0, 0, 0, 0.45);
    }

    /* Neon edge highlight when focused */
    .about-img-wrap.neon-edge::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 12px;
      pointer-events: none;
      box-shadow: 0 0 28px rgba(255, 80, 80, 0.06), 0 0 10px rgba(255, 120, 120, 0.03) inset;
      mix-blend-mode: screen;
    }

    /* Tilt hint (cursor) */
    .about-img-wrap {
      cursor: grab;
    }

    .about-img-wrap:active {
      cursor: grabbing;
    }

    /* Smooth translate & scale in card reveal (AOS will trigger) */
    .about-card[data-aos] {
      transform-origin: center;
    }

    /* Reflection fallback for mobile: use pseudo element */
    .about-img-wrap .reflection {
      position: absolute;
      left: 0;
      right: 0;
      bottom: -30%;
      height: 40%;
      background: linear-gradient(transparent, rgba(0, 0, 0, 0.12));
      transform: scaleY(-1);
      opacity: 0.22;
      filter: blur(3px);
      border-radius: 12px;
      pointer-events: none;
    }

    /* Animated ranking number overlay */
    .rank-overlay {
      position: absolute;
      right: 10px;
      bottom: 10px;
      background: rgba(0, 0, 0, 0.48);
      color: #fff;
      padding: 6px 10px;
      border-radius: 8px;
      font-weight: 700;
      font-size: 14px;
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
      z-index: 6;
    }

    /* Accessibility focus */
    .about-img-wrap:focus {
      outline: none;
      box-shadow: 0 0 0 4px rgba(201, 66, 66, 0.12);
    }

    /* Responsive tweaks */
    @media (max-width: 767.98px) {
      .about-card {
        padding: 14px;
        border-radius: 12px;
      }

      .about-badge {
        top: 6px;
        left: 6px;
        transform: translateY(0);
      }

      .about-img-wrap {
        width: 80%;
        margin: 0 auto;
        display: block;
      }
    }

    /* small text tweaks for mobile */
    @media (max-width: 576px) {
      .about-mba h3 {
        font-size: 22px;
      }

      .about-mba p {
        font-size: 15px;
      }
      
    }

    /* About MBA Ends Here */

    /* Industry Speakers Starts Here */

    /* Section base */
    /* ==== Section base ==== */
    .speakers-section {
      background: linear-gradient(180deg, #fffaf9 0%, #fff6f6 100%);
      position: relative;
      overflow: hidden;
      padding: 64px 0;
    }

    /* Blobs */
    .speakers-section .blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(72px);
      opacity: .36;
      animation: blobFloat 14s ease-in-out infinite;
      z-index: 0;
    }

    .speakers-section .blob.b1 {
      width: 360px;
      height: 360px;
      background: var(--accent-1);
      top: -120px;
      left: -80px;
    }

    .speakers-section .blob.b2 {
      width: 260px;
      height: 260px;
      background: var(--accent-2);
      bottom: -80px;
      right: -80px;
      animation-duration: 16s;
    }

    @keyframes blobFloat {
      0% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-30px);
      }

      100% {
        transform: translateY(0);
      }
    }

    /* Title */
    h3.speakers-title {
      font-weight: 700;
      text-align: center;
      margin-bottom: 30px;
    }

    /* ==== Speaker Card ==== */
    .speaker-card {
      width: 260px;
      min-height: 100%;
      border-radius: 20px;
      background: white;
      padding: 18px;
      margin-right: 10px;
      text-align: center;
      position: relative;
      box-shadow: 0 14px 38px rgba(8, 24, 40, 0.06);
      transition: transform .4s ease;
    }

    .speaker-card:hover {
      transform: translateY(-10px) scale(1.03);
    }

    .speaker-logo {
      width: 160px;
      height: 160px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 12px;
    }

    /* Name + Designation */
    .speaker-name {
      font-size: 18px;
      font-weight: 700;
      margin-top: 10px;
    }

    .speaker-role {
      font-size: 14px;
      opacity: .75;
      margin-top: -4px;
    }

    /* Badge */
    .speaker-badge {
      position: absolute;
      top: -10px;
      left: 10px;
      padding: 6px 12px;
      background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
      color: #fff;
      border-radius: 15px;
      font-size: 12px;
      font-weight: 600;
    }

    /* Carousel buttons */
    .nav-btn {
      background: #952222;
      color: #fff;
      font-size: 28px;
      border-radius: 50%;
      padding: 10px 16px;
      box-shadow: 0 8px 26px rgba(0, 0, 0, 0.12);
    }

    .carousel-control-prev,
    .carousel-control-next {
      width: 60px;
    }


    /* Industry Speakers Ends Here */

    /* International MOUS Starts Here */
    .img-wrapper {
      position: relative;
      overflow: hidden;
      border-radius: 12px;
    }

    .img-wrapper img {
      transition: transform .4s ease, filter .4s ease;
    }

    .img-wrapper:hover img {
      transform: scale(1.12);
      filter: brightness(0.6);
    }

    /* Overlay */
    .hover-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.55);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      opacity: 0;
      transform: translateY(20px);
      transition: all .35s ease;
    }

    .img-wrapper:hover .hover-overlay {
      opacity: 1;
      transform: translateY(0);
    }

    .overlay-logo {
      width: 55px;
      height: 55px;
      background-color: white;
      border-radius: 20%;
      object-fit: contain;
      margin-bottom: 10px;
    }

    .overlay-title {
      color: #fff;
      font-size: 14px;
      font-weight: 600;
      padding: 0 10px;
      text-align: center;
    }


    /* International MOUS Ends Here */


    /* Admission Process Starts Here */

    .section-heading {
      background: #952222;
      color: #fff;
      padding: 10px 15px;
      font-size: 22px;
      font-weight: 700;
      text-transform: uppercase;
    }

    .content-box {
      padding: 15px;
      font-size: 15px;
      background: #ffffff;
      border: 1px solid #ddd;
      height: 100%;
    }

    ul li {
      margin-bottom: 8px;
    }

    .note-text {
      font-style: italic;
      font-size: 13px;
    }

    .content-box ul li {
      border-bottom: 1px solid #952222;
    }

    .info-box {
      background-color: #8A1F1F;
      color: white;
      border-radius: 8px;
      font-size: 15px;
      font-weight: 500;
      height: 100%;
    }

    /* Optional Hover Effect */
    .info-box:hover {
      background-color: #A52929;
      transition: 0.3s ease-in-out;
    }

    /* Admission Process Ends Here */

    /* Immersive Learning Starts Here */
    /* Immersive Starts Here */

    .logo-box {
      padding: 20px;
      transition: 0.4s ease-in-out;
      border-radius: 12px;
      background: #fff;
    }

    .logo-box img {
      width: 100%;
      max-width: 250px;
      transition: 0.4s ease-in-out;
    }

    .logo-box:hover img {
      transform: scale(1.15);
      filter: grayscale(0%);
    }

    .logo-box:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    }

    /* Immersive Ends Here */

    /* Login & Register Form Starts Here */



    .form-container {
      max-width: 350px;
      margin: 8px auto;
      background: #952222;
      padding: 30px;
      border-radius: 6px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      height: 100%;
    }

    .nav-tabs .nav-link.active {
      background-color: #a80d21;
      color: #fff !important;
      border-color: #a80d21;
    }

    .btn-register {
      background-color: #000;
      border: none;
      color: #fff;
      width: 100%;
    }

   .link-small {
    font-size: 14px;
    color: #fff !important;
    } 

    .link-small a {
      font-size: 14px;
    color: #000!important;
    font-weight: 600;
    }

.flowchart img{
  width: 100%;
}
