
/* .intern{
  color: #252a32!important;
}  */
h1{
  margin-top: 100px;
  margin-bottom: 30px;
}
.back-button-container {
  text-align: center;
  margin-top: 20px;
}

.back-button {
  background-color: #dee5ec;
  color: rgb(43, 42, 42);
  padding: 15px 25px;
  text-decoration: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: fixed;
            top: 100px;
            left: 20px;
            cursor: pointer;
            border: none;
            z-index: 9999;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}


.back-button:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
}


*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
}

.container {
  max-width: 75rem;
  width: 100%;
  padding: 2rem 2rem;
  margin: 0 auto;
}

.main .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
  justify-content: center;
  align-items: center;
}
.main .card {
  color: #252a32;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
}
.main .card-image {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 70%;
  background: #ffffff;
  border-radius: 20px;
}
.card-image{
  position: relative;
  border-radius: 20px;
}
.main .card-image img {
  display: block;
  position: absolute;
  top: -1px!important;
  left: 0;
  width: 100% !important;
  height: 120% !important;
  object-fit: cover;
border-radius: 20px;;
}

@media only screen and (max-width: 600px) {
  .main .container {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1rem;
  }
}

.card {
  position: relative !important;
  overflow: hidden;

}

.card-image {
  position: relative;
  height: 50px;
  width: 100px;
}

.image-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 10px;
  text-align: center;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
/*img */
img,svg{
vertical-align: middle;
height: 50px;
width: 50px;
}

.gallery-heading {
  text-align: center;
  padding-top: 80px; /* Adjust padding to avoid overlap with the fixed navbar */
}
.latter
{
    color: #00b9fe!important;
}
.gallery-heading h1 {
  color: #0f0f0f!important; /* Adjust the color as needed */
}

/* Responsive styles */
@media (max-width: 768px) {
  .gallery-heading {
    padding-top: 80px; /* Adjust padding for smaller screens */
  }
}

.copyright p{
  padding-top: 12px;
}