.marquee-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #0f1724;
  /*border-radius: 14px;*/
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
  padding: 1.5rem;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: scroll 25s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3AAFA9;
  flex-shrink: 0;
}

.text {
  color: #e6eef8;
  font-weight: 600;
  font-size: 20px;
}

.sub {
  font-weight: 500;
  opacity: 0.75;
  font-size: 0.9em;
  margin-left: 0.25rem;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-container::before,
.marquee-container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px;
  z-index: 2;
  pointer-events: none;
}
.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, #0f1724, transparent);
}
.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, #0f1724, transparent);
}

.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}
.awards {
    width: 30px;
}

.body {
  /* background: #2b7a78; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
}
.body > h3 {
  font-size: 40px;
  margin: 40px 0px;
  color: #feffff;
}

.slider-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  overflow: hidden;
  border-radius: 20px;
  margin: 0 auto;
}

.slider-track {
  display: flex;
  width: max-content;
  animation: scroll 40s linear infinite;
  padding: 10px 0px;
}

/* Pause animation on hover */
.slider-container:hover .slider-track {
  animation-play-state: paused;
}

.card {
  flex: 0 0 350px;
  background: #fff;
  border-radius: 12px;
  margin: 0 15px;
  box-shadow: 0px 5px 15px rgba(58, 175, 169, 0.2);
  text-align: center;
  padding: 20px;
  transition: transform 0.3s;
}

.card:hover {
  transform: scale(1.05);
  cursor: pointer;
}

.card img {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.card p {
  font-size: 0.9rem;
  margin-bottom: 15px;
  color: #333;
}

.card button {
  background: #17252a29;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
  color: #000 !important;
}

.card button:hover {
  background: #3aafa9;
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}
.arrow:hover {
  background: rgba(0,0,0,0.6);
}
.arrow.left {
  left: 10px;
  display: none;
}
.arrow.right {
  right: 10px;
  display: none;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 768px) {
  .card {
	flex: 0 0 300px;
	height: 500px;
  }
  .body{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
  }
  .card p{
	font-size: 18px;
  }
  .card button{
	font-size: 16px;
	padding: 20px;
  }
  .card h3{
	font-size: 26px;
  }
  .slider-track {
    animation: scroll 55s linear infinite;
  }
}

.arsh-events-container {
  display: flex;
  width: 100%;
  min-height:500px;
  padding: 40px;
  background-color: #f5f5f9 ;
}

/* Left Side */
.arsh-events-left {
  width: 50%;
}

.arsh-events-left img {
  width: 710px;
  height: 450px !important;
  object-fit: cover;
}

/* Right Side */
.arsh-events-right {
  width: 50%;
  padding: 30px 30px 0px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 450px;
}

.arsh-events-title {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #17252a;
}

.arsh-events-desc {
  font-size: 16px;
  line-height: 1.5;
}

.arsh-events-image-list {
  display: flex;
  gap: 10px;
  width: 100%;
  overflow-y: hidden;
  overflow-x: scroll;
}
.arsh-events-image-list::-webkit-scrollbar {
  height: 1px;
}

.arsh-events-image-list img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}

.arsh-events-image-list img:hover {
  transform: scale(1.05);
}
.arsh-events-right-1{
	height: 60%;
}
.arsh-events-image-list{
	height: 36%;
}

/* Responsive */
@media (max-width: 1024px) {
  .arsh-events-container {
	flex-direction: column;
  }
  .arsh-events-left, .arsh-events-right {
	width: 100%;
  }
  .arsh-events-image-list {
	justify-content: center;
	flex-wrap: wrap;
  }
   .arsh-events-left img {
	width: 100%;
	height: 400px;
  }
}

@media (max-width: 768px) {
  .arsh-events-container {
	flex-direction: column;
	padding: 20px;
  }
  .arsh-events-left, .arsh-events-right {
	width: 100%;
  }
  .arsh-events-right {
	height: auto;
	padding: 20px 10px;
  }
  .arsh-events-title {
	font-size: 24px;
  }
  .arsh-events-desc {
	font-size: 14px;
	line-height: 1.4;
  }
  .arsh-events-image-list {
	justify-content: start;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 13px;
  }
  .arsh-events-image-list img {
	width: 100px;
	height: 100px;
  }
}

@media (max-width: 480px) {
  .arsh-events-title {
	font-size: 20px;
  }
  .arsh-events-desc {
	font-size: 13px;
  }
  .arsh-events-image-list img {
	width: 80px;
	height: 80px;
  }
  .arsh-events-left img {
	width: 100%;
	height: 190px;
  }
}

.video-thumb {
    position: relative;
    display: inline-block;
}

.video-thumb::after {
    content: "▶";
    font-size: 32px;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none; /* allow clicks to pass to video */
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.7);
}

.arsh-events-image-list video {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
}
 
@media (max-width: 768px) {
    .arsh-events-image-list video {
      width: 80px !important;
      height: 80px !important;
    }
}
 
@media (max-width: 480px) {
    .arsh-events-image-list video {
      width: 80px;
      height: 80px;
    }
}
 
.main-media {
  width: 573px;
  height: 450px;
  object-fit: cover;
  display: block;
}
 
@media (max-width: 768px) {
  .main-media {
    width: 100%;
    height: auto;
    max-height: 400px; /* optional */
  }
}
 
@media (max-width: 480px) {
  .main-media {
    width: 100%;
    height: auto;
    max-height: 250px;
  }
}