 .section-title {
     font-size: 1.6rem;

     text-align: center;
     margin-bottom: 2rem;
     font-family: 'Rowdies', sans-serif;
     color: black !important;
 }
 .main-section-title {
     font-size: 44px;
     text-align: center;
     margin-bottom: 2rem;
     font-family: 'Rowdies', sans-serif;
     color: black !important;
 }

 .highlights-card {
     background: #fff;
     border-radius: 12px;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
     /* padding: 20px; */
     height: 100%;
     display: flex;
     align-items: center;
 }

 .highlight-card-text {
     background: #fff;
     border-radius: 12px;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
     padding: 20px;
     height: 100%;
     display: flex;
     align-items: center;
 }


 .highlight-card .dot {
     width: 12px;
     height: 12px;
     border-radius: 50%;
     background-color: #c2185b;
     margin-right: 10px;
     flex-shrink: 0;
 }

 .activity-card {
     background: #fff;
     border-radius: 12px;
     overflow: hidden;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
     height: 100%;
     display: flex;
     flex-direction: column;
 }

 .activity-card img {
     width: 100%;
     height: 200px;
     object-fit: cover;
 }

 .activity-card .card-body {
     padding: 15px;
     font-size: 0.95rem;
 }




 .card-body {
     background-color: #ffff;
 }

 h4 {
     font-size: 42px;
     font-weight: bold;
 }

 


 .bg {
     background-color: #F2EADF;
 }

 .points-section {
     text-align: center;
     margin: 0 auto;
 }

 .points-section ul {
     display: inline-block;
     /* shrink to content and center */
     text-align: left;
     /* bullets align neatly */
     margin: 0 auto;
     padding-left: 20px;
     /* spacing for bullets */
 }

 h3 {
     font-size: 20px !important;
 }





 .testimonial-section {
     padding: 60px 20px;
     text-align: center;
     background-color: #fff;
 }

 .testimonial-section h2 {
 color: #463650;
text-align: center;
font-family: Rowdies;
font-size: 40px;
font-style: normal;
font-weight: 300;
line-height: 50px; 
 }

 .testimonial-section p {
     color: #555;
     font-size: 21px;
     margin-bottom: 19px;
 }

 .video-card {
     border: 1px solid #eee;
     border-radius: 12px;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
     overflow: hidden;
     transition: transform 0.3s ease;
 }

 .video-card:hover {
     transform: translateY(-5px);
 }

 .video-card video,
 .video-card img {
     width: 100%;
     border-radius: 8px;
 }

 .video-title {
     font-weight: 600;
     color: #444;
     text-align: left;
 }

 .play-overlay {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     font-size: 50px;
     color: white;
     opacity: 0.9;
     cursor: pointer;
 }

 .video-wrapper {
     position: relative;
     cursor: pointer;
 }

 .h3-last-text {
     text-align: center;
     font-family: Rowdies;
     font-size: 35px !important;
     font-style: normal;
     font-weight: 300;
     padding: 75px;
 }

 .h3-main-bg {
     border-radius: 20px;
     opacity: 0.8;
     background: linear-gradient(180deg, #FDFBF1 0%, #FFFCF1 49%, #FFF2E3 100%);
 }



 /*  */
  /* --------------------------
     Accordion Layout (Desktop)
     -------------------------- */
  .accordion {
    display: flex;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    overflow: hidden;
    border-radius: 12px;
    gap: 5px;
  }

  .panel {
    flex: 1;
    min-height: 500px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: flex 0.5s ease;
    position: relative;
    padding: 20px;
    border-radius: 10px;
    overflow: hidden;
  }

  .panel h2 {
    transform: rotate(-90deg);
    white-space: nowrap;
    font-size: 24px;
    font-weight: bold;
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 1;
  }

  .panel.active {
    flex: 4;
  }

  .panel.active h2 {
    transform: rotate(0);
    opacity: 0;
  }

  .panel .content {
    position: absolute;
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    overflow-y: auto;
    height: 100%;
    width: 100%;
  }

  .panel.active .content {
    opacity: 1;
    transform: translateY(0);
  }

  /* Panel background colors */
  .satna { background: #7d58c2; }
  .nagod { background: #e88cb4; }
  .rampur { background: #d1c79c; color: #000; }
  .chitrakoot { background: #76c5e0; }
  .raigaon { background: #f0c933; color: #000; }

  /* Read More Button */
  .read-more {
    border-radius: 30px;
    background: #7E8AB8;
    border: none;
    padding: 8px 20px;
    color: #fff;
    margin-top: 10px;
    transition: all 0.3s ease;
  }

  .read-more:hover {
    background: #5b6aa5;
  }

  /* --------------------------
     📱 Mobile / Tablet Responsive
     -------------------------- */
 /* --------------------------
   📱 Mobile / Tablet Responsive (with internal scrolling)
   -------------------------- */
@media (max-width: 992px) {
    .panel .content {
        position: relative;
    }
  .accordion {
    flex-direction: column;
    width: 100%;
    margin: 20px auto;
  }

  .panel {
    flex: none;
    min-height: auto;
    padding: 15px;
    text-align: left;
    border-radius: 10px;
    margin-bottom: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
    max-height: 70px; /* Default collapsed */
  }

  .panel h2 {
    transform: rotate(0);
    opacity: 1;
    font-size: 20px;
    text-align: left;
    margin: 0;
  }

  /* Hidden until expanded */
  .panel .content {
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 0 10px;
    max-height: 0;
    overflow: hidden;
  }

  .panel.active {
    max-height: 400px; /* Limit total card height */
  }

  .panel.active .content {
    opacity: 1;
    padding: 10px;
    max-height: 300px; /* Scroll area height */
    overflow-y: auto; /* Enable scroll inside */
  }

  /* Optional: custom scrollbar styling */
  .panel .content::-webkit-scrollbar {
    width: 6px;
  }
  .panel .content::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 3px;
  }

  h4 {
    font-size: 26px;
  }

  ul li {
    font-size: 15px;
    line-height: 1.5;
  }

  .read-more {
    font-size: 14px;
    padding: 6px 14px;
  }
}
@media (max-width: 992px) {
    .read-more-section{
            margin-top: 80px !important;
    position: absolute;
    right: 14px;
    }
    .main-sub-text {
    font-size: 12px !important;
    margin-top: -15px;
}
    .accordion{
        padding: 20px;
    }
  .panel {
    display: flex;
    flex-direction: column;
    justify-content: center; /* center vertically */
    align-items: center;     /* center horizontally */
    text-align: center;      /* center text alignment */
  }

  .panel h2 {
    font-size: 20px;
    margin: 0;
    text-align: center;
  }
}
.main-sub-text{
    font-size: 20px; margin-top: -15px;
}
.constituebcy-events-text{
    color: #ffff !important;
}
.read-more-section{
    margin-top: 22px; position: absolute; right: 14px;
}