.grid-1{
    display: grid;
    grid-template-columns: repeat(4,1fr);
}
.grid-1 img{
    height: 100px;
    object-fit: contain;

}
.grid-1 .item{
    padding: 1rem;
}

.dsk-logo .nav-brand img{
    padding: 0.8rem 0rem;
}


.map-embed{
    display: flex;
    align-items: center;
    justify-content: center;
}
/*===========*/


.full-image-card {
    margin-top: 60px;
}
.full-image-card .image-div{
    box-shadow:none;
    -webkit-box-shadow:none;
}
.full-image-card .image-div img {
    width: 100%; /* Make sure the image fits the container */
    height: auto; /* Maintain aspect ratio */
    border-radius: 50%; /* Makes the image circular */
    border: 10px solid #0000000d; /* 10px border, adjust color as needed */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
  }
  
  .full-image-card .image-div img:hover {
    border-color: #09569f; /* Change border color on hover */
  }




.full-image-card .image-div img {
    width: 100%;
    aspect-ratio: 1;
}

/* Org Tree Structure */
.org-tree {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
}

.org-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.org-node .org-image-wrapper {
    width: 150px;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    border: 6px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.org-node .org-image-wrapper:hover {
    transform: scale(1.05);
}

.org-node .org-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.org-info {
    margin-top: 15px;
}

.org-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
}

.org-role {
    font-size: 14px;
    color: #ff1f8e;
    font-weight: 600;
    margin-bottom: 4px;
}

.org-skills {
    font-size: 13px;
    color: #6a6a8e;
    margin-top: 5px;
    max-width: 280px;
}

.org-children.single-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 30px;
    width: 100%;
}


