    /* Google Fonts */
    @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&family=Merriweather:wght@700&display=swap');

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

    body {
      font-family: 'Roboto', sans-serif;
      background-color: #f2f7fa; 
      color: #333;
      line-height: 1.6;
    }

    header {
      background-color: #a8dadc; 
      text-align: center;
      padding: 40px 20px;
      font-size: 50px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    header h1 {
      font-family: 'Merriweather', serif;
      font-size: 42px;
      color: #1d3557; 
    }

    main {
      max-width: 1000px;
      margin: 40px auto;
      padding: 0 20px;
    }

    /* Logo */
    img[src*="logo"] {
      display: block;
      margin: -60px auto 40px;
      width: 120px;
      height: auto;
      border-radius: 50%;
      border: 3px solid #fff;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      background: white;
    }

    /* About Section */
    .about h2 {
      font-family: 'Merriweather', serif;
      font-size: 32px;
      color: #457b9d;
      margin-bottom: 20px;
      text-align: center;
    }

    .about p {
      font-size: 18px;
      color: #333;
      text-align: justify;
      background: #e9f5f9;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    }

    /* Highlights Section */
    .profile h2 {
      font-family: 'Merriweather', serif;
      font-size: 32px;
      color: #457b9d;
      margin: 40px 0 20px;
      text-align: center;
    }

    .features {
      list-style: none;
      font-size: 17px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .features li {
      background: #fdfdfd;
      padding: 18px;
      border-left: 6px solid #a8dadc;
      border-radius: 8px;
      box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    }

    .features .label {
      font-weight: 500;
      color: #1d3557;
    }

    /* Gallery Section */
    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin: 40px 0;
    }
    .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: #ffffff;
      border-radius: 12px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 2px 6px rgba(0,0,0,0.08);
      transition: transform 0.3s, box-shadow 0.3s;
      cursor: pointer;
    }

    /* Zoom-in effect for all images */
    .card img {
      width: 100%;
      height: 400px;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .card:hover img {
      transform: scale(1.05); /* zoom in */
    }

    .card p {
      padding: 12px;
      font-weight: 500;
      font-size: 16px;
      color: #1d3557;
      background-color: #f1faee;
    }
      /* Footer */
    footer {
      text-align: center;
      padding: 25px 20px;
      background-color: #a8dadc;
      color: #1d3557;
      font-size: 16px;
      box-shadow: 0 -2px 6px rgba(0,0,0,0.08);
    }

    footer a {
      color: #1d3557;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s;
    }

    footer a:hover {
      color: #e63946;
    }