/* Start campaign-details [Events Page - View Website] */

.slider-image {
    width: 100% !important;
    height: 60vh; /* full screen height */
    object-fit: cover; /* show full image, no crop */
    background: #000; /* black bars if aspect ratio differs */
    object-position: top;
}
 
 
.hero {
    height: 400px;
}
.slider-text-overlay {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    max-width: auto;
}
.slider-text-overlay h4 {
    color: #fff;
    font-weight: 700;
    text-shadow: 0px 3px 8px rgba(0,0,0,0.6);
}



.footer-social a {
    font-size: 28px;
    color: #ffffff;
    transition: 0.3s ease;
}

.footer-social a:hover {
    color: #0d6efd;
}

    .navbar-brand img {
      height: 40px;
    }
    .hero {
      
      color: white;
      padding: 120px 0;
      text-align: center;
    }
    .timeline-icon {
      font-size: 30px;
      color: #ff6600;
    }
    .past-winners img {
      width: 100%;
      height: auto;
    }
    footer {
      background-color: #222;
      color: #fff;
      padding: 40px 0;
      text-align: center;
    }
    .sponsor-logo {
      max-height:100px;
      margin: 20px;
    }
  .swiper {
    padding-bottom: 40px;
  }
  .swiper-slide {
    text-align: center;
  }
  .swiper-slide img {
    width: 100%;
    height: auto;
    border-radius: 4px;
  }
  .clipped-image {
  position: relative;
  overflow: hidden;
}

.clipped-image img {
  width: 100%;
  height: auto;
  display: block;
  clip-path: polygon(
    0% 0%,
    50% 20%,
    100% 0%,
    80% 50%,
    100% 100%,
    50% 80%,
    0% 100%,
    20% 50%
  );
}
     .video-section {
      display: flex;
      align-items: center;
      justify-content: center;
       background:url('images/lines-bg.jpg');
    }
   .left-box {
    width: 30%;
    display: flex;
    flex-direction: column;   /* <-- This stacks items vertically */
    align-items: center;
    justify-content: center;
    }
    .left-box img {
        max-width: 80%;
        height: auto;
        margin-bottom: 15px;
    }

    .right-box {
      position: relative;
      width: 70%;
      background: #bfbda8; 
      min-height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .play-button {
      width: 0;
      height: 0;
      border-left: 50px solid #ff5a1f;
      border-top: 30px solid transparent;
      border-bottom: 30px solid transparent;
      cursor: pointer;
      transition: transform 0.2s ease;
      position: absolute;
    }
    .play-button:hover {
      transform: scale(1.1);
    }
    /* Modal styles */
    .modal {
      display: none;
      position: fixed;
      z-index: 999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.8);
      align-items: center;
      justify-content: center;
    }
    .modal-content {
      position: relative;
      width: 80%;
      max-width: 800px;
      background: #000;
    }
    .modal-content iframe {
      width: 100%;
      height: 450px;
      border: none;
    }
    .close {
      position: absolute;
      top: -40px;
      right: 0;
      color: white;
      font-size: 40px;
      font-weight: bold;
      cursor: pointer;
    }
    
    .slider-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 800px;
  margin: auto;
  padding: 40px 0;
}
.slider-track {
  display: flex;
  transition: transform 0.5s ease;
}
.testimonial-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 20px;
  text-align: center;
}
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #555;
  border: none;
  color: white;
  padding: 10px;
  cursor: pointer;
}
.arrow.left {
  left: 10px;
}
.arrow.right {
  right: 10px;
}

/* End Campain Details Style Code */