* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: #f4faff;
      color: #333;
    }

    header  {
      
      padding: 50px 20px;
      text-align: center;
      color:#053b6e;
      animation: fadeDown 1s ease-out;
    }

    header h1 {
      font-size: 2.8rem;
      letter-spacing: 1px;
    }

    .facilities-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      padding: 40px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .facility-card {
      position: relative;
      overflow: hidden;
      border-radius: 20px;
      box-shadow: 0 15px 30px rgba(0,0,0,0.1);
      transition: transform 0.4s ease;
      animation: fadeInUp 1s ease;
    }

    .facility-card img {
      width: 100%;
      height: 280px;
      object-fit: cover;
      transition: transform 0.5s ease;
      display: block;
    }

    .facility-card:hover img {
      transform: scale(1.07);
      filter: brightness(80%);
    }

    .facility-info {
      position: absolute;
      bottom: 20px;
      left: 20px;
      right: 20px;
      background: rgba(55, 54, 54, 0.8);
      
      border-radius: 15px;
      padding: 15px 20px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      transition: 0.3s ease-in-out;
    }

    .facility-info h3 {
      margin-bottom: 5px;
      font-size: 20px;
      color: #f6f6f7;
    }

    .facility-info p {
      font-size: 14px;
      color: #f4f0f0;
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeDown {
      from { opacity: 0; transform: translateY(-30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 768px) {
      header h1 {
        font-size: 2rem;
      }

      .facility-info h3 {
        font-size: 18px;
      }

      .facility-info p {
        font-size: 13px;
      }
    }

  
  .video-container {
    max-width: 1200px;
    
    margin: 0 auto;
  }

  video {
    width: 100%;  /* Responsive */
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }







  