* {
  font-family: 'Roboto', -webkit-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
  margin: 0;
  padding: 0;
  height: 100vh;
  overflow: hidden;
  position: relative;
  font-family: 'Roboto', -webkit-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

h2{
  width: 100%;
  background: #003f80;
  color: white;
  padding: 30px;
  margin: 0 -30px;
}

.small{
  color: #003f80;
}


.final {
  font-size: 0.8rem;
  color: rgb(171, 171, 171);
  position:absolute;
  opacity: 0.5;
  bottom: 10px;
  right:10px;
}

.main-img {
  position: absolute;
  width: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
}

.footer {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

input {
  width: 300px;
  padding: 12px 20px;
  border: 2px solid #e1e5e9;
  border-radius: 25px;
  font-size: 16px;
  outline: none;
  background-color: #f8f9fa;
  transition: all 0.3s ease;
}

input:focus {
  border-color: #007bff;
  background-color: white;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

input::placeholder {
  color: #6c757d;
}

input::placeholder {
  color: #6c757d;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

input.show-placeholder::placeholder {
  opacity: 0.6;
}

.response-container {
  position: absolute;
  bottom: 120px; /* Adjust based on your footer height */
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  z-index: 100;
  text-align: center;
}

.response-text {
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid #e1e5e9;
  border-radius: 15px;
  padding: 12px 20px;
  font-size: 14px;
  color: #495057;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.response-text.show {
  opacity: 1;
  transform: translateY(0);
}

/* Keep your existing CSS as is */
input::placeholder {
  color: #6c757d;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

input.show-placeholder::placeholder {
  opacity: 0.6;
}

.page-content {
  position: absolute;
  left: 0;
  top: 80px;
  bottom: 0;
  width: 40%;
  padding: 30px;
  padding-top: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  background-color: rgba(255, 255, 255, 0.9);
  overflow-y: auto;
  z-index: 1;
  margin-bottom: 120px;
}

.pc2 {
  left: unset;
  right:0;
}

.page-content.show {
  opacity: 1;
}

.page-content p {
  color: #666;
  line-height: 1.6;
}

* {
    scrollbar-width: thin; /* Firefox */
}

/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 4px; /* Very thin vertical scrollbar */
    height: 4px; /* Very thin horizontal scrollbar */
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.4);
}

/* Mobile responsive styles */
@media (max-width: 800px) {
  .page-content {
    width: calc(100% - 60px);
    left: 0;
    right: 0;
  }
  
  .pc2 {
    left: 0;
    right: 0;
  }
}