/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Social Media Icons Styles */
.social-media {
  display: flex;
  gap: 15px;
  margin-left: 1000px; /* Push icons to the right */

}

.social-media a {
  color: #fff;
  font-size: 1.5em;
  transition: color 0.3s ease;
}

.social-media a:hover {
  color: #0073e6; /* Change color on hover */
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Styles */
header {
  background: #5fee85;
  color: #fff;
  padding: 10px 0;
}

header h1 {
  margin: 0;
  text-align: center;
}

nav ul {
  
  list-style: none;
  padding: 0;
  text-align:left;
  
}

nav ul li {
  display: inline;
  margin: 0 15px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
}

/* Slider Styles */
.slider {
  position: relative;
  overflow: hidden;
  height: 600px;
  margin: 5px 0;
}

.slider-container {
  display: flex;
  transition: transform 0.10s ease-in-out;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
}

.slide img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}
.box1{
  padding: 1px;
  margin: 0;
  text-align: center;
  background-color: rgb(151, 241, 148);


}

.box{
  
  padding: 0;
  background-color: rgb(193, 224, 224);
  text-align: center;
  -webkit-text-fill-color: rgb(3, 0, 0);





}
/* Image and Text Section Styles */
.image-text-section {
  padding: 40px 0;
  background: #f9f9f9;
}

.image-text-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.image-side {
  flex: 1;
}

.image-side img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.text-side {
  flex: 1;
}

.text-side h2 {
  margin-top: 0;
  font-size: 2em;
  color: #333;
}

.text-side p {
  line-height: 1.6;
  color: #555;
}

.text-side .btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

.text-side .btn:hover {
  background: #555;
}

/* Responsive Design for Image and Text Section */
@media (max-width: 768px) {
  .image-text-content {
    flex-direction: column;
  }

  .image-side, .text-side {
    flex: none;
    width: 100%;
  }

  .text-side {
    text-align: center;
  }
}
/* Image Gallery Section Styles */
.image-gallery {
  padding: 40px 0;
  background: #fff;
}

.image-gallery h2 {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #333;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  transition: bottom 0.3s ease;
}

.gallery-item:hover .overlay {
  bottom: 0;
}

.overlay h3 {
  margin: 0 0 10px;
  font-size: 1.5em;
}

.overlay p {
  margin: 0;
  font-size: 0.9em;
}
/* Footer Styles */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  margin-top: 20px;
}
/* Lightbox Modal Styles */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9); /* Black background with opacity */
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80%;
}

#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #fff;
  padding: 10px 0;
  font-size: 1.2em;
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}
.red{
  text-align: center;
}
  
