* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  
   border-top: 8px #1A1C5C solid;

 
}

.breadcrumb {
  background: #f2f2f2;
  color: black;
  padding: 15px 20px;
  font-size: 14px;
  font-weight: bold;
}

.academics-section {
   background-color: #1A1C5C;
  padding: 40px 20px;
}

.academics-section h2 {
  font-size: 14px;
  letter-spacing: 1px;
  color: #ddd;
  margin-bottom: 20px;
}

.grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.column {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.column a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding-bottom: 6px;
  border-bottom: 1px solid #ccc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.column a:hover {
  color: #ffcccb;
}

.column a span {
  font-size: 18px;
  transform: translateX(0);
  transition: transform 0.3s ease;
}

.column a:hover span {
  transform: translateX(5px);
}
.academicsh6{
    font-size: 10px;
}

/* Background image is now in its own div */
.video-hero-bg {
    background-image: url('../assets/images/testimonials-banner.webp');
}

.container {
  max-width: 1200px;
  margin: 2rem auto;
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.testimonial-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.testimonial-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 40%;
  padding: 1.5rem;
  text-align: center;
}

.testimonial-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.8rem;
  border: 3px solid #1A1C5C;
}

.company-logo {
  height: 50px;
  margin: 0.5rem 0;
  object-fit: contain;
}

h3 {
    font-size: 1.3rem;
  margin: 0.5rem 0 0.2rem;
  color: #1A1C5C;
  font-weight: 600;
}

.batch, .role {
  font-size: 0.9rem;
  color: #555;
  margin: 2px 0;
}
.header-head{
  font-size: 3rem;
  color: white;
}
.testimonial-text {
  font-size: 0.92rem;
  margin-top: 0.8rem;
  color: #333;
}
@media only screen and (max-width: 800px) {
    .testimonial-card{
        width: 80%;
    }
}
.video-frame {
    position: relative;
    width: 100%; /* or fixed width like 400px */
    aspect-ratio: 16 / 9; /* or use height instead */
    overflow: hidden;
}

.video-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* or 'contain' if you want full video visible without cropping */
    display: block;
}
