/* Section container */
.chhotachetan {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  background: linear-gradient(to right, #f3e5f5, #e1bee7);
  animation: fadeInUp 1s ease forwards;
}

/* Card box */
.andimandi {
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  text-align: center;
}

/* Heading */
.mainteratumeri {
  font-size: 28px;
  margin-bottom: 20px;
  color: #6a1b9a;
}

/* Form container */
.nahijana input {
  display: block;
  width: 100%;
  margin-bottom: 15px;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

/* Button */
.abejanabe {
  background-color: #7b1fa2;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.abejanabe:hover {
  background-color: #6a1b9a;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 480px) {
  .andimandi {
    padding: 30px 20px;
  }

  .mainteratumeri {
    font-size: 22px;
  }

  .nahijana input,
  .abejanabe {
    font-size: 14px;
  }
}


/* header desc */
.guptagupta {
    background-color: #002b5b; /* Deep digital blue */
    color: white;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    flex-wrap: wrap;
    border-bottom: 3px solid #0096ff; /* Accent blue */
}

.jhajha {
    display: flex;
    align-items: center;
}

.mishra {
    height: 55px;
    width: auto;
    margin-right: 15px;
    background: white;
    padding: 5px;
    border-radius: 8px;
}

.chaudhary {
    font-size: 1.8rem;
    font-weight: bold;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
    letter-spacing: 1px;
}

.jhajha-right .chaudhary-right {
    font-size: 1rem;
    font-style: italic;
    color: #aad4ff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: right;
}

/* Responsive */
@media (max-width: 600px) {
    .guptagupta {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .jhajha-right {
        margin-top: 10px;
    }

    .chaudhary {
        font-size: 1.5rem;
    }

    .chaudhary-right {
        font-size: 0.95rem;
    }
}
