
/*  .owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot{*/
/*    background-color:#025959;*/
/*}*/
     .card {
            width: 100%;
            height: 580px;
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            
            display: flex;
            flex-direction: column;
            /* stack content vertically */
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
        }

        /* Image */
        .card img {
            width: 100%;
            height: 340px;
            object-fit: cover;
            display: block;
        }

        /* Tags */
        .tag-container {
            position: absolute;
            top: 15px;
            left: 15px;
            display: flex;
            gap: 8px;
        }

        .tag {
            background: rgba(255, 255, 255, 0.9);
            color: #333;
            font-size: 12px;
            padding: 5px 10px;
            border-radius: 20px;
            font-weight: 600;
        }

        /* Content */
        .content {
            flex: 1;
            /* take all remaining height */
            padding: 18px;
            display: flex;
            flex-direction: column;
        }

        .title {
            font-size: 20px;
            font-weight: 700;
            color: #222;
            margin-bottom: 6px;
            line-height: 1.4;
        }

        .subtitle {
            font-size: 13px;
            color: #28a59d;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .details {
            font-size: 12px;
            color: #666;
            line-height: 1.5;
            margin-bottom: auto;
            /* push footer down */
        }

        /* Footer */
        .footer1 {
            margin-top: auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 18px;
            border-top: 1px solid #eee;
            background: #fafafa;
        }

        .icons {
            display: flex;
            gap: 12px;
            color: #555;
            font-size: 16px;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .icons i:hover {
            color: #28a59d;
        }

        .btn {
            background: #28a59d;
            color: #fff;
            border: none;
            padding: 8px 16px;
            font-size: 13px;
            border-radius: 20px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s ease;
        }

        .btn:hover {
            background: #1d7f79;
        }

        /* Wrapper + city label */
        .card-wrapper {
            position: relative;
            padding:7px
        }

        .event-image-wrapper {
            position: relative;
            width: 100%;
        }

        .city-label {
            position: absolute;
            bottom: 10px;
            right: 10px;
            background: #025958;
            color: #fff;
            font-size: 13px;
            font-weight: 600;
            padding: 5px 12px;
            border-radius: 20px;
            white-space: nowrap;
            z-index: 5;
        }

.search-tabs {
  padding: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* All select & button default (desktop) */
.search-tabs select,
.search-tabs button {
  padding: 10px;
  border: solid 1px #FAF7F7;
  border-radius: 8px;
  color: black;
  width: 24%; /* desktop width */
}

/* Search button desktop style */
.search-tabs button {
  border: solid 1px #025958;
  border-radius: 10px;
  background: #025958;
  color: #fff;
  cursor: pointer;
}



/* MOBILE VIEW */
@media (max-width: 768px) {
  .search-tabs select {
    width: calc(50% - 10px); /* two per row */
    
  }
  .search-tabs button {
    width: 100%; /* full width button */
  }
}

.social-sidebar {
    
    display: flex;
    flex-direction: column; /* default vertical */
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    
}

.social-sidebar .line {
    width: 1px;
    height: 40px;
    background: #025956;
    margin-bottom: 10px;
}

.social-sidebar a {
    color: #fff;
    font-size: 22px;
    background: #025956;
    padding: 10px;
    border-radius: 50%;
    height:50px;
    width:50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.social-sidebar a:hover {
    background: #35DFCC;
    color:white;
}


/* 🔥 Mobile Responsive: make icons horizontal */
@media (min-width: 768px) {
  .social-sidebar {
      float:right;
  }

 
}
/* 🔥 Mobile Responsive: make icons horizontal */
@media (max-width: 768px) {
  .social-sidebar {
      flex-direction: row;   /* horizontal instead of vertical */
      justify-content: center;
      margin-top: 20px;
  }

  .social-sidebar .line {
      display: none;  /* hide the vertical line on mobile */
  }
}



.programs-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none; /* allows clicks to pass through except buttons */
    
}

.programs-carousel .owl-nav button {
    background: #013d3d; /* theme color */
    color: #fff !important;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 50px;
    pointer-events: auto; /* re-enable clicks */
    transition: 0.3s;
}

.check-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.5;
}

/* Circle background */
.check-list li i {
    width: 22px;
    height: 22px;
    min-width: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #025958; /* circle color */
    color: #ffffff;           /* white check */
    border-radius: 50%;
    font-size: 12px;
    margin-top: 3px;
}
 