

.Activites-wrapper {
  display: flex;
  flex-direction: column;
  width: 90%;
  margin: 0 auto;
  padding: 0 20px;
}
.Activites-sub-wrapper{
    padding-top: 60px;
    padding-bottom: 40px;
}
.Activites-header {
  color: black;
  font-size: 20px;
  font-family: "Poppins Black";
}
.Activites-para {
  color: black;
  padding-top: 7px;
}
/* tabs */

  .tabs {
  display: flex;
  gap: 0;
  overflow: visible;
  margin-bottom: 20px; /* space for triangle */
}

.tab {
  position: relative;
  font-weight: bold;
  font-size: 14px;
  cursor: default;
  border: none;
}

/* Active ke neeche nok (triangle) */
.tab.active::after {
  content: "";
  position: absolute;
  bottom: -10px;  
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent; 
  border-right: 10px solid transparent;
}

/* ---------- INDIVIDUAL TAB CSS ---------- */
.tab-sport {
  background: #e6e7e8;
  color: #111;
 padding: 12px 40px;
 margin-right: -23px;
   border-radius: 20px 0px 0px 0;  /* 👈 SPORT ka border-radius */
   
}
.tab-sport.active {
  background: #2a74f7;
  color: #fff;
}
.tab-sport.active::after {
  border-top: 10px solid #2a74f7;
}

.tab-visites {
  background: #f7be00;
  color: #111;
 padding: 12px 40px;
 margin-right: -23px;
   border-radius: 20px 0px 0px 0; /* 👈 OUTDOOR ka border-radius */
 /* 👈 VISITES ka border-radius */
}
.tab-visites.active {
  background: #f7be00;
}
.tab-visites.active::after {
  border-top: 10px solid #f7be00;
}

.tab-stages {
  background: #e6e7e8;
  color: #111;
 padding: 12px 40px;
 margin-right: -23px;
   border-radius: 20px 0px 0px 0; /* 👈 OUTDOOR ka border-radius */
 /* 👈 STAGES ka border-radius */
}
.tab-stages.active {
  background: #e6e7e8;
}
.tab-stages.active::after {
  border-top: 10px solid #e6e7e8;
}

.tab-outdoor {
  background: #2a74f7;
  color: #fff;
  padding: 12px 40px;
 margin-right: -23px;
   border-radius: 20px 10px 0px 0; /* 👈 OUTDOOR ka border-radius */
}
.tab-outdoor.active {
  background: #2a74f7;
}
.tab-outdoor.active::after {
  border-top: 10px solid #2a74f7;
}


    /* ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, */
     .card-content-section {
            width: 55%;
            padding: 15px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        /* Different background colors for different activities */
        .kayak-bg { 
            background: linear-gradient(135deg, #4CAF50, #2196F3);
            position: relative;
        }
        
        .boat-bg { 
            background: linear-gradient(135deg, #03A9F4, #00BCD4);
        }
        
        .hiking-bg { 
            background: linear-gradient(135deg, #FF9800, #FF5722);
        }
        
        .paragliding-bg { 
            background: linear-gradient(135deg, #03A9F4, #8BC34A);
        }

        .card-overlay-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-weight: bold;
            font-size: 16px;
            text-align: center;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }

        .activity-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background: rgba(255,255,255,0.9);
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 10px;
            font-weight: bold;
            color: #333;
        }

        .qr-code {
            position: absolute;
            bottom: 10px;
            right: 10px;
            width: 25px;
            height: 25px;
            background: white;
            border: 1px solid #ccc;
            border-radius: 3px;
        }

        .guided-tour-tag {
            background: #4CAF50;
            color: white;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: bold;
            display: inline-block;
            margin-bottom: 8px;
            text-transform: uppercase;
        }

        .activity-title {
            font-size: 14px;
            font-weight: bold;
            margin-bottom: 6px;
            color: #333;
            line-height: 1.3;
        }

        .activity-details {
            font-size: 12px;
            color: #666;
            margin-bottom: 8px;
        }

        .rating-section {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

        .stars {
            color: #FFD700;
            font-size: 12px;
            margin-right: 5px;
        }

        .rating-value {
            font-size: 12px;
            color: #666;
        }

        .price-section {
            margin-top: auto;
        }

        .price-original {
            font-size: 12px;
            color: #999;
            text-decoration: line-through;
            margin-bottom: 2px;
        }

        .price-current {
            font-size: 13px;
            font-weight: bold;
            color: #4CAF50;
        }

        /* ..................................arrow */
        
        .navigation-arrows {
            display: flex;
            align-items: center;
           
        }

        .nav-arrow {
          
       
            border: none;
            background-color: white;
          color: black;
            cursor: pointer;
            font-size: 46px;
            
        
        }

       /* cards row1 */
       .cards-wrapper1{
        display: flex;
        gap: 20px;
       
       }
.card-wrapper_img_content{
    display: flex;
    gap: 10px;
}