.tabs {
      display: flex;
      background: yellow;
      justify-content: space-between;
      max-width: 900px;
      margin: auto;
      margin-top: 30px;
    }
    .tab-button  {
      flex: 1;
      padding: 15px;
      text-align: center;
      cursor: pointer;
      font-weight: bold;
      border: none;
      color: #000;
      background-color: #e87818;
      transition: background 1s;
    }
    .tab-button.active {
      color: rgb(0, 0, 0);
      background-color: #008a39;
    }

    .tab-content {
      display: block;
     
      max-width: 900px;
     
      text-align: justify;
     
    }
    .tab-content p{
        font-size: 17px;
        color: black;
        margin-bottom: 30px;
        margin-top: 40px;
        /* padding: 50px; */
    }
    .tab-content.active {
      display: block;
    }
    .margin-all-bottom {
        margin-top: 100px;
    }
 @media (max-width: 768px) {
    .tabs {
      flex-direction: column;
      align-items: stretch;
    }

    .tab-button {
      width: 100%;
      text-align: left;
    }
    .main-header-two__top-inner
    {
        display:none !important;
    }
  }






    /* ====== */
    .event-card {
            border-left: 5px solid #007bff;
            padding: 15px;
            margin-bottom: 15px;
            background: #f8f9fa;
        }
        .event-card h5 a{
          color: #e87818;
        }
        .event-date {
            font-weight: bold;
            color: #007bff;
        }
        .timeline {
            border-left: 3px solid #dee2e6;
            margin-left: 20px;
            padding-left: 20px;
        }
        .timeline .event {
            position: relative;
            margin-bottom: 20px;
        }
        .timeline .event::before {
            content: '';
            position: absolute;
            left: -12px;
            top: 5px;
            width: 10px;
            height: 10px;
            background: #007bff;
            border-radius: 50%;
        }
        .about-five__img img {
    object-fit: cover;
    width: 100%;
    height: 477px;
    border-radius: 10px;
}
 .swiper {
      width: 100%;
      max-width: 600px;
      height: 300px;
      margin: 50px auto;
      border-radius: 10px;
      overflow: hidden;
    }

    .swiper-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }


    .sidebar-card {
  background-color: #fafafa;
  border: 1px solid #ddd;
  padding: 20px;
  width: 100%;
  max-width: 350px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}

.sidebar-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}

.sidebar-section {
  margin-bottom: 15px;
}

.sidebar-label {
  font-weight: 600;
  margin-bottom: 4px;
}

.sidebar-text {
  margin: 0;
  color: #333;
}

.sidebar-divider {
  margin-top: 8px;
  margin-bottom: 8px;
  border: none;
  border-top: 1px solid #ccc;
}

.sidebar-btn-wrapper {
  text-align: center;
  margin-top: 20px;
}
.sidebar-btn-wrapper a{
  color: white;
}

.sidebar-donate-btn  {
  background-color: #e64a19;
  color: white;
  padding: 8px 24px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.sidebar-donate-btn :hover {
  background-color: #d84315;
}

.scrolling-announcement {
    flex: 1;
    text-align: center;
    margin: 0 20px;
    color: #fff;
}


 .tab-content {
    scroll-margin-top: 120px;
}

.txt-bg
{
  background: #e87818;
  color: #ffffff;
  font-size: 20px;
  padding: 10px;
  height:100px;
}

.txt-img
{
  width: 100%;
  height: 320px;
  object-fit: cover;
}













.event-wrapper {
    position: relative;
}

.event-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.event-slider::-webkit-scrollbar {
    display: none;
}

.event-card-1 {
    min-width: calc(50% - 12.5px); /* 2 cards per view */
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    flex-shrink: 0;
}

.event-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.event-title {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #e87817;
    color: #fff;
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
}

/* Arrow Buttons */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #e87817;
    color: #fff;
    border: none;
    font-size: 24px;
    padding: 12px 18px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.scroll-btn.left {
    left: -60px;
}

.scroll-btn.right {
    right: -60px;
}

/* Mobile */
@media (max-width: 768px) {
   
    .event-slider {
        gap: 15px; /* reduce gap for mobile */
        padding: 0 5px; /* small internal spacing */
    }

    .event-card-1 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .scroll-btn.left {
    display:none;
}
.scroll-btn.right {
    display:none;
}
}








