* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
	   height:100vh;
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column; /* 💥 THIS IS THE FIX */
  align-items: center;
  justify-content: flex-start;
  font-family: 'Segoe UI', sans-serif;
  overflow-x: hidden;
  margin-top: 30px;
  
}
/* Semi-circle container */
.semi-circl {
  width: 100%;
  height: 500px;
  background-color: orange;
  border-radius: 0 100px 100px 0; /* flipped border radius */
  border-color: white;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transform: translateX(-100vw); /* Start off-screen to the left */
  opacity: 0;
  animation: slideFromLeft 1.2s ease-out forwards;
}

.semicir {
  width: 100%;
  height: 550px;
  background-color: white;
  border-radius: 0 100px 100px 0; /* flipped border radius */
  border-color: white;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transform: translateX(-100vw); /* Start off-screen to the left */
  opacity: 0;
  animation: slideFromLeft 1.2s ease-out forwards;
}

/* Content inside */
.conten {
  color: white;
  padding-left: 30px;
}

.conten h1 {
  font-size: 24px;
  margin-bottom: 10px;
}

.conten p {
  font-size: 16px;
}

/* Animation: Left to Right */
@keyframes slideFromLeft {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 400px) {
  .semi-circl {
    width: 300px;
    height: 300px;
    border-radius: 0 150px 150px 0; /* adjusted for mobile */
  }

  .conten h1 {
    font-size: 10px;
  }

  .conten p {
    font-size: 8px;
  }
}
