.galleryswitcher {
  text-align: center;
  padding: 10px 20px 20px;
  /* border-radius:0 0 20% 20%; */
  background: linear-gradient(to right, #000c67, #000c67);
  /* background: linear-gradient(to bottom, #7f91e0, #ab39b6); */
  /* background-color: #f95d9b; */
  /* background: linear-gradient(135deg, #4407b683, #892be295); */
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); */
  transition: all 0.5s ease-in-out;
  /* border: 1px solid white; */
}

h1 {
  font-size: 40px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 10px rgba(255, 0, 0, 0.2);
}

.subtitle {
  font-size: 22px;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 30px;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.tab {
  padding: 14px 28px;
  border: none;
  color: #fff;
  background: linear-gradient(135deg, #001aff, #5700ff);
  cursor: pointer;
  border-radius: 30px;
  font-size: 18px;
  font-weight: bold;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 255, 0.3);
}

.tab:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 255, 0.4);
}

.tab.active {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(0, 0, 255, 0.5);
}

.logo-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
}

.logos {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  padding-top: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.4s ease-in-out;
}

.logos.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.image-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px;
}

.image-row img {
  width: calc(100% / 4 - 20px); 
  max-width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease;
  border: 4px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.image-row img:hover {
  transform: scale(1.12) rotate(2deg);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.956), 0 0 20px rgba(70, 6, 190, 0.7);
  border-color: rgb(255, 255, 255);
}

.view-more-container {
  margin-top: 40px;
  text-align: center;
}

.view-more-btn {
  display: inline-block;
  padding: 16px 36px;
  background: linear-gradient(135deg, #4606be, #8a2be2);
  color: #fff;
  border-radius: 40px;
  margin: 10px;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  border: 1px solid white;

  /* border: none; */
  box-shadow: 0 6px 18px rgba(138, 43, 226, 0.4);
}

.view-more-btn:hover {
  background: linear-gradient(135deg, #6a1db7, #bf40bf);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 10px 30px rgba(138, 43, 226, 0.5);
}

.view-more-btn:focus {
  outline: none;
  box-shadow: 0 0 0 6px rgba(138, 43, 226, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .image-row {
    gap: 15px;
  }

  .image-row img {
    width: calc(100% / 4 - 15px);
    max-width: 200px;
    height: 200px;
  }

  .tab {
    font-size: 16px;
    padding: 12px 22px;
  }
}

@media (max-width: 768px) {
  .image-row {
    gap: 10px;
  }

  .image-row img {
    width: calc(100% / 4 - 10px);
    max-width: 180px;
    height: 180px;
  }

  .view-more-btn {
    font-size: 16px;
    padding: 12px 26px;
  }
}

@media (max-width: 600px) {
  .image-row {
    justify-content: center;
  }

  .image-row img {
    width: calc(100% / 2 - 10px);
    max-width: 160px;
    height: 160px;
  }
}

@media (max-width: 480px) {

  h1{
    font-size: 20px;
  }
 .subtitle{
  font-size: medium;

 }
  .tab {
    font-size: 14px;
    padding: 8px 16px;
  }

  .logos {
    gap: 15px;
  }

  .image-row img {
    width: calc(100% / 2 - 10px);
    max-width: 150px;
    height: 150px;
  }

  .view-more-btn {
    font-size: 14px;
    padding: 10px 22px;
  margin: 5px;
  width: 150px;

  }
}
