body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  /* Prevent scrollbars from appearing during expansion */
}

.split-container {
  display: flex;
  flex-direction: row;
  height: 100vh;
  /* Full viewport height */
}

.split-panel {
  flex: 1;
  /* Each panel takes equal width initially */
  transition: flex 0.9s ease-in-out;
  /* Smooth transition for flex property */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: white;
  box-sizing: border-box;
  /* Include padding in the element's total width/height */
  margin: 0;
  overflow: hidden;
  justify-content: space-between;
}

.left-panel {
  background-image: url('bg2.jpg');
  position: relative;
}

/* Hover effect */
.split-panel:hover {
  flex: 1.5;
  /* Expand to take more space on hover */
}

/* Optional: Adjust the other panel's flex on hover to maintain total width */
.split-panel:hover~.split-panel {
  flex: 0.75;
  /* Shrink the other panel slightly */
}

.traditional-btn {
  background-color: #182e35;
  color: white;
  /* Text color for contrast */
  border: none;
  /* Remove default border */
  padding: 10px 20px;
  /* Adjust padding as needed */
  font-family: Poppins;
  font-size: 32px;
  /* Adjust font size */
  cursor: pointer;
  /* Indicate it's clickable */
  border-radius: 4px;
  /* Optional: slight rounded corners */
  /* Optional: Remove default shadow for a flatter look */
  box-shadow: none;
  /* Optional: Add a subtle hover effect */
  transition: background-color 0.3s ease;
}

@media screen and (max-device-width: 720px) {

  /* Adjust breakpoint as needed */
  .split-container {
    flex-direction: column;
    /* For mobile screens */
  }
}

.top-content {
  padding: 100px;
}

.centered-content {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: absolute;
}

.bottom-content {
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: flex-end;
}

.bottom-img img {
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: fill;
  display: block;
}