
.hero-section .container {
  z-index: 2;
}
.apply-btn{
  background-color: #A30F2c;
  color: #ffffff;
  border-radius: 4px;
}

.navbar .navbar-nav .nav-link {
  color: #ffffff;
}
  
.dropdown{
    z-index: 1;
}

.Gallery-section{
    background-color: #f3f3f3;
    color:#111  ;
    padding-top: 100px;
}

.Gallery-section P{
  font-weight: 500;
  font-size: medium;
}
.gallery-img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
  border-radius: 8px;
}

  .img {
    width: 300px;
    height: 200px;
    background: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: all 1s ease-in-out;
  }
  
  
  img:hover {
    transform: scale(1.01);
    box-shadow: 0 0 10px rgba(41, 41, 41, 0.5);
  }

