body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #e0f2ff, #e8ffe7);
  color: #333;
}

.page {
  max-width: 1000px;
  margin: auto;
  padding: 30px 20px;
}

.logo-row {
  text-align: center;
  margin-bottom: 30px;
}
.response {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(135deg,  #e8ffe7,#e0f2ff);
    z-index: 1;
    font-size: 24px;
    padding: 32px;
    text-align: justify;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 18px black;
}
.logo-row img {
  width: 220px;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 columns */
  gap: 40px;
  background: #ffffffaa;
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

/* Left Section */
.left h1 {
  font-size: 2.5rem;
  background: linear-gradient(90deg, #2196f3, #2ecc71);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.left p {
  font-size: 1.1rem;
  color: #444;
}

/* Right Section (Form) */
.right h2 {
  text-align: center;
  margin-bottom: 20px;
}

/* Form Group */
.form-group {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 6px;
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

/* Row with 3 fields */
.triple-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
}

/* Input Styles */
.form-group input,
.form-group select {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
  background: #fff;
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #2196f3;
  outline: none;
  box-shadow: 0 0 5px #2196f333;
}

/* Submit Button */
button {
  width: 100%;
  padding: 12px;
  background: linear-gradient(90deg, #2196f3, #2ecc71);
  border: none;
  color: white;
  font-size: 1.1rem;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.2s ease;
}

button:hover {
  opacity: 0.9;
}

/* Form status */
.form-status {
  margin-top: 12px;
  font-size: 0.95rem;
  color: red;
  text-align: center;
}
/* Fix phone input appearance */
.iti {
  width: 100%;
}

.iti--allow-dropdown input,
.iti--allow-dropdown .iti__selected-flag {
  height: 48px;            /* same as other inputs */
  border-radius: 10px;     /* match design */
}

#phone {
  width: 100%;
  padding-left: 90px !important;  /* space for flag */
  padding-right: 12px;
  height: 48px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
  box-sizing: border-box;
}

/* When focused */
#phone:focus {
  border-color: #2196f3;
  outline: none;
  box-shadow: 0 0 5px #2196f333;
}

/* Keep dropdown UI minimal */
.iti__selected-flag {
  padding: 0 12px;
  border-right: 1px solid #ddd;
}

/* Remove unwanted background */
.iti input[type=tel] {
  background: #fff !important;
}
.enquiries{
    display:grid;
    gap:24px;
}
.registered-user-card {
    box-shadow:0 4px 8px black;
    padding:8px;
      display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "heading heading"
    "auto auto";    
}
h3{
    grid-area: heading;
    text-align:center;
    text-transform:capitalize;
    font-size:24px;
    padding:0 0 16px 0;
    border-bottom:1px solid #aaa;
}
.registered-user-card p{
    text-align:center;
}
/* Mobile Fix */
@media (max-width: 768px) {
  #phone {
    padding-left: 90px !important;
  }
  .triple-row {
    grid-template-columns: 1fr; /* stack into 1 column */
  }
  .grid {
    grid-template-columns: 1fr;  /* Stack */
    gap: 20px;
  }

  /* Move form on top */
  .right {
    order: -1;
  }
}
