
  .heading-section {
      position: relative;
      /* height: 300px; */
      background-color: #f1f1f3;
      /* overflow: hidden; */
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgb(15, 13, 13);
    }

    .bubble-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      pointer-events: none;
    }

    .bubble {
      position: absolute;
      bottom: -60px;
      background: rgba(110, 170, 180, 0.3);
      border-radius: 50%;
      animation: rise 4s ease-out forwards;
    }

    @keyframes rise {
      0% {
        transform: translateY(0) scale(1);
        opacity: 0;
      }
      20% {
        opacity: 0.6;
      }
      100% {
        transform: translateY(-400px) scale(1.2);
        opacity: 0;
      }
    }

    .heading-content {
      position: relative;
      z-index: 1;
      text-align: center;
    }

.page-header {
   
     text-align: center;
     padding: 40px 20px;
     height: 200px;
 }

 .page-header h2 {
     font-size: 2rem;
     color:#15486b;
     margin-bottom: 10px;
 }

 .page-header p {
     color: #4b5563;
     font-size: 1rem;
 }

 .media-grid2 {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 20px;
     padding: 20px;
     /* max-width: 1200px; */
     /* margin: auto; */
 margin-bottom: 20px;
 margin-left: 50px;
 margin-right: 50px;


 }

 .card1 {
     background: white;
     border-radius: 16px;
     overflow: hidden;
     /* box-shadow:var(--card-shadow);
     transition: 0.1s; */
      box-shadow: var(--card-shadow);
    transition: all var(--transition-fast);
    height: fit-content;
 }

 .card1:hover {
     /* box-shadow:var(--card-hover-shadow) ; */
      transform: translateY(-5px);
    box-shadow: var(--card-hover-shadow);
 }

 .card1 img {
     width: 100%;
     /* height: 180px; */
     height: fit-content;
     object-fit: cover;
     border-radius: 10PX;
 }

 .card1-content {
    
     padding: 16px;
 }


 .media-type {
     display: flex;
     align-items: center;
     font-size: 0.8rem;
     color:var(--secondary-color);
     font-weight: bold;
     margin-bottom: 8px;
     text-transform: uppercase;
 }

 .media-type span {
     margin-left: 6px;
 }

 .card1 h3 {
     font-size: 1.1rem;
     margin: 6px 0;
 }

 .card1 p {
     font-size: 0.9rem;
     color: #4b5563;
     margin-bottom: 12px;
     height:40px;
     
 }
 

 .btn {
     display: block;
     width: 100%;
     padding: 10px;
     background:var(--secondary-color);
     color: white;
     border: none;
     border-radius: 0px;
     cursor: pointer;
     font-size: 0.9rem;
     font-weight: bold;
     transition: 0.3s;
     text-align: center;
 }

 .btn:hover {
     background:var(  --accent-color) ;
 }

 

@media (max-width: 360px){
    .media-grid2{
        width:80%;
        padding: 0px;
       
        align-items: center;
    margin-top: 20px;
 margin-bottom: 0px;
 margin-left: 30px;
 margin-right: 0px;
    }


}
@media (max-width: 290px){
    
    .media-grid2{
        width:100%;
        align-items: center;
            padding: 0px;
    
 margin-bottom: 0px;
 margin-left: 0px;
 margin-right: 0px;
    }

}





    