:root {
  --dark-blue: #24315B;
  --orange: #E50507;
  --light-blue: #4A90E2;
  --white: #FFFFFF;
  --linear-gradient: linear-gradient(135deg, #F98214 0%, #FAAA29 100%);
}

body {
  font-family: "Anek Gujarati", sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
  color: #333;
  max-width: 480px;
  margin: 0 auto;
  padding: 0;
  overflow-x: hidden;
  min-height: 100vh;
  scrollbar-width: none;
}
html {
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

ul {
  padding: 0;
  margin-bottom: 0;
}

ul li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 0;
}
h2 {
  font-weight: 700;
  font-size: 34px;
  line-height: 1.3;
  color: #d53907;
}
h4 {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
}

h5 {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
}
h6 {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
}
p {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--ternary);
}
.fs-14 {
  font-size: 14px;
  line-height: 1.5;
}
/* font size */
.transition-3 {
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

.main-wrapper {
  overflow-x: hidden;
}

.text-blue {
  color: var(--dark-blue);
}
.primary {
  color: var(--primary);
}
.btn-fill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: fit-content;
  width: auto;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  border-radius: 50px;
  padding: 12px 24px;
  color: #fff;
  background: var(--primary);
  border: 0;
  outline: 0;
  overflow: hidden;
  z-index: 1;
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out,
    border-color 0.2s ease-in-out;
}

.btn-fill svg {
  transform: rotate(-30deg);
  transition: transform 0.4s ease-in-out;
}

.btn-fill::before {
  transition-duration: 800ms;
  position: absolute;
  width: 210%;
  height: 320%;
  content: "";
  top: 182%;
  left: 50%;
  background: var(--secondary);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%) rotate(-8deg);
  border-radius: 80%;
  z-index: -1;
}

.btn-fill:hover::before {
  top: -110%;
}
.btn-fill:hover svg {
  transform: rotate(0deg);
}
.fs-14 {
  font-size: 14px;
}

.fs-12 {
  font-size: 12px;
}
.fw-500 {
  font-weight: 500;
}

.header-section {
  /* background: linear-gradient(135deg, var(--dark-blue) 0%, #1a2d7a 100%); */
  background: var(--linear-gradient);
  color: white;
  border-radius: 0 0 20px 20px;
  padding: 10px 15px 15px;
  position: relative;
  overflow: hidden;
}
.header-section .header-content-left {
  z-index: 3;
}

.top-text {
  font-size: 14px;
  margin-bottom: 5px;
}

.main-heading {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 5px 0;
  line-height: 1.2;
}

.sub-heading {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
}

.profile-section {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 10px;
  margin-top: 15px;
}
.profile {
  width: 180px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}
.profile img {
  width: fit-content;
  height: 140px;
  object-fit: contain;
  object-position: bottom;
}
.profile-designation {
  width: fit-content;
  background-color: var(--dark-blue);
  padding: 8px 12px 4px;
  min-width: 190px;
  border-radius: 100px;
  text-align: center;
}
.header-section .bg-img2 {
  width: 45px;
  height: 45px;
  object-fit: contain;
  margin: 6px;
  opacity: 0.5;
  /* z-index: -1; */
}
.header-section .profile {
  z-index: 3;
}
.notice-card {
  background: linear-gradient(135deg, #f6b10c 0%, rgba(246, 177, 12, 0.8) 100%);
  border-radius: 20px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.notice-card p:first-child {
  margin-bottom: 20px;
}
.notice-card p strong {
  margin-right: 5px;
}
.profile-info h4 {
  font-size: 1.1rem;
  margin: 0;
  font-weight: 600;
}

.profile-info p {
  font-size: 0.85rem;
  margin: 5px 0 0;
  opacity: 0.9;
}

.content-section {
  background-color: var(--white);
  border-radius: 20px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 2px solid #fff;
}

.splash-bg img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: bottom;
}

.section-title {
  color: var(--dark-blue);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}

.info-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
  padding: 15px;
  margin: 15px 0;
  border-left: 4px solid var(--orange);
}

.info-title {
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 5px;
}

.form-section {
  background-color: var(--white);
  border-radius: 20px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-title {
  color: var(--dark-blue);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.form-label {
  font-weight: 500;
  color: var(--orange) !important;
  margin-bottom: 5px;
  font-size: 16px !important;
}
.form-group label
{
  font-size: 15px !important;
}
.form-control
{
  font-size: 16px !important;
}

.form-control {
  border-radius: 4px;
  padding: 10px 15px;
  border: 1px solid transparent;
  margin-bottom: 15px;
  background-color: #f4f6f8;
  color: #333;
  box-shadow: none !important;
  height: 50px;
}
.form-control::placeholder {
  color: #333;
  opacity: 0.7;
}
.form-check-input:checked {
  background-color: var(--orange);
  border-color: var(--orange);
}
.form-check-input:focus {
  box-shadow: none;
}

.form-control:focus {
  background-color: #f4f6f8;
  border-color: var(--orange);
  box-shadow: none;
}

select.form-control::after {
  content: "▼";
  position: absolute;
  right: 15px;
  pointer-events: none;
  color: #999;
  font-size: 12px;
}

select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
}

.btn-primary {
  background-color: var(--orange);
  border: none;
  border-radius: 50px;
  padding: 12px;
  font-weight: 600;
  width: 100%;
  margin-top: 10px;
}

.btn-primary:hover {
  background-color: #e05515 !important;
}

.step {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.step.active {
  display: block;
}

.thank-you-section {
  text-align: center;
  padding: 40px 20px;
}

.checkmark {
  font-size: 4rem;
  color: #28a745;
  margin-bottom: 20px;
}

.thank-you-message {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--dark-blue);
}

.decoration {
  position: absolute;
  z-index: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* file upload */
.file-input label {
  display: flex;
  /* flex-direction: column; */
  /* align-items: center; */
  /* gap: 12px; */
}
.file-input input {
  opacity: 0;
  width: 0px;
}

.file-input img {
  max-width: 100px;
  border-radius: 999px;
  outline: 3px solid #e3e3e3;
  cursor: pointer;
  transition: 200ms ease-in-out;
  aspect-ratio: 1;
  object-fit: cover;
  background-color: #f4f6f8;
}

.file-input img:hover {
  outline: 6px solid #e3e3e3;
}

.modal .modal-content {
  border-radius: 20px;
  padding: 20px;
  text-align: center;
}
.modal .modal-content span {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  background-color: var(--orange);
  color: #fff;
  font-weight: 500;
}

/* splash screen start */
.splash {

  background-size: cover;
  background-position: center;
  min-height: 93vh;
  display: flex;
  justify-content: center;
  align-items: end;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: opacity 0.5s ease-in-out;
  opacity: 1;
}

/* .splash::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
} */

.splash .middle-part {
  text-align: center;
  position: relative;
  z-index: 1;
  color: #fff;
}

.splash .logo {
  max-width: 160px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 100%;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: linear-gradient(180deg, #f98214 0%, #faaa29 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-top: -22px;
  z-index: 2;
  position: relative;
}
.splash .logo img {
  height: 60px;
  max-width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  object-position: bottom;
  margin: 0 auto;


}

.splash .date {
  background-color: var(--dark-blue);
  display: inline-block;
  padding: 5px 12px;
  border-radius: 30px;
}

.splash-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}
.building-img{
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.building-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: bottom;
}
.splash-profile-img {
  max-width: 160px;
  margin-left: auto;
  margin-right: auto;
}
.splash-profile-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: bottom;
}

@media only screen and (max-width: 390px)
{
  .header-section
  {
    min-height: 233px;
  }
  .header-section .profile {
    width: 180px;
    position: absolute !important;
    right: 15px !important;
    top: 50% !important;
    left: auto !important;
    transform: translateY(-50%) !important;
  }
  .header-content-left {
    margin-top: 26px;
    max-width: 70%;
    min-width: 70%;
    width: 70%;
  }
  .profile img
  {
    margin-left: auto;
  }
}


/* new edit */

.home-header {
  background:  linear-gradient(135deg, #24315B 0%, #E50507 100%);
  border-radius: 10px;
  position: relative;
}
.home-header h3{
  font-size: 34px;
  font-weight: 700;
}
.home-header span {
  font-size: 14px;
  font-weight: 500;
}
.home-header p {
  font-size: 16px;
  font-weight: 500;
}
.home-header .bg {
  width: 100%;
  height: 240px;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  object-fit: fill;
  object-position: bottom;
}
.ganesh-img {
  width: 165px;
  height: 300px;
  position: absolute;
  bottom: 0;
  right: 5%;
  z-index: 1;
  object-fit: contain;
  object-position: bottom;
}
.home-header .row {
  position: relative;
  z-index: 1;
}
.notice-card
{
  border: 0;
  background: #24315B;
  color: #fff;
  box-shadow: none;
  padding-left: 40px;
  padding-right: 40px;
  border-radius: 10px;
}
.notice-card hr {
  color: #fff;
  opacity: 1;
  border-top: 0.7px solid;
}
.notice-card p strong{
  display: block;
}
.notice-card .divider {
  width: 1px;
  height: 60px;
  background-color: #fff;
}
.form-section
{
  box-shadow: none !important;
  border-radius: 10px;
}
.container-fluid {
  min-height: 95vh;
  position: relative;
}
.container-fluid::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  z-index: -1;
background-image: url(../img/bg-img4.svg);
background-position: center bottom;
background-size: 100% 100%;
background-repeat: no-repeat;
}

.select2-selection {
  background: #f4f6f8 !important;
  border: none !important;
}
.select2 {
  box-shadow: none !important;
  
}

.home-header {
  margin-top: 60px !important;
}


.invoice-section .img-box{
  width: 120px;
  height: 120px;
  border-radius: 8px;
  border: 1px solid #E3E3E3;
  overflow: hidden;
}
.invoice-section .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.invoice-section .details-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.invoice-section .details-box p {
  font-size: 14px;
}
.invoice-section p:last-child {
  font-weight: 600;
}
.invoice-section .badge {
  background-color: var(--orange);
  color: #fff;
  border-radius: 50px;
  font-size: 16px;
}
.select2-container--default .select2-selection--single {
  height: 50px !important;
  font-size: 16px !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered
{
  height: 50px !important;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder
{
  color:#333 !important;
  opacity: 0.8 !important;
}
.radio.radio-warning > input:checked ~ span
{
  background-color: var(--orange) !important;
}