/* Global Styles */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #F1F2F2;
}

.container {
  max-width: 100%;
  margin-left: 10px;
  margin-right: 10px;
}

/* Photo Gallery Styles */

.photo-gallery {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.photo {
  position: relative;
  margin: 10px;
  width: calc(16.66% - 20px);
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo img:hover {
  filter: drop-shadow(1px 1px 3px black) grayscale(100%);
}

.photo-text {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 35px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  text-align: center;
}

.photo-text a {
  color: black;
  text-decoration: none;
}

/* Responsive Styles */

@media (max-width: 992px) {
  .photo-gallery {
    flex-wrap: wrap;
  }
  .photo {
    width: calc(33.33% - 20px);
  }
}

@media (max-width: 768px) {
  .photo-gallery {
    flex-wrap: wrap;
  }
  .photo {
    width: calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .photo-gallery {
    flex-wrap: wrap;
  }
  .photo {
    width: 100%;
  }
}

.title {
  background-color: red;
  color: white;
  text-align: center;
  width: 100%;
  padding: 20px;
  margin: 0;
  font-weight: bold;
  font-size: 36px;
  margin-bottom: 10px;
}

.table {
  border-collapse: collapse;
  width: 100%;
  border: 2px solid black;
}

.table th, .table td {
  border: 2px solid black;
  padding: 10px;
  text-align: center;
}

.table th {
  background-color: #f0f0f0;
}

.table a {
  text-decoration: none;
  color: red;
}

.table a:hover {
  color: red;
  text-decoration: underline;
}
/* Global Styles */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: black;
}

.logo-left{
  width: 160px;
  height: 100%;
}
.logo-right {
  width: 400px;
  height: 100%;
}

.logo-left img{
  width: 160px;
  height: 100%;
  object-fit: cover;
}
.logo-right img {
  width: 400px;
  height: 100%;
  object-fit: cover;
}
.center-text {
  text-align: center;
}

.center-text h1 {
  font-size: 30px;
  margin: 0;
}

/* Responsive Styles */

/* Desktop Styles */
@media (min-width: 768px) {
  header {
    padding: 40px;
  }
 .logo-left{
    width: 160px;
    height: 100%;
  }

 .logo-right {
    width: 400px;
    height: 100%;
  }
 .center-text h1 {
  margin-left: 50px;
    font-size: 30px;
  }
}

/* Mobile Styles */
@media (max-width: 767px) {
  header {
    flex-direction: column;
    padding: 20px;
  }
 .logo-left {
    width: 160px;
    height: 100%;
    margin: 10px;
  }
  .logo-right {
    width: 330px;
    height: 100%;
    margin: 10px;
  }
 .center-text h1 {
    font-size: 30px;
  }
}
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery-item {
  width: 25%; /* 4 columns */
  margin: 10px;
  border-radius: 10px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: 1s all ease-in-out;
}
.gallery-item img:hover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transform: scale(1.1);
}

/* Responsive design for desktop */
@media (min-width: 768px) {
  .gallery-item {
    width: 20%;
  }
}

/* Responsive design for mobile */
@media (max-width: 767px) {
  .gallery-item {
    width: 45%; /* 2 columns */
  }
}
.img-text {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px;
  font-size: 16px;
  color: #fff;
  display: none;
}

.photo-box:hover .img-text {
  display: block;
}
.socialicon {
  width: 80px;
  height: 100%;
}
.socialicons {
  width: 25px;
  height: 100%;
}
.allicon {
  width: 80%;
  height: 45px;
}
.menwomenicon {
  width: 65%;
  height: 45px;
}
.menwomenicon {
  width: 50%;
  height: 45px;
}
/* Style the popup buttons */
.popup-btn {
  color: black;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Style the popup containers */
.popup-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}

/* Style the popup boxes */
.popup {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  width: 400px;
  height: 350px;
}
.popup {
  text-align: right;
}

/* Style the close buttons */
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  border: 5px;
}

/* Style the popup titles and descriptions */
.popup h2 {
  font-weight: bold;
  margin-bottom: 10px;
}

.popup p {
  margin-bottom: 20px;
}

tr:last-child td:first-child {
  border-right: none;
}