.parent img { border-radius:20px;}


.g-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* Responsive: Stack them on mobile */
@media (max-width: 992px) {
    .gallery-wrapper {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
    .img-1, .img-4, .img-7 { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 576px) {
    .gallery-wrapper {
        grid-template-columns: 1fr;
    }
    .img-1, .img-4, .img-7 { grid-column: span 1; }
}


.parent {
    display: grid;
    gap: 25px;
}

.div1 { grid-area: 1 / 5 / 3 / 6; }
.div2 { grid-area: 1 / 4 / 2 / 5; }
.div3 { grid-area: 1 / 3 / 2 / 4; }
.div4 { grid-area: 1 / 1 / 2 / 3; }
.div5 { grid-area: 2 / 1 / 3 / 2; }
.div6 { grid-area: 2 / 2 / 3 / 3; }
.div7 { grid-area: 2 / 3 / 3 / 5; }
.div8 { grid-area: 3 / 5 / 4 / 6; }
.div9 { grid-area: 2 / 2 / 4 / 3; }
.div10 { grid-area: 3 / 4 / 4 / 5; }
.div11 { grid-area: 3 / 1 / 4 / 2; }
.div12 { grid-area: 3 / 3 / 4 / 4; } 





/* Teams */
.team-card {
    background-color: #6d6e71;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: none;
    height: 100%;
}

.img-placeholder {
    height: 380px;
    background-color: #6d6e71;
}
.img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card .card-info {
    background-color: #007041;
    color: white;
    padding: 20px 10px;
    text-align: center;
    min-height: 120px;       
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
}
.team-card .card-info h5{
    font-size: 15px;
    color: #fff;
}
.team-card .card-info p{
    font-size: 15px;
    color: #fff;
    margin-bottom: 0;
}
#gridWrapper{
    margin-bottom: 50px;
}

#detailContainer  {
    display: none;
    background-color: #007041;
    border-radius: 15px;
    padding: 40px;
    color: white;
    position: relative;    
    margin-bottom: 75px;
padding:20px;
}
.profileName{
    color: #fff;
    font-size: 30px;
    margin-bottom: 5px;
}
.profileRole{
     color: #fff;
     margin-bottom: 15px;
}
.lead-text{
    color: #fff;
font-size: 1rem; line-height: 1.8;
}
.detail-img {
    width: 100%;
    height: 300px;
    max-width: 350px;
    border-radius: 15px;
    object-fit: cover;
}

.btn-close-white {
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
    font-size: 1.5rem;
}
/* Team End */




/* Testimonials */
.video-thumb {
  position: relative;
  height: 450px; 
  border-radius: 30px;
  overflow: hidden;
  cursor: pointer;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.1); 
}

.play-overlay i {
  color: rgba(255, 255, 255, 0.7);
  font-size: 80px; 
}

.video-thumb:hover .play-overlay {
  background: rgba(0, 0, 0, 0.3);
}

.owl-theme .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  background: #ccc;
}
.owl-theme .owl-dots .owl-dot.active span {
  background: #007041; 
}
.border-spacing{
    margin-bottom: 50px;
}

/* Testimonials */
