/* Gallery Section Styling */
.dgp-gallery-section {
    padding: 4rem 2rem;
    background: linear-gradient(to bottom, #f0f8ff 0%, #eaf3fc 100%);
    border-top: 3px solid #1c4e80;
    border-bottom: 3px solid #1c4e80;
    text-align: center;
  }
  
  .gallery-title {
    font-size: 2.4rem;
    color: #1c4e80;
    font-weight: 700;
    margin-bottom: 2.5rem;
    text-shadow: 0.5px 0.5px #d1e1f2;
  }
  
  .gallery-showcase {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .gallery-card {
    background: #ffffff;
    width: 320px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(28, 78, 128, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 24px rgba(28, 78, 128, 0.2);
  }
  
  .gallery-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-bottom: 2px solid #1c4e80;
  }
  
  .gallery-caption {
    padding: 1.2rem 1rem;
    background: #f9fcff;
    border-top: 1px solid #d0e4f4;
  }
  
  .gallery-caption h3 {
    font-size: 1.25rem;
    color: #1c4e80;
    margin-bottom: 0.6rem;
    font-weight: 600;
  }
  
  .gallery-caption p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.4;
  }
  
  .description {
    margin-top: 2rem;
    font-size: 1rem;
    color: #333;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    background: #fff;
    padding: 1.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  }
  