body {
  font-family: "Bookman", sans-serif;
  margin: 0;
  background: #f0fff0;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.slider {
  position: relative;
  flex: 1;
  min-width: 300px;
  max-width: 700px;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.clip-wrapper {
  position: relative;
  width: 700px;
  height: 500px;
  cursor: pointer;
}
.clip-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  clip-path: polygon(67% 0, 67% 29%, 100% 29%, 100% 66%, 100% 100%, 32% 100%, 0 100%, 0% 43%, 0 0);
}

.bg-img:nth-child(1) {
  transform: translate(60px, 60px) scale(0.9);
  z-index: 1;
  opacity: 0.25;
}
.bg-img:nth-child(2) {
  transform: translate(45px, 45px) scale(0.92);
  z-index: 2;
  opacity: 0.35;
}
.bg-img:nth-child(3) {
  transform: translate(30px, 30px) scale(0.94);
  z-index: 3;
  opacity: 0.45;
}
.bg-img:nth-child(4) {
  transform: translate(15px, 15px) scale(0.96);
  z-index: 4;
  opacity: 0.6;
}

#main-img {
  transform: translate(0, 0) scale(1);
  z-index: 5;
  opacity: 1;
}

.clip-wrapper:hover #main-img {
  transform: scale(1.02);
}

.about-text {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text h2 {
  color: #00693e;
  font-size: 28px;
  margin-bottom: 16px;
}

.p1, .p2 {
  font-size: 20px;
  line-height: 1.6;
  color: #333;
  text-align: justify;
}

@media (max-width: 768px) {
  .split {
    flex-direction: column;
  }
  .slider, .about-text {
    text-align: center;
  }
  .p1, .p2 {
    text-align: center;
  }
}
/*  Desktop */
.container {
  width: 80%;
  margin: auto;
}

/* Tablet */
@media (max-width: 768px) {
  .container {
    width: 95%;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .container {
    width: 100%;
    padding: 10px;
  }
}

