.logo-img {
  height: auto;   /* reduce height */
  width: auto;    /* keeps aspect ratio */
  max-width: 150px; /* optional safeguard */
}


  /* Reduce image size */
  .principal-img {
    max-width: 300px;   /* smaller image */
    height: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .principal-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
  }

  /* ✅ Signature font style */
  .signature-font {
    font-family: 'Cedarville Cursive', cursive;
    font-size: 2em;          /* slightly bigger for signature feel */
    font-weight: 400;
    color: #333;
    letter-spacing: 1px;     /* adds natural spacing */
  }
    /* Heading underline */
    .title-underline {
      content: "";
      display: block;
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, #007cb1, #00c6ff);
      margin: 10px auto 0;
      border-radius: 2px;
    }
  
    /* Vision & Mission Card */
    .vision-mission-card {
      background: #fdfdfd;
      border: 1px solid #e5e5e5;
      border-radius: 12px;
      padding: 2rem;
      height: 100%;
      transition: all 0.3s ease;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    }
  
    .vision-mission-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }
  
    .vision-box,
    .mission-box {
      background: #f9f9f9;
      border: 1px solid #eee;
      transition: all 0.3s ease;
    }
  
    .vision-box:hover,
    .mission-box:hover {
      transform: translateY(-5px);
      background: #fff;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }
  
    .hover-shadow:hover {
      transform: translateY(-5px);
    }
  
    .text-shadow {
      text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    }

