.intro-video-counter-list {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    border-top: 1px solid var(--dark-divider-color);
    padding-top: 65px;
    margin-top: 88px;
    z-index: 1;
}

.our-experience {
    padding: 40px 0;
}
.intro-video {
    padding: 60px 0 60px;
}
.p{
    text-align:justify;
}
.p-40{
    padding:40px 0 40px;
}
.our-blog {
    padding:40px 0 10px;
}
.about-us {
    padding: 40px 0;
}
.hero {
    padding: 205px 0 210px;
}
.our-amenities {
    padding: 40px 0;
}
.our-testimonial {
    padding: 40px 0;
}

.features-item .icon-box:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--accent-color);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    z-index: 0;
    transition: all 0.4s 
ease-in-out;
}
.our-features {
    background: var(--primary-color);
}


.sidebar-cta-body {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
}


#reportTitle {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 3px solid #ED6325;
}

#reportTitle h3 {
  color: #ED6325;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

#reportTitle h2 {
  color: #1a1a1a;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0;
}

#reportTitle h2 span {
  color: #ED6325;
}

/* Report Body */
.report-body {
  flex: 1;
  overflow-y: auto;
  max-height: 350px;
  padding-right: 10px;
}

/* Custom Scrollbar */
.report-body::-webkit-scrollbar {
  width: 6px;
}

.report-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.report-body::-webkit-scrollbar-thumb {
  background: #ED6325;
  border-radius: 10px;
}

.report-body::-webkit-scrollbar-thumb:hover {
  background: #FF8C00;
}

/* Report Item Card */
.report-item {
  background: #f8f9fa;
  padding: 15px 18px;
  margin-bottom: 12px;
  border-radius: 8px;
  border-left: 4px solid #ED6325;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.report-item.show {
  opacity: 1;
  transform: translateY(0);
}

.report-item:hover {
  box-shadow: 0 4px 12px rgba(255, 165, 0, 0.2);
  transform: translateX(5px);
}

/* Park Name */
.report-item > span {
  font-weight: 600;
  color: #333;
  font-size: 15px;
  flex: 1;
}

/* Action Container */
.report-item > div {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Status Badges */
.status-active,
.status-inactive {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.status-active {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.status-inactive {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* View Button */
.report-item .btn-default {
  padding: 10px 32px;
  font-size: 13px;
  font-weight: 600;
  background: #ED6325;
  color: #fff;
  border: none;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: inline-block;
}

.report-item .btn-default:hover {
  background: #FF8C00;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 165, 0, 0.3);
}

/* Map Card Styling */
.card {
  border-radius: 10px;
  overflow: hidden;
}

/* Responsive Design */
@media (max-width: 991px) {
  .sidebar-cta-body {
    margin-top: 20px;
  }
  
  #reportTitle .text-anime-style-2 {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .report-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .report-item > div {
    width: 100%;
    justify-content: space-between;
  }
  
  .status-active,
  .status-inactive,
  .report-item .btn-default {
    flex: 1;
    text-align: center;
  }
}