/* about page list item */
.award-list-items {
    margin-bottom: 20px;
    /* background-color: #f9f9f9; */
    /* border-radius: 12px; */
    max-width: 100%;
    /* margin: auto; */
    /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);*/
}

.award-list-items .list-item {
    list-style: none;
    padding: 0;
    margin: 0;
}

.award-list-items .list-item li {
    font-size: 18px;
    padding: 8px 0 !important;
    display: flex;
    /* align-items: center; */
    color: #333;
    /* border-bottom: 1px solid #eee; */
}

.award-list-items .list-item li:last-child {
    border-bottom: none;
}

.award-list-items .list-item i {
    color: #28a745; /* Green check */
    margin-right: 10px;
    font-size: 20px;
}

/* home page images section css */
.section-image {
    width: 100%;
     margin-top:90px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f9f9f9; /* Light background for contrast */
}

.image-section-wrapper {
    max-width: 100%;
    width: 100%;
    /* padding: 0 20px; */
}

.image-section-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
    transition: transform 0.3s ease;
}

/* gallery css */
.gallery-section {
  display: flex;
  /* margin-top: 50px; */
  gap: 0;
}



.gallery-container {
  /*display: flex;*/
  gap: 20px;
  width: 100%;
}



.gallery-container .tabs {
    display:flex;
  gap:10px;
  width: 100%;
  text-align:center;
  background-color:#fff;
  padding: 20px 0px;
  /*min-height: 100vh;*/
  overflow-y: auto;
  box-sizing: border-box;
  
  /*box-shadow: 0 0 4px rgba(0, 0, 0, 0.1), 0 0 12px rgba(0, 0, 0, 0.1);*/

}

@media(max-width:480px){
   .gallery-container .tabs { 
     flex-direction:column;
   }
}

.gallery-container .tab {
  display: block;
  border:1px solid #121212;
  width: 100%;
  padding: 12px 15px;
  color: #121212;
  font-weight: 400;
  background: transparent;
  text-align: center;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  border-radius: 4px;
  font-size: 18px;
}

.gallery-container .tab:hover {
  /* background-color: #2fbbdc; */
  color: #121212;
}

.gallery-container .tab.active {
  color: #2fbbdc;
  font-size: 18px;
  /* text-decoration: underline; */
}

.gallery {
  flex: 1;
  overflow-x: hidden;
  background-color: #fff;
  /* Optional: Add padding or shadow if needed */
}

.gallery .images {
  display: flex;
  gap: 15px;
    width: calc(25% - 15px);
    width: 100%;
}

@media(max-width:768px){
  .gallery .images {
  flex-direction:column;
  
}  
}

.gallery .images img {
  height: 260px;
  object-fit: cover;
  border: 2px solid #eee;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}



.lightbox-close {
  position: fixed; /* or absolute relative to the lightbox wrapper */
  bottom: 20px; /* or top: 20px for top-right placement */
  right: 20px;
  z-index: 9999;
}



.gallery .images img:hover {
  transform: scale(1.03);
}


@media(max-width:480px){
  .gallery-container{
    flex-direction: column;
   
  }

  .gallery-container .tabs {
    max-width:100%;
    
  }

  .gallery .images img {
    width: 100%;
  }
}

@media(max-width:768px){
  .main-menu{
    display: none;
  }
}

.breadcrumb-main {
  /* background-color: #2fbbdc; */
  margin-top: 80px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  color: white;
}

.breadcrumb-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 18vh;
}

@media(max-width:480px){
    .breadcrumb-wrapper {
  
  min-height: 20vh;
}
}

.breadcrumb-wrapper h1 {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  color: #2fbbdc;

}

/* icon */
.development-icon {
  width: 80px;
  height: 80px;
  background-color: #e6f0ff; /* Light blue */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 0 auto; 
  margin-bottom: 30px;
}

.development-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.development-icon:hover {
  background-color: #b6eaf6;
  transform: scale(1.05);
}


