  
        @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
        }
        .fade-in {
            animation: fadeIn 0.5s ease forwards;
        }

        *{
             font-family: Montserrat, sans-serif;
             scroll-behavior: smooth;
        }

        html, body {
            overflow-x: hidden;
            max-width: 100vw;  
        }
        #app-btn {
            box-shadow: 0px 24px 24px #00000029;
		
        } 



        .img-ban{
            margin: 0 auto;
        }

        .main {
            background: url("../images/png/png/Mask Group 541.jpg");
            background-size: 100% auto;
            background-repeat: no-repeat;
            background-position: top;
            font-family: Montserrat;
        }

        @media (max-width: 768px) {
            .main {
                background: url("../images/png/png/Mask Group 550.jpg");
                background-size: cover;
                background-position: center center;
                background-repeat: no-repeat;
				padding-bottom: 40px; 
            }
        }

     

        .card{
            border-radius: 16px;
        }
        .card-inner{
            border-radius: 0px 0px 16px 16px;
        }
        .policy{
            box-shadow: 0px 3px 6px #00000029;
        }
        .minor{
            box-shadow: 0px 3px 6px #00000029;
        }
        .tp-line{
            border-bottom: 2px solid #CC0033;
        }

        .active{
            color: #CC00331F;
            font-weight: medium !important;
        }

#main-heading {
  font-size: 80px;
  /* Desktop */
}

@media (max-width: 768px) {
  #main-heading {
    font-size: 48px; /* Mobile */
  }}

        .program-hours-btn {
            background-color: #CC00331F;
            color: black;
            border: none;
            outline: none;
            transition: background 0.2s, color 0.2s;
        }
        .program-hours-btn.active {
            background: #CC00331F;
            color: #fff;
        }
		
		.testimonials-container {
  display: flex;
  gap: 2px;
  flex-wrap: nowrap;
  justify-content: center;
  max-width: 100%;
  margin: 0 auto 40px auto;
  overflow: hidden;
  padding: 20px;
}

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  min-width: 300px;
  width: 300px;
  height: 400px;
  cursor: pointer;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: row;
}

.testimonial-card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.testimonial-card.active {
  min-width: 700px;
  width: -webkit-fill-available;
  height: 400px;
}

.testimonial-card img {
  width: 300px;
  min-width: 300px;
  height: 400px;
  object-fit: cover;
  object-position: top;
  transition: all 0.3s ease;
  flex-shrink: 1;
  background-color: #FFEDD2;
}

.testimonial-content {
  padding: 40px 30px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 0;
  overflow: hidden;
  opacity: 0;
}

.testimonial-card.active .testimonial-content {
  width: 100%;
  opacity: 1;
}

.quote-icon {
  font-size: 80px;
  line-height: 1;
  color: #c8102e;
  font-weight: bold;
  margin-bottom: 20px;
  font-family: Georgia, serif;
}

.testimonial-text {
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 16px;
}

.testimonial-name {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin: 0;
}

.testimonial-navigation {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.nav-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #c8102e;
  background: white;
  color: #c8102e;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.nav-arrow:hover {
  background: #c8102e;
  color: white;
}

.nav-arrow.active {
  background: #c8102e;
  color: white;
}

.nav-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Scroll Animation Indicator */
.scroll-animation {
  display: none;
  justify-content: center;
  align-items: center;
}

.arrow-animation {
  display: flex;
  gap: 8px;
  align-items: center;
}

.animated-arrow {
  width: 32px;
  height: 32px;
  opacity: 0;
  animation: arrowSlide 2s ease-in-out infinite;
}

.animated-arrow:nth-child(1) {
  animation-delay: 0s;
}

.animated-arrow:nth-child(2) {
  animation-delay: 0.2s;
}

.animated-arrow:nth-child(3) {
  animation-delay: 0.4s;
}

.animated-arrow:nth-child(4) {
  animation-delay: 0.6s;
}

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, opacity 0.3s ease;
            opacity: 0;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
            opacity: 1;
        }
        
        .faq-icon {
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faculty-card {
            width: 360px;
            height: 420px;
        }
    .faculty-image {
            height: 300px !important;
        }
        @media (max-width: 768px) {
            .faculty-card {
                width: 100%;
                height: auto;
                flex-shrink: 1;
                padding: 8px; /* adds padding around card */
                box-sizing: border-box;
            }
        }


        @media (max-width: 768px) {
            .faculty-image {
                height: auto;
                width: 100%;
                object-fit: contain; /* ensures full image is visible */
                display: block;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            body {
                overflow-x: hidden !important;
                max-width: 100vw !important;
            }

            .carousel-container {
                overflow: hidden !important;
                max-width: 100vw !important;
                touch-action: pan-y !important;
            }

            .carousel-container .carousel {
                display: flex !important;
                gap: 16px;
                animation: autoScroll 20s linear infinite;
                will-change: transform;
            }

            .carousel-container .faculty-card {
                min-width: 280px;
                max-width: 280px;
                touch-action: pan-y !important;
            }

            @keyframes autoScroll {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(calc(-280px * 9 - 16px * 9));
                }
            }

            .carousel-container .carousel:hover {
                animation-play-state: paused;
            }
        }

        @media (max-width: 768px) {
            .tab-button {
                display: none !important;
            }
			  .scroll-animation {
    display: flex;
  }
  @keyframes arrowSlide {
  0% { transform: translateY(0); opacity: 0; }
  50% { transform: translateY(6px); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

.scroll-animation {
  justify-content: center;
  align-items: center;
  display: flex; /* make sure visible everywhere */
  margin-top: 10px;
}

.arrow-animation {
  display: flex;
  gap: 6px;
}

.animated-arrow {
  width: 28px;
  height: 28px;
  animation: arrowSlide 1.5s ease-in-out infinite;
  opacity: 0.7;
}

	.myresponsive img{
height: 180px !important;
object-fit: cover; 
} 
            .stats-content {
                display: grid !important;
                margin-bottom: 2rem;
            }

            .curriculum-image {
                max-width: 250px !important;
            }

            .year-tab {
                font-size: 14px !important;
                padding: 0.5rem 0.75rem !important;
                flex: 1 !important;
                white-space: nowrap !important;
            }

            .year-tabs-container {
                padding-left: 0 !important;
                flex-direction: column;
                width: 100% !important;
                gap: 0rem !important;
            }
			.student-testimonials-section {
    padding: 60px 20px;
  }

  .testimonials-container {
    /* flex-direction: column; */
    gap: 24px;
    overflow-x: visible;
    padding: 20px 0;
  }

  /* Mobile: compact, horizontally scrollable testimonials with snap */
  .testimonials-container {
    flex-wrap: nowrap;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 10px 12px;
    justify-content: flex-start;
  }

  .testimonial-card {
    flex: 0 0 70%;
    max-width: 70%;
    scroll-snap-align: center;
    height: 140px;
    flex-direction: row;
    border-radius: 12px;
    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    display: flex !important;
    cursor: grab;
    pointer-events: auto;
    align-items: stretch;
    overflow: hidden;
  }

  .testimonial-card.active {
    min-width: 70%;
    width: 70%;
    height: 140px;
  }

  .testimonial-card img {
    width: 36%;
    min-width: 36%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: #FFEDD2;
    border-radius: 0;
  }

  .testimonial-card .testimonial-content {
    width: 64% !important;
    opacity: 1 !important;
    padding: 12px 12px;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    overflow: visible !important;
  }

  .testimonial-card.active .testimonial-content {
    width: 64% !important;
    opacity: 1 !important;
  }

  .testimonial-card .quote-icon {
    font-size: 36px;
    margin-bottom: 8px;
    line-height: 1;
    display: block !important;
    opacity: 1 !important;
  }

  .testimonial-card .testimonial-text {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 8px;
    display: block !important;
    opacity: 1 !important;
  }

  .testimonial-card .testimonial-name {
    font-size: 14px;
    font-weight: 700;
    display: block !important;
    opacity: 1 !important;
  }

	
			 
        }


        /* Responsive adjustments for Partners & Mentors cards grid */
        @media (max-width: 768px) {
            .grid div {
                height: auto !important; /* allow height to adjust based on content */
                padding: 4px !important;
            }
            .grid div img {
                max-height: 40px !important; /* keep logos scaled */
            }
            .grid div h1, .grid div h2, .grid div p {
                font-size: 12px !important; /* shrink heading and paragraph */
            }
			 .testimonials-container {
    flex-wrap: nowrap;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 10px 12px;
    justify-content: flex-start;
  }

  .testimonial-card {
    flex: 0 0 75%;
    max-width: 75%;
    scroll-snap-align: center;
    height: 60vh;
    flex-direction: row;
    border-radius: 12px;
    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    display: flex !important;
    cursor: grab;
    pointer-events: auto;
    align-items: stretch;
    overflow: hidden;
  }

  .testimonial-card.active {
    min-width: 75%;
    width: 70%;
    height: 60vh;
  }

  .testimonial-card img {
    width: 36%;
    min-width: 36%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: #FFEDD2;
    border-radius: 0;
  }

  .testimonial-card .testimonial-content {
    width: 64% !important;
    opacity: 1 !important;
    padding: 12px 12px;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    overflow: visible !important;
  }

  .testimonial-card.active .testimonial-content {
    width: 64% !important;
    opacity: 1 !important;
  }

  .testimonial-card .quote-icon {
    font-size: 36px;
    margin-bottom: 8px;
    line-height: 1;
    display: block !important;
    opacity: 1 !important;
  }

  .testimonial-card .testimonial-text {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 8px;
    display: block !important;
    opacity: 1 !important;
  }

  .testimonial-card .testimonial-name {
    font-size: 14px;
    font-weight: 700;
    display: block !important;
    opacity: 1 !important;
  }

  /* Hide testimonial navigation on mobile as requested */
  .testimonial-navigation {
    display: none;
  }
        }
.pb-4, .py-4 {
    padding-bottom: 0.5rem !important;
}

.regPopup {
    position: fixed;
    top: 20% !important;
    right: 0;
    min-width: 100%;
    max-width: 90%;
    background: #fff !important;
    padding: 12px;
    display: none;
    z-index: 999;
    border-radius: 8px;
}    