/* commonbanner */
#common-blue-banner .our-story-section {
    background-color: #23559b;
    padding: 24px 80px;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    margin: 0 auto;
}

#common-blue-banner .title {
    color: white;
    font-size: 32px;
    font-weight: 600;
    flex: 1;
    text-align: left;
    letter-spacing: -0.02em;
}

#common-blue-banner .logo-container .logo-icon img {
    background-color: #d0bb68;
    border-radius: 15px;
    padding: 10px;
}
.key-head {
    color: #23559b;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 25px;
}
#gallery {
    min-height: 100vh;
  }
  #gallery .gallery-container-details{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
    margin-bottom: 30px;
  }
  #gallery .gallery-container-details img{
       width: 100%;
      height: 300px;
      margin-bottom: 15px;
      object-fit: cover;
      border-radius: 12px;
  }
  
  #gallery .gallery-container img{
    width: 100%;
    height: 211px;
    object-fit: cover;
    border-radius: 15px;
  }
  #gallery .gallery-container{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-bottom: 30px;
    justify-content: center;
    align-items: center;
    place-items: center;
  }
  #gallery .gallery-icon{
    width: 100%;
    height: 230px;
    display: flex;
    justify-content: center;
    align-items: center;
    place-items: center;
    border: 1px solid #383939;
    border-radius: 25px;
    background: #EBF3FF;
  }
  #gallery .gallery-icon img{
    width: 79px;
    height: 79px;
    object-fit: cover;
    border-radius: 15px;
  }
  #gallery .gallery-item{
    width: 100%;
  }
  #gallery .gallery-item p{
    font-size: 16px;
    font-weight: 400;
    color: #2D2525;
    text-align: left;
    margin-top: 5px;
    line-height: 24px;
  }
  .gallery-title {
    font-size:18px;
    font-weight: 600;
    color: #23559B;
    text-align: left;
    line-height: 24px;
    margin-bottom: 30px;
  }
/* ourstory */
.about-us {
    padding: 50px 0px;
}

.breadcrumb {
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
}

.breadcrumb a {
    text-decoration: none;
    color: #86868b;
}

.breadcrumb strong {
    text-decoration: none;
    color: #23559b;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 5px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Default: 4 columns */
    gap: 16px;
}
.gallery-grid-item {
    border-radius: 10px;
    text-align: center;
}
.gallery-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
}
.gallery-starts {
    margin-bottom: 40px;
}
.gallery-starts h3 {
    color: #23559b;
    font-size: 28px;
    background: #EBF3FF;
    padding: 10px 40px;
    margin-bottom: 36px;
    border-left: 4px solid #D0BB68;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        /* Tablet: 3 columns */
    }
    #gallery .gallery-container{
        grid-template-columns: repeat(3,1fr);
      }
}
@media (max-width: 768px) {
    #gallery .gallery-container-details{
        grid-template-columns: repeat(3,1fr);
      }
}
@media (max-width: 767px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Mobile: 2 columns */
    }
    .gallery-starts h3 { 
        font-size: 18px;
    }
    #gallery .gallery-container{
        grid-template-columns: 1fr;
      }
      #gallery .gallery-container img {
          object-position: top;
      }
      #gallery .gallery-container-details {
        grid-template-columns: repeat(2, 1fr);
      }
}
/*image Modal background */
.image-modal {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    padding-top: 60px; 
    left: 0; 
    top: 0; 
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.8);
  }
  
  /* Image inside modal */
  .image-modal .modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
    animation: zoomIn 0.3s ease;
  }
  
  /* Caption text */
  #caption {
    text-align: center;
    color: #ccc;
    padding: 10px;
    font-size: 16px;
  }
  
  /* Close button */
  .image-modal .close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
  }
  .image-modal .close:hover {
    color: #bbb;
  }
  
  /* Animation */
  @keyframes zoomIn {
    from {transform: scale(0.7);}
    to {transform: scale(1);}
  }
  
  /* Thumbnail hover */
  .preview-thumb {
    cursor: pointer;
    transition: transform 0.2s;
  }
  .preview-thumb:hover {
    transform: scale(1.05);
  }