/* 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;
}



/* General Styles */

.reverse image-text-section {
  padding: 40px 0;
  background: #f9f9f9;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0px;
}

.image-text-content {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Default layout: Image on the left, text on the right */
.image-text-content .image-side {
  flex: 1;
}

.image-text-content .image-side img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.image-text-content .text-side {
  flex: 1;
}

.image-text-content .text-side h2 {
  margin-top: 0;
  font-size: 2em;
  color: #333;
}

.image-text-content .text-side p {
  line-height: 1.6;
  color: #555;
}

.image-text-content .text-side .btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

.image-text-content .text-side .btn:hover {
  background: #555;
}

/* Reverse layout: Text on the left, image on the right */
.reverse-image-text-section.reverse .image-text-content {
  flex-direction: row-reverse;
}

/* Responsive Design */
@media (max-width: 768px) {
  .image-text-content {
    flex-direction: column; /* Stack image and text vertically on small screens */
  }

  .image-text-section.reverse .image-text-content {
    flex-direction: column; /* Ensure reverse sections also stack vertically */
  }

  .image-side, .text-side {
    flex: none;
    width: 100%;
  }

  .text-side {
    text-align: center;
  }
}
/* Footer Styles */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  margin-top: 20px;
}