.about-section {
    padding: 50px 0;
    text-align: center;
  }
  .about-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
  }
  .about-section p {
    font-size: 1.2rem;
    color: #555;
  }

  .nav-link.active {
    color: rgb(182, 34, 34);
  }

  /* homepage gallery */
  

  /* Hover Effects for Images */
  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .gallery-item:hover img {
    transform: scale(1.05); /* Zoom Effect */
  }

  /* Styling for Text Box */
  .text-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    background-color: #f8f8f8;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .text-box h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .text-box span {
    font-size: 1rem;
    color: #888;
  }

  .text-box h4 {
    font-size: 2rem;
    margin-top: 15px;
    color: #000;
  }

  .text-box small {
    font-size: 0.9rem;
    color: #777;
  }

  /* popup page */
  
 

  /* footer start */
  .footer {
    background-color: #222;
    color: #ddd;
    padding: 40px 0;
  }

  .footer-logo img {
    width: 150px;
  }

  .footer-links a {
    color: #ddd;
    text-decoration: none;
    margin-right: 15px;
    transition: color 0.3s ease;
  }

  .footer-links a:hover {
    color: #fff;
  }

  .social-links a {
    color: #ddd;
    font-size: 1.2rem;
    margin: 0 10px;
    transition: color 0.3s ease;
  }

  .social-links a:hover {
    color: #fff;
  }

  .footer h5 {
    margin-bottom: 20px;
    color: #fff;
  }

  .footer p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .footer a {
    text-decoration: none;
  }

  .footer-bottom {
    margin-top: 30px;
    border-top: 1px solid #444;
    padding-top: 20px;
    font-size: 0.8rem;
    color: #aaa;
  }