/* Desktop header दिखाओ, mobile header छुपाओ */
.header-mobile{display:none;}

/* Mobile view (<768px) */
@media (max-width:768px){
  .header-desktop{display:none;}
  .header-mobile{display:block;}

  .jamb-header {
    background:#fff;
    box-shadow:0 2px 8px rgba(0,0,0,0.05);
    padding:10px 15px;
  }
  .jamb-header-top {
    display:flex;
    justify-content:space-between;
    align-items:center;
  }
  .jamb-logo img {
    width:60px;
    height:auto;
    display:block;
  }
  .jamb-hamburger {
    font-size:24px;
    cursor:pointer;
  }
  .jamb-menu {
    display:none;
    width:100%;
    margin-top:10px;
  }
  .jamb-menu-list {
    list-style:none;
    margin:0;
    padding:0;
    display:flex;
    flex-direction:column;
    gap:10px;
    align-items:center;
  }
  .jamb-menu-list li a {
    text-decoration:none;
    color:#081126;
    font-weight:600;
    padding:8px 10px;
    display:block;
    width:100%;
    text-align:center;
  }
  .jamb-menu-list li a:hover,
  .jamb-menu-list li.active a {
    background:#ff4b2b;
    color:#fff;
  }
  .jamb-live-dot {
    width:24px;
    height:24px;
    margin-left:4px;
  }
  .jamb-btn {
    display:block;
    width:100%;
    background:#ff4b2b;
    color:#fff;
    padding:10px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
    text-align:center;
    margin-top:10px;
  }
}


/* ===== About-Us Jamboree Cards Premium Style ===== */
.about-us-heading {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 30px;
  color: #0b1220;
}

/* Card Wrapper */
.about-us-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 25px;
  padding: 4px; /* space for border animation */
  background: linear-gradient(90deg,#ff512f,#dd2476,#ff512f,#dd2476);
  background-size: 300% 300%;
  animation: aboutBorderMove 6s linear infinite;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}

.about-us-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* Image */
.about-us-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: inset 0 0 0 3px #fff;
}

/* Inner Content */
.about-us-body {
  padding: 15px 10px 18px;
  text-align: center;
  background:#fff;
  border-radius: 0 0 12px 12px;
}

.about-us-title {
  font-size: 18px;
  font-weight: 700;
  color: #0b1220;
  margin-bottom: 6px;
}

.about-us-year {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #ff4b2b;
  margin-bottom: 3px;
  letter-spacing: 0.5px;
}

.about-us-place {
  display: block;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.4;
}

/* Gradient Border Animation */
@keyframes aboutBorderMove {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

/* Responsive Adjustments */
@media (max-width: 768px){
  .about-us-img{height:150px;}
  .about-us-title{font-size:16px;}
}
