/* Body Background */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
  animation: bgMove 10s infinite alternate;
}

@keyframes bgMove {
  from { background-position: left; }
  to { background-position: right; }
}

/* Header Section */
.header-section {
  background: linear-gradient(90deg, #0d6efd, #6610f2);
  color: white;
  font-family: 'Segoe UI', sans-serif;
  padding: 15px;
  text-align: center;
}

/* Form Section */
.form-section {
  background: #f8f9fa;
  padding: 40px 0;
}

.form-container {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
  padding: 25px;
}

/* Admission Form Heading */
.heading-box {
  display: block;
  margin: 20px auto;          /* center align */
  text-align: center;
  width: fit-content;         /* box width according to text */
  padding: 12px 30px;
  background: #0d6efd;        /* blue background */
  color: #fff;                /* white text */
  border-radius: 12px;        /* corner radius */
  font-size: 1.8rem;
  font-weight: bold;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
  animation: fadeIn 1.2s ease; /* simple animation */
}

/* Simple fade-in animation */
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(-15px);}
  to {opacity: 1; transform: translateY(0);}
}

/* Upload Box (Photo & Signature) */
.upload-box {
  background: #f9f9f9;
  border: 2px dashed #0d6efd;
  border-radius: 10px;
  padding: 15px;
  transition: 0.3s;
}

.upload-box:hover {
  background: #eef6ff;
}

.upload-box p {
  font-weight: bold;
  margin-bottom: 5px;
  color: #333;
}

.preview-img {
    width: 164px;
    /* height: 100px; */
    border: 1px solid #0d6efd;
    border-radius: 6px;
    object-fit: contain;
    display: none;
}


#otpInput {
  font-size: 15px;
  letter-spacing: 2px;
}

.btn {
  height: 38px;              /* input box के बराबर height */
  font-size: 15px;
  padding: 6px 12px;
}

.btn-primary {
  background: linear-gradient(45deg, #0d6efd, #0a58ca);
  border: none;
  transition: 0.3s;
}
.btn-primary:hover {
  background: linear-gradient(45deg, #0a58ca, #084298);
}

.btn-success {
  background: linear-gradient(45deg, #198754, #157347);
  border: none;
  transition: 0.3s;
}
.btn-success:hover {
  background: linear-gradient(45deg, #157347, #0f5132);
}

.otp-box {
  font-size: 22px;        /* बड़ा font */
  font-weight: bold;      /* bold digits */
  text-align: center;     /* बीच में दिखे */
  letter-spacing: 6px;    /* हर digit के बीच spacing */
}


.section-heading {
  font-size: 22px;              /* थोड़ा बड़ा font */
  font-weight: 700;             /* bold */
  color: #0d6efd;               /* Bootstrap primary blue */
  text-transform: uppercase;    /* सभी अक्षर capital */
  letter-spacing: 1px;          /* अक्षरों के बीच spacing */
  border-left: 5px solid #0d6efd; /* बाईं ओर highlight line */
  padding-left: 10px;           /* line और text के बीच gap */
  margin-bottom: 15px;
}





/* Highlight effect for Add Qualification button */
.highlight-btn {
  font-weight: 600;
  border: 2px solid #0d6efd;
  animation: pulse 1.5s infinite;
}

/* Simple glowing pulse animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.7);
  }
  70% {
    box-shadow: 0 0 10px 10px rgba(13, 110, 253, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
  }
}


/* .contact-box {
  background: #f9f9f9;
  border: 2px dashed #0d6efd;
  border-radius: 10px;
  padding: 15px;
  transition: 0.3s;
} */
