    /* General Reset */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: "Segoe UI", Tahoma, sans-serif;
      background: linear-gradient(135deg, #e0eafc, #cfdef3);
      color: #333;
      text-align: center;
    }

    /* Header */
    header {
      background: linear-gradient(90deg, #1e3c72, #2a5298);
      color: white;
      padding: 25px;
      font-size: 38px;
      font-family: cursive;
      font-weight: bold;
      box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
      letter-spacing: 1px;
    }

    /* Section Titles */
    h2.section-title {
      font-size: 30px;
      font-family: cursive;
      margin: 50px 0 20px 0;
      color: #1e3c72;
      position: relative;
      display: inline-block;
      padding-bottom: 10px;
    }

    h2.section-title::after {
      content: "";
      display: block;
      width: 70%;
      height: 3px;
      background: #1e3c72;
      margin: 8px auto 0;
      border-radius: 2px;
    }

    /* Gallery Section */
    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      padding: 40px 60px;
    }
   .caption {
      font-size: 18px;   /* Increase this value as needed */
      font-weight: bold; /* Optional: make it bold */
      text-align: center; /* Optional: align center */
      margin-top: 8px;   /* Add spacing from the image */
    }
    .card {
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }

    /* Image Zoom Effect */
    .card img {
      width: 100%;
      height: 450px;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .card:hover img {
      transform: scale(1.1);
    }

    .card p {
      margin: 0;
      padding: 14px;
      font-size: 18px;
      font-weight: bold;
      background: #1e3c72;
      color: white;
      letter-spacing: 0.5px;
    }

    /* Video Section */
    .videos {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 25px;
      padding: 30px;
    }

    .videos video {
      width: 480px;
      max-width: 95%;
      border-radius: 12px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
    }

    .videos video:hover {
      transform: scale(1.05);
    }

    /* Footer */
    footer {
      background: #1e3c72;
      color: white;
      padding: 25px;
      margin-top: 60px;
      font-size: 18px;
    }

    footer a {
      color: #FFD700;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    footer a:hover {
      color: #fff;
      text-decoration: underline;
    }