/* HERO SECTION */
  .pf-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
    /*background: linear-gradient(120deg, #015b5c, #032b2c);*/
  }

  .pf-hero-video {
    width: 100%;
    /*max-width: 1080px;*/
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    position: relative;
  }

  .pf-hero-video iframe {
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: fill;
    
  }

  /* CATEGORY TABS */
  .pf-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 20px;
  }

  .pf-tab {
    padding: 6px 15px;
    border-radius: 5px;
    /*border: 0px solid #ccc;*/
    background: #0F3E3E;
    font-weight: 200;
    cursor: pointer;
    transition: 0.3s;
    color:#fff;
    font-size: 12px
    
  }
  
  .pf-tab :hover{
      background: #1F7D7E;
    color: #fff;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
      
  }

  .pf-tab.active {
    background: #1F7D7E;
    color: #fff;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
    transform: translateY(-2px);
    /*border-color: #ff4d4d;*/
  }

  /* VIDEO GRID */
  .pf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }

  .pf-card {
    background: #BDFEFF;
background: linear-gradient(130deg,rgba(189, 254, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
  }

  .pf-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  }

  .pf-thumb {
    position: relative;
    padding: 6px;
  }

  .pf-thumb img {
    width: 100%;
    display: block;
    border-radius: 6px; 
  }

  .pf-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background:#0f3e3e;
    color: #fff;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 0.75rem;
    text-transform: capitalize;
  }

  .pf-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 12px 12px 12px;
  }

  .pf-info h3 {
    font-size:13px;
    margin: 0;
    font-weight: 600;
  }

  .pf-logo {
    height: 30px !important;
    width: auto;
  }
  
  @media (max-width: 576px) {
      .pf-hero {
          
      }
      
  }