:root {
  --maroon: #76002f;
  --maroon-dark: #4b001f;
  --rose: #e7356f;
  --gold: #f7b824;
  --ink: #1d1028;
  --muted: #6f6677;
  --line: #ece7ef;
  --panel: #ffffff;
  --soft: #fff8ef;
  --green: #31b978;
  --shadow: 0 14px 36px rgba(39, 13, 31, .12);
  /*  Pandal Master List  */
  --input-bgcolor: #f4f3f3;
  --input-bordercolor: #f4f3f3;
  --input-textcolor: #6f6e6e;
  --input-focus-color: #bdbcf7;
  --input-bordercolor: #f4f3f3;
  --success-color: #4BB543;
  --table-headerbgColor: rgb(230 230 230 / 57%);
  --tableHeaderColor: #6f6e6e;
  --table-text: #0F172A;
  --table-bodybgColor: #FFF;
  --table-bodybgColor-hover: #f3f3f3;
  --table-BorderColor: #d5d5d5;
  --table-paginationbgColor: #FFF;
  --table-paginationbg-text-Color: #0F172A;
  --appBgColor: #111a23;
  --ag-row-hover-color: #96a9b83d;
  --primary-text-color: #FFF;
  --primary-bg-color: #000;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fbfafb;
}

button, input, select {
  font: inherit;
}

button {
  cursor: pointer;
  border: 0;
}

.site-header {
  max-height: 118px;
  color: #fff;
  background: radial-gradient(circle at 76% 5%, rgba(247, 184, 36, .18), transparent 22%), linear-gradient(135deg, var(--maroon-dark), var(--maroon) 58%, #59002a);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18.9px 36px;
  position: sticky;
  top: 0;
  z-index: 99;
  box-shadow: 0 10px 28px rgba(76, 0, 32, .18);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 80px;
}

  .brand img {
    width: 100%;
  }

.ganesh-mark {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 44px;
  background: rgba(255, 255, 255, .08);
}

.brand h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: 0;
}

.brand p {
  margin: 5px 0 0;
  color: #ffdf74;
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

  .nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    padding: 14px 20px;
    border-radius: 8px;
    display: inline-flex;
    gap: 9px;
    align-items: center;
    cursor: pointer;
  }

  .nav a.active {
    background: rgba(255, 255, 255, .13);
  }

.user-pill {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 700;
}

.avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .35);
  display: grid;
  place-items: center;
  font-size: 22px;
}

/*.mobile-menu {
  display: none;
}*/

/*.page {
  max-width: 1840px;
  margin: 0 auto;
  padding: 28px 36px 36px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 500px;
  gap: 30px;
}*/

.hero-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.12;
}

.lead {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.filters {
  display: grid;
  /*  grid-template-columns: minmax(240px, 1fr) 220px 160px;*/
  gap: 16px;
  max-width: 860px;
}

.field {
  min-height: 52px;
  border: 1px solid #ded8e2;
  background: #fff;
  border-radius: 7px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  color: var(--muted);
}

  .field input, .field select {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #4c4258;
  }

.pandal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(210px, 1fr));
  gap: 24px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 7px 22px rgba(35, 14, 31, .08);
  overflow: hidden;
}

.pandal-card {
  position: relative;
}

.rank {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, #c01861, #7d0035);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 18px;
}

.pandal-image {
  min-height: 220px;
  background: radial-gradient(circle at 50% 44%, rgba(255, 218, 120, .9), transparent 12%), radial-gradient(circle at 50% 58%, rgba(230, 74, 68, .75), transparent 18%), radial-gradient(circle at 20% 20%, rgba(252, 183, 36, .5), transparent 16%), linear-gradient(145deg, #221006, #8d3b00 38%, #130912 72%);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 82px;
  text-shadow: 0 7px 18px rgba(0, 0, 0, .35);
}

.pandal-card:nth-child(2n) .pandal-image {
  background: radial-gradient(circle at 50% 48%, rgba(255, 224, 122, .9), transparent 12%), radial-gradient(circle at 50% 60%, rgba(215, 62, 39, .6), transparent 18%), linear-gradient(145deg, #170c0b, #7b1900 45%, #321006);
}

.pandal-card:nth-child(3n) .pandal-image {
  background: radial-gradient(circle at 50% 46%, rgba(183, 216, 255, .9), transparent 13%), radial-gradient(circle at 50% 60%, rgba(90, 57, 201, .72), transparent 19%), linear-gradient(145deg, #07091d, #481ea5 48%, #120718);
}

.pandal-info {
  padding: 16px;
}

  .pandal-info h3 {
    margin: 0 0 8px;
    font-size: 19px;
    line-height: 1.3;
  }

.location {
  color: var(--muted);
  margin: 0 0 13px;
}

.votes {
  color: #e71f5f;
  font-weight: 800;
  margin: 0 0 16px;
}

.vote-btn, .primary-btn {
  width: 100%;
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(135deg, #a00043, #76002f);
  min-height: 42px;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18);
}

.info-strip {
  margin-top: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(35, 14, 31, .08);
  padding: 20px 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.info-item {
  display: flex;
  gap: 16px;
  align-items: center;
}

.icon-box {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 24px;
  background: #f0edff;
}

.info-item h4 {
  margin: 0 0 5px;
}

.info-item p {
  margin: 0;
  color: var(--muted);
}

.side {
  display: grid;
  gap: 28px;
  align-content: start;
  padding: 30px 0;
}

.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.panel h3 {
  margin: 0;
  font-size: 25px;
}

.link {
  color: var(--ink);
  text-decoration: none;
}

.steps {
  display: grid;
  gap: 22px;
}

.step {
  display: flex;
  align-items: center;
  gap: 16px;
}

  .step b {
    display: block;
    margin-bottom: 4px;
  }

  .step span {
    color: var(--muted);
    font-size: 14px;
  }

.results-list {
  display: grid;
  gap: 18px;
}

.result-row {
  display: grid;
  grid-template-columns: 28px 1fr 52px;
  gap: 12px;
  align-items: center;
}

.result-rank {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f0eef2;
  display: grid;
  place-items: center;
  font-weight: 800;
}

  .result-rank.gold {
    color: #b77500;
    background: #fff2cf;
  }

.result-row b {
  display: block;
  margin-bottom: 6px;
}

.bar {
  height: 7px;
  background: #e9e7ea;
  border-radius: 999px;
  overflow: hidden;
}

  .bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #e7356f, #ff5d8e);
    border-radius: inherit;
  }

.result-vote {
  text-align: right;
  color: #4d4458;
}

.festival-banner {
  min-height: 124px;
  color: #fff;
  background: radial-gradient(circle at 10% 50%, rgba(255, 211, 77, .35), transparent 20%), linear-gradient(135deg, var(--maroon-dark), var(--maroon));
  display: flex;
  align-items: center;
  gap: 24px;
  flex-direction: row;
  padding: 14px 10px;
  justify-content: space-between;
}

  .festival-banner .ganesh-mark {
    background: transparent;
    font-size: 66px;
    width: 92px;
    height: 92px;
  }

  .festival-banner h3 {
    color: #ffdf74;
  }

  .festival-banner p {
    margin: 5px 0 0;
  }

.modal-area {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 24px;
}

.phone-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 28px;
  text-align: center;
}

  .phone-card .ganesh-mark {
    margin: 0 auto 14px;
    width: 104px;
    height: 104px;
    border-radius: 50%;
    background: #fff7e8;
    font-size: 70px;
  }

  .phone-card h3 {
    margin: 0 0 10px;
    font-size: 24px;
  }

.phone-card-header p {
  color: var(--muted);
  margin: 0;
}

.phone-card-header {
  margin: 0 0 22px;
}

.mobile-input {
  display: flex;
  border: 1px solid #ded8e2;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 18px;
}

  .mobile-input span {
    min-width: 72px;
    padding: 14px 10px;
    border-right: 1px solid #ded8e2;
    background: #fff;
  }

  .mobile-input input {
    border: 0;
    outline: 0;
    width: 100%;
    padding: 14px;
  }

.otp-boxes {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 9px;
  margin: 24px 0;
}

  .otp-boxes span {
    height: 50px;
    border: 1px solid #d9d4de;
    border-radius: 7px;
    display: grid;
    place-items: center;
    font-weight: 800;
  }

.otp-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 9px;
  margin: 24px 0;
}

  .otp-container input {
    width: 50px;
    height: 50px;
    border: 1px solid #d9d4de;
    border-radius: 7px;
    display: grid;
    place-items: center;
    font-weight: 800;
  }

.success {
  background: #eefaf3;
  color: #0b9a5d;
  border-radius: 8px;
  padding: 14px;
  font-weight: 700;
}

.checkmark {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  font-size: 42px;
}

/* ********************************************************************************************************************************************************************************************** */

.votes-btn {
  padding-top: 13px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  width: 100%;
}

.a_btn {
  width: 100%;
  padding: 13px 20px;
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  font-style: normal;
  transition: all ease 0.5s;
  text-decoration: none;
  display: inline-flex !important;
  text-align: center;
  position: relative;
  z-index: 0;
  text-align: center;
  justify-content: center;
  gap: 10px;
  border-radius: 10px;
  color: #000;
  border: 1px solid;
}

.primary_btn {
  background: #5d0827;
  color: #FFF;
  border-color: #5d0827;
}

.secondary_btn {
  background: #fefaf6;
  color: #000;
  border-color: #fefaf6;
}


.pandal-card {
  display: flex;
  flex-direction: column;
}

.pandal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.pandal-image {
  position: relative;
}

  .pandal-image a {
    width: 100%;
    height: 100%;
  }

.pandal-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

  .pandal-info h3 {
    flex: 1;
  }

.pandal-voting {
  padding: 50px 0;
}

  .pandal-voting .phone-card {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
  }

.error-msg {
  padding: 28px 0 0px;
  position: relative;
}

/*.error {
  position: absolute;
  top: 4px;
  width: 100%;
}*/

.resend-btn {
  background: transparent;
  color: #0000ff;
}

.otp-verify-btn {
  transition: opacity 0.2s ease;
}

.verified-success {
  animation: popIn 0.35s ease forwards;
}

.otpverify-error {
  position: relative;
  padding: 17px 0;
  width: 100%;
}

  .otpverify-error .error {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
  }

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.85);
  }

  60% {
    opacity: 1;
    transform: scale(1.03);
  }

  100% {
    transform: scale(1);
  }
}

.result-rank img {
  width: 18px;
  height: 18px;
}

.result-rank {
  display: flex;
  align-items: center;
  justify-content: center;
}

  .result-rank.img_box {
    background: none;
  }

/*  */

.registration-wrapper {
  display: flex;
  justify-content: center;
  padding: 20px 0px;
  background: #f4f6f9;
  min-height: 100vh;
}

.registration-main {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}

.registration_header {
  width: 100%;
  margin: 0 auto;
  padding: 32px;
  border-radius: 10px 10px 0px 0px;
  background: radial-gradient(circle at 76% 5%, rgba(247, 184, 36, .18), transparent 22%), linear-gradient(135deg, var(--maroon-dark), var(--maroon) 58%, #59002a);
}

  .registration_header img {
    max-width: 150px;
    width: 100%;
    height: 100%;
  }

.registration-box {
  display: flex;
  align-items: center;
  gap: 21px;
}

  .registration-box img {
    cursor: pointer;
  }

  .registration-box h2 {
    flex: 1;
  }

.registration_header h2, .registration_header p {
  color: #FFF;
}

.registration_header p {
  margin-bottom: 0px;
}

.registration-card {
  width: 100%;
  background: #ffffff;
  border-radius: 10px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.form-title {
  margin: 0 0 24px;
  font-size: 24px;
  font-weight: 600;
  color: #1f2937;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 14px;
  color: #374151;
}

.required {
  color: #dc2626;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
  resize: vertical;
}

.form-group select {
  width: 100%;
  padding: 10px 22px 10px 12px;
  font-size: 14px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
  resize: vertical;
}

input[type="text"]:focus,
input[type="tel"]:focus,
textarea:focus {
  border-color: #2563eb;
}

input.invalid,
textarea.invalid{
  border-color: #dc2626;
}

select.ng-invalid.ng-touched, ckeditor.ng-touched.ng-invalid .ck-editor__main .ck-content {
  border-color: #dc2626;
}

input[type="file"] {
  width: 100%;
  padding: 8px 0;
  font-size: 14px;
}

.hint {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #6b7280;
}

.error-text {
  margin-top: 4px;
  font-size: 12px;
  color: #dc2626;
}

.image-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.image-preview-item {
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

  .image-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

.remove-btn {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 20px;
  height: 20px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

  .remove-btn:hover {
    background: #dc2626;
  }

.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

  .form-actions button {
    flex: 1;
    padding: 12px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
  }

    .form-actions button[type="submit"] {
      background: #2563eb;
      color: #fff;
    }

      .form-actions button[type="submit"]:hover:not(:disabled) {
        background: #1d4ed8;
      }

    .form-actions button:disabled {
      opacity: 0.6;
      cursor: not-allowed;
    }

.reset-btn {
  background: #e5e7eb;
  color: #374151;
}

  .reset-btn:hover:not(:disabled) {
    background: #d1d5db;
  }

.submit-message {
  /*  margin-top: 16px;*/
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 14px;
  text-align: center;
}

  .submit-message.success {
    background: #dcfce7;
    color: #166534;
  }

  .submit-message.error {
    background: #fee2e2;
    color: #991b1b;
  }

.ck.ck-powered-by {
  display: none !important;
}

.form-group .form-number {
  position: relative;
}

  .form-group .form-number input {
    padding-left: 45px;
  }

  .form-group .form-number span {
    position: absolute;
    left: 5px;
    padding-right: 5px;
    border-right: 1px solid #d1d5db;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

.form-group ckeditor .ck-editor__main .ck-content {
  height: 200px;
}

.form-group select:focus {
  border-color: rgb(37, 99, 235);
}

.photo-gallery {
  display: grid;
  gap: 6px;
  border-radius: 12px;
  overflow: hidden;
}

.photo-tile img {
 width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.container_fluid {
  max-width: 1840px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.PandalList_otr {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 500px;
  gap: 0;
}

.PandalList_sec {
  padding-bottom: 40px;
}

.PandalList_search {
  padding: 30px 30px 10px 0;
  padding-left: 40px;
  background: #fbfafb;
  position: sticky;
  top: 118px;
  z-index: 1;
}

.pandal-grid {
  padding: 20px 30px 0 40px;
}

.info-strip {
  margin-left: 40px;
  margin-right: 30px;
}

.PandalList .container_fluid {
  padding-left: 0;
}

.nav a img {
  width: 20px;
  height: 20px;
}

/*.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 20px;
  position: relative;
}*/

.menu-btn {
  display: none;
  font-size: 28px;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 1002;
}

/* Desktop */

.menu-btn {
  color: #FFF;
}

/*.nav {
  display: flex;
  gap: 25px;
}

  .nav a {
    text-decoration: none;
    color: #444;
    font-weight: 600;
  }*/

.mobile-header {
  display: none;
}

.close-btn {
  color: #FFF;
}

.scroll-to-top-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 1000;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(10, 31, 68, 0.35);
  opacity: 0;
  transform: translateY(12px);
  animation: fadeSlideIn 0.25s ease forwards;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

  .scroll-to-top-btn img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
  }

  .scroll-to-top-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(10, 31, 68, 0.45);
  }

  .scroll-to-top-btn:active {
    transform: translateY(0);
  }

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .scroll-to-top-btn {
    bottom: 20px;
    right: 20px;
    width: 46px;
    height: 46px;
  }
}

button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
}

  button:disabled:hover {
    transform: none;
    box-shadow: none;
  }

/* 1 image */
.photo-gallery.count-1 {
  grid-template-columns: 1fr;
}

  .photo-gallery.count-1 .photo-tile {
    aspect-ratio: 16 / 9;
  }

/* 2 images - side by side */
.photo-gallery.count-2 {
  grid-template-columns: 1fr 1fr;
  /*  height: 320px;*/
}

/* 3 images - one tall + two stacked */
.photo-gallery.count-3 {
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: 1fr 1fr;
  /*  height: 360px;*/
}

  .photo-gallery.count-3 .photo-tile:nth-child(1) {
    grid-row: 1 / 3;
  }

/* 4 images - even 2x2 */
.photo-gallery.count-4 {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  /*  height: 400px;*/
}

/* 5 images - one tall + four small */
.photo-gallery.count-5 {
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  /*  height: 400px;*/
}

  .photo-gallery.count-5 .photo-tile:nth-child(1) {
    grid-row: 1 / 3;
  }

.photo-gallery .photo-tile {
  height: inherit;
}

.refresh_result {
  cursor: pointer;
  width: 25px;
  height: 25px;
  display: flex;
}

/* ************ Pandal Details ************ */

.pandal_details {
    padding-bottom: 40px;
}

/*.details_otr {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}*/

.details_box {
  display: flex;
  padding: 70px 0;
  background: #fff2f0;
  overflow: hidden;
}

.pandal_details .container_fluid {
    max-width: 1440px;
}

.details_box_otr {
  display: flex;
}

.details_box_details {
  width: 50%;
  display: flex;
  align-items: center;
}

.details_box_details_otr {
  padding: 30px 30px 30px 0;
  border-radius: 20px 0 0 20px;
  min-height: 80%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.details_box_image {
  flex: 1;
  position: relative;
}

.votes-btn .secondary_btn {
    background: #fff2f0;
    border-color: #5d0827;
}

.details_box_image img {
  width: 100%;
  height: 550px;
  border-radius: 20px;
  object-fit: cover;
  position: relative;
    z-index: 1;
}

.details_box_image::after {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 5px solid;
    z-index: 0;
    rotate: -9deg;
    border-radius: 20px;
    border-color: rgb(255 229 225 / 1);
}

.details_box_details p {
  margin: 0;
  font-weight: 400;
  color: #000;
}

.page_heading {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.page_heading p {
  font-weight: 700;
  color: #3b0b3c;
  font-size: 18px;
}

.page_heading img {
  width: 17px;
  height: 20px;
}

.details_box_details h2 {
  font-weight: 700;
  color: #3b0b3c;
  padding-bottom: 10px;
}

.details_location {
  display: flex;
  align-items: center;
  gap: 5px;
  padding-bottom: 10px;
  flex-wrap: wrap;
}

.details_location img {
  width: 15px;
  height: 18px;
}

.details_gallery h2 {
  padding-bottom: 20px;
  font-weight: 600;
  color: #000;
}

.details_gallery {
  padding: 40px 0;
}

.details_info_box {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  margin-bottom: 40px;
  padding: 40px 30px;
  background: #fde9d8;
  border-radius: 20px;
  margin-top: 20px;
}

.info_box_img {
  width: 40px;
  height: 40px;
}

.info_box_img img {
  width: 100%;
  height: 100%;
}

.info_box {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 300px;
  width: 100%;
}

.info_box_text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info_box_text p {
  margin: 0;
  font-weight: 400;
  color: #000;
}

.info_box_text p:last-child {
  font-weight: 600;
}

.details_about {
    padding-bottom: 40px;
}

.details_about h2 {
    font-weight: 600;
    color: #000;
    padding-bottom: 10px;
}

.details_about_otr p {
  margin-bottom: 5px;
  color: #000;
}

.details_about_otr {
  color: #000;
}

.vote-banner {
    width: 100%;
    height: 125px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    box-sizing: border-box;
    border-radius: 16px;
    background: linear-gradient(
        90deg,
        #7d002c 0%,
        #970036 50%,
        #79002b 100%
    );
    overflow: hidden;
}

.diya-img {
    width: 110px;
    height: 100%;
    object-fit: contain;
}

.ganesh-img {
    width: 110px;
    height: 80%;
    object-fit: contain;
}

.vote-text {
    text-align: center;
    flex: 1;
}

.vote-text h2 {
    margin: 0;
    color: white;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
    font-weight: bold;
}

.vote-text p {
    margin: 5px 0 0;

    color: white;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
}

/* ************************************* Details Page Gallary View ************************************* */

.gallery {
  display: grid;
  gap: 16px;
}

.gallery.count-5 { grid-template-columns: repeat(5, 1fr); }
.gallery.count-4 { grid-template-columns: repeat(4, 1fr); }
.gallery.count-3 { grid-template-columns: repeat(3, 1fr); }
.gallery.count-2 { grid-template-columns: repeat(2, 1fr); }
.gallery.count-1 { grid-template-columns: repeat(1, 1fr); }

  .gallery a {
    position: relative;
    display: block;
    height: 220px;
    overflow: hidden;
    border-radius: 12px;
    background: #f1f1f1;
    cursor: pointer;
    text-decoration: none;
  }

  .gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }

  /* Hover effect */
  .gallery a:hover img {
    transform: scale(1.08);
  }

  /* Dark overlay */
  /*.gallery a::after {
    content: "\F4E4";
    font-family: "bootstrap-icons";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .gallery a:hover::after {
    opacity: 1;
  }*/

.gallery-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: all ease-in-out 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-overlay .zoom-icon {
  width: 50px;
  height: 50px;
  background: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-overlay .zoom-icon img {
  height: 20px;
  width: 20px;
}

.gallery a:hover .gallery-overlay {
  opacity: 1;
}


/* Tablet */
@media (max-width: 992px) {

  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* Mobile */
@media (max-width: 768px) {

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

    .gallery a {
      height: 180px;
    }
}


/* Small mobile */
@media (max-width: 480px) {

  .gallery {
    grid-template-columns: 1fr;
  }

    .gallery a {
      height: 240px;
    }
}

/* ************************************* Details Page Gallary View ************************************* */

/* ************ Pandal Details ************ */


/* Login Page */

.login-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 76% 5%, rgba(247, 184, 36, .18), transparent 22%), linear-gradient(135deg, var(--maroon-dark), var(--maroon) 58%, #59002a);
  padding: 20px;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.login-card {
  background: #ffffff;
  width: 100%;
  max-width: 380px;
  border-radius: 12px;
  padding: 40px 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.login-header {
  text-align: center;
  margin-bottom: 28px;
}

.login-wrapper .login-header h1 {
  color: #0a1f44;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 6px;
}

.login-wrapper .login-header p {
  color: #7a8699;
  font-size: 14px;
  margin: 0;
}

.login-wrapper .form-group {
  margin-bottom: 18px;
}

.login-wrapper .form-group label {
  display: block;
  color: #0a1f44;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.login-wrapper .form-group input[type="text"],
.login-wrapper .form-group input[type="password"] {
  width: 100%;
  box-sizing: border-box;
  padding: 11px 14px;
  border: 1.5px solid #e0e4ea;
  border-radius: 8px;
  font-size: 14px;
  color: #0a1f44;
  outline: none;
  transition: border-color 0.2s;
}

  .login-wrapper .form-group input:focus {
    border-color: #76002f;
  }

.login-wrapper .password-field {
  position: relative;
}

  .login-wrapper .password-field input {
    padding-right: 42px;
  }

.login-wrapper .eye-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #7a8699;
  display: flex;
  align-items: center;
}

  .login-wrapper .eye-icon:hover {
    color: #0a1f44;
  }

.login-wrapper .form-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  font-size: 13px;
}

.login-wrapper .invalid-feedback {
  display: block;
}

.login-wrapper .remember {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #4a5568;
  cursor: pointer;
}

.forgot-link {
  color: #f5a623;
  text-decoration: none;
  font-weight: 600;
}

  .forgot-link:hover {
    text-decoration: underline;
  }

.login-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #a00043, #76002f);
  color: #FFF;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

  .login-btn:hover {
    background: linear-gradient(135deg, #a00043de, #76002fb5);
  }

  .login-btn:disabled {
    background: #e0e4ea;
    color: #a0aab8;
    cursor: not-allowed;
  }

.logo-badge {
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-badge img {
  width: 150px;
  height: 100%;
}

.logoutbtn {
  width: 20px;
  height: 20px;
}

.logoutbtn img {
  width: 100%;
  height: 100%;
}


/* End Login Page */
@media (max-width: 1200px) {
  .PandalList_search {
    padding-left: 30px;
    padding-right: 30px;
  }

  .pandal-grid {
    padding-left: 30px;
    padding-right: 30px;
  }

  .info-strip {
    margin-left: 30px;
    margin-right: 30px;
  }

  .container_fluid {
    padding: 0 30px;
  }
}


/* mobile: stack into simple 2-column grid */
@media (max-width: 560px) {
  .photo-gallery {
    height: auto !important;
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: unset !important;
    grid-auto-rows: 140px;
  }

    .photo-gallery .photo-tile {
      grid-row: auto !important;
    }

  .PandalList_search {
    padding-left: 20px;
    padding-right: 20px;
  }

  .pandal-grid {
    padding-left: 20px;
    padding-right: 20px;
  }

  .info-strip {
    margin-left: 20px;
    margin-right: 20px;
  }

  .container_fluid {
    padding: 0 20px;
  }
}

@media (max-width: 1600px) {
  .pandal-grid {
    grid-template-columns: repeat(3, minmax(210px, 1fr));
  }
}

@media (max-width: 1300px) {
  .pandal-grid {
    grid-template-columns: repeat(2, minmax(210px, 1fr));
  }
}

@media (max-width: 480px) {
  .registration-card {
    padding: 20px;
  }

  .registration_header {
    padding: 20px;
  }
}

@media (max-width: 390px) {
  .PandalList_search {
    padding-left: 10px;
    padding-right: 10px;
  }

  .pandal-grid {
    padding-left: 10px;
    padding-right: 10px;
  }

  .info-strip {
    padding-left: 10px;
    padding-right: 10px;
  }

  .container_fluid {
    padding: 0 10px;
  }
}

/*  */

/* */
/*******voting-report css*******/

.voting-report-page {
  background: #f4f6f9;
  padding: 40px 0;
  box-sizing: border-box;
}

.report-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.report-header {
  margin-bottom: 10px;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 10px;
}

  .report-header h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #222222;
  }

.form-group11 {
  width: 650px;
  display: flex;
  flex-direction: column;
}

  .form-group11 label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 500;
  }

  .form-group11 select {
    width: 100%;
    height: 36px;
    padding: 0 14px;
    font-size: 15px;
    border: 1px solid #cccccc;
    border-radius: 6px;
    cursor: pointer;
    box-sizing: border-box;
  }

.button-section {
  /*  margin-top: 8px;*/
  display: flex;
  align-items: flex-end;
  margin: 0;
}

  .button-section button {
    white-space: nowrap;
  }

.pandal-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 20px;
  width: 100%;
  padding-bottom: 20px;
}

.button-section .primary-btn {
  padding: 5px 10px;
  font-weight: 600;
  height: 36px;
}

/* */

/* ********************************* select box css ********************************* */

.form-group ng-select.form-select .ng-select-container {
  height: 43px;
}
ng-select.form-select .ng-select-container .ng-value-container .ng-value {
  height: 16px;
}
/* ********************************* END select box css ********************************* */

/**/
.table table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  padding: 10px;
  border: 1px solid #ddd;
  text-align: left;
}

.table th {
  background-color: #f5f5f5;
  font-weight: bold;
}

.table tr:hover {
  background-color: #f9f9f9;
}
/**/

.uploadimagegrid app-aggrid .ag-paging-panel {
  display: none;
}

.location_lbl {
  margin-top: 8px;
}

.a_btn.locationBtn {
  padding: 5px 20px;
  max-width: max-content;
  font-size: 16px;
  background: #000;
  border-color: #000;
  color: #FFF;
  border-radius: 60px;
  font-weight: 600;
  margin-left: 15px;
}

.a_btn.locationBtn:hover {
  background: transparent;
  color: #000;
}

.table {
  overflow: auto;
}



/* Common Loader */
.common-loader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  height: 100vh;
}

.loader-overlay {
  position: absolute;
  inset: 0;
  background: #ffffff;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 400px;
}

.loader {
  width: 48px;
  height: 48px;
  border: 4px solid #e5e7eb;
  border-top-color: #0d6efd;
  border-radius: 50%;
  animation: loader-spin 0.8s linear infinite;
}

@keyframes loader-spin {
  to {
    transform: rotate(360deg);
  }
}

.result_mobile_img {
    display: none;
}

.coming-soon-container {
  width: 100vw;
  height: calc(100vh - 118px);
  background: #fff;
  margin: 0;
  padding: 0;
  position: relative;
}

.coming-soon-container img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*.coming-soon-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}*/


/* *********************************************************************************** About Us Page Start *********************************************************************************** */
:root {
  --maroon: #6f1209;
  --dark-maroon: #3d0804;
  --red: #a5220d;
  --orange: #de5915;
  --gold: #f4c35d;
  --cream: #fff8ec;
  --light-cream: #fffdf8;
  --text: #4c2015;
}
.hero {
  position: relative; min-height: 650px; color: #fff; display: flex; align-items: center;
  background: radial-gradient(circle at 70% 35%, rgba(255,165,40,.22), transparent 32%),
              linear-gradient(120deg, rgba(53,5,2,.97), rgba(121,22,7,.93)); }
.hero-inner { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 40px; }
.hero-copy { padding: 60px 0; }
.hero-copy .about { font-size: clamp(38px,5vw,72px); line-height:.9; }
.hero-copy h1 { font-family:"Playfair Display",serif; color:var(--gold); font-size:clamp(54px,8vw,96px); line-height:.95; margin-bottom:20px; }
.hero-copy h2 { font-size:clamp(22px,3vw,34px); margin-bottom:24px; }
.hero-copy p { font-size:16px; max-width:680px; line-height:1.9; color:rgba(255,255,255,.9); }
.highlight { color:#ffd65b; display:block; margin-top:12px; font-weight:600; }
.hero-image { align-self:end; }
.hero-image img { width:100%; max-height:600px; object-fit:contain; object-position:center; border-radius:24px 24px 0 0; }


.intro-grid-sec {background:#fffdf9; }
.intro-grid { display:grid; grid-template-columns:repeat(3,1fr); background:#fffdf9; border-bottom:1px solid #e9c88d; }
.intro-card { min-height:320px; padding:40px; border-right:1px solid #ead9bb; }
.intro-card:last-child { border-right:0; }
.icon-circle { width:78px; height:78px; border:2px solid var(--orange); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:34px; color:var(--orange); margin-bottom:22px; }
.intro-card h3 { font-family:"Playfair Display",serif; color:var(--maroon); font-size:30px; line-height:1.1; margin-bottom:18px; }
.intro-card p,.intro-card li { font-size:14px; line-height:1.8; color:#3f3029; }
.intro-card ul { list-style:none; margin-top:12px; }
.intro-card li { position:relative; padding-left:26px; margin-bottom:10px; }
.intro-card li::before { content:"✓"; position:absolute; left:0; color:#d7a849; font-weight:700; }
.accent-text { color:#cd3e16 !important; font-weight:700; }



.belief { padding:55px 0; background:#fffaf2; }
.belief-grid { display:grid; grid-template-columns:1fr 1.15fr 1fr; gap:40px; align-items:center; }
.belief-copy h2 { font-family:"Playfair Display",serif; color:var(--maroon); font-size:36px; line-height:1.12; margin-bottom:20px; }
.belief-copy p,.belief-note p { line-height:1.8; font-size:14px; color: #000; }
.belief-photo { border-radius:18px; overflow:hidden; box-shadow:0 18px 45px rgba(97,25,10,.14); height:300px; }
.belief-photo img { width:100%; height:100%; object-fit:contain; }
.belief-note { display:flex; gap:18px; align-items:flex-start; }
.heart { min-width:75px; height:75px; border-radius:50%; background:var(--maroon); color:var(--gold); display:flex; align-items:center; justify-content:center; font-size:36px; }



.edition { background:linear-gradient(100deg,#8d1608,#5d0c05); color:white; padding:35px 0; }
.edition-grid { display:grid; grid-template-columns:1.1fr .7fr 1.25fr; gap:30px; align-items:center; }
.edition-text p { font-size:18px; line-height:1.6; }
.edition-badge { width:180px; height:180px; margin:auto; border:3px solid var(--gold); border-radius:50%; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; color:var(--gold); }
.edition-badge .small { font-size:13px; letter-spacing:2px; }
.edition-badge strong { font-family:"Playfair Display",serif; font-size:70px; line-height:.9; }
.edition-badge sup { font-size:20px; }
.edition-highlight { color:#ffd74a; font-weight:700; }
.edition-photo { height:220px; overflow:hidden; border-radius:16px; }
.edition-photo img { width:100%; height:100%; object-fit:cover; }



.purpose { background:#fffdf9; }
.purpose-title { text-align:center; font-family:"Playfair Display",serif; color:var(--maroon); font-size:34px; padding:30px 20px 20px; }
.purpose-grid { display:grid; grid-template-columns:repeat(4,1fr) 1.4fr; }
.purpose-card { padding:35px 25px; text-align:center; border-right:1px solid #ead7b8; }
.round { width:90px; height:90px; margin:0 auto 20px; border-radius:50%; background:#fff4df; display:flex; align-items:center; justify-content:center; font-size:42px; color:var(--orange); }
.purpose-card p { font-size:14px; line-height:1.6; }
.purpose-cta { background:linear-gradient(140deg,#751006,#4d0804); color:white; text-align:center; padding:38px 25px; display:flex; flex-direction:column; justify-content:center; }
.purpose-cta h3 { font-family:"Playfair Display",serif; color:var(--gold); font-size:32px; line-height:1.22; margin:15px 0; }



.page-wrapper .abc { padding:55px 0; background:#fff8ea; }
.page-wrapper .abc-grid { display:grid; grid-template-columns:.75fr 1.2fr; gap:45px; align-items:center; }
.page-wrapper .abc-heading h2 { font-family:"Playfair Display",serif; color:var(--maroon); font-size:56px; line-height:.95; }
.page-wrapper .abc-heading h3 { margin-top:20px; color:#cf451b; line-height:1.5; }
.page-wrapper .abc-copy { display:grid; gap:18px; }
.page-wrapper .abc-row { display:grid; grid-template-columns:42px 1fr; gap:15px; }
.page-wrapper .abc-icon { width:42px; height:42px; border:1px solid #de8b49; border-radius:50%; display:flex; align-items:center; justify-content:center; color:var(--orange); }
.page-wrapper .abc-row p { line-height:1.7; font-size:14px; color: #000; }
.page-wrapper .abc-gallery { display:grid; grid-template-columns:1fr 1fr; gap:8px; }
.page-wrapper .abc-gallery img { width:100%; aspect-ratio:1.2; object-fit:cover; border-radius:7px; }



.final-message { background:linear-gradient(120deg,#761106,#4d0704); color:white; text-align:center; padding:34px 20px; }
.final-message p { font-family:"Playfair Display",serif; font-size:24px; }
.final-message strong { display:block; color:var(--gold); font-size:clamp(26px,4vw,46px); margin-top:8px; }




@media (max-width:1200px) {
  .hero-inner,.belief-grid,.page-wrapper .abc-grid { grid-template-columns:1fr; }
  .hero-copy { text-align:center; }
  .hero-copy p { margin-inline:auto; }
  .intro-grid { grid-template-columns:1fr; }
  .intro-card { border-right:0; border-bottom:1px solid #ead9bb; }
  .edition-grid { grid-template-columns:1fr 1fr; }
  .purpose-grid { grid-template-columns:repeat(2,1fr); }
  .purpose-cta { grid-column:span 2; }
  .page-wrapper .abc-heading { text-align:center; }
}
@media (max-width:650px) {
  .container { width:min(100% - 26px,1200px); }
  .hero { min-height:auto; }
  .hero-inner { padding-top:35px; }
  .hero-copy .about { font-size:38px; }
  .hero-copy h1 { font-size:55px; }
  .hero-copy h2 { font-size:22px; }
  .intro-card { padding:20px 10px; }
  .belief-grid,.edition-grid,.purpose-grid { grid-template-columns:1fr; }
  .purpose-cta { grid-column:auto; }
  .edition-text { text-align:center; }
  .page-wrapper .abc-heading h2 { font-size:46px; }
  .final-message p { font-size:18px; }
  .hero-copy { padding: 20px 0; }
  .hero-inner { gap: 0px; }
  .belief-grid { gap: 10px; }
  .purpose-card { padding: 20px; }
  .page-wrapper .abc { padding: 30px 0 20px; }
}

/* *********************************************************************************** About Us Page   End *********************************************************************************** */

/* *********************************************************************************** Start Winner Page *********************************************************************************** */

/* =========================
  MAIN SECTION
========================= */
.winner-section {
   min-height: 100vh;
   padding: 45px 5%;
   position: relative;
   overflow: hidden;
}

/* =========================
  HEADER
========================= */
.winner-header {
   text-align: center;
   margin-bottom: 50px;
}
.trophy-icon {
   font-size: 55px;
   margin-bottom: 5px;
}
.winner-header h1 {
   margin: 0;
   font-size: clamp(40px, 5vw, 70px);
   font-weight: 800;
   letter-spacing: 5px;
   background: linear-gradient(
       180deg,
       #fff5a8,
       #f6c83e,
       #c98713
   );
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
}
.winner-header p {
   margin-top: 10px;
   font-size: clamp(15px, 2vw, 24px);
   letter-spacing: 2px;
   color: #f8e8c2;
}

/* =========================
  WINNER CONTAINER
========================= */
.winner-container {
   max-width: 1450px;
   margin: auto;
   display: grid;
   grid-template-columns:
       1fr
       1.35fr
       1fr;
   gap: 35px;
   align-items: center;
   padding-top: 50px;
}

/* =========================
  CARD
========================= */
.winner-card {
   position: relative;
   border-radius: 25px;
   overflow: visible;
   color: #25151a;
   transition: transform 0.3s ease;
}
.winner-card:hover {
   transform: translateY(-8px);
}

/* =========================
  RANK 1
========================= */
/*.rank-1 {
   border: 4px solid #f4c33d;
   box-shadow:
       0 0 30px rgba(244, 195, 61, 0.4),
       0 25px 70px rgba(0, 0, 0, 0.45);
}*/

/* =========================
  RANK BADGE
========================= */
.rank-badge {
   position: absolute;
   top: -28px;
   left: 50%;
   transform: translateX(-50%);
   min-width: 190px;
   padding: 12px 25px;
   text-align: center;
   border-radius: 12px;
   font-size: 23px;
   font-weight: 800;
   z-index: 20;
   box-shadow:
       0 8px 20px rgba(0, 0, 0, 0.3);
}
.rank-badge span {
   margin-right: 8px;
}

/* Rank 1 */
.rank-1 .rank-badge {
   background:
       linear-gradient(
           180deg,
           #ffe994,
           #e8ad24
       );
   color: #352006;
}

/* Rank 2 */
/*.rank-2 .rank-badge {
   background:
       linear-gradient(
           180deg,
           #ffffff,
           #bfc3c9
       );
   color: #25252a;
}*/

/* Rank 3 */
/*.rank-3 .rank-badge {
   background:
       linear-gradient(
           180deg,
           #ffe0bc,
           #bd7b43
       );
   color: #3d2010;
}*/

/* =========================
  NORMAL CARD IMAGE
========================= */
.pandal-image {
   width: 100%;
   height: 320px;
   overflow: hidden;
   border-radius: 21px 21px 0 0;
}
.pandal-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
}

/* =========================
  RANK 1 CAROUSEL
========================= */
.rank-carousel {
  height: 400px;
  position: relative;
  overflow: hidden;
  border-radius: 21px;
  background: #222;
  width: 90%;
  margin: 0 auto;
}
.carousel-slide {
   position: absolute;
   inset: 0;
   opacity: 0;
   transform: scale(1.03) translateX(20px);
   transition:
       opacity 0.65s ease,
       transform 0.65s ease;
   pointer-events: none;
}
.carousel-slide.active {
   opacity: 1;
   transform: scale(1) translateX(0);
   pointer-events: auto;
}
.carousel-slide img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
}

/* =========================
  CAROUSEL OVERLAY
========================= */
.carousel-overlay {
   position: absolute;
   inset: 0;
}

/* =========================
  CAROUSEL BUTTONS
========================= */
.carousel-btn {
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   width: 50px;
   height: 50px;
   border-radius: 50%;
   border: 2px solid #fff;
   background: rgba(0, 0, 0, 0.45);
   color: #fff;
   font-size: 35px;
   line-height: 40px;
   cursor: pointer;
   z-index: 10;
   transition: 0.2s ease;
   padding: 0;
   display: flex;
   align-items: center;
   justify-content: center;
}
.carousel-btn:hover {
   background: rgba(0, 0, 0, 0.75);
   transform:
       translateY(-50%)
       scale(1.08);
}
.carousel-btn.prev {
   left: 20px;
}
.carousel-btn.next {
   right: 20px;
}

.carousel-btn img {
  width: 22px;
  height: 18px;
}

.carousel-btn.next img {
  rotate: 180deg;
}

/* =========================
  CONTENT
========================= */
.winner-content {
   padding: 28px 25px 30px;
   text-align: center;
}
.winner-content h2 {
   margin: 0;
   font-size: 25px;
   font-weight: 500;
   color: #26181b;
}
/*.rank1-content h2 {
   font-size: 30px;
}*/
.location {
   margin: 12px 0;
   font-size: 18px;
   color: #684b40;
}

.winner-content strong {
  display: block;
  margin: auto;
  max-width: 194px;
  padding: 14px 10px;
  border-radius: 9px;
  background: #fff5ce;
  color: #8b3408;
  font-size: 18px;
}

.rank-2 strong {
  background: #f1effd;
  color: #35345f;
}

.rank-1 strong {
  background: #fff5ce;
  color: #8b3408;
}

.rank-3 strong {
  background: #fff0ec;
  color: #833b35;
}


/* =========================
  DOTS
========================= */
.carousel-dots {
   display: flex;
   justify-content: center;
   gap: 10px;
   margin-top: 20px;
}
.dot {
   width: 12px;
   height: 12px;
   border-radius: 50%;
   border: 1px solid #8b5b18;
   background: transparent;
   padding: 0;
   cursor: pointer;
   transition: 0.3s;
}
.dot.active {
   background: #d99b20;
   transform: scale(1.2);
}

/* =========================
  WINNER COUNT
========================= */
.winner-count {
   margin-top: 18px;
   padding: 10px 20px;
   border: 1px solid #8f6324;
   border-radius: 30px;
   display: inline-block;
   color: #60431e;
   font-size: 15px;
}
.rotate-icon {
   display: inline-block;
   margin-right: 7px;
   font-size: 20px;
}

.winner-card.rank-2 {
  top: 20px;
}

.winner-card.rank-3 {
  top: 50px;
}

/* ================= Winners ================= */

/*.podium {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  align-items: end;
  gap: 55px;
  max-width: 930px;
  margin: 0 auto 25px
}*/

.podium-card {
  text-align: center;
  position: relative
}

/*.podium-card img {
  width: 230px;
  height: 255px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 1px 4px #0003
}*/

/*.first img {
  width: 272px;
  height: 320px
}*/

.place {
  position: absolute;
  z-index: 2;
  top: -48px;
  left: 50%;
  transform: translateX(-50%);
  width: 86px;
  height: 86px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font: bold 47px Georgia;
  box-shadow: 0 2px 4px #4f251b66
}

.gold {
  background: radial-gradient(circle at 30% 20%,#fff2a9,#ffca27 50%,#d98c00);
  color: #6c3500
}

.silver {
  background: radial-gradient(circle at 30% 20%,#fff,#dadde0 50%,#969aa1);
  color: #353b42
}

.bronze {
  background: radial-gradient(circle at 30% 20%,#ffbe91,#ee7a3f 50%,#a33e17);
  color: #54200c
}

.podium h2 {
  font-size: 23px;
  line-height: 1.3;
  margin: 22px 0 9px
}

.podium p {
  color: var(--muted);
  font-size: 17px;
  margin: 0 0 20px
}

/* =========================
  MOBILE
========================= */
/*@media (max-width: 1000px) {
   .winner-container {
       grid-template-columns: 1fr;
       max-width: 600px;
   }
   .rank-1 {
       order: -1;
   }
   .rank-carousel {
       height: 380px;
   }
}*/

@media (max-width: 600px) {
   .winner-section {
       padding: 45px 18px;
   }
   .winner-header {
       margin-bottom: 45px;
   }
   .winner-header h1 {
       font-size: 42px;
   }
   .winner-header p {
       font-size: 13px;
       line-height: 1.5;
   }
   .rank-carousel {
       height: 300px;
   }
   .pandal-image {
       height: 270px;
   }
   .winner-content h2 {
       font-size: 21px;
   }
   .rank1-content h2 {
       font-size: 24px;
   }
   .carousel-btn {
       width: 42px;
       height: 42px;
       font-size: 28px;
   }
   .competition-info {
       grid-template-columns: 1fr;
   }
   .ganpati-message {
       text-align: center;
   }
}

/* *********************************************************************************** End   Winner Page *********************************************************************************** */

.voting-report-page .custom-dropdown .primary-btn {
  background: linear-gradient(135deg, #a00043, #76002f) !important;
  padding: 5px 10px;
  font-weight: 600;
  height: 36px;
}

.PandalMaster .report-card .a_btn.success_btn {
  background: linear-gradient(135deg, #a00043, #76002f);
  padding: 13px;
}

/* ********************************************************************************************************************************************************************************************** */

@media (max-width: 1600px) {
  .PandalList_otr {
    grid-template-columns: minmax(0, 1fr) 420px;
  }

  h3 {
    font-size: 1.40rem;
  }

  .festival-banner {
    gap: 20px;
  }
}

@media (max-width: 1440px) {
  h2 {
    font-size: 30px;
  }

  .field {
    min-height: 45px;
  }

  .hero-row {
    margin-bottom: 12px;
  }

  .pandal-grid {
    padding-top: 13px;
  }

  .PandalList_sec {
    padding-bottom: 30px;
  }
}

@media (max-width: 1180px) {
  .page, .PandalList_otr {
    grid-template-columns: 1fr;
  }

  .side {
    grid-template-columns: 1fr 1fr;
    padding: 20px 30px;
  }

  .festival-banner {
    grid-column: 1 / -1;
  }

  .pandal-grid {
    grid-template-columns: repeat(3, minmax(210px, 1fr));
    gap: 10px;
  }

  .PandalList .container_fluid {
    padding-right: 0;
  }

  .hero-row {
    margin-bottom: 20px;
  }

  .field {
    min-height: 48px;
  }

  .filters a img {
    width: 26px;
    height: 26px;
  }

  .rank-carousel {
    width: 100%;
  }

  .winner-container {
    gap: 30px;
    grid-template-columns: 1fr 1.20fr 1fr;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }
  .winner-content h2 {
    font-size: 23px;
  }

  .place {
    width: 80px;
    height: 80px;
    font-size: 38px;
  }
}

@media (max-width: 1024px) {
  .site-header {
    max-height: 92px;
    padding: 14px 18px;
  }

  .coming-soon-container {
      height: calc(100vh - 92px);
  }

  .result_img {
    display: none;
  }

  .result_mobile_img {
    display: block;
  }
  .nav, .user-pill {
    display: none;
  }
  /*    .mobile-menu {
      display: grid;
      place-items: center;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      color: #fff;
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .24);
      font-size: 24px;
    }*/
  .brand {
    min-width: 0;
  }

  .ganesh-mark {
    width: 48px;
    height: 48px;
    font-size: 34px;
  }

  .brand h1 {
    font-size: 20px;
  }

  .brand p {
    font-size: 13px;
  }

  .PandalList_search {
    top: 92px;
  }

  .hero-row {
    margin-bottom: 16px;
  }

  .field {
    min-height: 44px;
  }

  .menu-btn {
    display: block;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: radial-gradient(circle at 76% 5%, rgba(247, 184, 36, .18), transparent 22%), linear-gradient(135deg, var(--maroon-dark), var(--maroon) 58%, #59002a);
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: all ease-in-out 0.4s;
    box-shadow: -5px 0 15px rgba(0,0,0,.2);
    z-index: 1002;
  }

    .nav.open {
      right: 0;
    }

  .mobile-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 20px;
    /*      border-bottom: 1px solid #eee;*/
    width: 100%;
  }

  .close-btn {
    border: none;
    background: none;
    font-size: 24px;
    cursor: pointer;
  }

  .nav a {
    padding: 18px 20px;
    width: 70%;
    justify-content: center;
    /*      border-bottom: 1px solid #f2f2f2;*/
  }

  .overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.4);
    z-index: 1001;
  }

  .PandalList_search {
    padding-left: 20px;
    padding-right: 20px;
  }

  .pandal-grid {
    padding-left: 20px;
    padding-right: 20px;
  }

  .info-strip {
    margin-left: 20px;
    margin-right: 20px;
  }

  .container_fluid {
    padding: 0 20px;
  }

  .side {
    padding: 20px;
  }

  .PandalList_sec {
    padding-bottom: 20px;
  }

  .h4, h4 {
    font-size: calc(1.00rem + .3vw);
  }

  .pandal-voting {
    padding: 40px 0;
  }

  .registration-card {
    padding: 20px;
  }

  .registration_header {
    padding: 20px;
  }

  .details_box_details_otr {
    padding: 20px 20px 20px 0;
  }

  /* .details_box_details_otr {
    padding: 20px;
  } */

  .details_box_details p {
      font-size: 16px;
  }

  .page_heading p {
      font-size: 18px;
  }

  .a_btn {
      font-size: 16px;
      padding: 11px 20px;
  }

  .info_box_text {
      gap: 4px;
  }

  .details_info_box {
      padding: 30px 20px;
  }

  .vote-text h2 {
      font-size: 22px;
  }

  .vote-text p {
      font-size: 18px;
  }

  .pandal_details {
    padding-bottom: 30px;
}

.details_box {
    padding: 50px 0;
}

.details_gallery {
    padding: 30px 0;
}

.details_info_box {
    margin-bottom: 30px;
}

.details_about {
    padding-bottom: 30px;
}

  .winner-container {
    gap: 20px;
    grid-template-columns: 1fr 1.10fr 1fr;
  }

  .carousel-btn.prev {
    left: 10px;
  }

  .carousel-btn.next {
    right: 10px;
  }

  .carousel-btn {
    width: 30px;
    height: 30px;
  }

    .carousel-btn img {
      width: 16px;
      height: 14px;
    }

  .winner-content h2 {
    font-size: 18px;
  }

  .winner-content {
    padding: 20px 10px 10px;
  }

  .winner-content strong {
    font-size: 16px;
    padding: 10px;
  }

  .location {
    font-size: 16px;
  }

  .place {
    width: 70px;
    height: 70px;
    font-size: 34px;
    top: -40px;
  }

}

@media (max-width: 767px) {
  .location_lbl {
    margin-top: 20px;
  }

  
}

@media (max-width: 760px) {
  /*    .page {
      padding: 24px 16px 90px;
      display: block;
    }*/

  h2 {
    font-size: 26px;
  }

  .filters {
    grid-template-columns: 1fr;
  }

  .pandal-grid {
    grid-template-columns: repeat(2, minmax(210px, 1fr));
    gap: 16px;
  }

  .pandal-card {
    display: flex;
  }

  .pandal-image {
    min-height: 168px;
    font-size: 62px;
  }

  .rank {
    width: 34px;
    height: 34px;
    font-size: 16px;
    left: 12px;
    top: 12px;
  }

  .pandal-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

    .pandal-info h3 {
      font-size: 18px;
    }

  .info-strip, .side, .modal-area {
    grid-template-columns: 1fr;
  }

  .panel {
    padding: 18px;
  }

  .info-strip {
    padding: 18px;
  }

  .festival-banner {
    padding: 18px;
  }

  .modal-area {
    margin-top: 24px;
  }

  .phone-card {
    border-radius: 22px;
    padding: 24px;
  }

  .PandalList_search {
    padding-top: 20px;
  }

  .hero-row {
    margin-bottom: 12px;
  }

  .field {
    min-height: 38px;
  }

  .filters a img {
    width: 22px;
    height: 22px;
  }

  .PandalList_sec {
    padding-bottom: 10px;
  }

  .refresh_result {
    width: 20px;
    height: 20px;
  }

  .panel h3 {
    font-size: 20px;
  }

  .pandal-voting {
    padding: 30px 0;
  }

  .registration-box {
    flex-direction: column;
    gap: 0;
    padding-bottom: 10px;
  }

  .registration-box h2 {
    width: 100%;
  }

  .details_box {
    flex-direction: column-reverse;
  }

  .details_box_details_otr {
      width: 100%;
      border-radius: 20px;
      margin-top: 20px;
  }

  .details_box_details {
      width: 100%;
  }

  .vote-text h2 {
      font-size: 19px;
  }

  .vote-text p {
      font-size: 16px;
  }

  .diya-img {
      width: 85px;
      height: 100%;
  }

  .ganesh-img {
      width: 85px;
  }

  .details_box_otr {
    flex-direction: column-reverse;
  }

  .details_box_image::after {
    content: none;
  }

  .details_box_details_otr {
    padding: 0;
  }
  .gallery {
    grid-template-columns: repeat(3, 1fr) !important;
  }


    .PandalMaster .custom-grid .ag-paging-panel {
      justify-content: space-between;
    }

      .PandalMaster .custom-grid .ag-paging-panel .ag-paging-row-summary-panel {
        display: none;
      }

      .PandalMaster .custom-grid .ag-paging-panel .ag-label {
        font-size: 12px;
      }

      .PandalMaster .custom-grid .ag-paging-panel .ag-picker-field-display {
        font-size: 13px;
      }

      .PandalMaster .custom-grid .ag-paging-panel .ag-paging-description {
        font-size: 12px;
      }

  .loader-overlay {
    padding-top: 300px;
  }

  .winner-container {
    grid-template-columns: 1fr;
    max-width: 500px;
    padding: 0;
  }

  .winner-card {
    margin-top: 35px;
  }

    .winner-card.rank-3 {
      top: 0;
      order: 3;
    }

    .winner-card.rank-2 {
      top: 0;
      order: 2;
    }

    .winner-card.rank-1 {
      order: 1;
    }
}

@media (max-width: 479px) {
  .pandal-grid {
    grid-template-columns: repeat(1, minmax(210px, 1fr));
  }

  .PandalList_search {
    padding-left: 15px;
    padding-right: 15px;
  }

  .pandal-grid {
    padding-left: 15px;
    padding-right: 15px;
  }

  .info-strip {
    margin-left: 15px;
    margin-right: 15px;
  }

  .container_fluid {
    padding: 0 15px;
  }

  .side {
    padding: 20px 15px;
  }

  .phone-card {
    padding: 16px;
  }

  .otp-container input {
    width: 40px;
    height: 40px;
  }
  .pandal_details {
    padding-bottom: 20px;
  }

  .details_box {
      padding: 40px 0;
  }

  .details_gallery {
      padding: 20px 0;
  }

  .details_info_box {
      margin-bottom: 20px;
  }

  .details_about {
      padding-bottom: 20px;
  }
  .details_info_box {
    flex-direction: column;
  }
  .gallery {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .PandalMaster .custom-grid .ag-paging-panel {
    gap: 5px;
  }

  .place {
    width: 60px;
    height: 60px;
    font-size: 29px;
    top: -35px;
  }
}

@media (max-width: 390px) {

  .PandalList_search {
    padding-left: 10px;
    padding-right: 10px;
  }

  .pandal-grid {
    padding-left: 10px;
    padding-right: 10px;
  }

  .info-strip {
    margin-left: 10px;
    margin-right: 10px;
  }

  .container_fluid {
    padding: 0 10px;
  }

  .side {
    padding: 20px 10px;
  }
  .gallery {
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .PandalMaster .custom-grid .ag-paging-panel .ag-paging-page-summary-panel {
    gap: 3px;
  }

  .PandalMaster .custom-grid .ag-paging-panel {
    gap: 5px;
  }
}
























/* ******************************************************************************************************************************************************************************* */
:root {
  --ink: #151957;
  --pink: #ef2e6e;
  --gold: #e79700;
  --paper: #fffdf8;
  --green: #72b636
}

/** {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}*/

.landing_page {
  margin: 0;
  background: #f5f1e9;
  color: var(--ink);
  font-family: "DM Sans",sans-serif
}

  .landing_page .page-shell {
    max-width: 1440px;
    min-height: 100vh;
    margin: auto;
    overflow: hidden;
    padding: 28px clamp(24px,7vw,110px) 34px;
    background: radial-gradient(circle at 82% 24%,rgba(255,211,206,.72),transparent 18%),radial-gradient(circle at 90% 40%,rgba(126,219,226,.5),transparent 15%),linear-gradient(120deg,#fffdf8,#fffbf3 65%,#fef7ea);
    position: relative
  }

    .landing_page .page-shell:before, .page-shell:after {
      content: "✺";
      position: absolute;
      color: #f3dca8;
      font-size: 230px;
      opacity: .3;
      line-height: 1
    }

    .landing_page .page-shell:before {
      left: -85px;
      top: 435px
    }

    .landing_page .page-shell:after {
      right: -70px;
      bottom: 150px
    }

  .landing_page .topbar {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start
  }

  .landing_page .brand {
    width: 142px;
    min-height: 130px;
    border: 4px solid var(--pink);
    border-radius: 38% 38% 33% 33%;
    background: #ffc71c;
    box-shadow: inset 0 0 0 4px var(--gold);
    text-align: center;
    padding: 13px 6px 7px;
    color: #092567;
    text-decoration: none;
    line-height: .9;
    transform: rotate(-2deg)
  }

    .landing_page .brand span {
      font-size: 13px;
      letter-spacing: 1px
    }

    .landing_page .brand strong {
      display: block;
      font-family: "Playfair Display",serif;
      font-size: 26px;
      line-height: .75;
      color: #0758ad;
      text-shadow: 1px 1px #fff
    }

    .landing_page .brand small {
      font-weight: 800;
      color: #d91d45;
      font-size: 16px
    }

  .landing_page nav {
    display: flex;
    align-items: center;
    gap: 26px;
    padding-top: 16px
  }

    .landing_page nav a {
      color: var(--ink);
      text-decoration: none;
      font-weight: 700
    }

  .landing_page .nav-cta {
    background: var(--pink);
    color: #fff;
    padding: 11px 17px;
    border-radius: 8px
  }

  .landing_page .hero {
    min-height: 490px;
    display: grid;
    grid-template-columns: 56% 44%;
    align-items: center;
    position: relative;
    z-index: 1
  }

  .landing_page .hero-copy {
    text-align: center;
    padding: 15px 0 0 3vw
  }

  .landing_page .eyebrow {
    font-weight: 700;
    letter-spacing: 3px;
    margin: 0;
    font-size: 19px
  }

    .landing_page .eyebrow span {
      display: inline-block;
      width: 43px;
      border-top: 3px dotted var(--gold);
      vertical-align: middle;
      margin: 0 9px
    }

  .landing_page .lotus {
    font-size: 56px;
    color: var(--pink);
    line-height: .8;
    transform: rotate(45deg);
    margin: 7px
  }

  .landing_page .hero h1 {
    font-family: "Playfair Display",serif;
    font-size: clamp(48px,6.6vw,91px);
    line-height: .84;
    letter-spacing: -3px;
    margin: 0
  }

  .landing_page .year {
    font-family: "Playfair Display",serif;
    font-size: clamp(42px,5vw,68px);
    font-weight: 800;
    color: var(--pink);
    margin: 10px 0
  }

    .landing_page .year i, .start-card h2 span {
      font-family: Arial;
      color: var(--green);
      font-style: normal;
      font-size: .48em;
      vertical-align: middle
    }

  .landing_page .powered {
    font-weight: 700;
    margin: 13px 0 3px
  }

  .landing_page .vadodara {
    font-family: "Playfair Display",serif;
    font-size: 30px;
    line-height: .8;
    margin: 0;
    color: #111
  }

    .landing_page .vadodara b {
      font-size: 42px;
      font-weight: 600
    }

    .landing_page .vadodara span {
      color: #d53032;
      font-size: .75em
    }

  .landing_page .tagline {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.55;
    margin-top: 22px
  }

    .landing_page .tagline span {
      font-weight: 500
    }

  .landing_page .hero-art {
    height: 440px;
    position: relative
  }

  .landing_page .paint {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    opacity: .7
  }

  .landing_page .paint-one {
    width: 310px;
    height: 275px;
    top: 30px;
    left: 40px;
    background: radial-gradient(circle at 30% 35%,#ffd0cd,transparent 35%),#f3b9ad;
    clip-path: polygon(15% 5%,75% 0,100% 26%,82% 92%,25% 100%,0 51%)
  }

  .landing_page .paint-two {
    width: 270px;
    height: 240px;
    top: 175px;
    right: 0;
    background: #a7e4e8;
    clip-path: polygon(25% 0,100% 20%,78% 100%,3% 77%)
  }

  .landing_page .paint-three {
    width: 250px;
    height: 210px;
    top: 110px;
    right: 40px;
    background: #f7d970;
    opacity: .45
  }

  .landing_page .ganesha {
    position: absolute;
    inset: 30px 0 0 0;
    margin: auto;
    width: 340px;
    height: 400px;
    color: var(--gold);
    font-family: Georgia,serif
  }

  .landing_page .crown {
    position: absolute;
    top: 0;
    left: 135px;
    font-size: 76px;
    line-height: 1;
    transform: scaleX(1.25)
  }

  .landing_page .head {
    position: absolute;
    top: 80px;
    left: 95px;
    width: 160px;
    height: 205px;
    border: 5px solid var(--gold);
    border-radius: 45% 45% 47% 42%;
    background: #fffdf8;
    text-align: center;
    padding-top: 35px;
    z-index: 2
  }

  .landing_page .ear {
    position: absolute;
    top: 110px;
    width: 130px;
    height: 132px;
    border: 5px solid var(--gold);
    background: #fffdf8;
    border-radius: 70% 20% 70% 20%;
    z-index: 1
  }

    .landing_page .ear.left {
      left: 18px;
      transform: rotate(-22deg)
    }

    .landing_page .ear.right {
      right: 12px;
      transform: rotate(112deg)
    }

  .landing_page .tilak {
    font-size: 27px
  }

  .landing_page .eyes {
    font-size: 26px;
    margin-top: 13px
  }

  .landing_page .trunk {
    font-size: 110px;
    line-height: .62;
    transform: rotate(78deg);
    margin-left: 34px
  }

  .landing_page .hand {
    position: absolute;
    left: 15px;
    top: 242px;
    font-size: 68px;
    z-index: 3
  }

  .landing_page .body {
    position: absolute;
    left: 49px;
    top: 255px;
    width: 250px;
    height: 130px;
    border: 5px solid var(--gold);
    border-radius: 50% 50% 42% 42%;
    background: #fffdf8;
    font-size: 160px;
    text-align: center;
    line-height: .38
  }

  .landing_page .benefits {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 28px;
    margin: 26px auto 22px;
    max-width: 1080px
  }

    .landing_page .benefits article {
      background: rgba(255,255,255,.88);
      padding: 26px 20px 22px;
      border-radius: 18px;
      text-align: center;
      box-shadow: 0 12px 24px rgba(24,25,87,.08)
    }

  .landing_page .benefit-icon {
    height: 65px;
    font-size: 56px;
    color: var(--pink);
    line-height: 1
  }

  .landing_page .benefits h2 {
    font-size: 19px;
    margin: 18px 0 4px
  }

  .landing_page .benefits p {
    font-size: 16px;
    margin: 0;
    line-height: 1.35
  }

  .landing_page .start-card {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto 22px;
    border-radius: 25px;
    padding: 25px 20px 14px;
    text-align: center;
    background: linear-gradient(110deg,#fff0bd,#fff8e6);
    box-shadow: 0 8px 24px rgba(204,154,41,.08)
  }

    .landing_page .start-card p {
      font-size: 23px;
      font-weight: 700;
      margin: 0
    }

    .landing_page .start-card h2 {
      font-family: "Playfair Display",serif;
      color: var(--pink);
      font-size: clamp(35px,4vw,60px);
      margin: 4px 0
    }

    .landing_page .start-card sup {
      font-size: .5em
    }

  .landing_page .divider {
    color: var(--gold);
    font-size: 25px;
    letter-spacing: 9px;
    line-height: .8
  }

  .landing_page .start-card h3 {
    font-family: Sacramento,cursive;
    font-size: 50px;
    margin: 3px 0 -5px;
    font-weight: 400
  }

  .landing_page .notify {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: auto;
    padding: 18px 30px;
    display: flex;
    align-items: center;
    gap: 18px;
    background: linear-gradient(110deg,#17165d,#292980);
    border-radius: 16px;
    color: white
  }

  .landing_page .bell {
    width: 75px;
    height: 75px;
    border: 1px solid #edb874;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 43px;
    color: #ffcb70
  }

  .landing_page .notify-text h2 {
    margin: 0 0 5px;
    font-size: 20px
  }

  .landing_page .notify-text p {
    margin: 0;
    line-height: 1.35
  }

  .landing_page .notify form {
    display: flex;
    margin-left: auto;
    width: min(440px,48%)
  }

  .landing_page input, button {
    border: 0;
    font: inherit;
    padding: 16px
  }

  .landing_page input {
    min-width: 0;
    flex: 1;
    border-radius: 8px 0 0 8px
  }

  .landing_page button {
    background: var(--pink);
    color: #fff;
    font-weight: 700;
    border-radius: 0 8px 8px 0;
    cursor: pointer
  }

  .landing_page footer {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 18px;
    font-size: 14px
  }

    .landing_page footer p {
      margin: 0 0 6px
    }

    .landing_page footer a {
      color: var(--ink);
      font-size: 20px;
      text-decoration: none;
      margin: 0 3px
    }

  .landing_page .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0)
  }

@media (max-width:760px) {
  .landing_page .page-shell {
    padding: 19px 18px 26px
  }

  .landing_page .topbar {
    align-items: center
  }

  .landing_page .brand {
    width: 100px;
    min-height: 92px;
    border-width: 3px;
    padding: 8px 3px
  }

    .landing_page .brand span {
      font-size: 9px
    }

    .landing_page .brand strong {
      font-size: 18px
    }

    .landing_page .brand small {
      font-size: 12px
    }

  .landing_page nav {
    gap: 10px;
    padding: 0
  }

    .landing_page nav a:not(.nav-cta) {
      display: none
    }

  .landing_page .nav-cta {
    font-size: 13px;
    padding: 9px 10px
  }

  .landing_page .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 31px
  }

  .landing_page .hero-copy {
    padding: 0
  }

  .landing_page .eyebrow {
    font-size: 14px;
    letter-spacing: 2px
  }

  .landing_page .lotus {
    font-size: 41px
  }

  .landing_page .hero h1 {
    font-size: 51px;
    letter-spacing: -2px
  }

  .landing_page .year {
    font-size: 52px;
    margin: 5px 0
  }

  .landing_page .powered {
    font-size: 13px;
    margin-top: 10px
  }

  .landing_page .vadodara {
    font-size: 22px
  }

    .landing_page .vadodara b {
      font-size: 32px
    }

  .landing_page .tagline {
    font-size: 16px;
    margin-top: 16px
  }

  .landing_page .hero-art {
    order: -1;
    height: 275px;
    margin-top: 2px
  }

  .landing_page .ganesha {
    transform: scale(.67);
    transform-origin: bottom center;
    top: -2px
  }

  .landing_page .paint-one {
    width: 220px;
    height: 210px;
    left: 25px;
    top: 20px
  }

  .landing_page .paint-two {
    width: 180px;
    height: 160px;
    top: 125px
  }

  .landing_page .paint-three {
    width: 180px;
    height: 170px;
    top: 78px;
    right: 16px
  }

  .landing_page .benefits {
    gap: 11px;
    margin: 23px 0 20px
  }

    .landing_page .benefits article {
      padding: 17px 5px 14px;
      border-radius: 14px
    }

  .landing_page .benefit-icon {
    font-size: 38px;
    height: 43px
  }

  .landing_page .benefits h2 {
    font-size: 12px;
    margin: 11px 0 4px
  }

  .landing_page .benefits p {
    font-size: 11px
  }

  .landing_page .start-card {
    border-radius: 18px;
    padding: 20px 5px 11px;
    margin-bottom: 16px
  }

    .landing_page .start-card p {
      font-size: 16px
    }

    .landing_page .start-card h2 {
      font-size: 34px
    }

    .landing_page .start-card h3 {
      font-size: 42px
    }

  .landing_page .notify {
    border-radius: 12px;
    padding: 13px;
    gap: 10px;
    flex-wrap: wrap
  }

  .landing_page .bell {
    width: 53px;
    height: 53px;
    font-size: 29px
  }

  .landing_page .notify-text h2 {
    font-size: 16px
  }

  .landing_page .notify-text p {
    font-size: 12px
  }

  .landing_page .notify form {
    margin: 4px 0 0;
    width: 100%
  }

  .landing_page input, .landing_page button {
    padding: 13px;
    font-size: 13px
  }

  .landing_page footer {
    font-size: 12px
  }

  .landing_page .page-shell:before {
    font-size: 120px;
    top: 410px
  }

  .landing_page .page-shell:after {
    font-size: 130px;
    bottom: 170px
  }
}
/* ******************************************************************************************************************************************************************************* */
/* ****************************************************  LeaderBoard Page   ******************************************************* */

.rankings {
  margin-top: 22px;
  padding: 26px 29px;
  border: 1px solid #e9e9ee;
  border-radius: 13px;
  background: #fff;
  width: 100%;
  border-collapse: collapse;
  overflow-x: auto;
}

  .rankings h2 {
    margin: 0 0 26px;
    font-size: 26px;
    display: block;
  }

  .rankings table {
    width: 100%;
    border-collapse: collapse;
  }

  .rankings thead th {
    padding: 16px 8px;
    text-align: left;
    font-weight: 700;
    font-size: 17px;
    border-bottom: 1px solid #e9e9ee;
    color: var(--ink);
  }

  .rankings tbody tr {
    min-height: 64px;
    border-top: 1px solid #e9e9ee;
    font-size: 17px;
    display: table-row;
  }

    .rankings tbody tr td {
      padding: 16px 8px;
      vertical-align: middle;
    }

  /* Column width definitions */
  .rankings td:nth-child(1) {
    width: 10%;
  }

  .rankings td:nth-child(2) {
    width: 35%;
  }

  .rankings td:nth-child(3) {
    width: 15%;
  }

  .rankings td:nth-child(4) {
    width: 10%;
  }

  .rankings td:nth-child(5) {
    width: 30%;
  }

/* Progress Bar Styling */
.progress {
  display: flex;
  gap: 18px;
  align-items: center;
  width: 100%;
}

  .progress em {
    font-style: normal;
    min-width: 48px;
    text-align: right;
    font-weight: 700;
    color: var(--ink);
  }

  .progress .bar {
    height: 11px;
    background: #edf0f2;
    border-radius: 10px;
    display: block;
    overflow: hidden;
    flex: 1;
  }

    .progress .bar span {
      display: block;
      background: linear-gradient(90deg, #eec8bd, #e8b098);
      height: 100%;
      border-radius: inherit;
      transition: width 0.3s ease;
    }

/* ================= Total Voter Stats CSS ================= */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 55px;
}

.stats article {
  border: 1px solid #e6e7eb;
  border-radius: 15px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 160px;
  box-shadow: 0 2px 5px #00000005;
}

.stats span {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  font-size: 42px;
  flex-shrink: 0;
}

.rankings .people {
  background: #edeaff;
  color: #6754e6;
}

.rankings .votes {
  background: #e6f8ea;
}

.rankings .voters {
  background: #fff1df;
  color: #f28a0c;
}

.rankings .clock {
  background: #ffedf1;
  color: #e72a4c;
}

.stats p {
  margin: 0;
  font-size: 16px;
}

.stats b {
  display: block;
  font-size: 26px;
}


.stats .people {
  background: #edeaff;
  color: #6754e6;
}

.stats .votes {
  background: #e6f8ea;
}

.stats .clock {
  background: #ffedf1;
  color: #e72a4c;
}

/* ================= RESPONSIVE (Mobile Friendly) ================= */

@media (max-width: 1200px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .rankings {
    overflow-x: auto;
  }

  .rankings table {
    min-width: 660px;
  }

  .rankings thead {
    font-size: 14px;
  }

  .rankings tbody tr td {
    padding: 12px;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stats article {
    padding: 30px;
    min-height: 140px;
  }

  .stats span {
    width: 70px;
    height: 70px;
    font-size: 38px;
  }

  .stats b {
    font-size: 28px;
  }
}



/*.podium strong {
  display: block;
  margin: auto;
  max-width: 194px;
  padding: 14px 10px;
  border-radius: 9px;
  background: #fff5ce;
  color: #8b3408;
  font-size: 18px
}

.second strong {
  background: #f1effd;
  color: #35345f
}

.third strong {
  background: #fff0ec;
  color: #833b35
}




@media (max-width: 850px) {
    .podium {
        gap: 25px;
        grid-template-columns: 1fr;
        margin-top: 55px
    }

    .podium-card {
        display: grid;
        grid-template-columns: 130px 1fr;
        column-gap: 20px;
        text-align: left;
        align-items: center
    }

        .podium-card img, .first img {
            width: 130px;
            height: 160px;
            grid-row: 1/5
        }

    .place {
        top: -25px;
        left: 93px;
        width: 54px;
        height: 54px;
        font-size: 30px
    }

    .podium h2 {
        font-size: 21px;
        margin: 0
    }

    .podium p {
        font-size: 14px;
        margin: 7px 0
    }

    .podium strong {
        margin: 0;
        font-size: 15px;
        text-align: center;
        padding: 10px;
        max-width: 175px
    }
}*/

.mat-mdc-tab-header {
  display: none !important;
}

/* ******** Title CSS ******** */

.h2_title {
  color: var(--tab-title-color) !important;
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  margin: 0;
}

